%matplotlib inline
Scientific Programming in Python - Dictionaries and Functions¶
Problem 1. Library, with dictionaries¶
We’ll revisit the Problem 3 of Assignment 2, where we had to manipulate some data from a fake library.
In this problem, we had the following format for the data:
[[123456,312314,531337],['John Doe',' Jane Miller','Ted Johnson'],[1.49,0.00,8.12]]
[[123456, 312314, 531337], ['John Doe', ' Jane Miller', 'Ted Johnson'], [1.49, 0.0, 8.12]]
(a) Construct a dictionary to store this data, using the student ID (the first big number) as key.
Use the same loop and logic than before.
data = []
with open("library_data.txt") as f:
for line in f:
data.append(line)
studentname_to_id = {}
library_data = {}
for item in data:
split = item.split(" ")
library_data[int(split[0])] = float(split[3]) # (a)
studentname_to_id[" ".join(split[1:3])] = int(split[0]) # (b)
print(library_data)
{123456: 1.49, 102931: 1.2, 391273: 10.39, 531337: 8.12, 312314: 0.0, 273263: 0.0}
(b) Create another dictionary which maps the name of the student to its student id:
print(studentname_to_id)
# desired output : {'Jane Miller': 312314, 'John Doe': 123456, 'Ted Johnson': 531337}
{'Fred Asteir': 102931, 'Ted Johnson': 531337, 'Johnny Depp': 273263, 'Jane Miller': 312314, 'John Doe': 123456, 'Sarah Connor': 391273}
(c) Print how much money 'John Doe' owes the library, using both of your dictionaries.
idnum = studentname_to_id['John Doe']
library_data[idnum]
1.49
(d) Create the list of the names of students owing more than £1.0 to the library.
for key in studentname_to_id: # (d)
idnum = studentname_to_id[key]
if library_data[idnum]>1.0:
print(key)
Fred Asteir Ted Johnson John Doe Sarah Connor
Problem 2. Counting words¶
(a) In this problem we’ll use the text of Alice in Wonderland to construct dictionaries counting the number of times particular words and pairs of words appear.
from urllib.request import urlopen
URL = "http://www.gutenberg.org/files/11/11.txt"
with urlopen(URL) as f:
with open("alice.txt","wb") as g:
g.write(f.read())
This will create a new file called "alice.txt"
(b) We'll process alice.txt in loops like this:
# load data
with open("alice.txt") as f:
lines=f.readlines()[40:]
# make single string (joining all lines with nothing ("") in between
lines="".join(lines)
print(lines[:1000])
CHAPTER I. Down the Rabbit-Hole Alice was beginning to get very tired of sitting by her sister on the bank, and of having nothing to do: once or twice she had peeped into the book her sister was reading, but it had no pictures or conversations in it, 'and what is the use of a book,' thought Alice 'without pictures or conversations?' So she was considering in her own mind (as well as she could, for the hot day made her feel very sleepy and stupid), whether the pleasure of making a daisy-chain would be worth the trouble of getting up and picking the daisies, when suddenly a White Rabbit with pink eyes ran close by her. There was nothing so VERY remarkable in that; nor did Alice think it so VERY much out of the way to hear the Rabbit say to itself, 'Oh dear! Oh dear! I shall be late!' (when she thought it over afterwards, it occurred to her that she ought to have wondered at this, but at the time it all seemed quite natural); but when the Rabbit actually TOOK A WATCH OUT OF ITS WAISTCO
# replace unwanted characters by whitespace
preprocessed=lines
to_delete=[":", "!", "?", ".", ",", ";", "\n", "\r", "\'", "\'s", "s\'", "\#", "*", "(", ")", "--"]
for item in to_delete:
preprocessed=preprocessed.replace(item, " ")
print(preprocessed[:1000])
CHAPTER I Down the Rabbit-Hole Alice was beginning to get very tired of sitting by her sister on the bank and of having nothing to do once or twice she had peeped into the book her sister was reading but it had no pictures or conversations in it and what is the use of a book thought Alice without pictures or conversations So she was considering in her own mind as well as she could for the hot day made her feel very sleepy and stupid whether the pleasure of making a daisy-chain would be worth the trouble of getting up and picking the daisies when suddenly a White Rabbit with pink eyes ran close by her There was nothing so VERY remarkable in that nor did Alice think it so VERY much out of the way to hear the Rabbit say to itself Oh dear Oh dear I shall be late when she thought it over afterwards it occurred to her that she ought to have wondered at this but at the time it all seemed quite natural but when the Rabbit actually TOOK A WATCH OUT OF ITS WAISTCO
# create word list
words=[word.lower() for word in preprocessed.split()]
print(words[:100])
['chapter', 'i', 'down', 'the', 'rabbit-hole', 'alice', 'was', 'beginning', 'to', 'get', 'very', 'tired', 'of', 'sitting', 'by', 'her', 'sister', 'on', 'the', 'bank', 'and', 'of', 'having', 'nothing', 'to', 'do', 'once', 'or', 'twice', 'she', 'had', 'peeped', 'into', 'the', 'book', 'her', 'sister', 'was', 'reading', 'but', 'it', 'had', 'no', 'pictures', 'or', 'conversations', 'in', 'it', 'and', 'what', 'is', 'the', 'use', 'of', 'a', 'book', 'thought', 'alice', 'without', 'pictures', 'or', 'conversations', 'so', 'she', 'was', 'considering', 'in', 'her', 'own', 'mind', 'as', 'well', 'as', 'she', 'could', 'for', 'the', 'hot', 'day', 'made', 'her', 'feel', 'very', 'sleepy', 'and', 'stupid', 'whether', 'the', 'pleasure', 'of', 'making', 'a', 'daisy-chain', 'would', 'be', 'worth', 'the', 'trouble', 'of', 'getting']
# compute histogram for single words
histogram_single={}
for word in words:
if word not in histogram_single:
histogram_single[word]=1
else:
histogram_single[word]+=1
# print sorted
for key,value in histogram_single.items():
print(key, value)
resting 2 processing 1 stood 7 carrier 1 yesterday 3 f 10 believed 1 judging 1 sides 4 purple 1 morcar 2 some 52 seaside 1 suddenly 13 hanging 3 sorts 3 freely 4 disclaim 1 north 1 whistle 1 tree 5 9 3 problem 1 pitied 1 shan 6 up 100 saves 1 usual 5 use 28 tone 40 laughed 2 window 8 behead 1 wretched 2 own 10 running 8 difficult 2 likely 5 executed 6 breeze 1 ten 6 hard 8 limitation 3 crumbs 4 shedding 1 playing 2 turn 10 refund" 1 shorter 2 grass 4 give 15 rose 1 adding 1 said 462 relief 2 live 8 empty 1 speed 1 corner 4 should 29 drink 7 rich 1 brown 2 like 84 redistributing 2 eh 1 house 18 particular 6 argument 4 mustard-mine 1 burnt 1 denies 1 presented 1 canterbury 1 banks 1 hatching 1 stool 1 increasing 1 nothing 34 user 3 bitter 1 producing 1 addressing 1 night-air 1 natural 4 need 1 pinch 2 pglaf 2 concept 2 butter 3 rabbit-hole 4 feebly 1 outside 7 license 14 comfort 1 animals 4 serpent 9 distribute 6 non 1 contradicted 1 cart-horse 1 evidently 1 usually 2 uncomfortable 4 to-night 1 thoughts 2 going 27 sent 3 better 14 accept 1 changes 2 hurry 11 ashamed 2 feeling 7 licking 1 obtain 3 passing 1 bright 7 sixpence 1 footman 11 passionate 1 again 83 might 28 recognised 1 crouched 1 white 30 protection 1 destroy 2 "french 1 talk 14 frowning 4 accordance 2 preserve 1 changing 2 appear 3 letters 1 forehead 2 wider 1 straightening 1 face 15 fast 4 leaning 2 inkstand 1 bat 3 toffee 1 creation 1 pause 2 fading 1 steam-engine 1 "with 1 clamour 1 meal 1 conclusion 2 www 2 grown 7 executes 1 or 153 8 4 elect 1 daughter 1 twinkling 4 additions 1 sign 1 untwist 1 em 3 away 27 uglification 1 repeated 10 faster 3 nor 3 who 65 quite 55 chatte 1 threw 2 mostly 2 tears 11 scaly 1 matter 9 errors 1 piteous 1 fit 3 rule 5 bleeds 1 himself 6 ye 1 oyster 1 two 39 paws 4 swam 5 wings 1 necessarily 1 regular 2 curious 19 seem 8 names 2 fallen 4 unsolicited 1 hardly 12 speech 3 goose 2 fifth 1 difficulty 4 whiting 8 barrowful 2 become 5 hadn 8 strength 1 every 12 croquet-ground 3 explain 10 remained 3 sneeze 2 internal 1 eggs 5 tidy 1 remain 2 shoulder 4 eaglet 3 sir 7 cheap 1 engaged 1 absence 1 break 2 housemaid 1 goals 1 tea-party 2 evening 5 vanished 4 unwillingly 1 works 33 perhaps 17 appears 1 listened 1 she 553 eaten 1 custody 2 despite 1 hung 1 hurrying 1 broken 6 support 4 owed 1 lefthand 2 familiarly 1 - 7 "who 1 sorry 1 direct 1 try 12 pg 1 generally 7 sobbing 3 can 73 brass 1 idiotic 1 hopeless 1 indirectly 1 busy 2 injure 1 along 6 helped 1 tumbled 1 wondering 7 shrieked 1 may 27 stupidest 1 crept 1 startled 2 garden 16 room 13 my 58 applicable 3 fall 7 account 1 sounds 4 hundred 1 tortoise 3 bear 2 frying-pan 1 executions 2 middle 7 paused 1 based 2 hoping 3 proposal 1 crying 2 wrapping 1 low-spirited 1 xi 1 whoever 1 violently 4 woke 1 punished 1 grazed 1 hearing 4 thinking 11 codes 1 muchness 2 scratching 1 backs 1 dodo 13 pattering 3 1500 1 has 9 muchness" 1 produce 1 beast 1 enormous 1 memorandum 1 "plain 2 turned 16 seldom 1 water-well 1 arms 6 ring 2 shade 1 alarm 2 denied 2 possession 1 gregory 1 morsel 1 smiling 2 girl 4 dishes 2 variety 1 invited 2 globe 1 terribly 1 party 9 civil 3 approach 1 jurymen 4 specified 2 derision 1 research 2 irritated 1 noticing 1 condemn 1 brought 3 slippery 1 jogged 1 tell 32 easy 3 know 88 roared 1 whereupon 1 equipment 3 donors 1 protect 2 alive 3 4 5 dead 4 produced 2 ordering 2 joined 3 welcome 1 round 41 hall 9 edition 1 shingle 1 be" 1 saying 15 smaller 3 prizes 5 fixed 1 stay 5 reach 4 hoped 1 yourself 10 afraid 12 associated 8 rabbits 1 faintly 1 suit 3 blame 1 extremely 2 normans 1 am 16 centre 1 method 1 humbly 2 paperwork 1 laid 2 lake 1 tinkling 1 cause 5 seven 6 lobsters 7 crash 3 hated 1 curls 1 "what 3 favoured 1 breathe" 1 crowded 5 dull 3 pity 3 meanwhile 1 lad 1 dinah 14 immense 1 pictures 4 finds 1 put 31 save 1 capital 4 begun 7 collected 2 submitted 1 not 166 suppose 14 driest 1 commotion 1 ever 21 cake 3 sneezing 6 he 126 sends 1 returning 1 bank 3 ak 1 legs 3 sixteenth 1 hand 20 generations 2 proprietary 1 tipped 1 head 50 trusts 1 oneself 1 begins 4 owl 3 provided 4 lately 1 express 1 periodic 1 timid 3 shiny 1 distraction 1 prohibition 1 committed 1 truthful 1 languid 1 wine 2 wander 1 making 8 raised 2 copy 11 federal 2 measure 1 began 58 pulled 1 office 2 peering 1 curiosity 5 whom 2 skurried 1 last 33 players 4 court 18 mystery 2 ordered 4 claws 2 paw 3 zip 1 financial 1 alice 399 judge 4 peeped 3 rapped 1 spot 1 implied 2 clean 1 stigand 1 nasty 1 ceiling 1 rightly 1 onions 1 shriek 5 thin 1 honest 1 want 9 gravely 3 furrows 1 gryphon 55 manage 7 shilling 1 shared 2 indignant 1 place 9 herself 83 remembering 1 practice 1 ground 5 asleep 8 annoy 1 crawled 1 officer 1 mouth 10 frighten 1 2001 1 809 1 back 38 inclined 1 toss 1 panted 1 riddles 2 allow 4 jelly-fish 1 skirt 1 fish 4 moderate 1 unlocking 1 handed 3 locks 2 pencil 1 accustomed 1 red-hot 1 custard 1 fourteenth 1 spread 4 trembled 2 conger-eel 1 comes 2 flying 1 assistance 1 guess 3 dogs 3 creating 4 heart 2 sad 3 turning 12 character 1 pretty 1 doubled-up 1 company 1 somewhere 3 histories 1 six 2 processions 1 presents 2 distant 2 station 1 sensation 2 txt 1 laugh 1 pretexts 1 looked 45 defective 3 melancholy 6 timidly 9 lory 7 content 1 active 2 discovered 1 c 6 death 1 sea 13 nurse 3 takes 3 fix 2 remark 10 crowd 4 thick 1 "birds 1 busily 4 leave 9 telling 2 livery 3 status 4 thrown 1 seals 1 imitated 1 direction 5 land 1 staring 3 coils 1 mine 9 tomorrow 1 disagree 1 possibility 1 adoption 1 strings 1 wits 1 grey 1 minutes 11 solemn 3 trying 14 far 13 returns 1 outdated 1 accessible 1 pounds 1 copied 2 pencils 1 mind 11 delight 3 forgot 2 complying 3 vanishing 1 really 13 branches 2 day-school 1 follow 3 stiff 1 chimneys 1 trouble 6 require 1 flinging 1 trials 1 ein 1 v 1 fair 1 hint 2 uncomfortably 1 especially 1 within 6 panther 3 hedges 1 concerning 2 swallowed 1 getting 22 leaders 1 kissed 1 scream 2 audibly 1 decidedly 4 pleasing 1 soothing 1 arch 1 90 2 three-legged 2 yours 3 found 35 explanations 1 fits 1 savage 4 opportunity 9 indicating 1 neighbour 1 quickly 2 knee 5 toys 1 defect 3 wonder 18 tale 4 dreamy 1 fond 4 followed 8 tired 7 wife 1 mary 4 through 16 me 68 writhing 1 youth 6 tea-things 1 leaving 1 copies 7 behind 13 consultation 1 feelings 2 tea-time 2 fish-footman 2 doesn 16 trickling 1 ootiful 4 canvas 1 holiday 1 which 56 queer-looking 1 poky 1 reduced 1 grinning 1 phrase 4 weak 2 riper 1 turkey 1 way 55 begged 1 501 2 chance 4 "much 1 find 21 cattle 1 snappishly 1 corrupt 1 tax 6 sister 9 pieces 3 conversation 9 warning 1 child 10 warranties 3 delighted 2 created 2 lewis 1 inquisitively 1 listening 3 perform 1 patriotic 1 choke 1 coaxing 2 liable 1 dreadful 2 father 6 butterfly 1 soft 1 eats 1 since 4 suppress 1 wrote 3 sleep" 1 choked 3 receipt 2 plenty 2 "how 2 jury-men 1 gained 1 flowers 2 fat 1 ear 6 clearly 2 possibly 3 tried 19 worried 1 originator 1 positively 1 look-out 1 lost 3 you 477 terrier 1 year 2 yer 4 whispers 1 out-of-the-way 3 home 5 dropping 1 gone 13 existence 1 chains 1 educational 1 assembled 2 nile 1 pale 4 expressing 1 tis 5 long 33 pleaded 3 peeping 1 wondered 1 nay 1 abide 2 overhead 1 collection 4 choice 2 doubt 4 say 51 offer 2 interest 1 day 25 shelves 1 birds 9 ornamented 2 enjoy 1 hid 1 trademark 10 after-time 1 baked 1 incessantly 1 dreaming 1 oh 44 as 273 yawned 2 international 1 fury 3 isn 7 respectful 1 swim 5 led 4 sentence 8 forty-two 1 belt 1 rippling 1 contain 2 days 8 five 8 them 88 raising 1 first 51 frog-footman 1 saucer 1 queens 1 throw 3 yelp 1 conversations 2 limbs 1 accounting 1 jack-in-the-box 1 dodged 1 enough 18 hollow 1 howled 1 time 68 promised 1 t 218 settling 1 fanning 1 verses 4 pay 1 ink 1 taught 4 country 3 bed 1 authority 2 ferrets 2 needs 1 overcome 1 shrimp 1 wow 6 gutenberg" 5 sh 2 plates 2 draggled 1 determine 1 after 42 ridge 1 double 1 sternly 1 brushing 1 like" 1 growled 1 $1 1 mad 15 fortunately 1 somebody 7 sentenced 1 calmly 1 grave 3 intellectual 2 fluttered 1 corporation 1 wasting 2 book 7 delay 1 moment 31 twice 5 attempted 1 replied 29 mouse 43 banquet 1 poison 2 becoming 1 wild 2 saw 14 choosing 1 raw 1 performed 1 melan 1 bathing 1 calculate 1 tea-tray 1 reasons 1 wasn 11 marmalade 1 lesson 1 girls 3 cares 2 nicely 2 hoarsely 1 consequential 1 figure 3 none 4 downward 1 site 4 size 13 lay 4 vii 1 crimson 2 air 14 profit 1 bore 1 nose 8 array 1 brother 1 addresses 1 agreement 18 heard 30 shaking 3 displayed 1 vulgar 1 mean 10 5 3 doze 1 cup 2 but 175 answered 4 return 3 interpreted 1 hurt 3 closely 1 into 67 waiting 9 "will 1 dormouse 40 exclaimed 6 persons 1 appearance 1 affectionately 1 digging 4 providing 4 waste 1 oop 7 arm-in-arm 1 set 22 children 10 aloud 5 wind 2 tremulous 1 branch 1 turtles 2 rules 5 stingy 1 answer 9 classics 1 learning 2 birthday 1 comfits 2 name 11 askance 1 mouse-traps 1 we 42 friend 3 well 60 hearth 1 slate-pencil 1 purring 2 ringlets 2 email 3 soo 7 highest 1 deal 12 sun 2 "let 1 sizes 1 project 79 stockings 1 imposed 1 version 1 eating 1 explanation 4 electronically 2 cost 3 coward 1 beak 1 exists 1 minding 1 arranged 1 finding 3 charities 1 efforts 3 murdering 1 hastily 16 finished 12 english 6 dig 1 distributed 4 org/license 1 having 10 myself 7 shark 1 contempt 1 houses 1 roof 6 trial 10 unenforceability 1 sharply 4 kick 3 tea 13 distributing 7 bent 1 rope 1 revenue 1 dreamed 1 bottle 10 shook 9 poor 27 softly 1 glad 11 hurried 11 considering 3 tillie 1 whispered 5 silence 14 bringing 3 currants 1 mentioned 3 such 46 puffed 1 stalk 1 clinging 1 pinched 2 shutting 2 tremble 1 sounded 5 chimney 6 lap 2 hear 15 seems 5 to-day 3 imagine 2 pressed 3 binary 1 official 3 altogether 5 nibbling 3 righthand 1 changed 8 dog 3 murder 1 slates 8 farm-yard 1 hopeful 1 poured 1 skimming 1 cushion 2 performing 3 join 9 great 39 tureen 1 sharks 1 ledge 1 gay 1 showing 2 growing 11 entirely 2 library 1 jury 17 rise 1 milk 1 fellows 1 undo 1 altered 1 elbows 1 purpose 2 knowledge 3 dish 4 grow 13 with 225 mice 4 feared 1 accident 2 volunteers 6 water 4 angrily 9 rose-tree 3 derived 1 introduced 1 energetic 1 stopping 1 tail 9 was 358 rush 2 proper 3 feet 19 thatched 1 kneel 1 label 2 files 2 orange 1 hoarse 3 hers 4 cook 13 underneath 1 bread-and-butter 6 interesting 5 flown 1 moral 8 do 98 prisoner 2 lizard 6 lower 1 w 1 play 8 doorway 1 certain 5 director 1 frog 2 agree 11 stays 1 learn 8 comfortably 1 axes 1 prettier 1 literary 13 shrieks 1 chuckled 1 morals 1 died 1 therefore 1 odd 1 witness 10 curtsey 1 beau 4 low 14 lessons 10 loving 1 calling 1 humble 1 entangled 2 happening 1 stolen 1 help 12 vegetable 1 accepted 2 besides 4 encouraging 2 whether 11 splashing 2 "uglification 1 original 1 transcribe 1 ascii" 2 crawling 1 sang 2 brush 1 triumphantly 2 whiles 1 week 3 choose 1 quicker 1 corners 1 obsolete 1 cats 13 renamed 1 beat 4 accessed 1 prize 1 indirect 1 sand 1 glaring 1 verse 4 printed 3 magpie 1 short 4 mock 56 crossed 3 occurred 2 request 1 argued 1 balls 1 goes 7 twinkled 1 courage 3 trumpet 3 history 7 shall 27 guessed 3 fanned 1 liability 3 couldn 9 tie 1 given 2 thousand 2 picking 2 stole 2 deny 2 golden 7 "purpose" 1 pig 8 heavy 2 solid 1 sighing 3 salt 3 cards 3 cry 3 directly 3 pleasant 1 immediately 3 execute 1 deep 7 reaching 2 repeating 3 ridiculous 1 actual 1 void 1 damages 4 reminding 1 work 53 desperately 1 cucumber-frames 1 uniform 1 wink 2 org/donate 1 its 63 squeaked 1 spoke 17 smile 2 representations 1 gardeners 8 growl 3 bring 3 wash 2 longer 3 others 8 good-bye 1 sulkily 2 sing 6 mark 3 thanked 1 $5 1 except 7 roast 1 opened 10 under 21 7 3 about 102 quick 2 no 98 ending 1 life 12 carried 4 disappeared 2 each 9 subscribe 1 michael 2 giddy 2 roses 3 remove 1 "project 5 smoke 1 provisions 1 mournfully 1 books 1 united 10 gross 1 common 1 kindly 2 explained 1 sweet-tempered 1 tossing 3 howling 3 whenever 2 clapping 1 locations 2 completely 1 thunder 1 taller 2 shock 1 asked 17 doing 5 share 2 opposite 1 throne 1 bound 3 pleasure 2 "such 1 patiently 2 advantage 3 includes 1 lessen 1 promoting 2 leap 1 invent 1 tight 1 as-is 1 pat 3 idiot 1 pegs 1 spreading 1 upset 3 before 39 else 11 impossible 3 saucepan 1 service 1 whisper 3 right-hand 1 permission 7 brandy 1 dream 7 "before 1 hair 7 using 6 advisable 2 whistling 1 mushroom 8 for 178 experiment 2 standing 1 played 1 seated 1 beg 8 growling 1 alternate 1 curly 1 pronounced 1 shoes 7 tails 3 instead 3 anxious 3 shake 1 anger 2 group 1 i 533 search 2 uneasily 2 front 2 numerous 1 red 2 argue 1 lovely 2 signifies 1 feeble 2 professor 1 declare 2 promotion 1 tricks 1 considerable 2 row 2 cherry-tart 1 transcription 1 "the 2 hookah 5 crashed 1 cucumber-frame 1 "he 1 settle 1 uglifying 1 lifted 1 counting 1 repeat 7 pretending 1 does 11 damage 2 knife 2 ointment 1 grew 1 laughing 2 back-somersault 1 hundreds 1 demand 1 picture 1 foundation" 1 uneasy 1 seaography 1 respectable 1 breach 2 bird 2 sleep 5 reasonable 2 instantly 5 notifies 1 cheered 3 pulling 1 tunnel 1 neat 1 occur 1 knave 9 write 6 rosetree 1 grunt 1 state 7 figures 1 got 45 fan 10 shrinking 4 louder 1 bill 17 met 4 disclaimer 3 shower 2 mile 2 any 76 boots 4 expression 1 concluded 2 nearer 5 displaying 4 pattern 1 agreed 1 writing 7 appealed 1 daresay 1 permanent 1 push 1 dears 3 whatsoever 1 chanced 1 interrupted 9 herald 1 lot 1 became 2 deductible 1 notion 3 chorus 6 breathe 2 speaker 1 by-the-bye 1 dates 1 darkness 1 wore 1 dinn 2 mustard 2 terror 1 801 1 11 2 mallets 1 paying 2 floor 3 knock 1 places 2 door 30 while 26 balanced 1 mistake 3 sea-shore 1 links 3 daisies 1 wish 22 undertone 2 thoroughly 2 juror 1 story 8 appeared 8 wooden 1 physical 2 incidental 1 wag 1 till 21 position 2 deepest 1 beautify 1 school 5 lit 1 nonproprietary 1 somersault 1 sobbed 1 ensuring 1 are 73 fairy-tales 1 indemnify 1 remember 14 muttered 2 pointing 4 bag 1 paragraphs 3 hungry 3 proofread 1 upsetting 1 ventured 4 compliance 5 soldiers 10 placed 1 fitness 1 rapidly 2 lips 1 3 10 compressed 1 quarrelled 1 hippopotamus 1 law 4 else" 1 learned 1 reading 4 provide 7 granted 1 late 6 apples 2 vague 1 ago 2 games 1 guinea-pig 2 hedgehogs 3 schoolroom 1 take 21 employees 2 moon 1 surprise 5 unrolled 2 wants 2 passage 4 beginning 15 usurpation 1 eye 7 newby 1 eat 17 downwards 1 let 21 shouting 2 flat 2 snail 3 viewing 1 84116 1 derive 1 caucus-race 3 half-past 2 king 63 relieved 1 waited 11 pebbles 2 velvet 1 pack 5 feel 8 posted 5 sobs 4 exporting 1 mouths 4 dinner 2 gather 1 grant 1 shining 1 zealand 1 march 34 rather 25 pope 1 iii 1 restrictions 1 australia 1 known 1 foot 10 seemed 27 sending 3 sisters 2 spectacles 3 desperate 1 stuff 4 adventures 8 opening 3 wonderful 2 dancing 2 sections 1 sands 1 bats 4 pigs 2 only 52 hide 1 practically 1 kettle 1 forgetting 3 listen 7 sluggard 1 marched 1 subdued 1 half 21 ada 1 lives 4 extra 1 waving 5 s 213 turtle 58 consented 1 result 1 pretend 1 unjust 1 handsome 1 format 4 started 2 remarkable 2 discover 1 slipped 3 sleepy 5 get 45 here 51 lose 1 kid 5 their 52 number 8 crab 3 donation 1 looking-glass 1 screamed 4 lobster 7 leaves 6 advice 2 worth 4 twist 2 violates 1 forwards 1 written 9 largest 1 cackled 1 understand 7 scrambling 1 gratefully 1 sky-rocket 1 bread-knife 1 writing-desk 1 latin 1 main 1 accepting 1 labelled 1 b 3 field 1 marked 8 green 4 without 34 sob 1 hatters 1 follows 3 uglify 1 yet 25 telescope 3 beautiful 13 pairs 1 go 50 master 3 rearing 1 grins 1 swamp 1 convert 1 straightened 1 knot 2 to 805 sneezed 1 including 8 print 1 drop 1 upon 28 trot 1 wrong 5 telescopes 1 edge 3 neatly 2 carefully 3 expected 1 doth 3 weren 1 seeing 1 pocket 5 manner 2 solemnly 4 drew 5 fender 1 speak 15 wide 3 stupid 6 childhood 1 canary 1 him 43 solicitation 1 available 2 soup 18 squeaking 2 swimming 2 being 19 employee 1 eel 1 fees 4 giving 2 denying 1 clear 2 doubtfully 2 offended 10 everybody 8 reeling 1 additional 4 happens 5 subjects 1 involved 1 64-6221541 1 used 16 still 13 sudden 5 permitted 3 axis 1 limited 5 disobey 1 alternately 1 doors 2 poker 1 excellent 2 london 1 rumbling 1 stretched 2 000 1 dipped 2 just 52 rising 1 blacking 1 confused 4 requirements 4 xii 1 attached 1 walks 1 possible 1 lonely 2 insult 1 shrink 1 directions 3 promising 1 meekly 2 deeply 4 curled 2 calculated 1 forget 2 impertinent 1 o 6 older 2 her 248 wanted 4 sorrowful 2 vanilla 2 crocodile 1 near 15 replacement 5 secondly 2 doubling 1 identification 1 croqueting 1 confirmed 1 bone 1 insolence 1 compilation 1 depends 2 treated 1 fig 1 modern 1 writing-desks 1 6 2 domain 8 rome 2 arm 12 upright 1 charges 2 bit 16 //pglaf 4 flustered 1 entrance 1 majesty 12 cutting 1 ou 1 everything 14 remembered 5 ambition 1 claim 1 e 28 cut 5 walked 10 ugh 2 today 1 60 1 fellow 4 lesson-books 1 quarrel 1 love 3 narrow 2 never-ending 1 themselves 3 hiss 1 speaking 5 lying 8 yelled 1 best 12 spades 1 woman 2 loveliest 1 show 3 computers 2 splashed 1 indeed 16 "oh 1 few 10 managing 1 complaining 1 nine 5 dried 1 ran 16 whose 2 goldfish 2 virus 1 hours 4 beasts 2 infringement 1 invitation 2 archive 13 shore 3 cupboards 2 unhappy 2 thoughtfully 4 fairbanks 1 delightful 2 thing 49 meeting 1 checks 1 twenty 1 fire-irons 1 change 15 harmless 1 "information 1 pool 11 pie-crust 1 verdict 4 later 1 gave 15 fancied 2 a-piece 1 introduce 2 feathers 1 "william 1 queerest 1 what 139 described 1 tumbling 2 tucked 3 dare 5 worm 1 hit 2 choking 1 //gutenberg 1 muttering 3 "there 3 little 128 teacup 3 different 10 shifting 1 buttercup 1 form 5 across 5 other 54 flashed 1 2 3 redistribute 1 ignorant 1 patience 1 vi 1 letter 4 send 2 absurd 2 kills 1 gallons 1 nodded 1 impatiently 5 if 116 "we 1 throwing 2 thunderstorm 1 seriously 1 drawling-master 1 blew 2 hearts 8 drunk 2 mission 4 against 10 soles 1 previous 1 chapter 12 pass 1 proved 2 property 2 tongue 4 cheated 1 wildly 2 legally 1 thought 74 foolish 1 extraordinary 2 disgust 1 warranty 2 throughout 1 putting 3 crown 3 hate 2 liked 6 meat 1 offend 1 twenty-four 2 angry 5 synonymous 1 statements 1 simple 5 ancient 1 all 200 rushed 1 end 20 years 2 wherever 2 royalty 3 cheeks 1 animal 2 fumbled 1 times 6 pace 1 stopped 3 ours 1 accusation 1 unlink 1 furrow 1 ask 11 states 14 cross 1 smiled 2 favourite 1 too 25 replace 1 cross-examine 2 guests 3 awfully 1 fishes 1 fifteenth 1 file 2 elsie 1 online 3 lamps 1 sense 3 fun 3 three 26 flower-beds 1 neighbouring 1 expense 1 safe 2 word 11 ve 44 diligently 1 lines 1 merchantibility 1 touch 1 rat-hole 1 curiouser 2 shape 1 watch 8 voices 3 remarking 3 come 45 truth 1 sits 1 removed 4 care 4 settled 3 "miss 1 make 30 pardon 6 reported 1 incomplete 1 footsteps 2 afford 1 leant 1 flurry 1 cried 20 run 4 arches 4 x 1 examining 1 exclusion 1 sharp 6 executive 1 atheling 1 whatever 3 forgotten 6 denial 1 downloading 1 candle 3 part 6 thimble 4 remarks 3 reply 5 precious 1 star-fish 1 caused 2 teacups 2 concert 2 dreadfully 6 would 83 596-1887 1 maximum 1 antipathies 1 sky 4 barking 1 public 9 spoken 1 hatter 56 joys 1 trampled 1 thirteen 1 thistle 2 pun 1 frightened 7 kill 1 gently 3 around 3 persisted 2 out 114 continued 9 nevertheless 1 sugar 1 gloomily 1 tied 1 "poison" 1 severely 4 effect 3 down 102 cries 1 jury-box 4 a 689 "you 3 slightest 1 croquet 6 loudly 3 less 4 negligence 1 accounts 1 always 13 words 21 owner 5 computer 2 dear 29 cool 2 crazy 1 holder 4 must 54 grammar 1 zigzag 1 reality 1 alteration 1 "right 1 folding 1 daisy-chain 1 length 1 jaw 1 mississippi 1 disclaimers 1 on 204 undoing 1 gutenberg-tm 57 simply 3 his 96 merely 2 99712 1 indicate 1 pop 1 avoid 1 killing 1 wood 8 doubtful 2 questions 4 wept 1 bad 2 loud 6 shaped 2 among 12 waist 1 sooner 2 towards 1 william 7 inaccurate 1 paint 1 inquired 1 airs 1 scroll 2 mineral 1 spell 1 tittered 1 network 1 pie 2 tut 2 bright-eyed 1 fear 4 slowly 8 treading 2 things 32 believe 9 agony 1 close 13 applause 1 nice 6 both 16 tastes 1 crossly 1 rest 10 declared 1 month 2 indignantly 4 bite 2 partners 1 consider 4 royalties 2 uncivil 1 provoking 1 france 1 "be 1 longed 2 contributions 2 flamingoes 2 mischief 1 flapper 1 soon 25 re 38 miles 3 royal 2 interrupt 1 nervous 5 afore 1 wandered 2 fitted 1 off 73 washing 3 coast 1 mabel 4 been 38 needn 3 sigh 4 [later 2 ourselves 1 charge 6 rate 9 case 5 ways 2 particularly 1 eagerly 8 apply 1 sort 20 pair 5 //www 3 money 3 worse 3 lazy 1 thus 1 wandering 2 addressed 2 exact 1 access 10 dispute 2 trees 7 further 4 leading 1 " 48 soldier 1 key 9 evidence 7 almost 7 exactly 8 knows 2 egg 1 tops 1 list 3 commercial 1 blow 2 partner 1 full 19 terms 21 contract 1 glass 9 managed 4 another 22 fancying 1 pet 1 the 1807 cardboard 1 top 8 violent 2 singers 2 hearthrug 1 regulating 1 sorrows 1 most 11 ll 57 disappointment 1 there 98 critical 1 located 4 reason 9 http 8 references 2 night 3 tiptoe 2 attended 1 singing 2 distribution 6 fine 2 puzzle 1 prison 1 donate 3 now 60 knowing 2 harm 1 shiver 1 drinking 1 guinea-pigs 4 ah 5 held 4 note-book 2 stupidly 1 web 6 clubs 1 check 2 raven 1 addition 1 fetch 7 rattling 2 stoop 2 impatient 1 look 28 reeds 1 shrill 5 detach 1 quiet 2 longitude 2 invalidity 1 yards 1 won 26 couples 1 upstairs 1 formats 2 buttered 1 trims 1 old 21 cartwheels 1 man 5 identify 1 says 4 minded 1 secret 1 serpents 3 brain 1 pardoned 1 roots 1 riddle 1 sat 17 newsletter 1 furiously 1 treatment 1 clasped 1 large 33 ready 8 though 11 jumping 4 signed 2 business 8 ate 1 twentieth 1 inches 6 refused 1 pleasanter 1 please 22 stirring 2 creatures 10 lodging 1 "it" 2 will 39 remarked 10 where 18 discontinue 1 watched 2 org 8 confirmation 1 by 76 morning 5 contemptuous 1 shouldn 5 executioner 6 taking 5 these 17 least 9 bawled 1 est 1 emphasis 1 falling 2 hart 2 re-use 1 50 1 current 1 prosecute 1 yawning 2 ladder 1 muscular 1 thump 2 card 1 pictured 1 courtiers 2 stretching 2 happened 7 multiplication 1 patted 1 burst 1 shut 5 proves 2 ones 1 winter 1 flavour 1 get" 1 picked 3 itself 14 30 1 taxes 1 anything 22 height 5 memory 1 listeners 1 at 225 rudeness 1 resource 1 following 3 machine 1 ebook 5 past 1 fact 8 barley-sugar 1 grunted 4 returned 2 derivative 3 updated 1 s/he 1 panting 2 bones 1 loose 2 pleases 1 stored 1 than 26 slate 3 didn 14 extent 1 tide 1 strict 1 methods 1 costs 2 unpleasant 2 climb 1 clever 2 otherwise 4 walrus 1 pages 1 rock 1 race 2 severity 1 cease 1 maybe 2 caught 3 person 8 four 6 smoking 2 see" 1 left 14 carry 2 presently 2 exclamation 1 grand 3 kept 13 oldest 1 rubbing 2 came 40 wet 2 geography 1 wonderland 4 constant 3 fairly 1 fireplace 1 pressing 1 earnestly 2 temper 5 named 1 sure 24 subject 7 gravy 1 opportunities 1 hm 1 dainties 1 neither 2 squeeze 1 jurors 4 checked 3 waistcoat-pocket 2 passed 5 steady 1 fork 1 lasted 2 appearing 2 information 7 manners 1 understood 1 sheep-bells 1 editions 6 prominently 2 various 2 porpoise 4 had 178 tarts 7 jumped 6 lark 1 blades 1 wig 2 possessed 1 nursing 3 thirty 1 signify 1 performances 1 ravens 1 it 605 display 1 viii 1 walk 5 messages 2 latitude 2 good-naturedly 1 feather 1 unable 1 conduct 1 iv 1 hare 31 arguments 1 20% 1 gloves 11 queer 10 date 2 chin 7 shoulders 4 licensed 1 organized 1 solicit 2 blows 1 also 4 drawling 2 dr 2 1 44 young 5 dressed 1 stop 6 punitive 1 rats 1 farmer 1 swallow 1 wake 2 viewed 1 hope 4 collar 1 rustling 1 boy 3 sell 2 noises 1 thank 4 beloved 1 made 30 refreshments 1 rises 1 "edwin 1 afterwards 2 decided 3 surprised 7 sorrow 2 electronic 27 eleventh 1 deserved 1 bark 2 individual 4 plainly 1 shouted 9 sage 1 quiver 1 lullaby 1 belongs 2 offers 1 prevent 2 unimportant 5 true 4 teeth 1 twelve 4 flew 1 french 3 caterpillar 28 minute 21 arrow 1 summer 2 magic 1 encouraged 1 nobody 8 second 6 fifteen 1 from 51 punching 1 cat 37 people 16 anyone 4 nest 1 curtain 1 escape 4 cannot 5 couple 1 grief 1 flame 1 in 425 high 16 win 1 include 1 voice 48 noise 3 breath 4 bend 2 someone 1 lest 1 grinned 3 expenses 2 walking 5 fainting 1 even 21 beautifully 2 treacle-well 2 modified 1 hush 3 because 16 real 3 plan 4 sighed 5 machines 1 circle 1 invented 1 ought 14 kings 1 same 25 hot-tempered 1 pepper 7 world 7 cunning 1 ugly 2 fright 2 nibbled 2 dripping 1 they 154 arithmetic 1 idea 15 conquest 1 cauldron 2 required 1 affair 1 broke 2 scale 1 helpless 1 meaning 8 cheerfully 1 either 11 treacle 5 catching 2 advise 1 reports 1 duck 4 supple 1 arrum 1 fire 3 interrupting 2 cakes 3 easily 4 venture 3 "turtle 1 boon 1 game 13 irs 1 were 85 swallowing 1 weeks 1 bother 1 cold 1 pig-baby 1 creature 4 f3 1 flock 1 burning 1 keeping 4 ut 1 bottom 4 page 2 "they 1 curtseying 1 principal 1 notice 8 northumbria 2 belong 1 quietly 5 music 3 snout 1 copyright 13 hot 5 sit 8 lie 2 squeezed 1 over 40 folded 3 esq 1 good-natured 1 survive 1 coming 8 modification 1 prove 1 educations 1 pigeon 12 have 85 worry 1 sitting 10 m 63 anywhere 2 tulip-roots 1 readable 2 present 3 taken 4 maps 1 pray 3 miserable 2 sneezes 2 right 34 meant 5 fountains 2 below 6 guilt 1 die 1 bowed 4 that 330 profits 1 "too 1 stick 4 ix 1 flung 1 donations 15 vinegar 1 special 1 called 15 more 50 seen 15 perfectly 4 pointed 1 facility 1 eat" 1 merrily 1 meet 3 turn-up 1 start 2 tones 2 edwin 1 data 1 so 152 redistribution 2 business@pglaf 1 stairs 3 hold 11 unless 6 gbnewby@pglaf 1 parts 1 quadrille 4 makes 12 sound 4 unfortunate 3 footmen 1 baby 13 lieu 2 contemptuously 2 contact 4 begin 13 haven 8 receiving 1 buttons 1 remaining 2 flower-pot 1 dance 13 cautiously 3 stand 6 fancy 7 "defects 1 scattered 1 linked 2 teapot 1 why 40 lastly 1 struck 2 ahem 1 wouldn 13 friends 2 received 6 foundation 24 open 7 unfolded 2 ma 3 officers 4 earth 4 screaming 1 uncommonly 1 bee 1 tells 2 knocked 1 already 3 opinion 1 burn 2 very 145 section 7 course 26 paid 6 frontispiece 1 suppressed 4 theirs 1 forepaws 1 one 106 org/fundraising 1 added 23 fight 2 pleased 7 general 6 us 15 flappers 1 capering 1 our 12 draw 7 obstacle 1 "i 10 camomile 1 inwards 1 sight 10 nonsense 7 beating 2 important 8 fell 6 boxed 1 clock 5 ebooks 7 lived 3 smallest 2 knelt 1 this 178 ful 1 suet 1 damaged 1 newspapers 1 farther 1 tiny 4 dark 3 address 1 "up 1 son 1 ill 2 holding 3 charitable 1 brave 1 read 14 beheading 1 setting 1 fourth 1 kitchen 4 throat 2 christmas 1 variations 1 croqueted 1 retire 1 city 1 stamping 2 passion 3 good 24 twelfth 1 fills 1 once 34 grumbled 1 however 21 confusing 3 drowned 1 glanced 1 talking 17 laughter 1 missed 2 atom 2 lazily 1 annoyed 1 hypertext 1 kiss 1 hour 2 moved 5 fidgeted 1 puss 1 maintaining 1 duchess 42 straight 2 production 1 4557 1 trotting 2 means 8 chrysalis 1 registered 2 happy 1 rubbed 1 hands 12 book-shelves 1 anxiously 14 order 3 fly 3 think 53 beheaded 3 splash 1 "never 1 ache 1 vote 1 alarmed 1 fur 3 adjourn 1 faces 5 sharing 2 funny 3 mercia 2 body 2 dozing 1 how 70 race-course 1 teaching 1 queen 75 medium 5 learnt 2 fee 8 alone 5 pour 1 snorting 1 elbow 3 until 5 saucepans 1 parchment 2 execution 3 entity 3 unusually 1 scolded 1 personal 2 drive 2 blasts 2 directed 2 staff 1 finish 5 planning 1 handwriting 1 expend 1 is 133 waters 1 rustled 1 ann 4 an 61 wriggling 1 several 5 brightened 2 instance 3 extras 1 included 2 carrying 2 something 18 table 18 mixed 2 owns 2 dropped 5 told 6 song 7 attends 1 railway 2 immediate 3 curving 1 puppy 7 succeeded 3 twinkle 7 snatch 2 paper 5 took 24 knew 15 never 46 question 17 provision 1 pennyworth 2 obtaining 2 moving 3 archbishop 2 bough 1 bristling 1 creep 1 hasn 2 taste 2 painting 2 graceful 1 comfortable 1 uncorked 1 distributor 1 queer-shaped 1 together 9 did 63 occasionally 1 heap 1 deletions 1 types 1 "coming 1 cleared 1 fighting 1 disk 1 chop 1 uncommon 1 act 1 acceptance 1 larger 7 hedge 2 wearily 1 journey 1 gazing 1 ridges 1 certainly 14 went 83 blown 1 nearly 13 and 933 toast 1 those 11 furious 1 beds 1 dry 8 sink 1 closed 2 actually 1 dismay 1 advance 3 cur 1 neck 7 shy 1 eager 3 ] 2 "take 1 raving 2 child-life 1 many 14 luckily 2 countries 1 haste 1 flamingo 5 arise 1 hat 1 oblong 1 new 8 hedgehog 7 hjckrrh 1 felt 23 spite 1 done 15 e-mail 1 sometimes 5 tougher 1 small 12 chose 2 salmon 1 call 9 side 17 pink 1 lady 3 guard 1 eyes 29 difficulties 1 puzzled 9 able 1 ears 5 gutenberg 26 somehow 1 honour 4 failure 1 asking 5 pence 1 when 80 could 78 lesson-book 1 payments 3 happen 8 trademark/copyright 1 considered 3 legal 2 muddle 1 jaws 2 keep 12 milk-jug 1 mournful 1 between 6 west 1 drawing 1 refund 9 engraved 1 free 8 heels 1 confusion 5 heads 10 paragraph 11 knocking 3 box 4 attending 3 trembling 6 whole 13 obliged 3 lowing 1 proceed 2 attempts 1 jar 2 receive 3 d 30 miss 3 above 3 beauti 1 expecting 3 sadly 5 complained 1 "keep 1 catch 4 wait 1 then 94 org/1/11/ 1 lacie 1 age 4 diamonds 1 arrived 1 earls 2 mayn 1 respect 1 specific 1 indemnity 1 living 2 forth 8 promise 1 wise 2 agent 1 edgar 1 visit 3 fashion 2 u 3 be 165 noticed 8 comply 6 finger 5 accidentally 1 eels 1 grin 6 of 625 recovered 2 often 6 copying 4 family 1 looking 30 encourage 1 yes 13 procession 5 laws 8 sulky 3 move 3 dive 1 silent 7 sticks 1 matters 2 shepherd 1 justice 1 puzzling 4 hunting 3 improve 1 piece 5 losing 1 powdered 1 filled 3 bursting 1 effort 2 england 1 sprawling 1 prepare 2 carroll 1 closer 1 see 69 line 2 watching 3 simpleton 1 chief 2 "come 2 series 1 remedies 2 paris 2 boldly 1 readily 1 "twinkle 1 much 51 finishing 1 eyelids 1 hurriedly 2 shyly 1 middle-aged 1 exempt 2 cheshire 7 inside 2 violence 1 conqueror 2 don 61 bowing 1 future 3 answers 1 secure 1 knuckles 1 shakespeare 1 alas 4 treat 1 dunce 1 pine-apple 1 quarrelling 2 proud 2 useful 2 shillings 1 rude 2 plate 3 containing 1 govern 1 sour 1 spoon 2 faint 1 elegant 1 widest 2 wags 1 rabbit 47 attempt 1 distance 8 likes 1 pepper-box 1 despair 1 tasted 3 rattle 1 locked 1 next 30 kind 8 splendidly 1 teases 1 clearer 1 strange 5 _i_ 2 turns 3 occasional 1 growls 1 politely 6 your 71 ii 1 roughly 1 whiskers 3 arm-chair 1 nowhere 2 credit 1 volunteer 1 circumstances 1 lock 1 toes 3
Modify this code so that it creates a new dictionary called words at (1).
For (2), if a word is not already in the dictionary words, then add it to the dictionary with a value of 1.
If a word is already in the dictionary words, then increment the value stored in the dictionary by one.
At location (3), print out the dictionary words.
(b) How many times does the word “the” appear? What about the word “The”?
print(histogram_single["the"])
1807
(d) Modify the code so words are counted independent of whether they are made of upper or lower case letters. i.e., “the”, “The” and “tHE” are all treated as the same word.
# See above
(e) Repeat the previous exercise, but instead of counting the number of times a word appears, count the number of times pairs of words appear. You might find it useful to store the previous word in a variable.
def print_dict_sorted_by_value(d):
sorted_keys=sorted(d, key=d.get, reverse=True)
for k in sorted_keys:
print(k, d[k])
# compute histogram for single words
histogram_pairs={}
for i in range(len(words)-1):
pair=(words[i],words[i+1])
if pair not in histogram_pairs:
histogram_pairs[pair]=1
else:
histogram_pairs[pair]+=1
print_dict_sorted_by_value(histogram_pairs)
('said', 'the') 210
('of', 'the') 155
('said', 'alice') 116
('in', 'a') 101
('in', 'the') 93
('to', 'the') 85
('and', 'the') 85
('it', 'was') 76
('the', 'queen') 72
('at', 'the') 63
('the', 'king') 62
('don', 't') 61
('as', 'she') 61
('she', 'had') 60
('a', 'little') 59
('i', 'm') 59
('project', 'gutenberg-tm') 57
('it', 's') 57
('mock', 'turtle') 56
('she', 'was') 55
('and', 'she') 55
('to', 'be') 53
('the', 'mock') 53
('the', 'gryphon') 53
('the', 'hatter') 52
('with', 'the') 51
('went', 'on') 48
('to', 'herself') 45
('you', 'know') 45
('the', 'duchess') 41
('if', 'you') 39
('said', 'to') 39
('on', 'the') 37
('out', 'of') 37
('that', 'she') 35
('she', 'said') 35
('the', 'dormouse') 35
('that', 's') 34
('i', 've') 34
('there', 'was') 34
('and', 'then') 33
('march', 'hare') 31
('was', 'a') 31
('she', 'could') 31
('i', 'don') 30
('the', 'other') 30
('by', 'the') 30
('all', 'the') 30
('the', 'march') 30
('so', 'she') 29
('i', 'll') 29
('of', 'this') 29
('she', 'went') 29
('the', 'mouse') 28
('can', 't') 28
('did', 'not') 28
('i', 'can') 28
('to', 'her') 28
('with', 'a') 28
('the', 'project') 28
('that', 'it') 27
('such', 'a') 27
('the', 'caterpillar') 26
('thought', 'alice') 26
('it', 'and') 26
('a', 'very') 25
('to', 'alice') 25
('of', 'a') 25
('up', 'and') 25
('at', 'all') 25
('of', 'course') 24
('into', 'the') 24
('won', 't') 24
('but', 'she') 23
('the', 'cat') 23
('there', 's') 23
('to', 'see') 23
('you', 're') 23
('for', 'the') 23
('the', 'same') 22
('if', 'i') 22
('white', 'rabbit') 22
('it', 'said') 22
('the', 'rabbit') 22
('the', 'white') 22
('one', 'of') 22
('project', 'gutenberg') 22
('1', 'e') 22
('to', 'say') 21
('the', 'door') 21
('but', 'i') 21
('as', 'it') 21
('as', 'well') 21
('could', 'not') 21
('s', 'the') 20
('her', 'head') 20
('alice', 'and') 20
('a', 'large') 20
('was', 'the') 20
('but', 'it') 20
('to', 'do') 20
('seemed', 'to') 20
('must', 'be') 20
('as', 'the') 19
('and', 'was') 19
('the', 'little') 19
('they', 'were') 19
('at', 'last') 19
('when', 'she') 19
('it', 'is') 19
('about', 'it') 18
('of', 'it') 18
('you', 'are') 18
('gutenberg-tm', 'electronic') 18
('and', 'alice') 18
('had', 'been') 18
('she', 'thought') 18
('i', 'think') 18
('to', 'get') 18
('at', 'once') 18
('you', 'can') 18
('this', 'time') 18
('do', 'you') 17
('for', 'a') 17
('a', 'great') 17
('of', 'her') 17
('would', 'be') 17
('it', 'had') 17
('of', 'them') 17
('looked', 'at') 17
('i', 'should') 17
('like', 'a') 17
('alice', 'was') 17
('and', 'i') 17
('terms', 'of') 16
('and', 'a') 16
('electronic', 'works') 16
('alice', 'i') 16
('i', 'shall') 16
('doesn', 't') 16
('to', 'go') 16
('this', 'agreement') 16
('t', 'be') 16
('the', 'first') 16
('in', 'her') 15
('the', 'jury') 15
('a', 'minute') 15
('sort', 'of') 15
('again', 'and') 15
('as', 'if') 15
('into', 'a') 15
('the', 'court') 15
('that', 'the') 15
('it', 'would') 15
('but', 'the') 14
('s', 'a') 14
('when', 'i') 14
('she', 'did') 14
('are', 'you') 14
('be', 'a') 14
('and', 'as') 14
('and', 'began') 14
('s', 'no') 14
('didn', 't') 14
('t', 'know') 14
('a', 'good') 14
('just', 'as') 14
('like', 'the') 14
('i', 'wonder') 13
('that', 'you') 13
('end', 'of') 13
('t', 'you') 13
('a', 'long') 13
('to', 'find') 13
('you', 'may') 13
('the', 'next') 13
('or', 'two') 13
('as', 'he') 13
('i', 'must') 13
('to', 'make') 13
('they', 're') 13
('back', 'to') 13
('archive', 'foundation') 13
('alice', 's') 13
('and', 'said') 13
('gutenberg', 'literary') 13
('the', 'time') 13
('she', 'felt') 13
('wouldn', 't') 13
('he', 'said') 13
('literary', 'archive') 13
('i', 'know') 13
('the', 'whole') 13
('she', 'began') 13
('and', 'that') 13
('know', 'what') 12
('going', 'to') 12
('would', 'not') 12
('and', 'he') 12
('i', 'wish') 12
('your', 'majesty') 12
('the', 'end') 12
('the', 'way') 12
('minute', 'or') 12
('will', 'you') 12
('what', 'i') 12
('what', 'a') 12
('is', 'the') 12
('the', 'house') 12
('alice', 'thought') 12
('the', 'cook') 12
('the', 'dodo') 12
('i', 'never') 12
('ought', 'to') 12
('it', 'in') 12
('from', 'the') 12
('they', 'all') 12
('and', 'they') 12
('had', 'to') 12
('was', 'not') 12
('for', 'some') 12
('the', 'words') 12
('she', 'found') 12
('for', 'it') 11
('you', 'see') 11
('when', 'the') 11
('and', 'it') 11
('with', 'one') 11
('my', 'dear') 11
('she', 'heard') 11
('poor', 'alice') 11
('you', 'must') 11
('it', 'to') 11
('the', 'work') 11
('and', 'all') 11
('do', 'not') 11
('had', 'not') 11
('alice', 'could') 11
('wasn', 't') 11
('and', 'went') 11
('you', 'won') 11
('alice', 'said') 11
('tell', 'you') 11
('was', 'going') 11
('was', 'that') 11
('the', 'baby') 11
('the', 'right') 11
('to', 'have') 11
('and', 'looked') 11
('them', 'and') 11
('then', 'the') 11
('the', 'terms') 11
('down', 'the') 11
('alice', 'as') 11
('used', 'to') 11
('i', 'd') 11
('alice', 'had') 11
('to', 'you') 11
('about', 'the') 11
('the', 'pigeon') 11
('electronic', 'work') 11
('go', 'on') 11
('the', 'foundation') 11
('if', 'it') 10
('like', 'to') 10
('well', 'as') 10
('on', 'it') 10
('time', 'she') 10
('1', 'f') 10
('near', 'the') 10
('the', 'air') 10
('very', 'much') 10
('his', 'head') 10
('for', 'she') 10
('the', 'dance') 10
('was', 'very') 10
('you', 'd') 10
('i', 'suppose') 10
('took', 'the') 10
('and', 'how') 10
('to', 'a') 10
('must', 'have') 10
('at', 'this') 10
('at', 'her') 10
('king', 'and') 10
('access', 'to') 10
('got', 'to') 10
('turning', 'to') 10
('united', 'states') 10
('till', 'she') 10
('in', 'an') 10
('did', 'you') 10
('that', 'is') 10
('this', 'work') 10
('what', 'you') 10
('had', 'a') 10
('off', 'with') 10
('a', 'low') 10
('is', 'it') 10
('alice', 'did') 10
('ll', 'be') 9
('no', 'use') 9
('i', 'was') 9
('the', 'sea') 9
('then', 'she') 9
('thought', 'it') 9
('she', 'tried') 9
('m', 'not') 9
('they', 'had') 9
('alice', 'in') 9
('was', 'no') 9
('she', 'looked') 9
('sat', 'down') 9
('if', 'she') 9
('the', 'united') 9
('had', 'never') 9
('alice', 'replied') 9
('that', 'they') 9
('after', 'a') 9
('paragraph', '1') 9
('who', 'was') 9
('join', 'the') 9
('while', 'the') 9
('s', 'all') 9
('under', 'the') 9
('the', 'knave') 9
('with', 'his') 9
('the', 'game') 9
('m', 'a') 9
('alice', 'to') 9
('i', 'do') 9
('before', 'she') 9
('of', 'any') 9
('it', 'as') 9
('well', 'i') 9
('there', 'were') 9
('think', 'you') 9
('in', 'my') 9
('poor', 'little') 9
('was', 'in') 9
('you', 'like') 9
('not', 'a') 9
('when', 'they') 9
('so', 'much') 9
('you', 'said') 9
('to', 'begin') 9
('couldn', 't') 9
('king', 'said') 9
('the', 'poor') 9
('and', 'when') 9
('tried', 'to') 9
('down', 'and') 9
('the', 'garden') 9
('of', 'project') 9
('the', 'full') 9
('the', 'table') 9
('let', 'me') 8
('the', 'best') 8
('for', 'you') 8
('haven', 't') 8
('gutenberg-tm', 'license') 8
('alice', 'it') 8
('her', 'face') 8
('it', 'she') 8
('wish', 'i') 8
('which', 'was') 8
('oh', 'dear') 8
('trying', 'to') 8
('some', 'of') 8
('cried', 'the') 8
('in', 'that') 8
('public', 'domain') 8
('alice', 'looked') 8
('now', 'and') 8
('of', 'its') 8
('she', 'came') 8
('tell', 'me') 8
('the', 'top') 8
('at', 'any') 8
('forth', 'in') 8
('you', 'do') 8
('have', 'been') 8
('and', 'in') 8
('it', 'll') 8
('beautiful', 'soup') 8
('she', 'ran') 8
('the', 'footman') 8
('with', 'her') 8
('began', 'to') 8
('up', 'to') 8
('with', 'its') 8
('round', 'the') 8
('hadn', 't') 8
('a', 'bit') 8
('a', 'moment') 8
('to', 'speak') 8
('look', 'at') 8
('set', 'forth') 8
('a', 'mouse') 8
('this', 'she') 8
('on', 'a') 8
('to', 'come') 8
('to', 'ask') 8
('think', 'i') 8
('this', 'was') 8
('were', 'all') 8
('i', 'didn') 8
('so', 'they') 8
('of', 'that') 8
('i', 'am') 8
('in', 'it') 8
('it', 'might') 8
('through', 'the') 8
('any', 'rate') 8
('is', 'a') 8
('the', 'rest') 8
('use', 'of') 8
('at', 'first') 8
('was', 'quite') 8
('little', 'thing') 8
('on', 'their') 8
('among', 'the') 8
('gryphon', 'and') 8
('like', 'that') 8
('i', 'could') 8
('oh', 'i') 8
('she', 'got') 8
('agree', 'to') 8
('began', 'in') 8
('the', 'moment') 8
('how', 'to') 8
('said', 'in') 8
('he', 'was') 8
('the', 'pool') 8
('you', 'will') 8
('that', 'i') 8
('who', 'had') 8
('and', 'there') 7
('the', 'use') 7
('"', 'said') 7
('very', 'soon') 7
('full', 'project') 7
('at', 'it') 7
('added', 'the') 7
('so', 'that') 7
('down', 'on') 7
('the', 'reason') 7
('and', 'this') 7
('you', 'might') 7
('of', 'hearts') 7
('their', 'slates') 7
('you', 'to') 7
('herself', 'in') 7
('beginning', 'to') 7
('way', 'of') 7
('and', 'yet') 7
('m', 'afraid') 7
('her', 'and') 7
('fan', 'and') 7
('to', 'think') 7
('about', 'her') 7
('she', 'would') 7
('cried', 'alice') 7
('as', 'i') 7
('s', 'very') 7
('about', 'in') 7
('with', 'an') 7
('their', 'heads') 7
('tone', 'of') 7
('and', 'had') 7
('her', 'sister') 7
('alice', 'who') 7
('here', 'the') 7
('looking', 'at') 7
('queen', 's') 7
('as', 'they') 7
('to', 'them') 7
('it', 'i') 7
('queen', 'and') 7
('got', 'up') 7
('wonder', 'what') 7
('the', 'trial') 7
('indeed', 'said') 7
('the', 'window') 7
('the', 'distance') 7
('by', 'this') 7
('what', 'is') 7
('off', 'the') 7
('what', 'are') 7
('now', 'i') 7
('top', 'of') 7
('up', 'into') 7
('saying', 'to') 7
('as', 'a') 7
('alice', 'began') 7
('isn', 't') 7
('over', 'the') 7
('at', 'least') 7
('this', 'moment') 7
('set', 'to') 7
('work', 'or') 7
('make', 'out') 7
('for', 'her') 7
('time', 'to') 7
('t', 'think') 7
('upon', 'a') 7
('it', 'doesn') 7
('some', 'time') 7
('seem', 'to') 7
('same', 'thing') 7
('all', 'round') 7
('as', 'you') 7
('was', 'so') 7
('went', 'to') 7
('at', 'alice') 7
('out', 'the') 7
('the', 'wood') 7
('quite', 'a') 7
('that', 'said') 7
('of', 'his') 7
('the', 'three') 7
('be', 'no') 7
('of', 'sight') 7
('not', 'like') 7
('you', 'don') 7
('in', 'all') 7
('soo', 'oop') 7
('i', 'hadn') 7
('in', 'another') 7
('am', 'i') 7
('she', 's') 7
('to', 'work') 7
('it', 'must') 7
('see', 'it') 7
('will', 'be') 7
('in', 'this') 7
('you', 've') 7
('called', 'out') 7
('t', 'like') 7
('that', 'he') 7
('to', 'it') 7
('or', 'any') 7
('copies', 'of') 7
('see', 'what') 7
('good', 'deal') 7
('i', 'have') 7
('have', 'you') 7
('and', 'what') 6
('he', 'had') 6
('on', 'which') 6
('of', 'little') 6
('the', 'middle') 6
('alice', 'she') 6
('t', 'have') 6
('sitting', 'on') 6
('hand', 'and') 6
('said', 'this') 6
('you', 'mean') 6
('what', 'the') 6
('the', 'lory') 6
('try', 'the') 6
('that', 'had') 6
('t', 'said') 6
('out', 'to') 6
('but', 'they') 6
('the', 'soldiers') 6
('very', 'curious') 6
('i', 'beg') 6
('are', 'old') 6
('it', 'so') 6
('they', 'would') 6
('the', 'fan') 6
('then', 'it') 6
('is', 'that') 6
('her', 'hand') 6
('number', 'of') 6
('if', 'he') 6
('was', 'now') 6
('would', 'you') 6
('the', 'world') 6
('works', 'in') 6
('dear', 'i') 6
('you', 'll') 6
('that', 'was') 6
('a', 'few') 6
('duchess', 'and') 6
('she', 'might') 6
('its', 'eyes') 6
('m', 'sure') 6
('tone', 'and') 6
('so', 'very') 6
('her', 'hands') 6
('you', 'and') 6
('ready', 'to') 6
('it', 'but') 6
('was', 'just') 6
('know', 'the') 6
('other', 'side') 6
('have', 'to') 6
('why', 'i') 6
('all', 'her') 6
('great', 'hurry') 6
('alice', 'a') 6
('she', 'spoke') 6
('him', 'and') 6
('i', 'haven') 6
('the', 'chimney') 6
('up', 'in') 6
('the', 'copyright') 6
('moral', 'of') 6
('so', 'alice') 6
('the', 'roof') 6
('golden', 'key') 6
('shan', 't') 6
('her', 'eyes') 6
('in', 'paragraph') 6
('want', 'to') 6
('and', 'very') 6
('his', 'eyes') 6
('felt', 'that') 6
('found', 'it') 6
('come', 'on') 6
('the', 'great') 6
('up', 'the') 6
('said', 'nothing') 6
('all', 'that') 6
('the', 'moral') 6
('or', 'other') 6
('on', 'in') 6
('was', 'sitting') 6
('on', 'her') 6
('oh', 'my') 6
('it', 'a') 6
('its', 'mouth') 6
('not', 'the') 6
('not', 'said') 6
('was', 'looking') 6
('please', 'your') 6
('put', 'it') 6
('could', 'see') 6
('what', 'was') 6
('you', 'were') 6
('to', 'me') 6
('the', 'last') 6
('that', 'in') 6
('he', 'spoke') 6
('left', 'off') 6
('close', 'to') 6
('you', 'have') 6
('which', 'the') 6
('beg', 'your') 6
('he', 'went') 6
('on', 'and') 6
('voice', 'and') 6
('while', 'she') 6
('as', 'soon') 6
('a', 'curious') 6
('three', 'gardeners') 6
('more', 'than') 6
('to', 'tell') 6
('the', 'trees') 6
('is', 'to') 6
('which', 'way') 6
('side', 'of') 6
('herself', 'and') 6
('the', 'executioner') 6
('down', 'here') 6
('alice', 'very') 6
('she', 'knew') 6
('a', 'thing') 6
('its', 'head') 6
('however', 'she') 6
('to', 'look') 6
('few', 'minutes') 6
('a', 'tone') 6
('the', 'name') 6
('use', 'in') 6
('soon', 'as') 6
('little', 'door') 6
('t', 'talk') 6
('again', 'the') 6
('after', 'all') 6
('ve', 'got') 6
('how', 'she') 6
('d', 'better') 6
('thought', 'and') 6
('it', 'out') 6
('no', 'one') 6
('when', 'it') 6
('found', 'herself') 6
('you', 'a') 5
('come', 'back') 5
('is', 'i') 5
('i', 'had') 5
('last', 'the') 5
('into', 'her') 5
('about', 'and') 5
('that', 'if') 5
('said', 'and') 5
('the', 'mushroom') 5
('on', 'his') 5
('looked', 'down') 5
('offended', 'tone') 5
('alice', 'that') 5
('know', 'it') 5
('in', 'at') 5
('then', 'you') 5
('was', 'too') 5
('the', 'ground') 5
('herself', 'i') 5
('in', 'their') 5
('of', 'tears') 5
('what', 'would') 5
('kid', 'gloves') 5
('get', 'to') 5
('one', 'side') 5
('to', 'put') 5
('to', 'leave') 5
('to', 'eat') 5
('which', 'she') 5
('said', 'i') 5
('that', 'makes') 5
('on', 'one') 5
('in', 'fact') 5
('gloves', 'and') 5
('put', 'on') 5
('as', 'much') 5
('only', 'a') 5
('down', 'at') 5
('as', 'to') 5
('work', 'is') 5
('to', 'hear') 5
('first', 'she') 5
('thought', 'to') 5
('i', 'only') 5
('information', 'about') 5
('me', 'said') 5
('too', 'much') 5
('trembling', 'voice') 5
('made', 'out') 5
('herself', 'as') 5
('should', 'think') 5
('heard', 'a') 5
('such', 'as') 5
('or', 'a') 5
('t', 'believe') 5
('she', 'remembered') 5
('to', 'listen') 5
('go', 'and') 5
('be', 'said') 5
('that', 'alice') 5
('thought', 'she') 5
('of', 'things') 5
('made', 'her') 5
('then', 'i') 5
('all', 'i') 5
('know', 'i') 5
('and', 'you') 5
('donations', 'to') 5
('can', 'be') 5
('down', 'to') 5
('distribution', 'of') 5
('rest', 'of') 5
('"project', 'gutenberg"') 5
('would', 'have') 5
('was', 'an') 5
('sure', 'i') 5
('i', 'to') 5
('not', 'at') 5
('another', 'moment') 5
('find', 'that') 5
('had', 'got') 5
('all', 'this') 5
('looking', 'for') 5
('may', 'be') 5
('she', 'made') 5
('king', 'the') 5
('see', 'how') 5
('hear', 'the') 5
('have', 'no') 5
('came', 'upon') 5
('pair', 'of') 5
('and', 'see') 5
('-', 'you') 5
('eyes', 'and') 5
('then', 'they') 5
('out', 'again') 5
('you', 'think') 5
('t', 'see') 5
('comply', 'with') 5
('back', 'and') 5
('had', 'just') 5
('get', 'out') 5
('in', 'his') 5
('as', 'there') 5
('it', 'you') 5
('her', 'to') 5
('looked', 'up') 5
('to', 'learn') 5
('white', 'kid') 5
('alice', 'but') 5
('know', 'said') 5
('door', 'and') 5
('very', 'glad') 5
('what', 'to') 5
('queen', 'said') 5
('key', 'and') 5
('going', 'on') 5
('all', 'over') 5
('her', 'own') 5
('here', 'and') 5
('was', 'beginning') 5
('cheshire', 'cat') 5
('"', 'you') 5
('gutenberg-tm', 'works') 5
('alice', 'went') 5
('outside', 'the') 5
('feet', 'high') 5
('and', 'oh') 5
('without', 'a') 5
('of', 'what') 5
('evening', 'beautiful') 5
('the', 'puppy') 5
('she', 'added') 5
('up', 'again') 5
('moment', 'she') 5
('all', 'said') 5
('did', 'they') 5
('was', 'all') 5
('she', 'set') 5
('e', '1') 5
('can', 'do') 5
('and', 'after') 5
('shouldn', 't') 5
('alice', 'why') 5
('of', 'you') 5
('do', 'it') 5
('of', 'your') 5
('shouted', 'the') 5
('talk', 'about') 5
('you', 'wouldn') 5
('see', 'if') 5
('and', 'just') 5
('she', 'walked') 5
('think', 'of') 5
('again', 'i') 5
('in', 'such') 5
('he', 'did') 5
('voice', 'of') 5
('of', 'great') 5
('ve', 'seen') 5
('hatter', 'and') 5
('work', 'in') 5
('right', 'size') 5
('do', 'with') 5
('get', 'in') 5
('heard', 'the') 5
('into', 'its') 5
('with', 'all') 5
('what', 'they') 5
('an', 'old') 5
('to', 'know') 5
('thing', 'i') 5
('with', 'this') 5
('a', 'refund') 5
('to', 'grow') 5
('out', 'that') 5
('let', 's') 5
('after', 'it') 5
('kind', 'of') 5
('would', 'go') 5
('next', 'witness') 5
('in', 'reply') 5
('should', 'like') 5
('and', 'so') 5
('what', 's') 5
('tired', 'of') 5
('t', 'remember') 5
('little', 'golden') 5
('not', 'to') 5
('thing', 'said') 5
('you', 'could') 5
('but', 'then') 5
('like', 'it') 5
('then', 'said') 5
('that', 'there') 5
('was', 'over') 5
('i', 'won') 5
('any', 'more') 5
('a', 'serpent') 5
('play', 'croquet') 5
('had', 'no') 5
('to', 'this') 5
('meaning', 'in') 5
('not', 'could') 5
('long', 'as') 5
('hands', 'and') 5
('gutenberg-tm', 'work') 5
('any', 'other') 5
('before', 'and') 5
('a', 'project') 5
('round', 'her') 5
('wish', 'you') 5
('what', 'it') 5
('should', 'be') 5
('when', 'you') 5
('the', 'lizard') 5
('why', 'it') 5
('to', 'itself') 5
('and', 'found') 5
('your', 'pardon') 5
('so', 'said') 5
('the', 'hall') 5
('yet', 'you') 5
('in', 'any') 5
('ve', 'tried') 5
('alice', 'felt') 5
('very', 'politely') 5
('off', 'and') 5
('the', 'others') 5
('so', 'you') 4
('and', 'if') 4
('associated', 'with') 4
('f', '3') 4
('perhaps', 'it') 4
('the', 'subject') 4
('cat', 'and') 4
('look', 'of') 4
('full', 'of') 4
('t', 'help') 4
('sit', 'down') 4
('the', 'beginning') 4
('the', 'only') 4
('opportunity', 'for') 4
('growing', 'and') 4
('upon', 'her') 4
('you', 'had') 4
('phrase', '"project') 4
('out', 'a') 4
('finished', 'the') 4
('think', 'that') 4
('part', 'of') 4
('replied', 'in') 4
('a', 'melancholy') 4
('old', 'fellow') 4
('idea', 'what') 4
('mission', 'of') 4
('you', 'tell') 4
('like', 'said') 4
('house', 'and') 4
('to', 'play') 4
('me', 'see') 4
('piece', 'of') 4
('to', 'talk') 4
('a', 'copy') 4
('her', 'in') 4
('and', 'looking') 4
('notice', 'of') 4
('a', 'new') 4
('much', 'said') 4
('you', 'agree') 4
('t', 'the') 4
('it', 'all') 4
('very', 'little') 4
('that', 'her') 4
('a', 'voice') 4
('the', 'birds') 4
('so', 'many') 4
('them', 'i') 4
('do', 'said') 4
('there', 'are') 4
('the', 'person') 4
('in', 'which') 4
('do', 'to') 4
('the', 'whiting') 4
('but', 'he') 4
('i', 'used') 4
('begin', 'with') 4
('beau', 'ootiful') 4
('that', 'would') 4
('the', 'hookah') 4
('how', 'the') 4
('again', 'for') 4
('a', 'deep') 4
('low', 'voice') 4
('inches', 'high') 4
('round', 'it') 4
('work', 'and') 4
('this', 'and') 4
('the', 'earth') 4
('d', 'have') 4
('alice', 'come') 4
('she', 'is') 4
('what', 'did') 4
('majesty', 'said') 4
('a', 'sort') 4
('who', 'seemed') 4
('the', 'party') 4
('the', 'voice') 4
('in', 'time') 4
('hold', 'of') 4
('whether', 'it') 4
('this', 'ebook') 4
('bottom', 'of') 4
('hurried', 'off') 4
('it', 'at') 4
('at', 'http') 4
('continued', 'the') 4
('though', 'she') 4
('turtle', 'said') 4
('had', 'made') 4
('alice', 'quite') 4
('the', 'place') 4
('it', 'isn') 4
('them', 'with') 4
('shall', 'have') 4
('way', 'to') 4
('see', 'that') 4
('the', 'sky') 4
('is', 'of') 4
('i', 'said') 4
('might', 'as') 4
('could', 'be') 4
('down', 'again') 4
('twinkle', 'twinkle') 4
('s', 'an') 4
('foundation', 'the') 4
('sure', 'to') 4
('know', 'that') 4
('a', 'hurry') 4
('become', 'of') 4
('to', 'and') 4
('from', 'one') 4
('or', 'i') 4
('seems', 'to') 4
('or', 'not') 4
('at', 'them') 4
('it', 'the') 4
('to', 'one') 4
('was', 'nothing') 4
('back', 'again') 4
('e', '8') 4
('well', 'say') 4
('was', 'said') 4
('wow', 'wow') 4
('it', 'again') 4
('yer', 'honour') 4
('provide', 'a') 4
('she', 'waited') 4
('did', 'said') 4
('on', 'with') 4
('gutenberg-tm', 'trademark') 4
('hare', 'said') 4
('web', 'site') 4
('she', 'sat') 4
('s', 'got') 4
('alice', 'hastily') 4
('as', 'long') 4
('herself', 'to') 4
('getting', 'up') 4
('be', 'sure') 4
('s', 'head') 4
('after', 'that') 4
('is', 'such') 4
('the', 'bottom') 4
('the', 'lobster') 4
('round', 'and') 4
('for', 'any') 4
('afraid', 'i') 4
('father', 'william') 4
('http', '//pglaf') 4
('was', 'as') 4
('once', 'in') 4
('way', 'you') 4
('who', 'is') 4
('with', 'their') 4
('think', 'it') 4
('bill', 's') 4
('they', 'll') 4
('to', 'change') 4
('the', 'lobsters') 4
('did', 'so') 4
('once', 'more') 4
('her', 'life') 4
('an', 'offended') 4
('walked', 'off') 4
('ootiful', 'soo') 4
('alice', 'you') 4
('change', 'the') 4
('it', 'away') 4
('replied', 'very') 4
('her', 'foot') 4
('when', 'he') 4
('but', 'at') 4
('enough', 'to') 4
('her', 'about') 4
('and', 'to') 4
('alice', 'the') 4
('no', 'i') 4
('it', 'over') 4
('was', 'only') 4
('oh', 'you') 4
('very', 'nearly') 4
('and', 'any') 4
('was', 'to') 4
('rabbit', 's') 4
('no', 'time') 4
('her', 'feet') 4
('alice', 'ventured') 4
('say', 'it') 4
('t', 'matter') 4
('this', 'last') 4
('s', 'voice') 4
('her', 'voice') 4
('they', 'd') 4
('thing', 'to') 4
('again', 'you') 4
('all', 'about') 4
('a', 'tree') 4
('gave', 'a') 4
('no', 'idea') 4
('her', 'chin') 4
('ventured', 'to') 4
('the', 'look') 4
('there', 'seemed') 4
('you', 'did') 4
('could', 'for') 4
('one', 'finger') 4
('do', 'i') 4
('cat', 'i') 4
('she', 'gave') 4
('with', 'you') 4
('mouth', 'and') 4
('heard', 'of') 4
('for', 'this') 4
('ll', 'have') 4
('you', 'ought') 4
('than', 'a') 4
('her', 'arm') 4
('some', 'minutes') 4
('way', 'i') 4
('it', 'there') 4
('felt', 'a') 4
('nothing', 'but') 4
('lobster', 'quadrille') 4
('about', 'as') 4
('his', 'voice') 4
('the', 'most') 4
('you', 'join') 4
('queen', 'who') 4
('a', 'well') 4
('my', 'life') 4
('to', 'my') 4
('added', 'in') 4
('leave', 'off') 4
('before', 'the') 4
('the', 'song') 4
('make', 'me') 4
('t', 'go') 4
('the', 'sort') 4
('the', 'question') 4
('said', 'very') 4
('hand', 'in') 4
('it', 'that') 4
('went', 'back') 4
('queen', 'of') 4
('never', 'heard') 4
('not', 'i') 4
('queen', 'was') 4
('made', 'a') 4
('the', 'jurymen') 4
('the', 'things') 4
('it', 'he') 4
('mary', 'ann') 4
('over', 'and') 4
('t', 'want') 4
('after', 'the') 4
('tell', 'her') 4
('on', 'what') 4
('glad', 'to') 4
('the', 'hedgehog') 4
('was', 'gone') 4
('no', 'more') 4
('down', 'a') 4
('time', 'and') 4
('mouse', 'to') 4
('with', 'some') 4
('their', 'faces') 4
('the', 'second') 4
('caterpillar', 'well') 4
('the', 'officers') 4
('she', 'put') 4
('re', 'a') 4
('see', 'you') 4
('be', 'the') 4
('come', 'to') 4
('volunteers', 'and') 4
('make', 'you') 4
('not', 'quite') 4
('be', 'so') 4
('explain', 'it') 4
('every', 'now') 4
('a', 'whiting') 4
('you', 'say') 4
('who', 'are') 4
('shall', 'be') 4
('opportunity', 'of') 4
('jumped', 'up') 4
('no', 'room') 4
('dance', 'will') 4
('see', 'the') 4
('t', 'a') 4
('about', 'for') 4
('it', 'just') 4
('the', 'jury-box') 4
('hatter', 'i') 4
('she', 'soon') 4
('this', 'morning') 4
('is', 'you') 4
('had', 'grown') 4
('not', 'be') 4
('down', 'down') 4
('copyright', 'holder') 4
('you', 'never') 4
('the', 'phrase') 4
('been', 'changed') 4
('you', 'come') 4
('thing', 'as') 4
('up', 'at') 3
('thought', 'poor') 3
('and', 'make') 3
('the', 'bottle') 3
('me', 'to') 3
('d', 'rather') 3
('none', 'of') 3
('of', 'mine') 3
('they', 'began') 3
('or', 'twice') 3
('thank', 'you') 3
('her', 'very') 3
('paragraphs', '1') 3
('are', 'not') 3
('s', 'hardly') 3
('foundation', 'and') 3
('a', 'table') 3
('and', 'their') 3
('some', 'more') 3
('a', 'pair') 3
('and', 'ran') 3
('in', 'its') 3
('know', 'and') 3
('window', 'and') 3
('go', 'down') 3
('any', 'one') 3
('voice', 'to') 3
('quite', 'forgetting') 3
('eat', 'or') 3
('and', 'making') 3
('took', 'up') 3
('have', 'done') 3
('garden', 'and') 3
('take', 'the') 3
('and', 'both') 3
('sorts', 'of') 3
('derivative', 'works') 3
('and', 'sometimes') 3
('close', 'behind') 3
('be', 'found') 3
('the', 'public') 3
('why', 'said') 3
('about', 'this') 3
('him', 'to') 3
('not', 'join') 3
('time', 'there') 3
('there', 'is') 3
('not', 'much') 3
('the', 'youth') 3
('as', 'usual') 3
('t', 'quite') 3
('how', 'do') 3
('her', 'neck') 3
('exclaimed', 'alice') 3
('them', 'out') 3
('yes', 'said') 3
('she', 'took') 3
('yet', 'said') 3
('a', 'nice') 3
('she', 'kept') 3
('look', 'up') 3
('eat', 'bats') 3
('impatiently', 'and') 3
('if', 'a') 3
('was', 'coming') 3
('that', 'dormouse') 3
('alice', 'heard') 3
('as', 'set') 3
('no', 'doubt') 3
('why', 'there') 3
('o', 'mouse') 3
('o', 'clock') 3
('with', 'great') 3
('the', 'back') 3
('only', 'one') 3
('i', 'tell') 3
('little', 'way') 3
('of', 'meaning') 3
('in', 'with') 3
('to', 'write') 3
('very', 'uncomfortable') 3
('if', 'an') 3
('moment', 'to') 3
('the', 'young') 3
('the', 'trademark') 3
('a', 'fee') 3
('great', 'deal') 3
('again', 'in') 3
('thing', 'was') 3
('domain', 'in') 3
('the', 'floor') 3
('makes', 'them') 3
('be', 'like') 3
('dead', 'silence') 3
('she', 'stood') 3
('made', 'of') 3
('to', 'sea') 3
('and', 'shoes') 3
('knew', 'the') 3
('looked', 'anxiously') 3
('might', 'just') 3
('ll', 'tell') 3
('of', 'all') 3
('are', 'they') 3
('her', 'knowledge') 3
('silent', 'and') 3
('be', 'in') 3
('little', 'timidly') 3
('hurry', 'to') 3
('much', 'the') 3
('hookah', 'out') 3
('head', 'to') 3
('noticed', 'that') 3
('turtle', 'and') 3
('her', 'flamingo') 3
('you', 'you') 3
('one', 'foot') 3
('get', 'into') 3
('shriek', 'and') 3
('it', 'wasn') 3
('tried', 'the') 3
('in', 'your') 3
('he', 'can') 3
('and', 'now') 3
('tea', 'the') 3
('middle', 'of') 3
('him', 'the') 3
('call', 'the') 3
('s', 'argument') 3
('as', 'follows') 3
('it', 'very') 3
('permission', 'of') 3
('great', 'curiosity') 3
('t', 'much') 3
('so', 'i') 3
('it', 'makes') 3
('as', 'hard') 3
('it', 'can') 3
('even', 'if') 3
('heard', 'it') 3
('about', 'a') 3
('when', 'suddenly') 3
('its', 'arms') 3
('said', 'a') 3
('to', 'open') 3
('because', 'he') 3
('began', 'again') 3
('against', 'the') 3
('in', 'livery') 3
('e', '9') 3
('whole', 'party') 3
('everything', 'that') 3
('it', 'it') 3
('just', 'in') 3
('nothing', 'else') 3
('once', 'or') 3
('her', 'as') 3
('the', 'players') 3
('it', 'does') 3
('in', 'writing') 3
('they', 'both') 3
('gryphon', 'i') 3
('more', 'to') 3
('the', 'glass') 3
('spoke', 'and') 3
('or', 'limitation') 3
('do', 'that') 3
('young', 'lady') 3
('as', 'all') 3
('if', 'the') 3
('well', 'enough') 3
('but', 'what') 3
('was', 'i') 3
('by', 'a') 3
('a', 'caucus-race') 3
('over', 'to') 3
('to', 'explain') 3
('one', 'way') 3
('and', 'get') 3
('who', 'were') 3
('be', 'off') 3
('an', 'm') 3
('leave', 'the') 3
('the', 'cheshire') 3
('she', 'should') 3
('pigeon', 'but') 3
('say', 'this') 3
('he', 'added') 3
('these', 'words') 3
('"', 'how') 3
('pattering', 'of') 3
('that', 'day') 3
('oop', 'of') 3
('last', 'and') 3
('but', 'you') 3
('well', 'perhaps') 3
('on', 'to') 3
('i', 'ever') 3
('that', '"i') 3
('the', 'list') 3
('only', 'wish') 3
('refund', 'of') 3
('you', 'go') 3
('all', 'my') 3
('still', 'it') 3
('turtle', 'in') 3
('begins', 'with') 3
('well', 'it') 3
('must', 'go') 3
('crowded', 'round') 3
('did', 'it') 3
('to', 'your') 3
('gave', 'her') 3
('the', 'works') 3
('i', 'dare') 3
('had', 'the') 3
('fallen', 'into') 3
('their', 'tails') 3
('time', 'the') 3
('all', 'crowded') 3
('said', 'that') 3
('a', 'day') 3
('me', 'grow') 3
('she', 'saw') 3
('m', 'mad') 3
('be', 'quite') 3
('than', 'that') 3
('put', 'down') 3
('your', 'tongue') 3
('can', 'find') 3
('a', 'book') 3
('we', 'went') 3
('was', 'out') 3
('stood', 'near') 3
('and', 'gloves') 3
('she', 'll') 3
('lying', 'on') 3
('glass', 'table') 3
('little', 'of') 3
('alice', 'again') 3
('him', 'tortoise') 3
('bit', 'of') 3
('s', 'always') 3
('do', 'so') 3
('listen', 'to') 3
('certainly', 'said') 3
('nothing', 'of') 3
('just', 'begun') 3
('alice', 'indignantly') 3
('to', 'take') 3
('everything', 'is') 3
('s', 'right') 3
('rather', 'a') 3
('rabbit', 'with') 3
('the', 'laws') 3
('hard', 'as') 3
('all', 'of') 3
('majesty', 'the') 3
('was', 'at') 3
('breath', 'and') 3
('mad', 'you') 3
('to', 'himself') 3
('took', 'a') 3
('very', 'good') 3
('head', 'impatiently') 3
('back', 'the') 3
('i', 'shan') 3
('felt', 'very') 3
('time', 'as') 3
('over', 'with') 3
('pointing', 'to') 3
('ve', 'no') 3
('nothing', 'to') 3
('good', 'opportunity') 3
('the', 'tarts') 3
('s', 'not') 3
('and', 'tried') 3
('one', 'hand') 3
('decidedly', 'and') 3
('the', 'room') 3
('how', 'is') 3
('to', 'happen') 3
('little', 'girls') 3
('replied', 'rather') 3
('the', 'owl') 3
('chance', 'of') 3
('so', 'he') 3
('of', 'one') 3
('very', 'well') 3
('an', 'arm') 3
('an', 'individual') 3
('happen', 'next') 3
('old', 'said') 3
('nonsense', 'said') 3
('very', 'tired') 3
('to', 'project') 3
('till', 'the') 3
('turtle', 'went') 3
('were', 'trying') 3
('with', 'such') 3
('afraid', 'of') 3
('i', 'almost') 3
('can', 'you') 3
('this', 'so') 3
('put', 'the') 3
('the', 'number') 3
('seen', 'a') 3
('the', 'stick') 3
('u', 's') 3
('seen', 'them') 3
('two', 'she') 3
('came', 'the') 3
('she', 'turned') 3
('you', 'paid') 3
('hatter', 'was') 3
('i', 'believe') 3
('but', 'on') 3
('the', 'two') 3
('help', 'it') 3
('to', 'sing') 3
('fee', 'for') 3
('turtle', 'replied') 3
('t', 'get') 3
('into', 'alice') 3
('right', 'said') 3
('she', 'swam') 3
('sure', 'she') 3
('it', 'off') 3
('three', 'of') 3
('go', 'round') 3
('gryphon', 'went') 3
('it', 'they') 3
('laws', 'of') 3
('they', 'live') 3
('no', 'said') 3
('up', 'by') 3
('see', 'as') 3
('sides', 'of') 3
('getting', 'so') 3
('looking', 'anxiously') 3
('was', 'getting') 3
('a', 'cat') 3
('pack', 'of') 3
('just', 'now') 3
('not', 'would') 3
('like', 'cats') 3
('then', 'alice') 3
('give', 'your') 3
('distance', 'and') 3
('then', 'a') 3
('as', 'that') 3
('went', 'in') 3
('of', 'electronic') 3
('the', 'answer') 3
('well', 'the') 3
('little', 'pattering') 3
('agreement', 'you') 3
('after', 'her') 3
('my', 'tea') 3
('just', 'at') 3
('found', 'at') 3
('a', 'number') 3
('means', 'of') 3
('knave', 'of') 3
('on', 'i') 3
('and', 'no') 3
('little', 'alice') 3
('i', 'say') 3
('hatter', 'he') 3
('ve', 'had') 3
('as', 'far') 3
('four', 'times') 3
('majesty', 'he') 3
('unless', 'you') 3
('or', 'three') 3
('sure', 'it') 3
('in', 'wonderland') 3
('it', 'went') 3
('but', 'if') 3
('little', 'girl') 3
('now', 'the') 3
('say', 'to') 3
('and', 'down') 3
('wish', 'they') 3
('into', 'it') 3
('and', 'put') 3
('stick', 'and') 3
('e', '7') 3
('officers', 'of') 3
('alice', 'well') 3
('said', 'five') 3
('repeat', 'it') 3
('but', 'alas') 3
('to', 'repeat') 3
('needn', 't') 3
('one', 'eye') 3
('do', 'cats') 3
('half', 'hoping') 3
('i', 'will') 3
('duchess', 'said') 3
('for', 'instance') 3
('much', 'as') 3
('on', 'again') 3
('a', 'poor') 3
('its', 'face') 3
('obliged', 'to') 3
('to', 'provide') 3
('to', 'him') 3
('got', 'into') 3
('them', 'all') 3
('these', 'were') 3
('screamed', 'the') 3
('behind', 'it') 3
('little', 'house') 3
('ll', 'never') 3
('replacement', 'or') 3
('but', 'her') 3
('been', 'to') 3
('all', 'sorts') 3
('http', '//www') 3
('else', 'to') 3
('because', 'they') 3
('you', 'she') 3
('this', 'electronic') 3
('down', 'with') 3
('ll', 'try') 3
('a', 'pity') 3
('the', 'procession') 3
('they', 'must') 3
('the', 'conversation') 3
('and', 'up') 3
('begun', 'to') 3
('let', 'the') 3
('baby', 'the') 3
('into', 'that') 3
('the', 'panther') 3
('forgotten', 'the') 3
('suppose', 'it') 3
('its', 'feet') 3
('one', 'but') 3
('ran', 'off') 3
('fast', 'asleep') 3
('more', 'and') 3
('no', 'sort') 3
('you', 'provide') 3
('just', 'then') 3
('argument', 'was') 3
('for', 'fear') 3
('course', 'the') 3
('would', 'happen') 3
('seemed', 'quite') 3
('not', 'gone') 3
('talking', 'to') 3
('would', 'change') 3
('and', 'perhaps') 3
('feel', 'very') 3
('grow', 'up') 3
('if', 'any') 3
('why', 'did') 3
('or', 'so') 3
('we', 'do') 3
('they', 'got') 3
('way', 'and') 3
('do', 'next') 3
('they', 'couldn') 3
('i', 'shouldn') 3
('mouse', 'was') 3
('t', 'take') 3
('her', 'i') 3
('poor', 'man') 3
('any', 'of') 3
('and', 'with') 3
('ve', 'been') 3
('are', 'a') 3
('for', 'i') 3
('because', 'i') 3
('which', 'seemed') 3
('the', 'e') 3
('not', 'remember') 3
('a', 'conversation') 3
('know', 'but') 3
('cat', 'said') 3
('the', 'fire') 3
('hatter', 'went') 3
('caterpillar', 'alice') 3
('was', 'exactly') 3
('how', 'am') 3
('duchess', 's') 3
('t', 'explain') 3
('could', 'hear') 3
('hatter', 'it') 3
('back', 'in') 3
('she', 'very') 3
('call', 'it') 3
('course', 'you') 3
('the', 'edge') 3
('her', 'way') 3
('dare', 'say') 3
('and', 'round') 3
('to', 'feel') 3
('quite', 'as') 3
('you', 'manage') 3
('broken', 'glass') 3
('soon', 'found') 3
('down', 'in') 3
('to', 'try') 3
('this', 'is') 3
('me', 'that') 3
('you', 'ever') 3
('find', 'a') 3
('or', 'entity') 3
('a', 'lobster') 3
('they', 'saw') 3
('off', 'a') 3
('question', 'is') 3
('along', 'the') 3
('side', 'and') 3
('and', 'some') 3
('me', 'like') 3
('why', 'she') 3
('slates', 'and') 3
('your', 'evidence') 3
('t', 'understand') 3
('a', 'pig') 3
('posted', 'with') 3
('she', 'noticed') 3
('the', 'verses') 3
('i', 'mean') 3
('trial', 's') 3
('a', 'trembling') 3
('down', 'his') 3
('doth', 'the') 3
('shook', 'his') 3
('off', 'her') 3
('out', 'at') 3
('same', 'as') 3
('to', 'turn') 3
('state', 'of') 3
('wonder', 'if') 3
('over', 'their') 3
('me', 'for') 3
('and', 'her') 3
('what', 'sort') 3
('of', 'replacement') 3
('they', 'don') 3
('off', 'at') 3
('done', 'with') 3
('owner', 'of') 3
('game', 'the') 3
('came', 'a') 3
('high', 'and') 3
('mushroom', 'and') 3
('you', 'received') 3
('said', 'with') 3
('settled', 'down') 3
('not', 'agree') 3
('he', 'came') 3
('under', 'this') 3
('if', 'there') 3
('queen', 'in') 3
('and', 'donations') 3
('or', 'distributing') 3
('and', 'here') 3
('we', 'were') 3
('to', 'school') 3
('hold', 'your') 3
('the', 'well') 3
('asked', 'the') 3
('the', 'day') 3
('now', 'thought') 3
('or', 'drink') 3
('as', 'an') 3
('to', 'donate') 3
('her', 'one') 3
('foundation', 's') 3
('and', 'waited') 3
('work', 'you') 3
('i', 'heard') 3
('caterpillar', 'and') 3
('was', 'more') 3
('and', 'behind') 3
('said', 'turning') 3
('surprised', 'to') 3
('so', 'far') 3
('were', 'the') 3
('as', '"i') 3
('be', 'beheaded') 3
('alice', 'waited') 3
('he', 'taught') 3
('you', 'want') 3
('the', 'matter') 3
('their', 'mouths') 3
('mean', 'what') 3
('together', 'alice') 3
('the', 'creatures') 3
('herself', 'how') 3
('he', 'looked') 3
('was', 'certainly') 3
('on', 'then') 3
('go', 'back') 3
('thought', 'that') 3
('to', 'give') 3
('succeeded', 'in') 3
('make', 'one') 3
('and', 'your') 3
('but', 'when') 3
('on', 'you') 3
('jury', 'all') 3
('but', 'to') 3
('they', 'are') 3
('time', 'with') 3
('and', 'we') 3
('in', 'one') 3
('shall', 'i') 3
('you', 'executed') 3
('his', 'nose') 3
('venture', 'to') 3
('was', 'talking') 3
('found', 'that') 3
('them', 'in') 3
('a', 'grin') 3
('off', 'to') 3
('here', 'i') 3
('so', 'long') 3
('"', 'and') 3
('very', 'carefully') 3
('complying', 'with') 3
('and', 'washing') 3
('my', 'youth') 3
('and', 'more') 3
('any', 'project') 3
('alice', 'asked') 3
('door', 'she') 3
('do', 'alice') 3
('one', 'said') 3
('from', 'him') 3
('and', 'don') 3
('a', 'sigh') 3
('of', 'life') 3
('all', 'he') 3
('free', 'distribution') 3
('hatter', 'you') 3
('charge', 'a') 3
('boots', 'and') 3
('received', 'the') 3
('had', 'finished') 3
('treacle', 'said') 3
('first', 'witness') 3
('feeling', 'very') 3
('and', 'made') 3
('of', 'anything') 3
('alice', 'rather') 3
('is', 'posted') 3
('in', 'silence') 3
('which', 'you') 3
('up', 'like') 3
('what', 'she') 3
('out', 'what') 3
('no', 'no') 3
('again', 'so') 3
('in', 'sight') 3
('and', 'seemed') 3
('ll', 'get') 3
('reason', 'is') 3
('fond', 'of') 3
('and', 'walked') 3
('so', 'and') 3
('sleepy', 'and') 3
('e', 'e') 3
('felt', 'quite') 3
('half', 'to') 3
('ever', 'saw') 3
('way', 'out') 3
('e', 'evening') 3
('gutenberg', 'org') 3
('the', 'jurors') 3
('could', 'the') 3
('come', 'and') 3
('it', 'turned') 3
('the', 'owner') 3
('had', 'happened') 3
('face', 'and') 3
('knew', 'that') 3
('her', 'she') 3
('of', 'use') 3
('very', 'likely') 3
('and', 'saying') 3
('upon', 'it') 3
('herself', 'up') 3
('puzzled', 'her') 3
('however', 'it') 3
('person', 'or') 3
('of', 'me') 3
('once', 'and') 3
('room', 'for') 3
('by', 'his') 3
('have', 'got') 3
('a', 'bright') 3
('cats', 'eat') 3
('had', 'come') 3
('at', 'one') 3
('but', 'there') 3
('queen', 'had') 3
('as', 'this') 3
('the', 'bank') 3
('m', 'glad') 3
('drink', 'me') 3
('said', 'it') 3
('eyes', 'were') 3
('so', 'often') 3
('days', 'of') 3
('the', 'thing') 3
('right', 'to') 3
('from', 'this') 3
('half', 'of') 3
('of', 'cards') 3
('this', 'a') 3
('to', 'said') 3
('of', 'being') 3
('to', 'or') 3
('old', 'father') 3
('last', 'remark') 3
('the', 'prisoner') 2
('and', 'help') 2
('next', 'to') 2
('with', 'tears') 2
('from', 'a') 2
('the', 'shriek') 2
('again', 'alice') 2
('it', 'were') 2
('either', 'the') 2
('called', 'after') 2
('only', 'the') 2
('found', 'in') 2
('beautiful', 'beautiful') 2
('of', 'broken') 2
('new', 'ebooks') 2
('cut', 'off') 2
('verdict', 'the') 2
('nothing', 'whatever') 2
('say', 'i') 2
('re', 'all') 2
('and', 'morcar') 2
('over', 'at') 2
('shall', 'sit') 2
('new', 'idea') 2
('time', 'you') 2
('without', 'attending') 2
('never', 'was') 2
('certainly', 'too') 2
('think', 'me') 2
('an', 'invitation') 2
('serpent', 'i') 2
('has', 'won') 2
('a', 'letter') 2
('work', 'electronically') 2
('in', 'particular') 2
('tail', 'when') 2
('sat', 'still') 2
('they', 'sat') 2
('best', 'way') 2
('copy', 'of') 2
('anxiously', 'round') 2
('shoulder', 'as') 2
('front', 'of') 2
('make', 'the') 2
('a', 'defect') 2
('croquet', 'the') 2
('of', 'delight') 2
('so', 'suddenly') 2
('own', 'business') 2
('near', 'her') 2
('over', 'his') 2
('know', 'all') 2
('the', 'sentence') 2
('get', 'through') 2
('ah', 'that') 2
('pool', 'of') 2
('a', 'dog') 2
('them', 'at') 2
('rabbit', 'in') 2
('herself', 'now') 2
('come', 'there') 2
('he', 'got') 2
('quite', 'out') 2
('last', 'few') 2
('we', 'cannot') 2
('were', 'looking') 2
('i', 'ought') 2
('on', 'your') 2
('may', 'it') 2
('look', 'like') 2
('listen', 'the') 2
('t', 'look') 2
('about', 'four') 2
('ever', 'see') 2
('began', 'you') 2
('this', 'but') 2
('t', 'give') 2
('i', 'thought') 2
('three', 'inches') 2
('rabbit', 'read') 2
('air', 'and') 2
('rabbit', 'was') 2
('long', 'time') 2
('her', 'then') 2
('except', 'the') 2
('but', 'said') 2
('we', 'have') 2
('the', 'shore') 2
('idea', 'came') 2
('the', 'paper') 2
('it', 'didn') 2
('and', 'half') 2
('his', 'teacup') 2
('see', 'miss') 2
('anything', 'that') 2
('does', 'not') 2
('use', 'now') 2
('of', 'such') 2
('here', 'alice') 2
('associated', 'in') 2
('they', 'lay') 2
('be', 'ashamed') 2
('i', 'want') 2
('still', 'in') 2
('time', 'without') 2
('belongs', 'to') 2
('what', 'for') 2
('t', 'let') 2
('and', 'expenses') 2
('at', 'me') 2
('deal', 'frightened') 2
('this', 'fit') 2
('i', 'get') 2
('marked', 'poison') 2
('of', 'breath') 2
('a', 'rabbit') 2
('turtle', 'but') 2
('paid', 'for') 2
('gave', 'him') 2
('three', 'little') 2
('that', 'by') 2
('otherwise', 'than') 2
('displaying', 'performing') 2
('appeared', 'and') 2
('paws', 'and') 2
('by', 'all') 2
('"', 'alice') 2
('t', 'even') 2
('mouths', 'so') 2
('talk', 'nonsense') 2
('little', 'startled') 2
('considered', 'a') 2
('not', 'think') 2
('thing', 'she') 2
('"', 'only') 2
('sounds', 'of') 2
('protect', 'the') 2
('he', 'won') 2
('we', 'won') 2
('upon', 'their') 2
('to', 'his') 2
('alice', 'soon') 2
('or', 'the') 2
('her', 'pocket') 2
('sad', 'and') 2
('lieu', 'of') 2
('it', 'for') 2
('it', 'which') 2
('all', 'day') 2
('shaped', 'like') 2
('plenty', 'of') 2
('"', 'here') 2
('with', 'no') 2
('the', 'evening') 2
('and', 'take') 2
('status', 'of') 2
('sigh', 'i') 2
('the', 'hedge') 2
('gryphon', 'it') 2
('sat', 'silent') 2
('now', 'she') 2
('and', 'who') 2
('limited', 'to') 2
('tis', 'the') 2
('went', 'alice') 2
('last', 'came') 2
('you', 'grow') 2
('the', 'fish-footman') 2
('clock', 'in') 2
('not', 'so') 2
('soldiers', 'were') 2
('a', 'deal') 2
('she', 'remarked') 2
('dodo', 'solemnly') 2
('school', 'in') 2
('could', 'remember') 2
('capital', 'of') 2
('things', 'alice') 2
('catch', 'a') 2
('nearly', 'as') 2
('of', 'feet') 2
('but', 'perhaps') 2
('the', 'law') 2
('of', 'yourself') 2
('it', 'goes') 2
('d', 'only') 2
('bright', 'idea') 2
('had', 'read') 2
('nowhere', 'to') 2
('call', 'him') 2
('alice', 'guessed') 2
('for', 'them') 2
('see', 'her') 2
('the', 'fact') 2
('last', 'word') 2
('very', 'few') 2
('a', 'smile') 2
('now', 'only') 2
('give', 'you') 2
('began', 'by') 2
('know', 'about') 2
('them', 'so') 2
('got', 'back') 2
('other', 'the') 2
('heard', 'her') 2
('agreement', 'and') 2
('and', 'held') 2
('exactly', 'so') 2
('his', 'father') 2
('merely', 'remarking') 2
('down', 'stairs') 2
('turn', 'them') 2
('cat', 's') 2
('enough', 'of') 2
('king', 'that') 2
('followed', 'him') 2
('alice', 'whispered') 2
('next', 'thing') 2
('children', 'she') 2
('the', 'boots') 2
('down', 'from') 2
('repeated', 'in') 2
('of', 'execution') 2
('very', 'difficult') 2
('can', 'i') 2
('hour', 'or') 2
('s', 'laws') 2
('a', 'time') 2
('a', 'treacle-well') 2
('any', 'way') 2
('tis', 'love') 2
('in', 'compliance') 2
('away', 'the') 2
('an', 'angry') 2
('pig', 'and') 2
('did', 'the') 2
('wrote', 'down') 2
('bill', 'the') 2
('tone', 'why') 2
('the', 'english') 2
('up', 'this') 2
('editions', 'will') 2
('the', 'grass') 2
('time', 'he') 2
('large', 'eyes') 2
('she', 'drew') 2
('something', 'like') 2
('it', 'be') 2
('should', 'say') 2
('including', 'legal') 2
('she', 'opened') 2
('deep', 'voice') 2
('perhaps', 'you') 2
('of', 'way') 2
('before', 'but') 2
('day', 'said') 2
('legal', 'fees') 2
('registered', 'trademark') 2
('follows', 'the') 2
('way', 'with') 2
('tones', 'of') 2
('slowly', 'back') 2
('was', 'silent') 2
('your', 'shoes') 2
('herself', 'the') 2
('you', 'i') 2
('this', 'the') 2
('it', 'pleaded') 2
('long', 'and') 2
('a', 'white') 2
('a', 'loud') 2
('cats', 'if') 2
('with', 'paragraph') 2
('told', 'you') 2
('dormouse', 'not') 2
('my', 'own') 2
('a', 'constant') 2
('t', 'suit') 2
('sea', 'i') 2
('each', 'other') 2
('moment', 'the') 2
('little', 'scream') 2
('know', 'alice') 2
('could', 'think') 2
('in', 'section') 2
('the', 'guinea-pigs') 2
('his', 'spectacles') 2
('into', 'his') 2
('not', 'that') 2
('refund', 'if') 2
('a', 'piece') 2
('t', 'mind') 2
('his', 'shoes') 2
('i', 'i') 2
('sentence', 'of') 2
('he', 'might') 2
('generally', 'a') 2
('lessons', 'in') 2
('no', 'business') 2
('a', 'bottle') 2
('soon', 'came') 2
('well', 'go') 2
('say', 'anything') 2
('all', 'three') 2
('waving', 'its') 2
('flamingoes', 'and') 2
('some', 'way') 2
('there', 'they') 2
('give', 'it') 2
('one', 'they') 2
('stay', 'down') 2
('witness', 'said') 2
('a', 'fan') 2
('to', 'cry') 2
('out', 'loud') 2
('fine', 'day') 2
('where', 'you') 2
('what', 'else') 2
('could', 'do') 2
('talk', 'said') 2
('this', 'very') 2
('turned', 'out') 2
('two', 'people') 2
('makes', 'me') 2
('very', 'civil') 2
('little', 'bottle') 2
('itself', 'then') 2
('little', 'bill') 2
('of', 'which') 2
('he', 'began') 2
('us', 'with') 2
('contact', 'information') 2
('t', 'seem') 2
('herself', 'at') 2
('to', 'protect') 2
('feet', 'i') 2
('morning', 'i') 2
('knee', 'and') 2
('anything', 'but') 2
('she', 'appeared') 2
('to', 'rest') 2
('was', 'walking') 2
('his', 'shoulder') 2
('as', 'for') 2
('man', 'your') 2
('www', 'gutenberg') 2
('you', 'my') 2
('for', 'two') 2
('came', 'into') 2
('added', 'to') 2
('way', 'through') 2
('anything', 'to') 2
('watch', 'out') 2
('next', 'the') 2
('it', 'began') 2
('turtle', 's') 2
('among', 'them') 2
('down', 'i') 2
('work', 'associated') 2
('capital', 'one') 2
('sulky', 'tone') 2
('all', 'however') 2
('thing', 'and') 2
('it', 'or') 2
('or', 'providing') 2
('s', 'so') 2
('be', 'raving') 2
('jumping', 'up') 2
('spread', 'out') 2
('uncomfortable', 'the') 2
('children', 'and') 2
('but', 'now') 2
('them', 'up') 2
('very', 'deep') 2
('gutenberg', 'license') 2
('with', 'large') 2
('a', 'word') 2
('row', 'of') 2
('i', 'give') 2
('civil', 'of') 2
('easy', 'to') 2
('sudden', 'change') 2
('it', 'say') 2
('was', 'speaking') 2
('just', 'been') 2
('why', 'you') 2
('soon', 'made') 2
('works', 'based') 2
('ve', 'heard') 2
('found', 'she') 2
('arms', 'and') 2
('them', 'to') 2
('to', 'watch') 2
('but', 'very') 2
('and', 'growing') 2
('either', 'you') 2
('or', 'destroy') 2
('a', 'hoarse') 2
('hall', 'and') 2
('ascii"', 'or') 2
('[later', 'editions') 2
('not', 'in') 2
('say', '"how') 2
('think', 'said') 2
('suppose', 'so') 2
('any', 'money') 2
('mile', 'high') 2
('for', 'all') 2
('all', 'these') 2
('till', 'i') 2
('would', 'become') 2
('never', 'been') 2
('trademark', 'and') 2
('because', 'of') 2
('brightened', 'up') 2
('dinah', 'i') 2
('how', 'queer') 2
('warranties', 'of') 2
('soup', 'of') 2
('kept', 'on') 2
('gryphon', 'the') 2
('it', 'ought') 2
('grown', 'up') 2
('this', 'way') 2
('they', 'can') 2
('shouting', 'off') 2
('manage', 'it') 2
('one', 'knee') 2
('leaves', 'that') 2
('be', 'two') 2
('she', 'ought') 2
('and', 'feet') 2
('coming', 'to') 2
('me', 'out') 2
('that', 'well') 2
('itself', 'up') 2
('believe', 'it') 2
('what', '"it"') 2
('it', 'may') 2
('we', 've') 2
('says', 'it') 2
('suppressed', 'by') 2
('a', 'fish') 2
('it', 'means') 2
('size', 'why') 2
('the', 'experiment') 2
('continued', 'as') 2
('come', 'let') 2
('know', 'who') 2
('deny', 'it') 2
('thing', 'is') 2
('say', 'added') 2
('secondly', 'because') 2
('that', 'begins') 2
('tone', 'he') 2
('gryphon', 'said') 2
('are', 'in') 2
('shriek', 'of') 2
('no', 'chance') 2
('are', 'located') 2
('away', 'you') 2
('get', 'up') 2
('destroy', 'all') 2
('good', 'many') 2
('alice', 'only') 2
('expenses', 'including') 2
('older', 'than') 2
('this', 'before') 2
('who', 'felt') 2
('exempt', 'status') 2
('checked', 'herself') 2
('come', 'that') 2
('the', 'following') 2
('nearer', 'to') 2
('duchess', 'the') 2
('upon', 'its') 2
('it', 'spoke') 2
('shrinking', 'rapidly') 2
('word', 'but') 2
('rather', 'not') 2
('where', 'we') 2
('here', 'that') 2
('remark', 'it') 2
('twenty-four', 'hours') 2
('mine', 'the') 2
('less', 'than') 2
('pigeon', 'i') 2
('and', 'bread-and-butter') 2
('s', 'to') 2
('a', 'footman') 2
('head', 'down') 2
('way', 'so') 2
('learning', 'to') 2
('is', 'said') 2
('who', 'cares') 2
('this', 'bottle') 2
('mercia', 'and') 2
('little', 'sister') 2
('i', 'hope') 2
('great', 'many') 2
('tails', 'in') 2
('morcar', 'the') 2
('got', 'no') 2
('bowed', 'low') 2
('looked', 'very') 2
('alice', 'what') 2
('little', 'use') 2
('to', 'bring') 2
('had', 'quite') 2
('a', 'song') 2
('a', 'right') 2
('least', 'i') 2
('this', 'i') 2
('you', 'make') 2
('because', 'the') 2
('and', 'called') 2
('they', 'used') 2
('for', 'copies') 2
('looking', 'up') 2
('well', 'to') 2
('the', 'bread-and-butter') 2
('subject', 'of') 2
('round', 'i') 2
('my', 'head') 2
('where', 'she') 2
('rabbit', 'say') 2
('course', 'it') 2
('notion', 'how') 2
('copyright', 'in') 2
('head', 'or') 2
('nearly', 'forgotten') 2
('to', 'stay') 2
('head', 'off') 2
('footman', 'and') 2
('and', 'repeat') 2
('things', 'when') 2
('was', 'pressed') 2
('creating', 'derivative') 2
('silence', 'alice') 2
('mouse', 'did') 2
('bowed', 'and') 2
('know', 'come') 2
('two', 'creatures') 2
('for', 'bringing') 2
('fetch', 'it') 2
('with', 'another') 2
('bill', 'i') 2
('answer', 'so') 2
('making', 'such') 2
('s', 'shoulder') 2
('in', 'hand') 2
('both', 'the') 2
('all', 'she') 2
('could', 'have') 2
('how', 'did') 2
('a', 'candle') 2
('this', 'license') 2
('tail', 'and') 2
('out', 'in') 2
('hit', 'her') 2
('very', 'short') 2
('moved', 'on') 2
('queen', 'the') 2
('very', 'queer') 2
('oh', 'there') 2
('royal', 'children') 2
('nice', 'little') 2
('last', 'it') 2
('not', 'limited') 2
('nothing', 'more') 2
('the', 'pepper') 2
('any', 'work') 2
('gryphon', 'replied') 2
('before', 'it') 2
('thought', 'this') 2
('she', 'd') 2
('figure', 'said') 2
('pennyworth', 'only') 2
('pocket', 'and') 2
('a', 'sulky') 2
('tree', 'in') 2
('she', 'carried') 2
('told', 'me') 2
('//www', 'gutenberg') 2
('agreement', 'shall') 2
('hatter', 'said') 2
('she', 'picked') 2
('when', 'a') 2
('and', 'say') 2
('having', 'seen') 2
('d', 'nearly') 2
('change', 'to') 2
('f', '1') 2
('in', 'front') 2
('on', 'that') 2
('with', 'said') 2
('queen', 'never') 2
('ll', 'do') 2
('now', 'what') 2
('could', 'go') 2
('first', 'was') 2
('there', 'must') 2
('had', 'taken') 2
('might', 'be') 2
('a', 'real') 2
('the', 'opportunity') 2
('not', 'get') 2
('once', 'she') 2
('again', 'said') 2
('so', 'it') 2
('was', 'soon') 2
('perhaps', 'not') 2
('rabbit', 'and') 2
('gardeners', 'who') 2
('all', 'came') 2
('gutenberg-tm', 'concept') 2
('come', 'here') 2
('it', 'please') 2
('words', 'drink') 2
('up', 'on') 2
('and', 'once') 2
('and', 'two') 2
('play', 'with') 2
('waiting', 'for') 2
('long', 'ago') 2
('a', 'row') 2
('dreadfully', 'puzzled') 2
('to', 'fix') 2
('and', 'even') 2
('about', 'project') 2
('hear', 'you') 2
('said', 'as') 2
('of', 'certain') 2
('your', 'hair') 2
('hare', 'interrupted') 2
('difficulty', 'was') 2
('disclaimer', 'or') 2
('yes', 'but') 2
('his', 'face') 2
('she', 'decided') 2
('and', 'distributed') 2
('table', 'but') 2
('a', 'sorrowful') 2
('gutenberg-tm', 'ebooks') 2
('for', 'really') 2
('work', 'on') 2
('to', 'carry') 2
('next', 'verse') 2
('earls', 'of') 2
('a', 'whisper') 2
('a', 'duck') 2
('whole', 'pack') 2
('croquet', 'with') 2
('day', 'to') 2
('court', 'and') 2
('a', 'general') 2
('she', 'jumped') 2
('change', 'but') 2
('makes', 'the') 2
('it', 'quite') 2
('at', 'everything') 2
('//pglaf', 'org') 2
('the', 'fall') 2
('very', 'long') 2
('to', 'fancy') 2
('she', 'wanted') 2
('a', 'week') 2
('you', 'should') 2
('written', 'explanation') 2
('things', 'i') 2
('passed', 'by') 2
('me', 'at') 2
('very', 'angrily') 2
('were', 'nowhere') 2
('501', 'c') 2
('duchess', 'i') 2
('of', 'hers') 2
('and', 'an') 2
('i', 'eat') 2
('put', 'a') 2
('his', 'history') 2
('away', 'from') 2
('just', 'beginning') 2
('boy', 'and') 2
('such', 'long') 2
('foundation', 'is') 2
('was', 'lying') 2
('intellectual', 'property') 2
('on', 'both') 2
('cat', 'in') 2
('and', 'came') 2
('a', 'porpoise') 2
('one', 'who') 2
('permitted', 'by') 2
('curious', 'to') 2
('must', 'comply') 2
('again', 'to') 2
('and', 'added') 2
('key', 'was') 2
('donations', 'are') 2
('or', 'off') 2
('yes', 'please') 2
('half-past', 'one') 2
('been', 'a') 2
('never', 'left') 2
('hair', 'that') 2
('well', 'then') 2
('re', 'doing') 2
('is', 'what') 2
('so', 'grave') 2
('a', 'sudden') 2
('sharp', 'little') 2
('led', 'into') 2
('certainly', 'was') 2
('then', 'and') 2
('a', 'cheshire') 2
('and', 'handed') 2
('her', 'eye') 2
('like', 'them') 2
('was', 'surprised') 2
('moment', 'alice') 2
('full', 'terms') 2
('so', 'large') 2
('"how', 'doth') 2
('up', 'but') 2
('under', 'her') 2
('you', 'didn') 2
('the', 'thimble') 2
('first', 'why') 2
('pepper', 'that') 2
('using', 'the') 2
('right', 'of') 2
('very', 'sleepy') 2
('whole', 'thing') 2
('and', 'by') 2
('for', 'eggs') 2
('met', 'in') 2
('anxiously', 'at') 2
('salt', 'water') 2
('in', 'some') 2
('with', 'alice') 2
('wind', 'and') 2
('glad', 'i') 2
('office', 'is') 2
('think', 'about') 2
('were', 'quite') 2
('much', 'of') 2
('all', 'a') 2
('d', 'take') 2
('and', 'vanished') 2
('one', 'the') 2
('physical', 'medium') 2
('you', 'shouldn') 2
('a', 'head') 2
('asleep', 'again') 2
('was', 'reading') 2
('sleepy', 'voice') 2
('dormouse', 'who') 2
('i', 'grow') 2
('have', 'some') 2
('interrupted', 'in') 2
('the', 'clock') 2
('this', 'alice') 2
('me', 'the') 2
('curious', 'thing') 2
('digging', 'for') 2
('thing', 'a') 2
('down', 'but') 2
('fee', 'or') 2
('located', 'at') 2
('much', 'surprised') 2
('or', 'online') 2
('could', 'if') 2
('sentence', 'first') 2
('behind', 'her') 2
('came', 'up') 2
('other', 'and') 2
('the', 'twinkling') 2
('case', 'with') 2
('generations', 'to') 2
('however', 'the') 2
('plates', 'and') 2
('and', 'shouting') 2
('m', 'on') 2
('gardeners', 'instantly') 2
('aloud', 'i') 2
('chorus', 'of') 2
('impossible', 'to') 2
('day', 'i') 2
('you', 'couldn') 2
('wandered', 'about') 2
('him', 'a') 2
('live', 'at') 2
('his', 'garden') 2
('them', 'as') 2
('"plain', 'vanilla') 2
('should', 'have') 2
('section', '3') 2
('yet', 'it') 2
('idea', 'to') 2
('never', 'even') 2
('called', 'him') 2
('and', 'have') 2
('limited', 'right') 2
('felt', 'sure') 2
('best', 'butter') 2
('for', 'such') 2
('at', 'a') 2
('no', 'mark') 2
('bread-and-butter', 'and') 2
('making', 'quite') 2
('then', 'followed') 2
('side', 'the') 2
('does', 'the') 2
('with', 'project') 2
('and', 'everybody') 2
('sorrowful', 'tone') 2
('looked', 'round') 2
('but', 'not') 2
('it', 'while') 2
('a', 'full') 2
('take', 'this') 2
('use', 'this') 2
('happens', 'when') 2
('half', 'an') 2
('were', 'saying') 2
('be', 'getting') 2
('day', 'and') 2
('all', 'talking') 2
('s', 'more') 2
('got', 'in') 2
('this', 'file') 2
('know', 'not') 2
('bottle', 'was') 2
('accordance', 'with') 2
('ve', 'often') 2
('this', 'it') 2
('never', 'do') 2
('they', 'lived') 2
('his', 'toes') 2
('without', 'waiting') 2
('oop', 'beau') 2
('or', 'conversations') 2
('on', 'so') 2
('behind', 'him') 2
('section', '4') 2
('her', 'great') 2
('moment', 'that') 2
('same', 'size') 2
('i', 'might') 2
('gutenberg"', 'is') 2
('that', 'all') 2
('turn', 'into') 2
('is', 'his') 2
('said', 'for') 2
('a', 'hatter') 2
('answer', 'to') 2
('minutes', 'the') 2
('speaking', 'to') 2
('side', 'to') 2
('have', 'their') 2
('is', 'located') 2
('he', 'sneezes') 2
('cautiously', 'replied') 2
('never', 'said') 2
('two', 'and') 2
('down', 'all') 2
('works', 'by') 2
('ask', 'it') 2
('any', 'particular') 2
('as', 'large') 2
('a', 'shrill') 2
('conclusion', 'that') 2
('active', 'links') 2
('she', 'repeated') 2
('first', 'thing') 2
('than', 'ever') 2
('dance', 'would') 2
('arm', 'that') 2
('managed', 'to') 2
('occurred', 'to') 2
('fetch', 'me') 2
('her', 'that') 2
('were', 'in') 2
('deeply', 'and') 2
('herself', 'down') 2
('position', 'in') 2
('one', 'alice') 2
('cool', 'fountains') 2
('old', 'crab') 2
('saw', 'the') 2
('came', 'different') 2
('what', 'latitude') 2
('he', 'says') 2
('began', 'thinking') 2
('the', 'book') 2
('him', 'i') 2
('see', 'anything') 2
('do', 'and') 2
('offended', 'you') 2
('for', 'catching') 2
('was', 'rather') 2
('cried', 'out') 2
('looked', 'so') 2
('below', '1') 2
('interrupted', 'the') 2
('the', 'long') 2
('or', 'she') 2
('upset', 'the') 2
('and', 'every') 2
('better', 'not') 2
('s', 'in') 2
('both', 'sides') 2
('from', 'being') 2
('all', 'liability') 2
('animals', 'and') 2
('lessons', 'the') 2
('afraid', 'that') 2
('soup', 'beau') 2
('fashion', 'and') 2
('close', 'by') 2
('hare', 'alice') 2
('with', 'and') 2
('tell', 'him') 2
('hare', 'and') 2
('to', 'prevent') 2
('i', 'quite') 2
('"', 'found') 2
('rabbit', 'came') 2
('will', 'do') 2
('the', 'eaglet') 2
('to', 'fly') 2
('oop', 'soo') 2
('the', 'bright') 2
('their', 'hands') 2
('queen', 'turned') 2
('read', 'out') 2
('meaning', 'of') 2
('all', 'directions') 2
('hunting', 'about') 2
('longed', 'to') 2
('not', 'venture') 2
('to', 'keep') 2
('was', 'obliged') 2
('it', 'into') 2
('the', 'judge') 2
('their', 'eyes') 2
('waited', 'patiently') 2
('little', 'glass') 2
('one', 'end') 2
('s', 'adventures') 2
('a', 'registered') 2
('him', 'when') 2
('but', 'why') 2
('the', 'unfortunate') 2
('there', 'ought') 2
('you', 'getting') 2
('it', 'saw') 2
('surprised', 'at') 2
('to', 'lie') 2
('obtain', 'permission') 2
('know', 'is') 2
('found', 'her') 2
('be', 'an') 2
('two', 'they') 2
('the', 'hedgehogs') 2
('passage', 'and') 2
('know', 'he') 2
('their', 'names') 2
('turned', 'pale') 2
('next', 'came') 2
('looking', 'down') 2
('out', 'you') 2
('mouse', 'who') 2
('little', 'chin') 2
('go', 'with') 2
('pardon', 'cried') 2
('snatch', 'in') 2
('youth', 'said') 2
('dear', 'cried') 2
('an', 'hour') 2
('they', 'liked') 2
('take', 'more') 2
('very', 'interesting') 2
('procession', 'came') 2
('give', 'the') 2
('is', 'very') 2
('to', 'set') 2
('immediately', 'suppressed') 2
('claws', 'and') 2
('a', 'while') 2
('this', 'here') 2
('"it"', 'means') 2
('all', 'in') 2
('added', 'as') 2
('again', 'as') 2
('across', 'the') 2
('large', 'as') 2
('be', 'of') 2
('begin', 'at') 2
('over', 'alice') 2
('s', 'nothing') 2
('a', 'trial') 2
('nine', 'feet') 2
('of', 'voices') 2
('t', 'one') 2
('know', 'she') 2
('kept', 'her') 2
('a', 'mile') 2
('said', 'no') 2
('itself', 'and') 2
('are', 'all') 2
('re', 'mad') 2
('was', 'bill') 2
('on', 'or') 2
('he', 'could') 2
('to', 'introduce') 2
('get', 'ready') 2
('only', 'difficulty') 2
('them', 'they') 2
('beat', 'him') 2
('of', 'white') 2
('get', 'dry') 2
('it', 'when') 2
('what', 'said') 2
('as', 'sure') 2
('an', 'excellent') 2
('even', 'know') 2
('be', 'afraid') 2
('whether', 'the') 2
('pigeon', 'had') 2
('king', 's') 2
('return', 'or') 2
('with', 'active') 2
('out', 'who') 2
('and', 'were') 2
('s', 'place') 2
('nibbling', 'at') 2
('any', 'purpose') 2
('instantly', 'and') 2
('silence', 'at') 2
('dormouse', 'and') 2
('and', 'distribution') 2
('could', 'get') 2
('got', 'its') 2
('editions', 'continued') 2
('the', 'capital') 2
('glad', 'they') 2
('first', 'but') 2
('might', 'do') 2
('all', 'looked') 2
('sneezing', 'and') 2
('we', 'must') 2
('two', 'or') 2
('seen', 'such') 2
('the', 'lefthand') 2
('taller', 'and') 2
('better', 'now') 2
('room', 'to') 2
('returned', 'from') 2
('individual', 'project') 2
('the', 'accident') 2
('that', 'lovely') 2
('question', 'and') 2
('it', 'too') 2
('giving', 'it') 2
('they', 'draw') 2
('hare', 'went') 2
('listening', 'so') 2
('the', 'medium') 2
('money', 'paid') 2
('distributing', 'project') 2
('dare', 'to') 2
('herself', 'hastily') 2
('whether', 'you') 2
('rush', 'at') 2
('anything', 'more') 2
('dinah', 'll') 2
('never', 'knew') 2
('without', 'being') 2
('first', 'question') 2
('blew', 'three') 2
('up', 'very') 2
('whispered', 'in') 2
('you', 'all') 2
('and', 'dishes') 2
('it', 'back') 2
('notice', 'this') 2
('on', '"') 2
('not', 'answer') 2
('"', 'i') 2
('grow', 'larger') 2
('"i', 'll') 2
('jurors', 'were') 2
('right', 'way') 2
('say', 'a') 2
('and', 'taking') 2
('not', 'swim') 2
('hold', 'it') 2
('door', 'so') 2
('a', 'dear') 2
('asking', 'riddles') 2
('rabbit', 'who') 2
('far', 'off') 2
('quadrille', 'the') 2
('any', 'part') 2
('are', 'said') 2
('you', 'for') 2
('must', 'cross-examine') 2
('she', 'couldn') 2
('hatter', 'with') 2
('of', 'receipt') 2
('off', 'after') 2
('off', 'from') 2
('grunted', 'again') 2
('dry', 'again') 2
('a', 'means') 2
('more', 'you') 2
('cook', 'was') 2
('three', 'blasts') 2
('it', 'seems') 2
('down', 'into') 2
('go', 'said') 2
('i', 'got') 2
('she', 'tucked') 2
('as', 'herself') 2
('again', 'no') 2
('well', 'what') 2
('dear', 'said') 2
('beautiful', 'garden') 2
('whiting', 'said') 2
('so', 'the') 2
('an', 'explanation') 2
('began', 'talking') 2
('lying', 'down') 2
('sir', 'said') 2
('the', 'arches') 2
('changed', 'for') 2
('the', 'state') 2
('window', 'sure') 2
('nervous', 'or') 2
('great', 'relief') 2
('always', 'ready') 2
('a', 'tiny') 2
('us', 'a') 2
('the', 'royal') 2
('s', 'it') 2
('be', 'freely') 2
('that', 'will') 2
('fun', 'said') 2
('size', 'to') 2
('flamingo', 'and') 2
('you', 'comply') 2
('through', '1') 2
('mouse', 'in') 2
('him', 'two') 2
('that', 'one') 2
('show', 'you') 2
('an', 'encouraging') 2
('filled', 'with') 2
('you', 'please') 2
('an', 'undertone') 2
('that', 'no') 2
('much', 'frightened') 2
('turned', 'a') 2
('vanilla', 'ascii"') 2
('draw', 'the') 2
('pictures', 'or') 2
('sort', 'said') 2
('and', 'broke') 2
('had', 'this') 2
('way', 'off') 2
('suddenly', 'a') 2
('alice', 'noticed') 2
('heads', 'down') 2
('never', 'had') 2
('except', 'for') 2
('on', 'each') 2
('dormouse', 'shook') 2
('a', 'frog') 2
('its', 'voice') 2
('9', '1') 2
('quite', 'forgot') 2
('your', 'history') 2
('the', 'smallest') 2
('now', 'if') 2
('mouths', 'and') 2
('to', 'draw') 2
('when', 'one') 2
('here', 'bill') 2
('copyright', 'laws') 2
('creating', 'the') 2
('the', 'roses') 2
('the', 'least') 2
('me', 'there') 2
('anxiously', 'about') 2
('important', 'to') 2
('have', 'any') 2
('adventures', 'in') 2
('and', 'distribute') 2
('silent', 'the') 2
('flowers', 'and') 2
('melancholy', 'tone') 2
('and', 'thought') 2
('silence', 'and') 2
('hastily', 'replied') 2
('opened', 'it') 2
('compliance', 'with') 2
('or', 'creating') 2
('a', 'watch') 2
('feet', 'at') 2
('s', 'try') 2
('breach', 'of') 2
('the', 'simple') 2
('in', 'she') 2
('said', 'without') 2
('be', 'seen') 2
('which', 'is') 2
('re', 'sure') 2
('the', 'meaning') 2
('but', 'after') 2
('ears', 'and') 2
('said', 'his') 2
('voice', 'the') 2
('minutes', 'and') 2
('caught', 'the') 2
('not', 'help') 2
('picked', 'up') 2
('alice', 'when') 2
('immediate', 'access') 2
('with', 'them') 2
('easily', 'offended') 2
('a', 'telescope') 2
('timid', 'voice') 2
('been', 'the') 2
('carried', 'it') 2
('and', 'shut') 2
('not', 'solicit') 2
('feet', 'in') 2
('they', 'may') 2
('pale', 'and') 2
('alice', 'then') 2
('nothing', 'on') 2
('at', 'home') 2
('the', 'people') 2
('deal', 'to') 2
('see', 'paragraph') 2
('was', 'good') 2
('t', 'put') 2
('likely', 'to') 2
('ever', 'was') 2
('pool', 'and') 2
('them', 'a') 2
('be', 'lost') 2
('does', 'it') 2
('additional', 'terms') 2
('eye', 'fell') 2
('about', 'them') 2
('on', 'alice') 2
('whether', 'she') 2
('defect', 'in') 2
('go', 'in') 2
('anything', 'you') 2
('talking', 'in') 2
('could', 'and') 2
('pleased', 'to') 2
('ll', 'fetch') 2
('thinking', 'of') 2
('up', 'with') 2
('staring', 'at') 2
('the', 'while') 2
('my', 'shoulders') 2
('found', 'out') 2
('out', 'here') 2
('advance', 'twice') 2
('not', 'charge') 2
('hardly', 'room') 2
('consider', 'your') 2
('time', 'it') 2
('soon', 'finished') 2
('done', 'that') 2
('considerable', 'effort') 2
('again', 'but') 2
('alice', 'with') 2
('well', 'be') 2
('head', 'she') 2
('they', 'have') 2
('to', 'pieces') 2
('laughing', 'and') 2
('a', 'user') 2
('be', 'used') 2
('bit', 'said') 2
('90', 'days') 2
('deal', 'too') 2
('the', 'trumpet') 2
('see', 'said') 2
('thinking', 'over') 2
('and', 'his') 2
('you', 'call') 2
('confusing', 'it') 2
('a', 'physical') 2
('treading', 'on') 2
('out-of-the-way', 'things') 2
('get', 'used') 2
('her', 'arms') 2
('tell', 'us') 2
('cares', 'for') 2
('where', 's') 2
('had', 'nothing') 2
('was', 'close') 2
('duchess', 'took') 2
('was', 'another') 2
('what', 'am') 2
('all', 'references') 2
('use', 'and') 2
('away', 'without') 2
('her', 'so') 2
('providing', 'access') 2
('out', 'her') 2
('speak', 'and') 2
('of', 'authority') 2
('believe', 'there') 2
('donations', 'from') 2
('sea', 'the') 2
('nervous', 'about') 2
('be', 'otherwise') 2
('twinkling', 'of') 2
('lives', 'a') 2
('of', 'mercia') 2
('under', 'sentence') 2
('a', 'natural') 2
('it', 'up') 2
('all', 'returned') 2
('to', 'time') 2
('that', 'a') 2
('were', 'no') 2
('thought', 'the') 2
('what', 'thought') 2
('round', 'to') 2
('a', 'bat') 2
('was', 'sneezing') 2
('why', 'what') 2
('s', 'enough') 2
('beginning', 'of') 2
('they', 'went') 2
('looking', 'round') 2
('child', 'said') 2
('states', 'without') 2
('with', 'passion') 2
('and', 'four') 2
('a', 'barrowful') 2
('way', 'into') 2
('sight', 'and') 2
('your', 'head') 2
('minutes', 'it') 2
('too', 'far') 2
('for', 'apples') 2
('fact', 'i') 2
('and', 'whiskers') 2
('name', 'of') 2
('gone', 'and') 2
('gutenberg-tm', 'collection') 2
('about', 'like') 2
('how', 'many') 2
('they', 'could') 2
('s', 'getting') 2
('the', 'very') 2
('out', 'silence') 2
('ll', 'give') 2
('on', 'said') 2
('this', 'question') 2
('came', 'to') 2
('personal', 'remarks') 2
('all', 'it') 2
('alice', 'timidly') 2
('any', 'longer') 2
('and', 'walking') 2
('sound', 'of') 2
('very', 'like') 2
('very', 'earnestly') 2
('out', 'and') 2
('for', 'having') 2
('for', 'said') 2
('but', 'a') 2
('hoping', 'that') 2
('back', 'into') 2
('william', 'the') 2
('is', 'this') 2
('shook', 'its') 2
('references', 'to') 2
('in', 'lieu') 2
('nonsense', 'i') 2
('general', 'terms') 2
('up', 'alice') 2
('very', 'wide') 2
('yet', 'i') 2
('to', 'sell') 2
('say', 'what') 2
('was', 'immediately') 2
('alice', 'cautiously') 2
('mabel', 'i') 2
('t', 'got') 2
('now', 'tell') 2
('another', 'minute') 2
('so', 'on') 2
('me', 'but') 2
('yet', 'the') 2
('it', 'sat') 2
('her', 'sharp') 2
('on', 'eagerly') 2
('was', 'and') 2
('heard', 'something') 2
('of', 'compliance') 2
('who', 's') 2
('of', 'damages') 2
('been', 'looking') 2
('little', 'creature') 2
('requirements', 'we') 2
('and', 'wondering') 2
('first', 'because') 2
('what', 'do') 2
('had', 'any') 2
('place', 'where') 2
('voice', 'i') 2
('to', 'by') 2
('find', 'herself') 2
('stupid', 'things') 2
('matter', 'which') 2
('instead', 'of') 2
('trademark', 'owner') 2
('then', 'thought') 2
('bound', 'by') 2
('lie', 'down') 2
('his', 'note-book') 2
('head', 'it') 2
('and', 'hurried') 2
('quite', 'silent') 2
('tea', 'and') 2
('height', 'to') 2
('he', 'would') 2
('herself', 'that') 2
('saw', 'alice') 2
('she', 'fell') 2
('online', 'at') 2
('saw', 'in') 2
('visit', 'http') 2
('it', 'occurred') 2
('find', 'her') 2
('the', 'race') 2
('be', 'hungry') 2
('long', 'silence') 2
('it', 'put') 2
('the', 'earls') 2
('were', 'learning') 2
('were', 'getting') 2
('a', 'shower') 2
('check', 'the') 2
('not', 'dare') 2
('the', 'collection') 2
('queen', 'i') 2
('arms', 'folded') 2
('"', 'but') 2
('that', 'stood') 2
('and', 'those') 2
('lobsters', 'and') 2
('do', 'wish') 2
('things', 'all') 2
('mind', 'that') 2
('quite', 'tired') 2
('muttering', 'to') 2
('to', 'remark') 2
('think', 'and') 2
('had', 'fallen') 2
('as', 'before') 2
('first', 'to') 2
('at', 'no') 2
('two', 'feet') 2
('had', 'put') 2
('great', 'surprise') 2
('it', 'down') 2
('there', 'could') 2
('without', 'even') 2
('get', 'hold') 2
('alice', 'nothing') 2
('right', 'into') 2
('each', 'side') 2
('very', 'gravely') 2
('pardon', 'said') 2
('now', 'you') 2
('showing', 'off') 2
('distribute', 'or') 2
('anxiously', 'into') 2
('how', 'i') 2
('lovely', 'garden') 2
('its', 'right') 2
('only', 'knew') 2
('cheered', 'and') 2
('only', 'of') 2
('agree', 'that') 2
('s', 'such') 2
('wish', 'to') 2
('caterpillar', 'took') 2
('pigeon', 'in') 2
('it', 'did') 2
('find', 'it') 2
('she', 'hastily') 2
('a', 'replacement') 2
('now', 'that') 2
('allow', 'me') 2
('place', 'of') 2
('yes', 'that') 2
('about', 'two') 2
('it', 'seemed') 2
('more', 'the') 2
('in', 'accordance') 2
('candle', 'is') 2
('a', 'kind') 2
('pause', 'the') 2
('ever', 'having') 2
('their', 'own') 2
('the', 'permission') 2
('on', 'without') 2
('to', 'fall') 2
('very', 'humbly') 2
('costs', 'and') 2
('of', 'more') 2
('on', 'for') 2
('rabbit', 'blew') 2
('looked', 'all') 2
('be', 'true') 2
('waited', 'for') 2
('looking', 'over') 2
('as', 'we') 2
('mouse', 'of') 2
('works', 'that') 2
('on', 'this') 2
('the', 'distant') 2
('org', 'section') 2
('the', 'conqueror') 2
('page', 'at') 2
('and', 'most') 2
('from', 'all') 2
('never', 'get') 2
('there', 'goes') 2
('she', 'stretched') 2
('shook', 'itself') 2
('1', 'through') 2
('hardly', 'know') 2
('exactly', 'as') 2
('door', 'of') 2
('a', 'story') 2
('taught', 'us') 2
('s', 'making') 2
('perhaps', 'i') 2
('and', 'queen') 2
('a', 'work') 2
('one', 'for') 2
('funny', 'it') 2
('in', 'these') 2
('have', 'a') 2
('cook', 'and') 2
('my', 'poor') 2
('a', 'violent') 2
('who', 'i') 2
('upon', 'alice') 2
('please', 'do') 2
('could', 'only') 2
('oh', 'don') 2
('know', 'of') 2
('my', 'right') 2
('all', 'copies') 2
('had', 'found') 2
('low', 'trembling') 2
('it', 'then') 2
('are', 'gone') 2
('spectacles', 'and') 2
('dear', 'how') 2
('time', 'said') 2
('little', 'nervous') 2
('try', 'and') 2
('so', 'close') 2
('the', 'thought') 2
('alice', 'they') 2
('little', 'bit') 2
('have', 'come') 2
('thing', 'before') 2
('all', 'at') 2
('gryphon', 'you') 2
('the', 'key') 2
('your', 'verdict') 2
('got', 'behind') 2
('a', 'dead') 2
('evidence', 'said') 2
('saw', 'one') 2
('how', 'can') 2
('a', 'fall') 2
('and', 'being') 2
('delighted', 'to') 2
('it', 'advisable') 2
('go', 'to') 2
('trumpet', 'and') 2
('the', 'rabbit-hole') 2
('before', 'said') 2
('other', 'work') 2
('but', 'who') 2
('he', 'wasn') 2
('and', 'on') 2
('only', 'grinned') 2
('on', 'as') 2
('you', 'would') 2
('the', 'duck') 2
('alice', 'called') 2
('s', 'done') 2
('raving', 'mad') 2
('and', 'employees') 2
('that', 'only') 2
('of', 'mushroom') 2
('say', 'that') 2
('alice', 'remarked') 2
('specified', 'in') 2
('the', 'miserable') 2
('mouse', 'only') 2
('round', 'she') 2
('or', 'you') 2
('replacement', 'copy') 2
('business', 'the') 2
('footman', 'in') 2
('little', 'sisters') 2
('quite', 'pleased') 2
('as', 'ever') 2
('1', 'c') 2
('face', 'in') 2
('they', 'gave') 2
('his', 'first') 2
('into', 'hers') 2
('she', 'were') 2
('ear', 'and') 2
('ashamed', 'of') 2
('that', 'direction') 2
('of', 'having') 2
('went', 'down') 2
('came', 'in') 2
('reason', 'and') 2
('idea', 'how') 2
('it', 'written') 2
('pleaded', 'poor') 2
('continued', 'in') 2
('side', 'will') 2
('obtaining', 'a') 2
('our', 'cat') 2
('hall', 'but') 2
('duchess', 'was') 2
('t', 'very') 2
('almost', 'wish') 2
('based', 'on') 2
('curious', 'dream') 2
('mind', 'said') 2
('list', 'of') 2
('began', 'alice') 2
('catching', 'mice') 2
('five', 'and') 2
('witness', 'was') 2
('or', 'refund') 2
('opened', 'the') 2
('than', 'what') 2
('an', 'opportunity') 2
('we', 'had') 2
('gutenberg-tm', 'mission') 2
('how', 'funny') 2
('hare', 'it') 2
('of', 'half') 2
('of', 'beautiful') 2
('game', 'of') 2
('it', 'made') 2
('you', 'how') 2
('how', 'he') 2
('the', 'master') 2
('size', 'for') 2
('a', 'child') 2
('the', 'widest') 2
('change', 'lobsters') 2
('all', 'made') 2
('ll', 'eat') 2
('little', 'before') 2
('hastily', 'i') 2
('what', 'can') 2
('pepper', 'in') 2
('was', 'her') 2
('word', 'i') 2
('to', 'meet') 2
('would', 'all') 2
('the', 'free') 2
('tax', 'exempt') 2
('down', 'upon') 2
('had', 'gone') 2
('alice', 'of') 2
('of', 'nothing') 2
('or', 'at') 2
('the', 'effect') 2
('lessons', 'to') 2
('watched', 'the') 2
('not', 'yet') 2
('all', 'and') 2
('indeed', 'she') 2
('sighed', 'the') 2
('of', 'thing') 2
('now', 'about') 2
('herself', 'for') 2
('it', 'puzzled') 2
('fancy', 'that') 2
('can', 'have') 2
('be', 'bound') 2
('care', 'of') 2
('your', 'temper') 2
('stuff', 'be') 2
('time', 'when') 2
('court', 'was') 2
('owns', 'a') 2
('first', 'figure') 2
('a', 'pack') 2
('that', 'for') 2
('as', 'yet') 2
('duchess', 'oh') 2
('moment', 's') 2
('so', 'easily') 2
('were', 'three') 2
('the', 'fee') 2
('of', 'or') 2
('explain', 'the') 2
('in', 'great') 2
('very', 'easy') 2
('c', '3') 2
('her', 'something') 2
('will', 'make') 2
('the', 'tea') 2
('and', 'at') 2
('speak', 'again') 2
('up', 'i') 2
('these', 'three') 2
('put', 'his') 2
('and', 'read') 2
('made', 'another') 2
('i', 'couldn') 2
('wake', 'up') 2
('until', 'she') 2
('day', 'of') 2
('of', 'promoting') 2
('fancy', 'to') 2
('you', 'only') 2
('on', 'growing') 2
('them', 'when') 2
('everything', 's') 2
('time', 'they') 2
('forgotten', 'that') 2
('works', '1') 2
('about', 'donations') 2
('be', 'it') 2
('and', 'join') 2
('out', 'its') 2
('cry', 'again') 2
('things', 'are') 2
('how', 'are') 2
('them', 'the') 2
('donations', 'in') 2
('of', 'their') 2
('may', 'not') 2
('agreement', 'for') 2
('in', 'here') 2
('the', 'general') 2
('you', 'with') 2
('hasn', 't') 2
('atom', 'of') 2
('dormouse', 'again') 2
('me', 'a') 2
('thing', 'alice') 2
('8', 'or') 2
('that', 'then') 2
('be', 'when') 2
('t', 'tell') 2
('eat', 'a') 2
('this', 'must') 2
('by', 'her') 2
('solemn', 'tone') 2
('you', 'liked') 2
('idea', 'of') 2
('t', 'to') 2
('turtle', 'sighed') 2
('quite', 'natural') 2
('i', 'wouldn') 2
('stand', 'on') 2
('blasts', 'on') 2
('would', 'feel') 2
('of', 'conversation') 2
('have', 'not') 2
('of', 'very') 2
('had', 'left') 2
('and', 'northumbria') 2
('and', 'left') 2
('next', 'and') 2
('of', 'getting') 2
('with', 'me') 2
('opened', 'his') 2
('and', 'be') 2
('i', 'hardly') 2
('proper', 'way') 2
('without', 'paying') 2
('herself', 'it') 2
('not', 'alice') 2
('go', 'through') 2
('to', 'beat') 2
('conversation', 'alice') 2
('your', 'name') 2
('more', 'of') 2
('ll', 'seem') 2
('to', 'send') 2
('this', 'sort') 2
('we', 'know') 2
('the', 'month') 2
('fear', 'of') 2
('happened', 'to') 2
('he', 'shook') 2
('that', 'case') 2
('their', 'simple') 2
('how', 'puzzling') 2
('an', 'atom') 2
('very', 'slowly') 2
('he', 's') 2
('you', 'play') 2
('next', 'moment') 2
('out', 'with') 2
('not', 'allow') 2
('for', 'asking') 2
('a', 'gryphon') 2
('things', 'that') 2
('a', 'reasonable') 2
('rather', 'timidly') 2
('duchess', 'as') 2
('little', 'shriek') 2
('her', 'first') 2
('like', 'an') 2
('s', 'pleased') 2
('natural', 'way') 2
('roof', 'of') 2
('by', 'it') 2
('green', 'leaves') 2
('say', 'you') 2
('know', 'you') 2
('the', 'leaves') 2
('a', 'baby') 2
('t', 'trouble') 2
('much', 'at') 2
('edge', 'of') 2
('smaller', 'i') 2
('remember', 'ever') 2
('a', 'capital') 2
('few', 'things') 2
('the', 'official') 2
('turned', 'to') 2
('if', 'they') 2
('were', 'said') 2
('waited', 'till') 2
('shut', 'his') 2
('hand', 'it') 2
('a', 'game') 2
('ll', 'stay') 2
('music', 'and') 2
('time', 'alice') 2
('a', 'copyright') 2
('a', 'timid') 2
('mouse', 'that') 2
('about', 'here') 2
('be', 'mabel') 2
('shower', 'of') 2
('for', 'your') 2
('turtle', 'to') 2
('except', 'a') 2
('off', 'together') 2
('with', 'it') 2
('as', 'pigs') 2
('never', 'to') 2
('long', 'way') 2
('and', 'stupid') 2
('eagerly', 'that') 2
('her', 'ear') 2
('feet', 'for') 2
('game', 'was') 2
('t', 'it') 2
('mine', 'said') 2
('got', 'so') 2
('getting', 'on') 2
('often', 'seen') 2
('attending', 'to') 2
('or', 'longitude') 2
('not', 'even') 2
('her', 'the') 2
('course', 'not') 2
('they', 'walked') 2
('the', 'kitchen') 2
('over', 'all') 2
('began', 'running') 2
('alice', 'for') 2
('she', 'asked') 2
('down', 'her') 2
('here', 'said') 2
('we', 're') 2
('see', 'i') 2
('work', 'very') 2
('child', 'but') 2
('were', 'lying') 2
('this', 'project') 2
('great', 'question') 2
('get', 'her') 2
('the', 'wind') 2
('full', 'refund') 2
('or', '1') 2
('within', '90') 2
('the', 'direction') 2
('me', 'you') 2
('first', 'and') 2
('last', 'she') 2
('royalty', 'payments') 2
('lefthand', 'bit') 2
('birds', 'and') 2
('goes', 'on') 2
('it', 'belongs') 2
('of', 'my') 2
('you', 'throw') 2
('see', 'a') 2
('to', 'other') 2
('we', 'shall') 2
('sit', 'here') 2
('high', 'time') 2
('its', 'tail') 2
('that', 'very') 2
('t', 'keep') 2
('to', 'its') 2
('certainly', 'not') 2
('and', 'took') 2
('my', 'tail') 2
('nothing', 'she') 2
('or', 'distribute') 2
('it', 'now') 2
('all', 'their') 2
('all', 'right') 2
('ordered', 'about') 2
('them', 'alice') 2
('of', 'soup') 2
('was', 'delighted') 2
('sighed', 'deeply') 2
('silent', 'for') 2
('all', 'dark') 1
('neck', 'which') 1
('its', 'legs') 1
('called', 'lessons') 1
('away', 'with') 1
('last', 'more') 1
('were', 'animals') 1
('telling', 'me') 1
('of', 'tumbling') 1
('panther', 'received') 1
('told', 'so') 1
('not', 'mad') 1
('a', 'secure') 1
('little', 'tis') 1
('march', 'i') 1
('here', 'it') 1
('her', 'little') 1
('morning', 'said') 1
('general', 'clapping') 1
('chin', 'into') 1
('begin', 'for') 1
('three', 'or') 1
('you', 'that') 1
('sky', 'twinkle') 1
('jury', 'they') 1
('falling', 'through') 1
('sobbing', 'a') 1
('em', 'up') 1
('provide', 'volunteers') 1
('providing', 'it') 1
('the', 'm') 1
('we', 'go') 1
('wonderland', 'though') 1
('them', 'their') 1
('discover', 'a') 1
('ve', 'something') 1
('it', 'fills') 1
('and', 'close') 1
('of', 'change') 1
('nodded', 'it') 1
('slowly', 'for') 1
('user', 'provide') 1
('honour', 'at') 1
('she', 'longed') 1
('air', 'of') 1
('themselves', '"') 1
('nor', 'did') 1
('latitude', 'or') 1
('liked', 'with') 1
('barrowful', 'of') 1
('voice', 'who') 1
('her', 'riper') 1
('little', 'white') 1
('full', 'license') 1
('king', 'sharply') 1
('cup', 'of') 1
('dish', 'who') 1
('him', 'said') 1
('s/he', 'does') 1
('links', 'to') 1
('other', 'queer') 1
('found', 'and') 1
('be', 'managed') 1
('whistling', 'oh') 1
('them', 'said') 1
('spoke', 'a') 1
('were', 'followed') 1
('copyright', 'research') 1
('resting', 'in') 1
('who', 'looked') 1
('flower-beds', 'and') 1
('"turtle', 'soup') 1
('modification', 'or') 1
('works', 'and') 1
('dance', '"you') 1
('story', 'but') 1
('grown', 'to') 1
('course', 'alice') 1
('figure', 'of') 1
('of', 'footsteps') 1
('would', 'it') 1
('grief', 'they') 1
('whispers', 'now') 1
('voice', 'would') 1
('the', 'small') 1
('about', 'once') 1
('t', 'try') 1
('world', 'would') 1
('imagine', 'yourself') 1
('alas', 'either') 1
('creatures', 'alice') 1
('draw', 'said') 1
('king', 'was') 1
('to', 'law') 1
('subdued', 'tone') 1
('that', 'kind') 1
('useful', 'it') 1
('the', 'eleventh') 1
('on', 'but') 1
('shape', 'doesn') 1
('anything', 'prettier') 1
('the', 'sluggard') 1
('could', 'let') 1
('were', 'giving') 1
('swallowed', 'one') 1
('hare', 'had') 1
('out', 'under') 1
('loud', 'thinking') 1
('t', 'possibly') 1
('lower', 'said') 1
('whenever', 'i') 1
('bringing', 'the') 1
('went', 'up') 1
('it', 'exists') 1
('coast', 'you') 1
('works', 'professor') 1
('squeaking', 'of') 1
('heard', 'before') 1
('less', 'there') 1
('cart-horse', 'and') 1
('along', 'hand') 1
('could', 'shut') 1
('voice', 'in') 1
('yet', 'please') 1
('keeping', 'this') 1
('wretched', 'hatter') 1
('question', 'however') 1
('must', 'the') 1
('than', 'no') 1
('puzzled', 'by') 1
('two', 'miles') 1
('pack', 'she') 1
('soon', 'fetch') 1
('tone', 'seven') 1
('remarked', 'the') 1
('least', 'not') 1
('wretched', 'height') 1
('the', 'money') 1
('eels', 'of') 1
('panther', 'were') 1
('mad', 'tea-party') 1
('drink', 'something') 1
('four', 'feet') 1
('them', 'screamed') 1
('remarked', 'because') 1
('caterpillar', 'sternly') 1
('never', 'tasted') 1
('ever', 'said') 1
('some', 'tea') 1
('wonder', 'who') 1
('stamping', 'on') 1
('head', 'through') 1
('then', 'her') 1
('redistributing', 'project') 1
('remark', 'that') 1
('caused', 'some') 1
('interpreted', 'to') 1
('queen', 'furiously') 1
('year', 'it') 1
('fair', 'warning') 1
('voice', 'if') 1
('re', 'not') 1
('thoroughly', 'puzzled') 1
('slightest', 'idea') 1
('all', '50') 1
('smile', 'some') 1
('going', 'down') 1
('format', 'with') 1
('an', 'impatient') 1
('large', 'piece') 1
('matter', 'worse') 1
('of', 'educations') 1
('considering', 'in') 1
('he', 'fumbled') 1
('then', 'saying') 1
('i', 'get"') 1
('roof', 'bear') 1
('knew', 'so') 1
('can', 'draw') 1
('serpent', 'said') 1
('what', 'makes') 1
('upon', 'bill') 1
('nine', 'the') 1
('speaker', 'said') 1
('a', 'dreamy') 1
('stop', 'in') 1
('me', 'well') 1
('pronounced', 'it') 1
('i', 'meant') 1
('mad', 'here') 1
('with', 'which') 1
('what', 'fun') 1
('way', 'prizes') 1
('mouse', 'come') 1
('your', 'finger') 1
('was', 'beating') 1
('young', 'crab') 1
('declare', '"you') 1
('laughter', 'oh') 1
('to', 'remain') 1
('only', 'kept') 1
('why', 'with') 1
('disappeared', 'never') 1
('dig', 'of') 1
('clubs', 'these') 1
('means', 'i') 1
('work', 'throwing') 1
('going', 'into') 1
('song', 'please') 1
('foundation', 'project') 1
('an', 'eaglet') 1
('and', 'accept') 1
('dinah', 's') 1
('raising', 'its') 1
('quarrelling', 'with') 1
('you', 'sooner') 1
('attended', 'to') 1
('attending', 'said') 1
('course', 'twinkling') 1
('eaglet', 'and') 1
('to', 'pretend') 1
('by', 'that') 1
('patiently', 'until') 1
('serpent', 'that') 1
('confusion', 'getting') 1
('coward', 'and') 1
('taught', 'laughing') 1
('bright', 'flower-beds') 1
('hurrying', 'down') 1
('jurors', 'she') 1
('her', 'adventures') 1
('not', 'stoop') 1
('her', 'poor') 1
('been', 'it') 1
('sister', 's') 1
('she', 'generally') 1
('baked', 'me') 1
('it', 'every') 1
('ll', 'write') 1
('and', 'bawled') 1
('put', 'her') 1
('are', 'put') 1
('went', 'stamping') 1
('say', 'creatures') 1
('rate', 'however') 1
('from', 'donors') 1
('out', '"') 1
('herself', 'imagine') 1
('it', 'led') 1
('m', 'mabel') 1
('pglaf', 'org') 1
('from', 'outside') 1
('most', 'countries') 1
('1', 'project') 1
('however', 'everything') 1
('other', 'bill') 1
('as', 'wet') 1
('till', 'you') 1
('half', 'the') 1
('again', 'before') 1
('freely', 'available') 1
('she', 'next') 1
('with', 'closed') 1
('was', 'high') 1
('negligence', 'strict') 1
('brush', 'and') 1
('angrily', 'rearing') 1
('work', 'under') 1
('inaccurate', 'or') 1
('clock', 'now') 1
('would', 'gather') 1
('eating', 'and') 1
('nose', 'trims') 1
('directions', 'will') 1
('processions', 'and') 1
('certain', 'to') 1
('as', 'public') 1
('there', 'at') 1
('shrill', 'loud') 1
('west', 'salt') 1
('his', 'hand') 1
('doing', 'cried') 1
('than', 'she') 1
('course', 'here') 1
('in', 'currants') 1
('out', 'which') 1
('bank', 'with') 1
('or', 'australia') 1
('the', 'applicable') 1
('ten', 'minutes') 1
('were', 'mine') 1
('other', 'little') 1
('"', 'his') 1
('explained', 'said') 1
('perform', 'distribute') 1
('stupid', 'and') 1
('paid', 'a') 1
('little', 'busy') 1
('and', 'begged') 1
('re', 'nothing') 1
('say', 'if') 1
('were', 'resting') 1
('splash', 'she') 1
('it', 'usually') 1
('anxious', 'alice') 1
('pleasant', 'temper') 1
('thing', 'at') 1
('be', 'denied') 1
('out', 'for') 1
('toffee', 'and') 1
('come', 'it') 1
('again', 'then') 1
('some', 'attempts') 1
('anyone', 'anywhere') 1
('drew', 'herself') 1
('frowning', 'like') 1
('ou', 'est') 1
('curious', 'you') 1
('leant', 'against') 1
('and', 'again') 1
('reasonable', 'fee') 1
('ask', 'me') 1
('nearly', 'two') 1
('curving', 'it') 1
('and', 'did') 1
('creature', 'when') 1
('little', 'faster') 1
('tone', 'though') 1
('to', 'drive') 1
('would', 'deny') 1
('watching', 'the') 1
('manner', 'smiling') 1
('gryphon', 'interrupted') 1
('lest', 'she') 1
('sprawling', 'about') 1
('give', 'all') 1
('read', 'about') 1
('but', 'tea') 1
('learn', 'more') 1
('might', 'like') 1
('tasted', 'but') 1
('donations', 'can') 1
('curious', 'today') 1
('a', 'dispute') 1
('heard', 'in') 1
('much', 'pleasanter') 1
('stretching', 'out') 1
('dull', 'you') 1
('die', 'the') 1
('we', 'can') 1
('caterpillar', 'that') 1
('hatter', 'replied') 1
('in', 'saying') 1
('rising', 'to') 1
('little', 'now') 1
('us', 'said') 1
('with', 'your') 1
('present', 'of') 1
('corporation', 'organized') 1
('mad', 'to') 1
('yards', 'off') 1
('would', 'get') 1
('for', 'pulling') 1
('introduced', 'to') 1
('wants', 'cutting') 1
('again', 'or') 1
('holder', 'the') 1
('eagerly', 'half') 1
('queen', 'shouted') 1
('a', 'scroll') 1
('of', 'tarts') 1
('you', 'needn') 1
('back', 'with') 1
('a', 'raven') 1
('the', 'arm') 1
('you', 'if') 1
('passing', 'at') 1
('links', 'or') 1
('top', 'with') 1
('is', 'derived') 1
('them', 'bitter') 1
('the', 'witness') 1
('over', 'a') 1
('a', 'queer-shaped') 1
('eleventh', 'day') 1
('licking', 'her') 1
('pressed', 'so') 1
('soon', 'got') 1
('on', 'just') 1
('mouth', 'close') 1
('wink', 'of') 1
('curious', 'child') 1
('stingy', 'about') 1
('are', 'their') 1
('it', 'gave') 1
('and', 'memory') 1
('by', 'mistake') 1
('from', 'you') 1
('t', 'begun') 1
('of', 'evidence') 1
('stop', 'this') 1
('had', 'tired') 1
('but', 'nevertheless') 1
('distributed', 'project') 1
('kept', 'shifting') 1
('animal', 's') 1
('youth', 'as') 1
('done', 'once') 1
('course', 'they') 1
('going', 'back') 1
('this', 'to') 1
('turn', 'a') 1
('once', 'to') 1
('know', 'this') 1
('is', 'twelve') 1
('applicable', 'state') 1
('archbishop', 'find') 1
('rather', 'curious') 1
('me', 'your') 1
('asked', 'another') 1
('come', 'down') 1
('went', 'round') 1
('pace', 'said') 1
('alice', 'have') 1
('quiet', 'thing') 1
('uniform', 'and') 1
('think', 'alice') 1
('severely', 'to') 1
('just', 'over') 1
('some', 'sense') 1
('thank', 'ye') 1
('perhaps', 'he') 1
('a', 'paper') 1
('held', 'it') 1
('unable', 'to') 1
('arm', 'with') 1
('better', 'finish') 1
('was', 'it') 1
('hanging', 'down') 1
('learn', 'no') 1
('wow', 'here') 1
('made', 'alice') 1
('sing', 'oh') 1
('she', 'still') 1
('let', 'this') 1
('doubling', 'itself') 1
('it', 'without') 1
('beg', 'for') 1
('ll', 'look') 1
('re-use', 'it') 1
('fellow', 'said') 1
('your', 'interesting') 1
('no', 'remedies') 1
('boxed', 'the') 1
('and', 'new') 1
('replace', 'the') 1
('opened', 'and') 1
('be', 'punished') 1
('donate', 'royalties') 1
('and', 'birds') 1
('herself', 'still') 1
('it', 'sad') 1
('idiot', 'said') 1
('sometimes', 'she') 1
('face', 'only') 1
('her', 'going') 1
('likely', 'it') 1
('little', 'children') 1
('the', 'possibility') 1
('angry', 'voice') 1
('like', 'then') 1
('time', 'for') 1
('interesting', 'dance') 1
('agreed', 'to') 1
('swam', 'nearer') 1
('read', 'the') 1
('see', 'after') 1
('really', 'i') 1
('foot', 'so') 1
('but', 'sit') 1
('grammar', 'a') 1
('"what', 'matters') 1
('rabbit', 'but') 1
('was', 'impossible') 1
('queer', 'it') 1
('half', 'those') 1
('large', 'birds') 1
('for', 'additional') 1
('ensuring', 'that') 1
('catch', 'him') 1
('take', 'some') 1
('door', 'into') 1
('and', 'muchness') 1
('long', 'tale') 1
('voice', 'died') 1
('eaglet', 'bent') 1
('hatter', 'stolen') 1
('meant', 'the') 1
('around', 'her') 1
('read', 'that') 1
('tidy', 'little') 1
('mixed', 'up') 1
('of', 'saucepans') 1
('a', 'crimson') 1
('it', 'won') 1
('under', 'a') 1
('cat', 'dinah') 1
('alice', 'dear') 1
('leaving', 'alice') 1
('know', 'let') 1
('on', 'such') 1
('but', 'thought') 1
('sent', 'them') 1
('woke', 'up') 1
('following', 'which') 1
('moral', 'and') 1
('the', 'frontispiece') 1
('irritated', 'at') 1
('a', 'wonderful') 1
('that', 'this') 1
('thinking', 'it') 1
('not', 'seem') 1
('faster', 'than') 1
('know', 'why') 1
('children', 'come') 1
('stick', 'running') 1
('either', 'and') 1
('either', 'way') 1
('hearing', 'this') 1
('follow', 'it') 1
('believe', 'boots') 1
('of', 'executions') 1
('therefore', 'i') 1
('000', 'are') 1
('be', 'told') 1
('and', 'low-spirited') 1
('her', 'once') 1
('on', 'being') 1
('get', 'what') 1
('upon', 'them') 1
('tea', 'said') 1
('sticks', 'and') 1
('doing', 'our') 1
('on', 'cried') 1
('to', 'death') 1
('a', 'muchness') 1
('mean', 'it') 1
('too', 'stiff') 1
('he', 'produced') 1
('turtle', 'seals') 1
('hurried', 'on') 1
('bed', 'on') 1
('said', 'cunning') 1
('fumbled', 'over') 1
('had', 'entirely') 1
('i', 'needn') 1
('to', 'help') 1
('support', 'project') 1
('story', 'i') 1
('but', 'no') 1
('a', 'small') 1
('shrinking', 'directly') 1
('bread-and-butter', 'but') 1
('and', 'shouted') 1
('word', 'sounded') 1
('t', 'indeed') 1
('march', 'as') 1
('you', 'take') 1
('roof', 'off') 1
('but', 'for') 1
('i', 'try') 1
('too', 'yes') 1
('king', 'unless') 1
('much', 'overcome') 1
('for', 'its') 1
('would', 'call') 1
('scaly', 'friend') 1
('works', 'so') 1
('why', 'do') 1
('gross', 'profits') 1
('ll', 'come') 1
('king', 'had') 1
('still', 'running') 1
('pet', 'dinah') 1
('hated', 'cats') 1
('would', 'hardly') 1
('grand', 'procession') 1
('rules', 'is') 1
('of', 'late') 1
('ll', 'kick') 1
('ago', 'anything') 1
('shy', 'they') 1
('twice', 'half') 1
('gone', 'down') 1
('all', 'because') 1
('i', 'fancy') 1
('pleasing', 'them') 1
('say', 'but') 1
('hand', 'said') 1
('try', 'if') 1
('howled', 'so') 1
('duchess', 'what') 1
('for', 'fish') 1
('flown', 'into') 1
('story', 'alice') 1
('they', 'made') 1
('finding', 'it') 1
('it', 'much') 1
('laws', 'regulating') 1
('then', 'nodded') 1
('how', 'could') 1
('cold', 'if') 1
('so', 'mad') 1
('larger', 'still') 1
('things', 'and') 1
('requirements', 'of') 1
('off', 'said') 1
('without', 'lobsters') 1
('whiles', 'then') 1
('to', 'box') 1
('body', 'to') 1
('even', 'with') 1
('turtle', 'very') 1
('reeling', 'and') 1
('of', 'cucumber-frames') 1
('queen', 'first') 1
('like', 'you') 1
('voice', 'are') 1
('hardly', 'worth') 1
('door', 'about') 1
('growling', 'said') 1
('much', 'sooner') 1
('this', 'same') 1
('were', 'me') 1
('below', 'and') 1
('distribute', 'a') 1
('swim', 'after') 1
('so', 'shiny') 1
('it', 'felt') 1
('box', 'of') 1
('employees', 'expend') 1
('paid', 'by') 1
('words', 'were') 1
('the', 'muscular') 1
('about', 'half') 1
('soup', 'who') 1
('do', 'without') 1
('yesterday', 'things') 1
('//www', 'pglaf') 1
('sneezing', 'by') 1
('very', 'humble') 1
('whispered', 'she') 1
('your', 'equipment') 1
('angrily', 'it') 1
('it', 'under') 1
('bill', '"french') 1
('the', 'heads') 1
('statements', 'concerning') 1
('jury', 'in') 1
('him', 'pinch') 1
('court', '"') 1
('rather', 'inquisitively') 1
('alice', 'herself') 1
('all', 'wash') 1
('two', 'guinea-pigs') 1
('shutting', 'people') 1
('burnt', 'and') 1
('nose', 'as') 1
('hand', 'watching') 1
('notice', 'indicating') 1
('evidence', 'here') 1
('only', 'it') 1
('that', 'led') 1
('but', 'generally') 1
('turn', 'not') 1
('scratching', 'and') 1
('left', 'to') 1
('that', 'stuff') 1
('re', 'trying') 1
('mouth', 'again') 1
('learnt', 'several') 1
('simple', 'and') 1
('even', 'without') 1
('almost', 'no') 1
('its', 'undoing') 1
('finish', 'the') 1
('particular', 'at') 1
('pictures', 'hung') 1
('it', 'hastily') 1
('turtle', 'sang') 1
('all', 'but') 1
('distribute', 'this') 1
('its', 'neck') 1
('tone', 'alice') 1
('of', 'knot') 1
('very', 'remarkable') 1
('the', 'mission') 1
('lap', 'as') 1
('ever', 'to') 1
('quite', 'jumped') 1
('the', 'blows') 1
('well', 'she') 1
('window', 'i') 1
('that', 's/he') 1
('were', 'out') 1
('have', 'said') 1
('will', 'the') 1
('on', 'muttering') 1
('talking', 'over') 1
('any', 'additional') 1
('relief', 'call') 1
('a', 'line') 1
('you', 'learn') 1
('proprietary', 'form') 1
('turned', 'round') 1
('t', 'guess') 1
('mischief', 'or') 1
('of', 'sticks') 1
('closer', 'to') 1
('not', 'open') 1
('tarts', 'you') 1
('do', 'something') 1
('that', 'have') 1
('her', 'favourite') 1
('get', 'rather') 1
('her', 'was') 1
('spoke', 'the') 1
('paragraph', 'to') 1
('first', 'however') 1
('met', 'the') 1
('one', 'so') 1
('reeds', 'the') 1
('those', 'are') 1
('it', 'watched') 1
('any', 'agent') 1
('she', 'gained') 1
('splashing', 'paint') 1
('yet', 'before') 1
('the', 'ink') 1
('its', 'full') 1
('voice', 'sounded') 1
('out', 'among') 1
('eh', 'stupid') 1
('drawling', 'the') 1
('king', 'on') 1
('holiday', 'of') 1
('to', 'usurpation') 1
('her', 'for') 1
('ear', 'to') 1
('after', 'this') 1
('ready', 'for') 1
('and', 'near') 1
('away', 'come') 1
('parts', 'of') 1
('guests', 'mostly') 1
('to', 'dull') 1
('prison', 'the') 1
('talking', 'at') 1
('will', 'look') 1
('surprised', 'he') 1
('tucked', 'it') 1
('getting', 'her') 1
('room', 'at') 1
('house', 'if') 1
('noise', 'and') 1
('walk', '"') 1
('sun', 'if') 1
('hopeful', 'tone') 1
('the', 'melancholy') 1
('it', 'except') 1
('them', 'what') 1
('and', 'rightly') 1
('of', 'trees') 1
('worried', 'just') 1
('spades', 'then') 1
('like', 'i') 1
('f', '2') 1
('medium', 'a') 1
('heard', 'was') 1
('dancing', 'alice') 1
('revenue', 'service') 1
('liable', 'to') 1
('and', 'argued') 1
('a', 'tunnel') 1
('apples', 'indeed') 1
('herself', 'whenever') 1
('opened', 'by') 1
('foot', 'up') 1
('"you', 'have') 1
('an', 'immense') 1
('the', 'pattern') 1
('license', '1') 1
('that', 'first') 1
('head', 'do') 1
('you', 'got') 1
('nothing', 'being') 1
('who', 'ran') 1
('trembling', 'down') 1
('mallets', 'live') 1
('and', 'besides') 1
('opportunity', 'to') 1
('fell', 'off') 1
('he', 'bit') 1
('prepare', 'or') 1
('i', 'keep') 1
('of', 'hjckrrh') 1
('queen', 'left') 1
('was', 'suppressed') 1
('locations', 'its') 1
('the', 'hand') 1
('no', 'reason') 1
('license', 'must') 1
('cats', 'and') 1
('be', 'patted') 1
('alice', 'sighed') 1
('late', 'much') 1
('and', 'rapped') 1
('exact', 'shape') 1
('that', 'damage') 1
('directly', 'and') 1
('sleep"', 'is') 1
('pour', 'the') 1
('hearing', 'for') 1
('of', 'green') 1
('something', 'of') 1
('else', 'have') 1
('game', 'chapter') 1
('come', 'up') 1
('remembered', 'that') 1
('her', 'repeating') 1
('regulating', 'charities') 1
('curious', 'plan') 1
('being', 'drowned') 1
('latitude', 'was') 1
('posted', 'at') 1
('tiptoe', 'put') 1
('remember', 'the') 1
('and', 'rubbed') 1
('never', 'thought') 1
('had', 'kept') 1
('particular', 'here') 1
('and', 'proofread') 1
('was', 'he') 1
('do', 'hope') 1
('alive', 'she') 1
('curled', 'all') 1
('t', 'afford') 1
('hedgehog', 'had') 1
('me', 'luckily') 1
('getting', 'quite') 1
('say', 'as') 1
('eggs', 'said') 1
('great', 'girl') 1
('miss', 'we') 1
('a', 'cushion') 1
('go', 'let') 1
('hard', 'to') 1
('on', 'half') 1
('us', 'dry') 1
('you', 'down') 1
('animals', 'with') 1
('thin', 'and') 1
('into', 'one') 1
('applause', 'which') 1
('every', 'golden') 1
('done', 'about') 1
('neck', 'from') 1
('be', 'jury') 1
('that', 'as') 1
('baby', 'at') 1
('contributions', 'from') 1
('i', 'oh') 1
('alice', 'feeling') 1
('very', 'important') 1
('dodo', 'managed') 1
('their', 'lives') 1
('grin', 'thought') 1
('turtle', 'angrily') 1
('have', 'grown') 1
('always', 'grinned') 1
('alarm', 'in') 1
('shall', 'think') 1
('together', 'first') 1
('quite', 'surprised') 1
('she', 'meant') 1
('who', 'instantly') 1
('small', 'for') 1
('failure', 'alice') 1
('blows', 'hurt') 1
('fact', 'alice') 1
('mad', 'how') 1
('is', 'rather') 1
('new', 'zealand') 1
('site', 'and') 1
('dr', 's') 1
('waving', 'the') 1
('of', 'people') 1
('lobster', 'as') 1
('pat', 'what') 1
('quite', 'faint') 1
('in', 'trying') 1
('since', 'then') 1
('as', 'loud') 1
('are', 'back') 1
('or', 'perhaps') 1
('timidly', 'some') 1
('foot', 'to') 1
('foot', 'esq') 1
('any', 'lesson-books') 1
('cat', 'a') 1
('then', 'such') 1
('now', 'but') 1
('oh', 'the') 1
('a', 'format') 1
('caterpillar', 'seemed') 1
('alice', 'dodged') 1
('no', 'such') 1
('drinking', 'they') 1
('of', 'dogs') 1
('place', 'on') 1
('honour', 'digging') 1
('t', 'usual') 1
('gryphon', 'repeated') 1
('stupid', 'for') 1
('remarked', 'there') 1
('speak', 'but') 1
('of', 'trouble') 1
('and', 'crawled') 1
('saw', 'them') 1
('sight', 'then') 1
('some', 'book') 1
('m', 'certain') 1
('alice', 'shall') 1
('bear', 'mind') 1
('oh', 'how') 1
('asked', 'with') 1
('marked', '"poison"') 1
('growing', 'larger') 1
('take', 'us') 1
('alice', 'laughed') 1
('in', 'salt') 1
('and', 'michael') 1
('growl', 'the') 1
('muddle', 'their') 1
('began', 'hunting') 1
('curtain', 'she') 1
('her', 'what') 1
('3', 'the') 1
('began', 'dreaming') 1
('sort', 'it') 1
('while', 'we') 1
('same', 'tone') 1
('file', 'should') 1
('explain', 'yourself') 1
('nose', 'much') 1
('dance', 'so') 1
('put', 'back') 1
('entangled', 'among') 1
('hedgehogs', 'the') 1
('gryphon', 'half') 1
('very', 'tones') 1
('out', 'altogether') 1
('"let', 'us') 1
('make', 'herself') 1
('child-life', 'and') 1
('at', 'your') 1
('tone', 'don') 1
('replied', 'of') 1
('queen', 'say') 1
('shall', 'do') 1
('least', 'one') 1
('eyes', 'half') 1
('and', 'stockings') 1
('hardly', 'breathe') 1
('works', 'from') 1
('he', 'consented') 1
('the', 'week') 1
('think', 'was') 1
('s', 'fairbanks') 1
('and', 'animals') 1
('herself', 'a') 1
('dear', 'what') 1
('was', 'saying') 1
('kitchen', 'when') 1
('song', 'what') 1
('you', 'there') 1
('to', 'doubt') 1
('some', 'unimportant') 1
('lizard', 'bill') 1
('difficulty', 'as') 1
('of', 'expressing') 1
('needs', 'come') 1
('the', 'waving') 1
('it', 'hasn') 1
('you', 'keep') 1
('help', 'to') 1
('said', 'these') 1
('summer', 'day') 1
('forgot', 'how') 1
('one', 'wasn') 1
('be', 'grand') 1
('conversation', 'you') 1
('a', 'cheap') 1
('the', 'blame') 1
('said', 'was') 1
('mushroom', 'for') 1
('pocket', 'till') 1
('names', 'the') 1
('manner', 'of') 1
('jumping', 'about') 1
('alice', 'off') 1
('done', 'just') 1
('and', 'gave') 1
('out', '"he') 1
('the', 'cool') 1
('any', 'fees') 1
('to', 'others') 1
('of', 'obtaining') 1
('pray', 'what') 1
('refund', 'set') 1
('look', 'first') 1
('glad', 'that') 1
('"', 'as') 1
('added', 'with') 1
('mouse', 'the') 1
('desperate', 'that') 1
('copy', 'is') 1
('others', 'we') 1
('pay', 'a') 1
('shrieks', 'and') 1
('said', 'gravely') 1
('ahem', 'said') 1
('its', 'volunteers') 1
('a', 'computer') 1
('fright', 'oh') 1
('short', 'charges') 1
('way', 'she') 1
('others', 'took') 1
('any', 'wine') 1
('cross-examine', 'the') 1
('large', 'cat') 1
('turning', 'purple') 1
('one', 'on') 1
('from', 'her') 1
('so', 'nicely') 1
('hatter', 'instead') 1
('rather', 'doubtfully') 1
('hide', 'a') 1
('girls', 'in') 1
('different', 'from') 1
('1', 'b') 1
('as', 'such') 1
('table', 'she') 1
('is', 'for') 1
('their', 'turns') 1
('s', 'because') 1
('tone', 'tell') 1
('like', 'her') 1
('walrus', 'or') 1
('if', 'nothing') 1
('like', 'for') 1
('replied', 'here') 1
('bottle', 'on') 1
('words', 'her') 1
('t', 'squeeze') 1
('m', 'very') 1
('of', 'hundreds') 1
('rather', 'crossly') 1
('replied', 'so') 1
('everybody', 'minding') 1
('son', 'i') 1
('green', 'waiting') 1
('director', 'gbnewby@pglaf') 1
('many', 'a') 1
('thimble', 'looking') 1
('much', 'so') 1
('jar', 'from') 1
('at', '4557') 1
('you', 'been') 1
('are', 'redistributing') 1
('dance', 'said') 1
('another', 'of') 1
('always', 'pepper') 1
('usual', 'i') 1
('afraid', 'said') 1
('most', 'people') 1
('terror', 'oh') 1
('liked', 'so') 1
('letter', 'nearly') 1
('today', 'i') 1
('s', 'great') 1
('the', 'pope') 1
('queen', 'stamping') 1
('go', 'nearer') 1
('down', 'yet') 1
('a', 'mournful') 1
('"', '"coming') 1
('hatter', 's') 1
('mouse', 'o') 1
('shouted', 'out') 1
('suppose', 'by') 1
('dance', 'is') 1
('earth', 'takes') 1
('hunting', 'all') 1
('know', 'which') 1
('must', 'return') 1
('other', 'intellectual') 1
('and', 'night') 1
('knock', 'and') 1
('might', 'catch') 1
('not', 'we') 1
('nine', 'inches') 1
('very', 'decided') 1
('as', 'prizes') 1
('in', 'ringlets') 1
('rather', 'shyly') 1
('s', 'too') 1
('the', 'u') 1
('something', 'about') 1
('started', 'violently') 1
('really', 'you') 1
('tea', 'spoon') 1
('him', 'his') 1
('again', 'sitting') 1
('prisoner', 'to') 1
('labelled', 'orange') 1
('that', 'call') 1
('gave', 'herself') 1
('derive', 'from') 1
('is', 'here') 1
('foot', 'high') 1
('"you', 'are') 1
('a', 'bound') 1
('chorus', 'wow') 1
('answer', 'they') 1
('bark', 'just') 1
('which', 'it') 1
('thoughtfully', 'at') 1
('its', 'wings') 1
('reach', 'at') 1
('we', 'put') 1
('wash', 'the') 1
('had', 'powdered') 1
('nursing', 'a') 1
('all', 'quarrel') 1
('he', 'must') 1
('turned', 'and') 1
('cats', 'not') 1
('on', 'slates') 1
('find', 'them') 1
('$5', '000') 1
('and', 'under') 1
('your', 'eye') 1
('had', 'vanished') 1
('little', 'recovered') 1
('queer', 'won') 1
('quite', 'dry') 1
('would', 'keep') 1
('works', 'calculated') 1
('ein', 'or') 1
('deal', 'faster') 1
('busy', 'farm-yard') 1
('city', 'ut') 1
('write', 'it') 1
('book', 'her') 1
('"he', 's') 1
('displaying', 'or') 1
('face', 'with') 1
('did', 'old') 1
('age', 'knew') 1
('anywhere', 'without') 1
('chorus', 'again') 1
('would', 'die') 1
('in', 'about') 1
('"poison"', 'or') 1
('voice', 'not') 1
('housemaid', 'she') 1
('all', 'come') 1
('only', 'shook') 1
('me', 'on') 1
('began', 'fancying') 1
('soup', 'off') 1
('to', 'grin') 1
('make', 'personal') 1
('everybody', 'says') 1
('stole', 'the') 1
('"', 'oh') 1
('alice', 'coming') 1
('trusts', 'to') 1
('was', 'trying') 1
('expression', 'that') 1
('eaglet', 'i') 1
('finished', 'her') 1
('flamingo', 'was') 1
('louder', 'tone') 1
('her', 'they') 1
('eat', 'some') 1
('morals', 'in') 1
('will', 'just') 1
('other', 'for') 1
('site', 'www') 1
('only', 'ten') 1
('mine', 'a') 1
('his', 'book') 1
('you', 'he') 1
('edge', 'with') 1
('ann', 'and') 1
('is', '"birds') 1
('bringing', 'herself') 1
('shall', 'fall') 1
('death', '"') 1
('could', 'grin') 1
('a', 'look') 1
('ebook', 'is') 1
('set', 'off') 1
('impatiently', 'it') 1
('he', 'pronounced') 1
('turtle', 'yawned') 1
('next', 'it') 1
('license', 'especially') 1
('section', '1') 1
('s', 'goals') 1
('be', 'trampled') 1
('round', '"') 1
('come', 'i') 1
('lit', 'up') 1
('no', 'there') 1
('in', 'formats') 1
('shall', 'ever') 1
('rabbit', 'as') 1
('of', 'showing') 1
('and', 'music') 1
('sea', 'and') 1
('gryphon', 'sighing') 1
('will', 'support') 1
('not', 'do') 1
('and', 'skurried') 1
('help', 'that') 1
('inquired', 'alice') 1
('is', 'subject') 1
('unfolded', 'the') 1
('card', 'donations') 1
('sharp', 'kick') 1
('flower-pot', 'that') 1
('own', 'children') 1
('t', 'do') 1
('your', 'adventures') 1
('who', 'has') 1
('rabbit', 'just') 1
('this', 'grand') 1
('brave', 'they') 1
('every', 'door') 1
('prominently', 'whenever') 1
('he', 'with') 1
('wild', 'beasts') 1
('true', 'if') 1
('the', 'pair') 1
('proofread', 'public') 1
('month', 'is') 1
('my', 'size') 1
('came', 'jumping') 1
('remarked', 'right') 1
('one', 'corner') 1
('on', 'better') 1
('them', 'round') 1
('teases', 'chorus') 1
('turtle', 'yet') 1
('repeat', '"') 1
('taken', 'advantage') 1
('drink', 'anything') 1
('busily', 'writing') 1
('other', 'looking') 1
('ink', 'that') 1
('be', 'full') 1
('dark', 'overhead') 1
('which', 'they') 1
('am', 'in') 1
('flustered', 'to') 1
('was', 'near') 1
('feeling', 'said') 1
('replied', 'but') 1
('ll', 'all') 1
('puss', 'she') 1
('other', 'than') 1
('one', 'elbow') 1
('question', 'added') 1
('trumpet', 'in') 1
('open', 'gazing') 1
('carry', 'it') 1
('your', 'story') 1
('once', 'again') 1
('3', 'and') 1
('table', 'doesn') 1
('state', 'applicable') 1
('information', 'can') 1
('arches', 'are') 1
('lacie', 'and') 1
('and', 'burning') 1
('earnestly', 'i') 1
('head', 'began') 1
(']', 'what') 1
('jury', '"') 1
('the', 'highest') 1
('wondering', 'what') 1
('any', 'further') 1
('nose', 'also') 1
('they', 'do') 1
('then', 'all') 1
('tears', 'until') 1
('confirmed', 'as') 1
('named', '11') 1
('corners', 'next') 1
('to', 'nine') 1
('a', 'royalty') 1
('elbows', 'on') 1
('are', 'painting') 1
('back', 'of') 1
('may', 'look') 1
('tears', 'curiouser') 1
('howling', 'alternately') 1
('wanted', 'it') 1
('large', 'again') 1
('sight', 'hurrying') 1
('dinah', 'was') 1
('direct', 'indirect') 1
('pitied', 'him') 1
('judge', 'i') 1
('thousand', 'miles') 1
('bats', 'i') 1
('like', 'telescopes') 1
('for', 'croqueting') 1
('it', 'panting') 1
('had', 'now') 1
('high', 'added') 1
('d', 'the') 1
('drawing', 'of') 1
('ever', 'yet') 1
('tree', 'did') 1
('table', 'to') 1
('were', 'my') 1
('any', 'kind') 1
('alice', 'jumping') 1
('together', 'she') 1
('law', 'and') 1
('down', 'important') 1
('time', 'off') 1
('late', 'it') 1
('turning', 'into') 1
('posted', 'on') 1
('"twinkle', 'twinkle') 1
('to', 'indemnify') 1
('rubbed', 'its') 1
('support', 'and') 1
('can', 'see') 1
('birthday', 'presents') 1
('of', 'rock') 1
('day', 'maybe') 1
('content', 'now') 1
('ill', 'so') 1
('the', 'open') 1
('generally', 'happens') 1
('well', 'at') 1
('lying', 'fast') 1
('without', 'permission') 1
('copy', 'display') 1
('more', 'subdued') 1
('suet', 'yet') 1
('sun', 'and') 1
('only', 'see') 1
('well', 'thought') 1
('reach', 'half') 1
('hatter', 'or') 1
('whispered', 'to') 1
('involved', 'in') 1
('other', 'subject') 1
('how', 'neatly') 1
('dish', 'of') 1
('upstairs', 'in') 1
('s', 'unless') 1
('puppy', 'was') 1
('head', 'alice') 1
('a', 'wretched') 1
('s', 'high') 1
('garden', '"') 1
('changed', 'do') 1
('re', 'only') 1
('voice', 'outside') 1
('crying', 'in') 1
('barrowful', 'will') 1
('grow', 'large') 1
('hate', 'cats') 1
('alice', 'one') 1
('and', 'anxious') 1
('re', 'growing') 1
('muchness', 'you') 1
('was', 'moderate') 1
('things', 'being') 1
('turtle', 'so') 1
('too', 'dark') 1
('caterpillar', 'is') 1
('before', 'sure') 1
('been', 'that') 1
('righthand', 'bit') 1
('her', 'calling') 1
('indemnity', '-') 1
('be', 'different') 1
('permanent', 'future') 1
('returning', 'splendidly') 1
('ask', 'any') 1
('pence', 'take') 1
('remember', 'her') 1
('felt', 'unhappy') 1
('hold', 'up') 1
('corner', 'oh') 1
('quite', 'unhappy') 1
('a', 'dunce') 1
('for', 'anything') 1
('sizes', 'in') 1
('king', 'then') 1
('"we', 'know') 1
('the', 'bones') 1
('picking', 'them') 1
('you', 'dear') 1
('dinah', 'at') 1
('paragraph', 'f3') 1
('something', 'comes') 1
('wonderland', 'of') 1
('which', 'gave') 1
('plan', 'done') 1
('burn', 'the') 1
('ma', 'am') 1
('curled', 'round') 1
('offended', 'we') 1
('iii', 'a') 1
('pie-crust', 'and') 1
('wow', 'while') 1
('first', 'minute') 1
('head', 'could') 1
('anyone', 'for') 1
('other', 'two') 1
('using', 'and') 1
('then', 'turn') 1
('rabbit', 'angrily') 1
('another', 'confusion') 1
('limitation', 'permitted') 1
('collection', 'are') 1
('no', 'that') 1
('your', 'choice') 1
('the', 'stupidest') 1
('strings', 'into') 1
('now', 'chapter') 1
('the', 'shingle') 1
('subscribe', 'to') 1
('to', 'return') 1
('baby', 'altogether') 1
('of', 'wonderland') 1
('a', 'considerable') 1
('began', 'with') 1
('the', 'guests') 1
('learned', 'french') 1
('were', 'elsie') 1
('you', 'promised') 1
('for', 'turns') 1
('buttered', 'toast') 1
('t', 'say') 1
('have', 'my') 1
('bite', 'alice') 1
('he', 'sent') 1
('but', 'here') 1
('eyes', 'but') 1
('concluded', 'the') 1
('rabbit-hole', 'and') 1
('english', 'i') 1
('a', 'complaining') 1
('s', 'murdering') 1
('two', 'which') 1
('tone', 'i') 1
('t', 'always') 1
('both', 'creatures') 1
('remember', 'what') 1
('tight', 'hold') 1
('door', 'pray') 1
('us', 'three') 1
('never', 'could') 1
('been', 'annoyed') 1
('william', 'and') 1
('arithmetic', 'ambition') 1
('please', 'ma') 1
('works', 'to') 1
('large', 'or') 1
('usually', 'bleeds') 1
('understand', 'agree') 1
('our', 'house') 1
('after', 'these') 1
('one', 'flapper') 1
('time', 'after') 1
('taking', 'not') 1
('such', 'sudden') 1
('grin', 'and') 1
('our', 'new') 1
('or', 'cause') 1
('off', 'alice') 1
('you', 'receive') 1
('ravens', 'and') 1
('had', 'only') 1
('by', 'an') 1
('interesting', 'i') 1
('politely', 'for') 1
('and', 'must') 1
('cushion', 'and') 1
('leading', 'right') 1
('the', 'insolence') 1
('how', 'old') 1
('taste', 'theirs') 1
('everybody', 'else') 1
('and', 'soon') 1
('my', 'going') 1
('dream', 'said') 1
('eye', 'how') 1
('before', 'her') 1
('constant', 'state') 1
('she', 'never') 1
('be', 'wasting') 1
('said', 'poor') 1
('by', 'railway') 1
('rabbit', 'began') 1
('have', 'just') 1
('ever', 'eat') 1
('how', 'small') 1
('down', 'she') 1
('she', 'swallowed') 1
('of', 'alice') 1
('a', 'king') 1
('words', 'all') 1
('escape', 'and') 1
('coming', 'it') 1
('status', 'by') 1
('washing', 'extra') 1
('hatter', 'dropped') 1
('him', 'off') 1
('folding', 'his') 1
('across', 'her') 1
('law', 'i') 1
('you', 'hate') 1
('looking', 'hard') 1
('bread-and-butter', 'in') 1
('for', 'his') 1
('no', 'prohibition') 1
('loudly', 'and') 1
('asleep', 'he') 1
('to', 'half-past') 1
('lobsters', 'shouted') 1
('whisper', 'that') 1
('verse', 'but') 1
('crowd', 'below') 1
('sea', '"') 1
('arms', 'took') 1
('ways', 'of') 1
('that', 'better') 1
('this', 'creature') 1
('many', 'footsteps') 1
('appeared', 'again') 1
('8', 'you') 1
('in', 'contemptuous') 1
('without', 'pictures') 1
('that', 'followed') 1
('day', 'made') 1
('interest', 'in') 1
('suppose', 'we') 1
('name', 'however') 1
('dear', '"') 1
('was', 'enough') 1
('complaining', 'tone') 1
('nice', 'it') 1
('hate', 'c') 1
('two', 'said') 1
('or', 'something') 1
('or', 'pglaf') 1
('dormouse', 'well') 1
('these', 'in') 1
('or', 'charges') 1
('again', 'twenty-four') 1
('door', 'between') 1
('me', 'smaller') 1
('from', 'if') 1
('pool', 'as') 1
('one', 'else') 1
('account', 'of') 1
('little', 'room') 1
('for', 'free') 1
('cause', 'was') 1
('laughed', 'let') 1
('jaw', 'has') 1
('email', 'contact') 1
('mustard', 'both') 1
('lock', 'and') 1
('linked', 'into') 1
('these', 'cakes') 1
('apply', 'to') 1
('tears', 'that') 1
('a', 'defective') 1
('sobs', 'to') 1
('not', 'claim') 1
('very', 'provoking') 1
('honour', 'but') 1
('the', 'fire-irons') 1
('still', 'as') 1
('to', 'warranties') 1
('so', 'ordered') 1
('away', 'or') 1
('of', '20%') 1
('triumphantly', 'pointing') 1
('not', 'received') 1
('judge', 'she') 1
('crowd', 'of') 1
('about', 'new') 1
('him', 'while') 1
('some', 'executions') 1
('s', 'first') 1
('very', 'said') 1
('then', 'we') 1
('majesty', 'means') 1
('round', 'your') 1
('book', 'rule') 1
('how', 'delightful') 1
('t', 'she') 1
('entangled', 'together') 1
('half', 'down') 1
('turns', 'and') 1
('i', 'ah') 1
('talking', 'such') 1
('of', 'chance') 1
('yelp', 'of') 1
('very', 'white') 1
('late', 'to') 1
('two', 'pennyworth') 1
('his', 'confusion') 1
('a', 'railway') 1
('more', 'at') 1
('off', 'you') 1
('little', 'feeble') 1
('rearing', 'itself') 1
('decided', 'to') 1
('been', 'anything') 1
('trial', 'is') 1
('learn', 'not') 1
('faces', 'and') 1
('detach', 'or') 1
('could', 'bear') 1
('chin', 'i') 1
('shorter', 'until') 1
('its', 'share') 1
('conversation', 'are') 1
('more', 'i') 1
('any', 'defect') 1
('undoing', 'itself') 1
('gone', 'far') 1
('was', 'neither') 1
('enough', 'i') 1
('better', 'leave') 1
('by', 'reading') 1
('king', 'going') 1
('for', 'keeping') 1
('this', 'paper') 1
('eat', 'the') 1
('great', 'disgust') 1
('mouse', 'i') 1
('x', 'the') 1
('elsie', 'lacie') 1
('enough', 'don') 1
('paper', 'label') 1
('would', 'twist') 1
('re', 'both') 1
('remedies', 'speak') 1
('it', 'happens') 1
('trees', 'had') 1
('or', 'of') 1
('why', 'should') 1
('thing', 'with') 1
('king', 'looking') 1
('us', 'for') 1
('org', '1') 1
('sell', 'you') 1
('a', 'rush') 1
('your', 'table') 1
('f3', 'you') 1
('getting', 'out') 1
('possession', 'if') 1
('credit', 'card') 1
('never', 'sure') 1
('it', 'about') 1
('conduct', 'at') 1
('before', 'i') 1
('minutes', 'to') 1
('written', 'to') 1
('i', 'breathe"') 1
('he', 'stole') 1
('so', 'now') 1
('till', 'his') 1
('used', 'if') 1
('through', 'was') 1
('was', 'perfectly') 1
('hear', 'him') 1
('foundation', 'makes') 1
('signed', 'your') 1
('other', 'immediate') 1
('hands', 'so') 1
('that', 'screamed') 1
('contempt', 'i') 1
('anything', 'had') 1
('old', 'magpie') 1
('salmon', 'and') 1
('childhood', 'and') 1
('i', 'or') 1
('cross', 'and') 1
('queen', 'can') 1
('on', 'going') 1
('you', 'myself') 1
('shrill', 'voice') 1
('more', 'till') 1
('or', 'fitness') 1
('and', 'mentioned') 1
('advisable', 'to') 1
('repeating', 'you') 1
('vii', 'a') 1
('an', 'enormous') 1
('if', 'that') 1
('jury', 'and') 1
('treacle-well', 'there') 1
('game', 'or') 1
('mean', 'said') 1
('keep', 'the') 1
('part', 'about') 1
('minutes', 'that') 1
('custody', 'and') 1
('shrill', 'cries') 1
('witness', 'and') 1
('rabbit', 'whispered') 1
('to', 'whom') 1
('of', 'beheading') 1
('sight', 'they') 1
('to', 'queer') 1
('with', 'diamonds') 1
('really', 'this') 1
('was', 'holding') 1
('the', 'rose-tree') 1
('states', 'copyright') 1
('dreadful', 'she') 1
('had', 'in') 1
('ran', 'away') 1
('for', 'generations') 1
('baby', 'was') 1
('explanation', 'to') 1
('all', 'as') 1
('them', 'thought') 1
('not', 'marked') 1
('bottle', 'marked') 1
('it', 'grunted') 1
('work', 'with') 1
('can', 'but') 1
('kneel', 'down') 1
('speak', 'severely') 1
('time', 'in') 1
('asked', 'in') 1
('generally', 'just') 1
('no', 'never') 1
('up', 'nonproprietary') 1
('the', 'goldfish') 1
('herself', 'because') 1
('dormouse', 'very') 1
('house', 'of') 1
('see', 'sections') 1
('place', 'around') 1
('sharply', 'and') 1
('nose', 'what') 1
('please', 'check') 1
('go', '"') 1
('wherever', 'you') 1
('putting', 'their') 1
('notifies', 'you') 1
('enough', 'about') 1
('you', 'invented') 1
('damage', 'or') 1
('not', 'look') 1
('s', 'angry') 1
('the', 'spot') 1
('prevent', 'you') 1
('much', 'to') 1
('annoyed', 'said') 1
('teacup', 'and') 1
('sweet-tempered', 'i') 1
('cry', 'of') 1
('door', 'leading') 1
('bats', 'eat') 1
('refund', '-') 1
('next', 'that') 1
('to', 'offer') 1
('you', 'incessantly') 1
('equipment', 'including') 1
('here', 'he') 1
('or', 'dogs') 1
('and', 'distributing') 1
('suit', 'my') 1
('this', 'or') 1
('confused', 'i') 1
('foundation', 'at') 1
('little', 'dog') 1
('64-6221541', 'its') 1
('curious', 'feeling') 1
('door', 'call') 1
('quite', 'giddy') 1
('any', 'tears') 1
('a', 'last') 1
('alice', 'were') 1
('turtle', 'repeated') 1
('arm', 'for') 1
('a', 'caterpillar') 1
('know', 'much') 1
('never', 'happened') 1
('golden', 'scale') 1
('growing', 'near') 1
('softly', 'after') 1
('should', 'meet') 1
('shook', 'the') 1
('in', 'machine') 1
('or', 'they') 1
('fallen', 'by') 1
('grow', 'to') 1
('you', 'ask') 1
('shutting', 'up') 1
('executions', 'the') 1
('gloomily', 'then') 1
('remembered', 'how') 1
('wonderful', 'adventures') 1
('we', 'learned') 1
('to-day', 'i') 1
('keep', 'herself') 1
('jurymen', 'it') 1
('in', '2001') 1
('looking', 'angrily') 1
('idea', 'that') 1
('here', 'in') 1
('your', 'places') 1
('d', 'like') 1
('on', 'like') 1
('the', 'picture') 1
('with', 'extras') 1
('loudly', 'the') 1
('did', 'she') 1
('what', 'size') 1
('a', 'trumpet') 1
('said', 'advance') 1
('compilation', 'copyright') 1
('long', 'argument') 1
('upright', 'as') 1
('a', 'noise') 1
('in', 'existence') 1
('by', 'far') 1
('large', 'flower-pot') 1
('whatsoever', 'you') 1
('red-hot', 'poker') 1
('displayed', 'performed') 1
('of', 'anyone') 1
('down', 'their') 1
('him', 'it') 1
('life', 'i') 1
('to', 'an') 1
('marmalade', 'but') 1
('is', 'in') 1
('and', 'sighing') 1
('wings', 'serpent') 1
('vulgar', 'things') 1
('but', 'hurriedly') 1
('and', 'wag') 1
('wept', 'when') 1
('days', 'but') 1
('really', 'my') 1
('and', 'dry') 1
('sentence', 'with') 1
('thing', 'howled') 1
('eat', 'cats') 1
('so', 'please') 1
('schoolroom', 'and') 1
('back', 'for') 1
('real', 'mary') 1
('fur', 'and') 1
('cries', 'to') 1
('swamp', 'our') 1
('all', 'very') 1
('questions', 'of') 1
('license', 'you') 1
('a', 'door') 1
('carroll', 'end') 1
('good-natured', 'she') 1
('pictures', 'of') 1
('fact', 'is') 1
('his', 'business') 1
('wood', 'to') 1
('hoarse', 'feeble') 1
('two', 'wouldn') 1
('something', 'more') 1
('dropped', 'it') 1
('why', 'they') 1
('ix', 'the') 1
('question', 'certainly') 1
('peeping', 'anxiously') 1
('what', 'nonsense') 1
('are', 'particularly') 1
('hastily', 'interrupted') 1
('try', 'to') 1
('lazy', 'thing') 1
('unless', 'there') 1
('pool', 'i') 1
('politely', 'did') 1
('live', 'hedgehogs') 1
('not', 'growling') 1
('were', 'of') 1
('was', 'what') 1
('box', 'her') 1
('great', 'delight') 1
('large', 'pigeon') 1
('for', 'repeating') 1
('things', 'to') 1
('is', 'blown') 1
('old', 'editions') 1
('the', 'cupboards') 1
('at', 'ours') 1
('written', 'on') 1
('faintly', 'came') 1
('have', 'read') 1
('sulky', 'and') 1
('sea-shore', 'two') 1
('turtle', 'drew') 1
('on', '"they') 1
('she', 'scolded') 1
('surprise', 'of') 1
('pity', '"') 1
('mouth', 'but') 1
('roof', 'there') 1
('and', 'beat') 1
('filled', 'the') 1
('am', 'older') 1
('happened', 'lately') 1
('lived', 'at') 1
('with', 'permission') 1
('"what', 'a') 1
('her', 'coaxing') 1
('has', 'lasted') 1
('puppy', 's') 1
('of', 'merchantibility') 1
('whole', 'she') 1
('however', 'they') 1
('hatter', 'who') 1
('messages', 'for') 1
('am', 'but') 1
('hastily', 'said') 1
('it', 'on') 1
('and', 'day') 1
('large', 'saucepan') 1
('old', 'fury') 1
('while', 'more') 1
('much', 'more') 1
('quite', 'hungry') 1
('in', 'spite') 1
('together', 'can') 1
('and', 'though') 1
('lives', 'there') 1
('permission', 'and') 1
('who', 'agree') 1
('head', '"') 1
('middle', 'wondering') 1
('to', 'double') 1
('bill', 'fetch') 1
('gone', 'much') 1
('triumphantly', 'alice') 1
('coming', 'different') 1
('here', 'lad') 1
('and', 'fork') 1
('copying', 'displaying') 1
('queen', 'well') 1
('sneezed', 'occasionally') 1
('and', 'vanishing') 1
('be', 'executed') 1
('suppose', 'they') 1
('much', 'contradicted') 1
('caucus-race', 'said') 1
('can', 'really') 1
('so', 'shall') 1
('sharply', 'do') 1
('included', 'with') 1
('waiting', 'by') 1
('still', 'she') 1
('solemnly', 'alice') 1
('way', 'that') 1
('so', 'after') 1
('by', 'another') 1
('alice', 'without') 1
('and', 'ending') 1
('turtle', 'why') 1
('choosing', 'to') 1
('of', 'comfits') 1
('hare', 'exactly') 1
('william', '"') 1
('flame', 'of') 1
('lastly', 'she') 1
('errors', 'a') 1
('any', 'that') 1
('i', 'ask') 1
('encouraged', 'to') 1
('in', 'large') 1
('yet', 'not') 1
('an', 'unusually') 1
('queen', 'to') 1
('twinkle', 'little') 1
('been', 'reading') 1
('or', 'deletions') 1
('and', 'crossed') 1
('living', 'at') 1
('chin', 'upon') 1
('glad', 'she') 1
('seven', 'yes') 1
('to', 'occur') 1
('ah', 'my') 1
('chapter', 'x') 1
('both', 'mad') 1
('grass', 'but') 1
('ran', 'out') 1
('one', 'as') 1
('no', 'cost') 1
('arrived', 'with') 1
('for', 'when') 1
('her', 'if') 1
('door', 'that') 1
('being', 'held') 1
('much', 'under') 1
('short', 'remarks') 1
('ebooks', 'unless') 1
('would', 'take') 1
('sign', 'it') 1
('least', 'at') 1
('two', 'sobs') 1
('were', 'birds') 1
('and', 'live') 1
('answered', 'very') 1
('and', 'nobody') 1
('furiously', 'throwing') 1
('she', 'squeezed') 1
('of', 'increasing') 1
('no', 'the') 1
('strange', 'at') 1
('present', 'at') 1
('violent', 'shake') 1
('brandy', 'now') 1
('could', 'keep') 1
('he', 'found') 1
('times', 'since') 1
('gryphon', 'lying') 1
('tax', 'deductible') 1
('history', 'as') 1
(']', 'that') 1
('what', 'porpoise') 1
('seriously', 'i') 1
('she', 'crossed') 1
('queen', 'shrieked') 1
('and', 'considered') 1
('just', 'time') 1
('minute', 'and') 1
('only', 'sobbing') 1
('we', 'needn') 1
('get', 'very') 1
('alice', 'think') 1
('a', 'hot') 1
('them', 'of') 1
('even', 'room') 1
('one', 'listening') 1
('you', 'sing') 1
('get', 'away') 1
('appeared', 'but') 1
('agreement', 'disclaim') 1
('choose', 'to') 1
('herself', 'by') 1
('sulkily', 'remarked') 1
('dive', 'in') 1
('timidly', 'would') 1
('refund', 'from') 1
('leaves', 'as') 1
('frontispiece', 'if') 1
('he', 'turn') 1
('before', 'seen') 1
('tremulous', 'sound') 1
('asked', 'why') 1
('your', 'business') 1
('here', 'to') 1
('again', 'heard') 1
('some', 'wine') 1
('to', 'land') 1
('say', 'in') 1
('sir', 'if') 1
('out', 'his') 1
('of', 'canterbury') 1
('or', 'later') 1
('their', 'never-ending') 1
('little', 'and') 1
('animals', 'that') 1
('tried', 'hedges') 1
('works', 'nearly') 1
('yourself', 'i') 1
('more', 'they') 1
('the', 'problem') 1
('meanwhile', 'been') 1
('them', 'her') 1
('vanished', 'again') 1
('addition', 'to') 1
('pigs', 'have') 1
('chop', 'off') 1
('little', 'more') 1
('to', 'ear') 1
('then', 'when') 1
('me', 'alone') 1
('in', 'getting') 1
('adventures', 'from') 1
('saying', '"come') 1
('and', 'paris') 1
('overhead', 'before') 1
('think', 'he') 1
('nothing', 'can') 1
('other', 'dish') 1
('others', 'are') 1
('getting', 'late') 1
('he', 'handed') 1
('whatever', 'persisted') 1
('in', 'there') 1
('sh', 'sh') 1
('off', 'like') 1
('tricks', 'very') 1
('the', 'entrance') 1
('here', 'before') 1
('cauldron', 'which') 1
('doorway', 'and') 1
('mournful', 'tone') 1
('dishes', 'the') 1
('sure', 'but') 1
('turtle', 'would') 1
('provide', 'in') 1
('rude', 'so') 1
('small', 'staff') 1
('never', 'go') 1
('and', 'fainting') 1
('should', 'all') 1
('close', 'and') 1
('very', 'supple') 1
('writing', 'without') 1
('manage', 'to') 1
('children', 'there') 1
('yourself', 'no') 1
('its', 'ears') 1
('grew', 'no') 1
('on', 'we') 1
('see', 'some') 1
('losing', 'her') 1
('dinah', 'here') 1
('replied', '"too') 1
('again', 'this') 1
('and', 'condemn') 1
('to', 'climb') 1
('these', 'changes') 1
('org/donate', 'section') 1
('money', 'if') 1
('stop', 'to') 1
('s', 'any') 1
('want', 'you') 1
('puzzling', 'it') 1
('itself', 'the') 1
('larger', 'sir') 1
('voice', 'until') 1
('laid', 'for') 1
('be', 'judge') 1
('brushing', 'away') 1
('addressing', 'nobody') 1
('cats', 'could') 1
('anything', 'tougher') 1
('names', 'were') 1
('tell', 'what') 1
('the', 'originator') 1
('those', 'whom') 1
('this', 'did') 1
('eyes', 'he') 1
('enough', 'hatching') 1
('must', 'ever') 1
('going', 'a') 1
('that', 'but') 1
('could', 'manage') 1
('been', 'for') 1
('a', 'wink') 1
('no', 'tie') 1
('time', 'perhaps') 1
('trial', 'for') 1
('kitchen', 'at') 1
('very', 'neatly') 1
('understand', 'you') 1
('work', 'by') 1
('of', 'keeping') 1
('t', 'hear') 1
('is', 'right') 1
('they', 'seem') 1
('tone', 'hm') 1
('lobsters', 'to') 1
('croquet', 'she') 1
('charges', 'if') 1
('generally', 'you') 1
('i', 'proceed') 1
('was', 'losing') 1
('for', 'they') 1
('them', 'best') 1
('running', 'in') 1
('them', 'she') 1
('different', 'the') 1
('said', 'after') 1
('really', 'now') 1
('her', 'leaning') 1
('got', 'much') 1
('she', 'trembled') 1
('guinea-pig', 'cheered') 1
('ll', 'put') 1
('to', 'our') 1
('an', 'uncomfortably') 1
('was', 'written') 1
('shall', 'we') 1
('format', 'must') 1
('the', 'bill') 1
('limitation', 'set') 1
('felt', 'so') 1
('when', 'did') 1
('had', 'struck') 1
('pig', 'replied') 1
('off', 'that') 1
('be', 'more') 1
('"i', 'get') 1
('moment', 'then') 1
('form', 'into') 1
('original', '"plain') 1
('knowledge', 'of') 1
('leaders', 'and') 1
('was', 'created') 1
('to', 'prepare') 1
('do', 'lessons') 1
('to', 'to') 1
('is', 'like') 1
('of', 'singers') 1
('like', 'this') 1
('suppressed', 'come') 1
('been', 'examining') 1
('living', 'would') 1
('think', 'dinah') 1
('than', 'his') 1
('rich', 'and') 1
('grey', 'locks') 1
('her', 'toes') 1
('dormouse', 'say') 1
('and', 'away') 1
('be', 'removed') 1
('ten', 'hours') 1
('to', 'laugh') 1
('4', '"information') 1
('on', 'different') 1
('quite', 'forgotten') 1
('dormouse', 'had') 1
('dormouse', 'is') 1
('began', 'ordering') 1
('84116', '801') 1
('gardeners', 'or') 1
('suddenly', 'upon') 1
('more', 'here') 1
('sharing', 'project') 1
('footman', 'because') 1
('they', 'will') 1
('life', 'and') 1
('head', 'over') 1
('rule', 'you') 1
('entirely', 'disappeared') 1
('win', 'that') 1
('each', 'with') 1
('dormouse', 'into') 1
('swim', 'he') 1
('cat', 'if') 1
('curiosity', 'what') 1
('grant', 'that') 1
('duchess', 'digging') 1
('william', 's') 1
('ll', 'understand') 1
('kept', 'from') 1
('right', 'shouted') 1
('not', 'give') 1
('have', 'told') 1
('indicate', 'that') 1
('my', 'forehead') 1
('one', 'in') 1
('i', 'deny') 1
('xii', 'alice') 1
('long', 'sleep') 1
('relief', 'now') 1
('be', 'kind') 1
('anything', 'then') 1
('links', 'and') 1
('inwards', 'and') 1
('4', 'and') 1
('nobody', 'you') 1
('sounds', 'will') 1
('you', 'first') 1
('confusing', 'thing') 1
('looked', 'puzzled') 1
('sadly', 'do') 1
('waiting', 'till') 1
('can', 'explain') 1
('her', 'dream') 1
('gutenberg-tm', 'project') 1
('the', 'individual') 1
('even', 'before') 1
('then', 'at') 1
('pity', 'i') 1
('tea', 'at') 1
('air', 'off') 1
('song', 'about') 1
('its', 'nest') 1
('much', 'use') 1
('of', 'there') 1
('so', 'indeed') 1
('sob', 'i') 1
('you', 'already') 1
('startled', 'by') 1
('exists', 'because') 1
('t', 'reach') 1
('she', 'bore') 1
('t', 'stay') 1
('added', 'come') 1
('so', 'there') 1
('name', 'w') 1
('waited', 'when') 1
('respect', 'cheshire') 1
('sea', 'cried') 1
('however', 'this') 1
('little', 'different') 1
('noticed', 'a') 1
('speak', 'with') 1
('away', 'there') 1
('to', 'kneel') 1
('all', 'mad') 1
('happened', 'and') 1
('having', 'heard') 1
('drunk', 'quite') 1
('she', 'at') 1
('inkstand', 'at') 1
('being', 'pinched') 1
('form', 'accessible') 1
('about', 'change') 1
('seven', 'is') 1
('remarked', 'it') 1
('particular', 'paper') 1
('porpoise', '"keep') 1
('court', 'everybody') 1
('mine', 'before') 1
('had', 'sat') 1
('reading', 'the') 1
('by', 'everybody') 1
('soon', 'left') 1
('purple', 'i') 1
('girl', 'she') 1
('ve', 'offended') 1
('fish-footman', 'was') 1
('among', 'mad') 1
('so', 'used') 1
('fairy-tales', 'i') 1
('warranties', 'or') 1
('second', 'thoughts') 1
('indignantly', 'however') 1
('hatter', 'asked') 1
('a', 'rumbling') 1
('as', 'mouse-traps') 1
('remember', 'it') 1
('not', 'ada') 1
('her', 'idea') 1
('of', 'equipment') 1
('knocked', 'there') 1
('why', 'mary') 1
('"i', 'passed') 1
('s', 'and') 1
('agreement', 'violates') 1
('began', 'telling') 1
('to', 'pass') 1
('your', 'periodic') 1
('speech', 'they') 1
('shoulder', 'and') 1
('whom', 'she') 1
('the', 'sudden') 1
('sitting', 'by') 1
('punished', 'for') 1
('dropped', 'the') 1
('prominently', 'displaying') 1
('helped', 'herself') 1
('little', 'the') 1
('feet', 'on') 1
('rightly', 'too') 1
('royalties', 'under') 1
('pretend', 'to') 1
('a', 'jar') 1
('i', 'declare') 1
('whole', 'court') 1
('two', 'sides') 1
('high', 'enough') 1
('canary', 'called') 1
('worse', 'than') 1
('these', 'works') 1
('bit', 'and') 1
('first', 'came') 1
('blown', 'out') 1
('alarmed', 'at') 1
('birds', 'i') 1
('because', 'some') 1
('right', 'house') 1
('wondering', 'how') 1
('serpent', 'she') 1
('just', 'going') 1
('damages', 'costs') 1
('clearer', 'than') 1
('not', 'attending') 1
('to', 'incomplete') 1
('broke', 'to') 1
('wonderful', 'dream') 1
('collection', 'of') 1
('indirect', 'consequential') 1
('back', 'by') 1
('time', 'while') 1
('put', 'them') 1
('hands', 'on') 1
('you', 'guessed') 1
('said', 'do') 1
('to', 'curtsey') 1
('perhaps', 'they') 1
('appear', 'prominently') 1
('"uglification', '"') 1
('her', 'paws') 1
('bright', 'and') 1
('went', 'out') 1
('never', 'forgotten') 1
('laid', 'his') 1
('place', 'and') 1
('seen', 'everything') 1
('watch', 'and') 1
('every', 'way') 1
('execution', 'then') 1
('was', 'how') 1
('tone', 'sit') 1
('doubled-up', 'soldiers') 1
('so', 'proud') 1
('he', 'denies') 1
('they', 'you') 1
('trotting', 'along') 1
('a', 'bone') 1
('been', 'wandering') 1
('guests', 'had') 1
('shock', 'of') 1
('in', 'crying') 1
('joined', 'in') 1
('an', 'arrow') 1
('players', 'and') 1
('or', 'incidental') 1
('secret', 'kept') 1
('swam', 'lazily') 1
('gryphon', 'before') 1
('imitated', 'somebody') 1
('her', 'lap') 1
('and', 'pour') 1
('my', 'elbow') 1
('waving', 'their') 1
('effort', 'to') 1
('must', 'make') 1
('thanked', 'the') 1
('keep', 'back') 1
('all', 'sat') 1
('face', 'as') 1
('s', 'evidence') 1
('you', 'again') 1
('thatched', 'with') 1
('king', 'in') 1
('end', 'you') 1
('she', 'comes') 1
('witness', 'the') 1
('makes', 'my') 1
('any', 'distributor') 1
('eat', 'eggs') 1
('rather', 'anxiously') 1
('mystery', 'the') 1
('bats', 'and') 1
('vanished', 'alice') 1
('or', 'employee') 1
('were', 'sharing') 1
('hear', 'his') 1
('i', 'really') 1
('anyone', 'in') 1
('moderate', 'but') 1
('let', 'him') 1
('myself', 'you') 1
('miles', 'high') 1
('my', 'time') 1
('him', 'with') 1
('country', 'in') 1
('a', 'heap') 1
('book', 'said') 1
('serpent', 'but') 1
('turn', 'that') 1
('sobbing', 'she') 1
('at', 'two') 1
('seemed', 'inclined') 1
('warranty', 'disclaimer') 1
('of', 'no') 1
('things', 'said') 1
('being', 'such') 1
('both', 'sat') 1
('another', 'puzzling') 1
('sure', 'those') 1
('executes', 'nobody') 1
('doubt', 'and') 1
('doubt', 'only') 1
('m', 'pleased') 1
('upon', 'pegs') 1
('and', 'rome') 1
('deductible', 'to') 1
('you', 'thinking') 1
('went', 'hunting') 1
('telescopes', 'this') 1
('not', 'looking') 1
('officer', 'could') 1
('main', 'pg') 1
('find', 'any') 1
('witness', 'it') 1
('box', 'that') 1
('fell', 'past') 1
('court', 'with') 1
('partners', 'change') 1
('only', 'be') 1
('efforts', 'and') 1
('shut', 'up') 1
('one', 'paw') 1
('some', 'day') 1
('never', 'done') 1
('works', 'harmless') 1
('and', 'talking') 1
('setting', 'sun') 1
('shrimp', 'could') 1
('grand', 'certainly') 1
('foot', 'that') 1
('refused', 'to') 1
('thimble', 'and') 1
('mind', 'now') 1
('violent', 'blow') 1
('very', 'respectful') 1
('search', 'of') 1
('all', 'associated') 1
('panting', 'with') 1
('and', 'vinegar') 1
('give', 'them') 1
('taught', 'them') 1
('added', 'turning') 1
('agreement', 'before') 1
('his', 'neighbour') 1
('absence', 'and') 1
('buttons', 'and') 1
('trouble', 'enough') 1
('were', 'gardeners') 1
('ready', 'this') 1
('does', 'yer') 1
('a', 'rule') 1
('jumped', 'but') 1
('surprise', 'what') 1
('he', 'were') 1
('concluded', 'that') 1
('be', 'civil') 1
('nonsense', 'the') 1
('remark', 'seemed') 1
('eager', 'eyes') 1
('was', 'when') 1
('gryphon', 'well') 1
('volunteers', 'with') 1
('m', 'i') 1
('a', 'mad') 1
('stopping', 'herself') 1
('very', 'sorry') 1
('say', '"with') 1
('they', 'passed') 1
('11', 'zip') 1
('this', 'there') 1
('several', 'things') 1
('foundation', 'royalty') 1
('or', 'immediate') 1
('beginning', 'the') 1
('and', 'kept') 1
('whispered', 'that') 1
('escape', 'said') 1
('only', 'have') 1
('jack-in-the-box', 'and') 1
('immense', 'length') 1
('people', 'start') 1
('this', 'sounded') 1
('bats', 'do') 1
('daresay', 'it') 1
('thousand', 'times') 1
('save', 'her') 1
('verse', 'said') 1
('performing', 'distributing') 1
('attempt', 'proved') 1
('hours', 'a') 1
('taking', 'it') 1
('if', 'people') 1
('another', 'question') 1
('unhappy', 'it') 1
('work', 'any') 1
('a', 'thimble') 1
('dry', 'leaves') 1
('here', 'poor') 1
('than', 'i') 1
('a', 'hundred') 1
('repeat', 'something') 1
('brain', 'but') 1
('suddenly', 'that') 1
('pie', '[later') 1
('very', 'confusing') 1
('coaxing', 'hardly') 1
('owner', 'any') 1
('eyes', 'appeared') 1
('belong', 'to') 1
('the', 'cakes') 1
('spite', 'of') 1
('confused', 'clamour') 1
('liked', 'teaching') 1
('their', 'paws') 1
('history', 'i') 1
('ourselves', 'and') 1
('about', 'at') 1
('appear', 'to') 1
('makes', 'you') 1
('smaller', 'and') 1
('hurriedly', 'went') 1
('and', 'not') 1
('whiskers', 'for') 1
('it', 'got') 1
('began', 'singing') 1
('org', 'email') 1
('write', 'with') 1
('dinah', 'my') 1
('off', 'leaving') 1
('resource', 'she') 1
('fee', 'of') 1
('license', 'when') 1
('much', 'like') 1
('d', 'soon') 1
('respectable', 'person') 1
('good', 'practice') 1
('of', 'parchment') 1
('cook', 'the') 1
('quarrelling', 'all') 1
('brown', 'i') 1
('three', 'weeks') 1
('seeing', 'the') 1
('of', 'bathing') 1
('consequential', 'punitive') 1
('again', 'yelled') 1
('know', 'as') 1
('any', 'dispute') 1
('soup', 'so') 1
('refund', 'in') 1
('pencils', 'had') 1
('wandering', 'hair') 1
('right', 'not') 1
('paris', 'is') 1
('surprise', 'when') 1
('s', 'none') 1
('again', 'by-the-bye') 1
('a', 'three-legged') 1
('found', 'this') 1
('no', 'answers') 1
('peeped', 'into') 1
('the', 'brain') 1
('large', 'mustard-mine') 1
('5', 'general') 1
('dry', 'enough') 1
('walked', 'two') 1
('steady', 'as') 1
('this', 'business') 1
('said', 'at') 1
('turned', 'sulky') 1
('day', 'must') 1
('door', 'had') 1
('sing', 'you') 1
('court', 'she') 1
('go', 'among') 1
('right', 'ear') 1
('croquet-ground', 'a') 1
('out', 'one') 1
('gbnewby@pglaf', 'org') 1
('rustled', 'at') 1
('express', 'or') 1
('it', 'stop') 1
('fifteenth', 'said') 1
('distance', 'but') 1
('civil', 'you') 1
('considering', 'at') 1
('in', 'asking') 1
('works', '-') 1
('goes', 'in') 1
('maybe', 'the') 1
('hare', 'the') 1
('be', 'liable') 1
('t', 'opened') 1
('muchness', 'really') 1
('uneasily', 'shaking') 1
('have', 'nothing') 1
('come', 'we') 1
('without', 'knowing') 1
('and', 'marked') 1
('"miss', 'alice') 1
('ll', 'manage') 1
('outside', 'and') 1
('love', 'oh') 1
('conqueror', 'whose') 1
('only', 'changing') 1
('making', 'a') 1
('damages', '-') 1
('turtle', 'at') 1
('dropped', 'and') 1
('her', 'child') 1
('prizes', 'alice') 1
('their', 'backs') 1
('gutenberg-tm', '1') 1
('all', 'stopped') 1
('fall', 'never') 1
('liability', 'costs') 1
('rabbit', 'i') 1
('warranty', 'or') 1
('given', 'by') 1
('defective', 'you') 1
('here', 'put') 1
('whiskers', 'she') 1
('to', 'call') 1
('aloud', 'do') 1
('alice', 'knew') 1
('general', 'chorus') 1
('nibbling', 'first') 1
('s', 'curious') 1
('often', 'you') 1
('than', 'nothing') 1
('rapidly', 'so') 1
('one', 'crazy') 1
('to', 'dive') 1
('foundation', 'how') 1
('choke', 'him') 1
('smiling', 'jaws') 1
('something', 'i') 1
('here', 'come') 1
('authority', 'over') 1
('the', 'snail') 1
('herself', 'being') 1
('her', 'listeners') 1
('form', 'however') 1
('itself', 'in') 1
('it', 'last') 1
('having', 'found') 1
('baby', 'with') 1
('ran', 'close') 1
('be', 'late') 1
('little', 'voice') 1
('she', 'answered') 1
('notion', 'was') 1
('or', 'fig') 1
('off', 'your') 1
('other', 'medium') 1
('she', 'first') 1
('said', 'on') 1
('garden', 'then') 1
('just', 'like') 1
('somebody', 'else"') 1
('playing', 'against') 1
('of', 'an') 1
('would', 'catch') 1
('alice', 'not') 1
('dormouse', 'without') 1
('cats', 'or') 1
('license', 'terms') 1
('do', 'no') 1
('finger', 'very') 1
('off', 'nonsense') 1
('that', 'anything') 1
('accepted', 'in') 1
('can', 'tell') 1
('talking', 'how') 1
('guinea-pigs', 'cheered') 1
('somersault', 'in') 1
('was', 'silence') 1
('first', 'sentence') 1
('all', 'is') 1
('begin', 'please') 1
('knew', 'whether') 1
('thinking', 'about') 1
('atheling', 'to') 1
('or', 'refund"') 1
('found', 'all') 1
('knave', 'was') 1
('this', 'fury') 1
('states', 'u') 1
('help', 'me') 1
('s', 'pat') 1
('own', 'feet') 1
('larger', 'it') 1
('arches', 'to') 1
('as', 'himself') 1
('trademark', 'but') 1
('talking', 'of') 1
('queen', 'put') 1
('inclined', 'to') 1
('be', 'turned') 1
('without', 'noticing') 1
('towards', 'it') 1
('a', 'house') 1
('was', 'snorting') 1
('turtle', 'we') 1
('soon', 'began') 1
('answer', 'either') 1
('pack', 'rose') 1
('too', 'said') 1
('enjoy', 'the') 1
('about', 'me') 1
('that', 'beautiful') 1
('shrinking', 'away') 1
('prove', 'i') 1
('thought', 'but') 1
('with', 'dinah') 1
('have', 'lessons') 1
('say', 'presently') 1
('dormouse', 'don') 1
('dipped', 'suddenly') 1
('bill', 'catch') 1
('now', 'how') 1
('replied', '"there') 1
('to', 'beautify') 1
('donations', '$1') 1
('suddenly', 'spread') 1
('codes', 'that') 1
('in', 'creating') 1
('people', 'alice') 1
('wood', 'continued') 1
('tarts', 'all') 1
('wood', 'for') 1
('license', 'available') 1
('do', 'as') 1
('in', 'despair') 1
('not', 'stand') 1
('submitted', 'to') 1
('and', 'crept') 1
('wonder', 'how') 1
('neck', 'nicely') 1
('hare', 'will') 1
('them', 'can') 1
('saying', 'we') 1
('work', 'at') 1
('s', 'quite') 1
('ebooks', 'with') 1
('curtseying', 'as') 1
('he', 'poured') 1
('nibbled', 'a') 1
('party', 'look') 1
('once', 'set') 1
('grunted', 'it') 1
('remark', 'then') 1
('six', 'o') 1
('again', 'dinah') 1
('eager', 'to') 1
('know', 'upon') 1
('ten', 'inches') 1
('slowly', 'followed') 1
('they', 'hit') 1
('anywhere', 'at') 1
('those', 'serpents') 1
('drew', 'the') 1
('hatter', 'were') 1
('the', 'comfits') 1
('their', 'arguments') 1
('the', 'twelfth') 1
('a', 'shiver') 1
('dear', 'paws') 1
('much', 'into') 1
('yourself', 'said') 1
('unfolded', 'its') 1
('squeezed', 'herself') 1
('8', '1') 1
('it', 'really') 1
('expected', 'before') 1
('attends', 'to') 1
('with', 'fur') 1
('in', 'knocking') 1
('2', 'limited') 1
('thing', 'it') 1
('the', 'fifth') 1
('is', 'wrong') 1
('it', 'pop') 1
('pleased', 'now') 1
('deeply', 'what') 1
('be', 'able') 1
('alice', 'flinging') 1
('courage', 'as') 1
('future', 'access') 1
('more', 'evidence') 1
('or', 'hippopotamus') 1
('she', 'quite') 1
('sighed', 'wearily') 1
('that', 'were') 1
('him', 'know') 1
('she', 'ate') 1
('work', 'shaking') 1
('crash', 'of') 1
('roughly', 'to') 1
('ate', 'a') 1
('unimportant', 'important') 1
('ll', 'set') 1
('circumstances', 'there') 1
('it', 'busily') 1
('presently', 'the') 1
('mad', 'things') 1
('seen', 'hatters') 1
('mouse', 'sharply') 1
('floor', 'and') 1
('plan', 'no') 1
('courtiers', 'or') 1
('dormouse', 'the') 1
('rises', 'and') 1
('ache', 'alice') 1
('and', 'curiouser') 1
('this', 'beautiful') 1
('head', 'very') 1
('business', 'said') 1
('us', 'all') 1
('punching', 'him') 1
('lives', 'all') 1
('trouble', 'of') 1
('to', 'taste') 1
('sleep', 'that') 1
('must', 'at') 1
('her', 'feel') 1
('sing', '"twinkle') 1
('far', 'said') 1
('official', 'page') 1
('else', 's') 1
('and', 'certainly') 1
('tortoise', 'if') 1
('knelt', 'down') 1
('footman', 'went') 1
('distance', 'come') 1
('hanging', 'out') 1
('first', 'speech') 1
('live', 'on') 1
('and', 'thinking') 1
('figures', 'and') 1
('taking', 'alice') 1
('watch', 'them') 1
('a', 'dormouse') 1
('done', 'they') 1
('shoes', 'off') 1
('ma', 'said') 1
('bound', 'into') 1
('players', 'to') 1
('nasty', 'low') 1
('unwillingly', 'took') 1
('shut', 'this') 1
('hope', 'i') 1
('duchess', 'replied') 1
('busily', 'painting') 1
('encouraging', 'opening') 1
('the', 'efforts') 1
('looking', 'uneasily') 1
('trees', 'as') 1
('directed', 'to') 1
('subject', 'the') 1
('m', 'talking') 1
('the', 'real') 1
('two', 'it') 1
('us', 'and') 1
('s', 'worth') 1
('machines', 'in') 1
('time', 'together') 1
('you', 'usually') 1
('tossing', 'his') 1
('an', 'anxious') 1
('condemn', 'you') 1
('why', 'the') 1
('because', 'she') 1
('case', 'i') 1
('sudden', 'leap') 1
('wide', 'but') 1
('tumbling', 'down') 1
('a', 'morsel') 1
('ugly', 'and') 1
('either', 'with') 1
('of', 'him') 1
('now', 'had') 1
('worth', 'a') 1
('as', 'ferrets') 1
('voice', 'has') 1
('bee', '"') 1
('license', 'as') 1
('learn', 'well') 1
('sneezing', 'there') 1
('himself', '"we') 1
('him', 'how') 1
('finger', 'and') 1
('our', 'email') 1
('look', 'over') 1
('extras', 'asked') 1
('wood', 'the') 1
('trying', 'in') 1
('strength', 'which') 1
('round', 'on') 1
('down', 'its') 1
('courage', 'and') 1
('up', 'as') 1
('many', 'miles') 1
('very', 'pretty') 1
('course', 'what') 1
('i', 'down') 1
('alice', 'whose') 1
('soup', 'beautiful') 1
('owl', 'had') 1
('her', 'rather') 1
('at', 'dinn') 1
('they', 'need') 1
('outside', 'he') 1
('section', '2') 1
('jury-box', 'or') 1
('the', 'treat') 1
('address', 'specified') 1
('and', 'derision') 1
('asked', 'oh') 1
('you', 'insult') 1
('down', 'would') 1
('replied', 'yes') 1
('quietly', 'said') 1
('without', 'trying') 1
('ten', 'soldiers') 1
('nearly', 'getting') 1
('educations', 'in') 1
('hare', 'sixteenth') 1
('finishing', 'the') 1
('story', 'chapter') 1
('grunted', 'in') 1
('and', 'strange') 1
('t', 'mean') 1
('be', 'stored') 1
('we', 'used') 1
('attempts', 'at') 1
('paused', 'as') 1
('yawning', 'i') 1
('voice', 'along') 1
('other', 'warranties') 1
('written', 'by') 1
('business', 'office') 1
('is', 'almost') 1
('down', 'so') 1
('her', 'waiting') 1
('jury', 'if') 1
('pocket', 'the') 1
('a', 'fancy') 1
('puppy', 'made') 1
('limited', 'warranty') 1
('diamonds', 'and') 1
('his', 'buttons') 1
('song', 'oh') 1
('farther', 'before') 1
('far', 'thought') 1
('denial', 'we') 1
('where', 'did') 1
('sands', 'are') 1
('expense', 'to') 1
('with', 'edgar') 1
('the', 'sun') 1
('chapter', 'xii') 1
('lake', 'city') 1
('little', 'worried') 1
('they', 'doing') 1
('but', 'do') 1
('stay', 'sighed') 1
('thistle', 'to') 1
('faint', 'in') 1
('not', 'come') 1
('went', 'timidly') 1
('swim', 'can') 1
('mad', 'but') 1
('be', 'really') 1
('how', 'eagerly') 1
('rattling', 'teacups') 1
('previous', 'one') 1
('pulled', 'out') 1
('stiff', 'and') 1
('doze', 'but') 1
('of', 'other') 1
('world', 'she') 1
('order', 'continued') 1
('like', 'herself') 1
('all', 'difficulties') 1
('an', 'advantage') 1
('i', 'make') 1
('me', 'giddy') 1
('periodic', 'tax') 1
('prepare', 'your') 1
('there', 'again') 1
('on', 'spreading') 1
('had', 'it') 1
('or', 'next') 1
('moment', 'i') 1
('or', 'are') 1
('round', 'as') 1
('the', 'flowers') 1
('yet', 'a') 1
('is', 'sure') 1
('his', 'housemaid') 1
('besides', 'what') 1
('her', 'lips') 1
('rushed', 'at') 1
('works', 'he') 1
('foot', 'she') 1
('dropping', 'his') 1
('longer', 'she') 1
('side', 'she') 1
('business', 'ah') 1
('voice', 'your') 1
('dodo', 'a') 1
('of', 'croquet') 1
('suppose', 'said') 1
('anything', 'would') 1
('those', 'long') 1
('very', 'hopeful') 1
('they', 'drew') 1
('creatures', 'you') 1
('both', 'bite') 1
('was', 'small') 1
('said', 'which') 1
('queen', 'so') 1
('sobs', 'lastly') 1
('who', 'for') 1
('rate', 'it') 1
('way', 'all') 1
('handwriting', 'asked') 1
('boldly', 'you') 1
('terms', 'with') 1
('a', 'lot') 1
('taken', 'his') 1
('including', 'checks') 1
('20%', 'of') 1
('oh', 'please') 1
('us', 'up') 1
('father', 'don') 1
('untwist', 'it') 1
('pie', 'was') 1
('to', 'no') 1
('turtle', 'certainly') 1
('enough', 'under') 1
('could', 'tell') 1
('remained', 'some') 1
('alice', 'because') 1
('particularly', 'important') 1
('is', 'included') 1
('then', 'quietly') 1
('and', 'licensed') 1
('mind', 'and') 1
('individual', 'works') 1
('arm', 'a') 1
('useful', 'and') 1
('not', 'pale') 1
('temper', 'are') 1
('came', 'opposite') 1
('soldiers', 'or') 1
('org', 'for') 1
('tells', 'the') 1
('confusion', 'of') 1
('remember', 'feeling') 1
('here', 'was') 1
('thinking', 'a') 1
('mouse', 'frowning') 1
('sighing', 'as') 1
('house', 'before') 1
('it', 'looked') 1
('with', 'mine') 1
('against', 'it') 1
('curious', 'song') 1
('were', 'taken') 1
('a', 'likely') 1
('look', 'about') 1
('alice', 'looking') 1
('ornamented', 'all') 1
('month', 'and') 1
('downloading', 'copying') 1
('ask', 'her') 1
('solid', 'glass') 1
('country', 'outside') 1
('passion', 'she') 1
('you', 'knew') 1
('i', 'see') 1
('execute', 'the') 1
('well', 'if') 1
('indeed', 'a') 1
('feeling', 'a') 1
('dance', '"what') 1
('once', 'without') 1
('and', 'flat') 1
('savage', 'when') 1
('please', 'which') 1
('hurriedly', 'left') 1
('singers', 'you') 1
('duchess', 'sang') 1
('safe', 'to') 1
('patiently', 'once') 1
('coming', 'there') 1
('to', 'comply') 1
('french', 'mouse') 1
('that', 'dark') 1
('hair', 'and') 1
('mushroom', 'in') 1
('everybody', 'minded') 1
('into', 'little') 1
('very', 'busily') 1
('"', 'ugh') 1
('ancient', 'and') 1
('explain', 'all') 1
('asked', 'triumphantly') 1
('listened', 'or') 1
('had', 'disappeared') 1
('more', 'like') 1
('again', 'mine') 1
('the', 'further') 1
('this', 'for') 1
('hurried', 'upstairs') 1
('finished', 'so') 1
('asleep', 'in') 1
('and', 'quietly') 1
('these', 'efforts') 1
('is', 'oh') 1
('executions', 'i') 1
('would', 'said') 1
('t', 'write') 1
('fact', 'a') 1
('be', 'one') 1
('getting', 'entangled') 1
('know', 'with') 1
('public', 'support') 1
('melancholy', 'way') 1
('guess', 'of') 1
('off', 'or') 1
('asked', 'no') 1
('and', 'reduced') 1
('people', 'live') 1
('look', 'out') 1
('clapping', 'of') 1
('something', 'wasn') 1
('hours', 'i') 1
('and', 'nothing') 1
('d', 'hardly') 1
('ears', 'have') 1
('fire', 'and') 1
('at', 'in') 1
('grin', 'how') 1
('an', 'inkstand') 1
('form', 'any') 1
('was', 'shrinking') 1
('incomplete', 'inaccurate') 1
('like', 'ears') 1
('m', 'angry') 1
('my', 'boy') 1
('no', 'other') 1
('could', 'he') 1
('three', 'pairs') 1
('twelve', 'i') 1
('altered', 'it') 1
('dodo', 'could') 1
('one', 'could') 1
('a', 'coaxing') 1
('off', 'shouted') 1
('from', 'under') 1
('croquet-ground', 'in') 1
('hoped', 'a') 1
('little', 'bat') 1
('killing', 'somebody') 1
('me', 'too') 1
('especially', 'commercial') 1
('to', 'wonder') 1
('another', 'dead') 1
('holding', 'and') 1
('constant', 'heavy') 1
('of', 'sob') 1
('c', 'below') 1
('only', 'growled') 1
('downward', 'the') 1
('who', 'of') 1
('see', 'any') 1
('foundation', '"') 1
('and', 'last') 1
('about', 'children') 1
('alteration', 'modification') 1
('d', 'gone') 1
('distribute', 'it') 1
('can', 'creep') 1
('ears', 'the') 1
('and', 'retire') 1
('himself', 'and') 1
('themselves', 'flat') 1
('own', 'ears') 1
('by', 'producing') 1
('organized', 'under') 1
('who', 'will') 1
('still', 'sobbing') 1
('and', 'got') 1
('sure', 'whether') 1
('but', 'about') 1
('speech', 'caused') 1
('eggs', 'quite') 1
('sound', ']') 1
('are', 'confirmed') 1
('by', 'e-mail') 1
('it', 'why') 1
('improve', 'his') 1
('and', 'off') 1
('and', 'smaller') 1
('balls', 'were') 1
('the', 'neighbouring') 1
('running', 'down') 1
('"i', 'like') 1
('turtle', 'capering') 1
('none', 'why') 1
('chimney', 'nay') 1
('shall', 'tell') 1
('took', 'no') 1
('a', 'dreadful') 1
('a', 'i') 1
('6', 'you') 1
('much', 'pepper') 1
('pinched', 'it') 1
('exclaimed', 'in') 1
('in', 'things') 1
('children', 'digging') 1
('tried', 'every') 1
('of', 'justice') 1
('shrink', 'any') 1
('tears', 'if') 1
('queen', 'jumped') 1
('thing', 'about') 1
('day', 'a') 1
('dull', 'and') 1
('on', 'old') 1
('of', 'themselves') 1
('the', 'assistance') 1
('and', 'sent') 1
('cat', 'seemed') 1
('is', 'so') 1
('come', 'wriggling') 1
('org', 'while') 1
('within', '60') 1
('up', 'one') 1
('nearly', 'any') 1
('the', 'thistle') 1
('hurt', 'the') 1
('wondering', 'whether') 1
('twice', 'each') 1
('you', 'begin') 1
('great', 'letter') 1
('world', 'you') 1
('foolish', 'alice') 1
('creature', 'down') 1
('very', 'hot') 1
('alice', 'how') 1
('words', 'where') 1
('in', 'addition') 1
('hearing', 'her') 1
('works', 'provided') 1
('out', 'when') 1
('off', 'what') 1
('donate', 'please') 1
('it', 'marked') 1
('dead', 'leaves') 1
('it', 'hadn') 1
('they', 'play') 1
('faster', '"') 1
('procession', 'moved') 1
('being', 'broken') 1
('can', 'remember') 1
('all', 'coming') 1
('roast', 'turkey') 1
('meaning', 'and') 1
('too', 'brown') 1
('grown', 'most') 1
('which', 'changed') 1
('did', 'that') 1
('help', 'see') 1
('what', 'alice') 1
('deep', 'and') 1
('off', 'as') 1
('four', 'inches') 1
('which', 'remained') 1
('said', 'get') 1
('weren', 't') 1
('between', 'us') 1
('are', 'tax') 1
('half', 'my') 1
('equipment', 'many') 1
('interesting', 'is') 1
('riddles', 'that') 1
('hall', 'which') 1
('work', 'the') 1
('promise', 'treacle') 1
('are', 'done') 1
('include', 'the') 1
('key', 'in') 1
('drew', 'all') 1
('poor', 'speaker') 1
('anxious', 'look') 1
('turtle', 'no') 1
('have', 'answered') 1
('trees', 'behind') 1
('had', 'felt') 1
('low', 'curtain') 1
('to', 'swallow') 1
('he', 'called') 1
('dreamed', 'of') 1
('move', 'one') 1
('frowning', 'at') 1
('have', 'tasted') 1
('question', 'the') 1
('hastily', 'consider') 1
('rest', 'between') 1
('talk', 'at') 1
('my', 'ears') 1
('low-spirited', 'in') 1
('many', 'different') 1
('coming', 'back') 1
('good', 'reason') 1
('that', 'altogether') 1
('it', 'further') 1
('somebody', 'ought') 1
('kick', 'you') 1
('an', 'end') 1
('foundation', 'was') 1
('waist', 'the') 1
('out', 'from') 1
('nine', 'o') 1
('lizard', 'in') 1
('sir', 'with') 1
('ways', 'including') 1
('altogether', 'that') 1
('full', 'size') 1
('be', 'modified') 1
('dodo', 'said') 1
('it', 'wouldn') 1
('too', 'flustered') 1
('take', 'it') 1
('far', 'too') 1
('t', 'care') 1
('down', 'both') 1
('straight', 'at') 1
('tears', 'running') 1
('tasted', 'eggs') 1
('stood', 'looking') 1
('for', 'alice') 1
('years', 'the') 1
('bright-eyed', 'terrier') 1
('frightened', 'mouse') 1
('available', 'for') 1
('a', 'neck') 1
('had', 'accidentally') 1
('copied', 'or') 1
('delay', 'would') 1
('seaography', 'then') 1
('high', 'then') 1
('camomile', 'that') 1
('farmer', 'you') 1
('should', 'learn') 1
('the', 'cake') 1
('times', 'five') 1
('with', 'blacking') 1
('first', 'that') 1
('any', 'and') 1
('that', 'll') 1
('character', 'but') 1
('man', 'said') 1
('we', 'beg') 1
('gryphon', 'we') 1
('herself', 'after') 1
('verses', 'are') 1
('hurried', 'tone') 1
('growing', 'sometimes') 1
('air', 'she') 1
('why', 'pig') 1
('verdict', 'afterwards') 1
('or', 'expense') 1
('memorandum', 'of') 1
('her', 'too') 1
('muscular', 'strength') 1
('practice', 'to') 1
('sentence', 'three') 1
('it', 'right') 1
('the', 'pictures') 1
('his', 'precious') 1
('doubt', 'that') 1
('he', 'hasn') 1
('bit', 'perhaps') 1
('are', 'i') 1
('royalty', 'fee') 1
('distant', 'sobs') 1
('tree', 'a') 1
('mark', 'on') 1
('made', 'you') 1
('for', 'negligence') 1
('ten', 'of') 1
('fact', 'she') 1
('finger', 'as') 1
('repeated', 'impatiently') 1
('ears', 'for') 1
('in', 'bed') 1
('above', 'a') 1
('and', 'book-shelves') 1
('piece', 'out') 1
('what', 'trial') 1
('eyes', 'full') 1
('it', 'her') 1
('waited', 'a') 1
('not', 'feeling') 1
('cat', 'remarked') 1
('into', 'custody') 1
('often', 'of') 1
('s', 'delay') 1
('flamingo', 'she') 1
('how', 'in') 1
('shoulders', 'oh') 1
('footman', 'remarked') 1
('dear', 'oh') 1
('ann', 'what') 1
('cakes', 'and') 1
('water', 'and') 1
('took', 'them') 1
('hearts', 'next') 1
('closed', 'its') 1
('caterpillar', 'contemptuously') 1
('heads', 'and') 1
('dishes', 'crashed') 1
('may', 'kiss') 1
('like', 'having') 1
('all', 'comfortable') 1
('simple', 'sorrows') 1
('it', 'matter') 1
('but', 'out-of-the-way') 1
('down', 'it') 1
('rule', 'forty-two') 1
('her', 'but') 1
('gave', 'to') 1
('not', 'taste') 1
('will', 'remain') 1
('bend', 'about') 1
('on', 'between') 1
('its', 'attached') 1
('on', 'very') 1
('from', 'england') 1
('walking', 'hand') 1
('moved', 'off') 1
('word', 'till') 1
('choice', 'and') 1
('deep', 'sigh') 1
('happens', 'what') 1
('know', 'whether') 1
('duchess', 'flamingoes') 1
('murder', 'to') 1
('been', 'would') 1
('many', 'lessons') 1
('had', 'lost') 1
('him', 'sixpence') 1
('out', 'sit') 1
('tone', 'only') 1
('have', 'finished') 1
('fix', 'on') 1
('lizard', 'who') 1
('be', 'four') 1
('cheated', 'herself') 1
('clinging', 'close') 1
('dodo', 'suddenly') 1
('always', 'get') 1
('history', 'she') 1
('a', 'worm') 1
('head', 'sadly') 1
('of', 'receiving') 1
('judging', 'by') 1
('ill', 'alice') 1
('meekly', 'i') 1
('other', 'party') 1
('there', 'there') 1
('me', 'when') 1
('paws', 'in') 1
('good-naturedly', 'began') 1
('until', 'all') 1
('her', 'full') 1
('above', 'the') 1
('please', 'we') 1
('introduce', 'some') 1
('m', 'somebody') 1
('moment', 'splash') 1
('you', 'talking') 1
('behind', 'them') 1
('you', 'what') 1
('gather', 'about') 1
('this', 'he') 1
('loud', 'voice') 1
('king', 'eagerly') 1
('"', 'they') 1
('available', 'with') 1
('what', 'o') 1
('they', 'repeated') 1
('ii', 'the') 1
('talking', 'again') 1
('the', 'wretched') 1
('old', 'woman') 1
('you', 'follow') 1
('better', 'take') 1
('you', 'from') 1
('his', 'cup') 1
('ran', 'till') 1
('impatient', 'tone') 1
('opening', 'for') 1
('s', 'tail') 1
('great', 'concert') 1
('tea-things', 'are') 1
('depends', 'upon') 1
('she', 'if') 1
('oh', 'hush') 1
('hours', 'to') 1
('yet', 'no') 1
('s', 'feelings') 1
('raised', 'herself') 1
('so', 'quickly') 1
('"i', 'breathe') 1
('you', 'balanced') 1
('puppy', 'began') 1
('things', 'went') 1
('hollow', 'tone') 1
('people', 'began') 1
('sudden', 'violence') 1
('low', 'weak') 1
('best', 'for') 1
('thunderstorm', 'a') 1
('quickly', 'that') 1
('fellow', 'what') 1
('slipped', 'in') 1
('trouble', 'said') 1
('and', 'sneezing') 1
('eyelids', 'so') 1
('fancy', 'curtseying') 1
('the', 'tale') 1
('tone', 'pray') 1
('a', 'thunderstorm') 1
('king', 'i') 1
('have', 'wanted') 1
('off', 'give') 1
('is', '"take') 1
('wanted', 'much') 1
('distributed', 'this') 1
('the', 'branches') 1
('had', 'some') 1
('directions', 'just') 1
('while', 'in') 1
('me', 'and') 1
('things', 'you') 1
('both', 'paragraphs') 1
('t', 'then') 1
('not', 'sneeze') 1
('doors', 'of') 1
('executioner', 's') 1
('putting', 'down') 1
('tops', 'of') 1
('hear', 'oneself') 1
('crumbs', 'said') 1
('she', 'leant') 1
('you', 'seen') 1
('company', 'generally') 1
('march', 'just') 1
('duchess', 'you') 1
('say', '"what') 1
('and', 'd') 1
('safe', 'in') 1
('saying', 'lessons') 1
('it', 'trot') 1
('with', 'most') 1
('his', 'shining') 1
('laws', 'alone') 1
('before', 'that') 1
('m', 'doubtful') 1
('certainly', 'did') 1
('is', 'only') 1
('after', 'some') 1
('dear', 'and') 1
('said', 'severely') 1
('the', 'parchment') 1
('feelings', 'i') 1
('the', 'mouth') 1
('no', 'sorrow') 1
('and', 'keep') 1
('guinea-pigs', 'who') 1
('round', 'a') 1
('it', 'vanished') 1
('to', 'uglify') 1
('crowded', 'together') 1
('a', 'bird') 1
('while', 'plates') 1
('found', 'quite') 1
('in', 'by') 1
('much', 'farther') 1
('seven', 'jogged') 1
('far', 'the') 1
('proved', 'a') 1
('nearly', 'in') 1
('quietly', 'smoking') 1
('itself', 'round') 1
('simpleton', 'alice') 1
('himself', 'upon') 1
('more', 'as') 1
('did', 'after') 1
('with', 'gently') 1
('computers', 'it') 1
('out', 'like') 1
('think', 'this') 1
('not', 'attended') 1
('were', 'filled') 1
('i', 'chose') 1
('directions', 'tumbling') 1
('used', 'up') 1
('t', 'had') 1
('"i', 'eat') 1
('things', 'at') 1
('compliance', 'requirements') 1
('50', 'states') 1
('free', 'access') 1
('your', 'jaws') 1
('a', 'pun') 1
('to', 'on') 1
('quite', 'finished') 1
('a', 'snail') 1
('barking', 'hoarsely') 1
('said', 'what') 1
('small', 'ones') 1
('words', 'said') 1
('climb', 'up') 1
('good-bye', 'feet') 1
('butterfly', 'i') 1
('it', 'suddenly') 1
('their', 'throne') 1
('the', 'meeting') 1
('canterbury', 'found') 1
('and', 'future') 1
('was', 'why') 1
('t', 'asleep') 1
('rule', 'and') 1
('remarks', 'alice') 1
('longer', 'to') 1
('she', 'succeeded') 1
('more', 'energetic') 1
('calculate', 'your') 1
('being', 'invited') 1
('of', 'trials') 1
('queen', 'tossing') 1
('fly', 'and') 1
('hedgehog', 'to') 1
('asleep', 'and') 1
('hearts', 'who') 1
('head', 'first') 1
('mouse', 'a') 1
('holding', 'it') 1
('french', 'lesson-book') 1
('is', 'made') 1
('passionate', 'voice') 1
('s', 'federal') 1
('paint', 'over') 1
('tone', 'going') 1
('going', 'off') 1
('me', 'next') 1
('queen', 'smiled') 1
('trademark', 'as') 1
('hatching', 'the') 1
('find', 'quite') 1
('tomorrow', 'at') 1
('two', 'reasons') 1
('gratefully', 'accepted') 1
('players', 'except') 1
('special', 'rules') 1
('am', 'now') 1
('twice', 'and') 1
('easily', 'in') 1
('head', 'still') 1
('hers', 'began') 1
('the', 'crumbs') 1
('purring', 'so') 1
('arm-chair', 'at') 1
('and', 'conquest') 1
('of', 'bright') 1
('the', 'squeaking') 1
('rabbit', 'sends') 1
('she', 'spread') 1
('fairly', 'alice') 1
('whole', 'head') 1
('course', 'i') 1
('wondering', 'tone') 1
('him', 'deeply') 1
('waiting', 'in') 1
('a', 'more') 1
('suddenly', 'thump') 1
('3', 'this') 1
('stolen', 'the') 1
('end', 'if') 1
('comfortable', 'and') 1
('leave', 'it') 1
('minute', 'she') 1
('besides', 'that') 1
('poor', 'hands') 1
('soldiers', 'who') 1
('tell', 'whether') 1
('hurry', 'a') 1
('has', 'the') 1
('legally', 'required') 1
('kept', 'running') 1
('accidentally', 'upset') 1
('creatures', 'got') 1
('nice', 'grand') 1
('were', 'too') 1
('go', 'there') 1
('tone', 'are') 1
('tone', 'for') 1
('"', 'such') 1
('footman', 'seemed') 1
('first', 'remark') 1
('rather', 'sleepy') 1
('home', 'the') 1
('had', 'looked') 1
('its', 'little') 1
('or', 'remove') 1
('angrily', 'but') 1
('not', 'here') 1
('queen', 'really') 1
('can', 'hardly') 1
('pope', 'was') 1
('her', 'listening') 1
('turtle', 'had') 1
('the', 'change') 1
('other', 'players') 1
('out', 'into') 1
('ann', 'mary') 1
('off', 'panting') 1
('a', 'canary') 1
('a', 'secret') 1
('asleep', 'after') 1
('passed', 'it') 1
('hoarse', 'growl') 1
('than', 'you') 1
('efforts', 'project') 1
('other', 'in') 1
('profits', 'you') 1
('and', 'queens') 1
('donors', 'in') 1
('had', 'such') 1
('law', 'of') 1
('keep', 'them') 1
('no', 'denial') 1
('sounds', 'uncommon') 1
('a', 'simpleton') 1
('conversation', 'dropped') 1
('foot', 'as') 1
('of', 'idea') 1
('eye', 'chanced') 1
('oh', 'do') 1
('or', 'use') 1
('sight', 'of') 1
('hastily', 'go') 1
('might', 'not') 1
('taking', 'the') 1
('alice', 'tried') 1
('smile', 'there') 1
('alice', 'doubtfully') 1
('little', 'crocodile') 1
('moved', 'into') 1
('distributing', 'performing') 1
('says', 'you') 1
('herself', 'rather') 1
('court', 'arm-in-arm') 1
('"birds', 'of') 1
('little', 'three-legged') 1
('and', 'uncomfortable') 1
('subjects', 'on') 1
('song', 'perhaps') 1
('somebody', 'it') 1
('down', 'was') 1
('at', 'our') 1
('the', 'pleasure') 1
('of', 'time') 1
('hush', 'said') 1
('daisy-chain', 'would') 1
('nothing', 'so') 1
('to', 'save') 1
('porpoise', 'wouldn') 1
('grinned', 'a') 1
('pepper-box', 'in') 1
('face', 'like') 1
('on', 'taking') 1
('nose', 'and') 1
('tone', 'as') 1
('size', 'and') 1
('a', 'doze') 1
('eat', 'one') 1
('what', 'he') 1
('or', 'judge') 1
('performing', 'copying') 1
('fright', 'and') 1
('by', 'sending') 1
('ah', 'then') 1
('t', 'signify') 1
('doubt', 'for') 1
('sang', 'the') 1
('bill', 'it') 1
('cat', 'as') 1
('together', 'at') 1
('of', 'onions') 1
('vanished', 'quite') 1
('was', 'or') 1
('raw', 'well') 1
('ve', 'a') 1
('group', 'of') 1
('busily', 'stirring') 1
('maintaining', 'tax') 1
('mice', 'you') 1
('name', 'signed') 1
('the', 'agreement') 1
('axis', 'talking') 1
('frightened', 'tone') 1
('will', 'replace') 1
('away', 'in') 1
('b', '"project') 1
('a', 'globe') 1
('know', 'when') 1
('furious', 'passion') 1
('ebook', 'for') 1
('charities', 'and') 1
('tie', 'em') 1
('the', 'rats') 1
('occur', 'a') 1
('shore', 'you') 1
('appearing', 'on') 1
('pleased', 'so') 1
('day', 'the') 1
('bat', 'when') 1
('your', 'age') 1
('were', 'little') 1
('with', 'wonder') 1
('minute', 'nurse') 1
('be', 'clearly') 1
('that', 'oh') 1
('think', 'they') 1
('footsteps', 'and') 1
('is', 'which') 1
('milk-jug', 'into') 1
('grave', 'voice') 1
('a', 'really') 1
('i', 'eat"') 1
('its', 'axis') 1
('silence', 'broken') 1
('it', 'settled') 1
('alice', 'chapter') 1
('small', 'again') 1
('generally', 'gave') 1
('and', 'holding') 1
('s', 'sure') 1
('her', 'mouth') 1
('mostly', 'kings') 1
('not', 'copy') 1
('worth', 'while') 1
('years', 'he') 1
('crossed', 'her') 1
('savage', 'queen') 1
('been', 'ill') 1
('the', 'tide') 1
('most', 'of') 1
('puzzling', 'about') 1
('"information', 'about') 1
('a', 'narrow') 1
('but', 'little') 1
('whose', 'cause') 1
('fall', 'was') 1
('please', 'visit') 1
('eggs', 'as') 1
('quarrel', 'so') 1
('grown', 'so') 1
('insult', 'me') 1
('produce', 'our') 1
('printed', 'on') 1
('queen', 'pointing') 1
('nobody', 'attends') 1
('prizes', 'but') 1
('3', 'information') 1
('stoop', 'to') 1
('punitive', 'or') 1
('better', 'to') 1
('jury', 'asked') 1
('trees', 'under') 1
('sending', 'a') 1
('lifted', 'up') 1
('creatures', 'argue') 1
('leave', 'out') 1
('eyes', 'filled') 1
('teacup', 'in') 1
('falling', 'down') 1
('time', 'at') 1
('exactly', 'three') 1
('angrily', 'away') 1
('understand', 'english') 1
('with', 'anyone') 1
('her', 'shoulders') 1
('forget', 'to') 1
('repeating', 'all') 1
('herself', 'before') 1
('knowledge', 'as') 1
('beginning', 'from') 1
('provided', 'that') 1
('states', 'and') 1
('given', 'away') 1
('something', 'worth') 1
('knowledge', 'just') 1
('wife', 'and') 1
('in', 'custody') 1
('paws', 'oh') 1
('work', 'within') 1
('knew', 'it') 1
('was', 'ever') 1
('night-air', 'doesn') 1
('new', 'pair') 1
('longitude', 'either') 1
('the', 'nile') 1
('muttered', 'the') 1
('merrily', 'along') 1
('s', 'hart') 1
('and', 'dogs') 1
('indeed', 'the') 1
('may', 'convert') 1
('larger', 'than') 1
('queen', 'will') 1
('talk', 'to') 1
('to', 'sit') 1
('faces', 'there') 1
('her', 'pet') 1
('have', 'it') 1
('over', 'crumbs') 1
('mouse', 'alice') 1
('share', 'it') 1
('hearts', 'he') 1
('his', 'heart') 1
('blow', 'with') 1
('another', 'figure') 1
('things', 'of') 1
('eagerly', 'and') 1
('i', 'like') 1
('her', 'daughter') 1
('before', 'alice') 1
('get', 'the') 1
('adventures', 'of') 1
('the', 'corner') 1
('works', 'if') 1
('walking', 'off') 1
('gained', 'courage') 1
('it', 'kills') 1
('great', 'thistle') 1
('the', 'looking-glass') 1
('and', 'fighting') 1
('void', 'the') 1
('different', 'and') 1
('added', 'and') 1
('yet', 'had') 1
('and', 'pence') 1
('t', 'cut') 1
('mine', 'doesn') 1
('upon', 'the') 1
('weak', 'voice') 1
('people', 'who') 1
('be', 'only') 1
('s', 'she') 1
('race', 'is') 1
('hedgehogs', 'and') 1
('politely', 'as') 1
('s', 'handwriting') 1
('ground', 'near') 1
('carrier', 'she') 1
('re', 'falling') 1
('suddenly', 'she') 1
('blacking', 'i') 1
('number', 'is') 1
('it', 'sounded') 1
('head', 'mournfully') 1
('ll', 'make') 1
('alice', 'led') 1
('no', 'it') 1
('take', 'such') 1
('turtles', 'salmon') 1
('was', 'gently') 1
('the', 'exact') 1
('four', 'thousand') 1
('the', 'position') 1
('arguments', 'to') 1
('be', 'copied') 1
('on', 'now') 1
('sneezes', 'he') 1
('ought', 'not') 1
('do', 'how') 1
('gryphon', 'they') 1
('else', 'chapter') 1
('tears', 'but') 1
('t', 'sign') 1
('jury', 'eagerly') 1
('trials', '"there') 1
('too', 'glad') 1
('bother', 'me') 1
('the', 'soup') 1
('to', 'move') 1
('you', 'grant') 1
('dormouse', 'went') 1
('lately', 'that') 1
('work', 'can') 1
('wood', 'it') 1
('to', 'any') 1
('soldiers', 'did') 1
('the', 'case') 1
('talking', 'about') 1
('done', 'now') 1
('gone', 'we') 1
('with', 'either') 1
('trying', 'the') 1
('back', 'once') 1
('txt', 'or') 1
('herself', 'you') 1
('a', 'notice') 1
('subject', 'our') 1
('she', 'fancied') 1
('say', 'only') 1
('whole', 'window') 1
('could', 'speak') 1
('it', 'takes') 1
('capering', 'wildly') 1
('least', 'if') 1
('table', 'now') 1
('dinah', 'stop') 1
('said', 'seven') 1
('world', 'oh') 1
('out', 'exactly') 1
('agreement', 'the') 1
('little', 'anxiously') 1
('"', 'tis') 1
('the', 'largest') 1
('will', 'become') 1
('are', 'removed') 1
('had', 'unrolled') 1
('been', 'so') 1
('makes', 'no') 1
('a', 'muchness"') 1
('repeat', '"you') 1
('signify', 'let') 1
('without', 'further') 1
('within', 'her') 1
('way', 'never') 1
('oyster', 'i') 1
('with', 'that') 1
('contemptuous', 'tones') 1
('little', 'juror') 1
('said', 'so') 1
('dry', 'very') 1
('for', 'nearly') 1
('could', 'say') 1
('soup', 'alice') 1
('and', 'stopped') 1
('and', 'ensuring') 1
('having', 'a') 1
('trickling', 'down') 1
('use', 'without') 1
('email', 'business@pglaf') 1
('ten', 'courtiers') 1
('2001', 'the') 1
('remembering', 'her') 1
('no', 'larger') 1
('sitting', 'next') 1
('including', 'how') 1
('is', 'why') 1
('thoughtfully', 'but') 1
('matter', 'with') 1
('thus', 'we') 1
('to', 'shillings') 1
('dodo', 'replied') 1
('away', 'consider') 1
('silence', 'after') 1
('understand', 'that') 1
('all', 'seemed') 1
('yourself', 'the') 1
('all', 'can') 1
('which', 'brought') 1
('his', 'turn') 1
('remarkable', 'sensation') 1
('adoption', 'of') 1
('not', 'appear') 1
('nose', 'you') 1
('just', 'saying') 1
('somewhere', 'near') 1
('little', 'bright-eyed') 1
('dried', 'her') 1
('from', 'states') 1
('3', 'a') 1
('no', 'wise') 1
('suddenly', 'dropping') 1
('you', 'gave') 1
('relieved', 'to') 1
('always', 'getting') 1
('tea-party', 'there') 1
('nothing', 'better') 1
('have', 'lived') 1
('creature', 'but') 1
('sister', 'why') 1
('be', 'murder') 1
('rabbit', 'cried') 1
('glass', 'there') 1
('two', 'to') 1
('her', 'draw') 1
('who', 'wanted') 1
('timidly', 'saying') 1
('well', 'take') 1
('same', 'the') 1
('room', 'said') 1
('with', 'william') 1
('no', 'wonder') 1
('it', 'myself') 1
('of', 'thunder') 1
('states', 'who') 1
('cards', 'the') 1
('from', 'people') 1
('enough', 'and') 1
('up', 'somewhere') 1
('to', 'another') 1
('draw', 'back') 1
('is', 'critical') 1
('interesting', 'story') 1
('not', 'have') 1
('something', 'out') 1
('pieces', 'of') 1
('recognised', 'the') 1
('well', 'there') 1
('state', 'visit') 1
('than', '"plain') 1
('being', 'seen') 1
('lowing', 'of') 1
('but', 'looked') 1
('had', 'drunk') 1
('things', 'it') 1
('her', 'promise') 1
('chimney', 'has') 1
('odd', 'the') 1
('had', 'taught') 1
('alice', 'he') 1
('knee', 'i') 1
('so', 'violently') 1
('contradicted', 'in') 1
('gutenberg-tm', 'is') 1
('saw', 'her') 1
('saves', 'a') 1
('yawning', 'and') 1
('taking', 'first') 1
('of', 'tea') 1
('birds', 'waiting') 1
('lips', 'i') 1
('does', 'very') 1
('7', 'or') 1
('she', 'helped') 1
('performances', 'and') 1
('moment', 'let') 1
('kept', 'tossing') 1
('hopeless', 'than') 1
('he', 'wore') 1
('head', 'is') 1
('took', 'pie-crust') 1
('executed', 'all') 1
('payments', 'must') 1
('long', 'ringlets') 1
('may', 'obtain') 1
('the', 'banquet') 1
('a', 'soothing') 1
('marked', 'up') 1
('heads', 'of') 1
('about', 'trouble') 1
('then', 'what') 1
('wherever', 'she') 1
('stay', 'with') 1
('here', 'o') 1
('different', 'branches') 1
('tremble', 'alice') 1
('the', 'beak') 1
('sat', 'up') 1
('bill', 'then') 1
('like', 'mad') 1
('have', 'anything') 1
('short', 'time') 1
('bottle', 'they') 1
('lying', 'round') 1
('large', 'letters') 1
('chains', 'with') 1
('can', 'easily') 1
('change', 'she') 1
('brought', 'them') 1
('me', 'left') 1
('glanced', 'rather') 1
('ll', 'just') 1
('closely', 'against') 1
('it', 'once') 1
('written', 'down') 1
('back-somersault', 'in') 1
('crumbs', 'you') 1
('to-day', 'and') 1
('should', 'forget') 1
('the', 'seaside') 1
('watching', 'it') 1
('her', 'violently') 1
('currants', 'well') 1
('children', 'who') 1
('said', 'there') 1
('e', '5') 1
('something', 'and') 1
('suddenly', 'you') 1
('her', 'haste') 1
('not', 'an') 1
('hurried', 'nervous') 1
('he', 'finds') 1
('anyone', 'providing') 1
('fall', 'as') 1
('his', 'mind') 1
('may', 'only') 1
('abide', 'figures') 1
('their', 'proper') 1
('went', 'off') 1
('herald', 'read') 1
('that', 'used') 1
('assembled', 'on') 1
('to', 'subscribe') 1
('shall', 'sing') 1
('that', 'to') 1
('or', 'grunted') 1
('to', 'france') 1
('really', 'dreadful') 1
('to', 'size') 1
('for', 'actual') 1
('shore', 'chapter') 1
('alice', 'all') 1
('uncommonly', 'fat') 1
('asleep', 'instantly') 1
('charge', 'anything') 1
('last', 'in') 1
('pray', 'how') 1
('teaching', 'it') 1
('encouraging', 'tone') 1
('have', 'made') 1
('volunteer', 'support') 1
('cat', 'it') 1
('impatiently', 'any') 1
('the', 'sand') 1
('best', 'of') 1
('her', 'look') 1
('appeared', 'she') 1
('yourself', 'and') 1
('people', 'up') 1
('thought', 'they') 1
('instance', 'if') 1
('vague', 'sort') 1
('growl', 'when') 1
('be', 'talking') 1
('processing', 'or') 1
('follows', 'when') 1
('paper', 'edition') 1
('lory', 'alice') 1
('regular', 'course') 1
('m', 'better') 1
('any', 'said') 1
('a', 'waistcoat-pocket') 1
('english', 'who') 1
('yes', 'shouted') 1
('and', 'and') 1
('large', 'a') 1
('alice', 'living') 1
('fancying', 'the') 1
('the', 'subjects') 1
('finished', 'as') 1
('still', 'and') 1
('turtle', 'they') 1
('watch', 'she') 1
('stuff', 'and') 1
('alice', 'thoughtfully') 1
('after', 'such') 1
('off', 'than') 1
('clock', 'it') 1
('owner', 'and') 1
('this', 'answer') 1
('gutenberg', '1') 1
('however', 'he') 1
('oh', 'they') 1
('shrill', 'passionate') 1
('mind', 'what') 1
('through', 'all') 1
('happen', 'that') 1
('words', 'don') 1
('crashed', 'around') 1
('saying', 'anything') 1
('took', 'courage') 1
('of', 'eating') 1
('other', 'ladder') 1
('poor', 'animal') 1
('shall', 'never') 1
('clearly', 'marked') 1
('the', 'adventures') 1
('redistributing', 'or') 1
('sea', 'but') 1
('up', 'against') 1
('asking', 'but') 1
('came', 'ten') 1
('several', 'printed') 1
('many', 'fees') 1
('thing', 'after') 1
('beheaded', 'said') 1
('remarked', 'till') 1
('classics', 'master') 1
('added', 'aloud') 1
('kitchen', 'which') 1
('that', 'what') 1
('over', 'thought') 1
('replied', 'eagerly') 1
('ointment', 'one') 1
('do', 'bats') 1
('"', 'the') 1
('talking', 'familiarly') 1
('he', 'met') 1
('fork', 'with') 1
('great', 'crowd') 1
('puzzled', 'he') 1
('an', 'extraordinary') 1
('the', 'croquet-ground') 1
('fish-footman', 'began') 1
('all', 'fairly') 1
('met', 'those') 1
('corner', 'of') 1
('began', 'for') 1
('flurry', 'of') 1
('the', 'ceiling') 1
('creatures', 'hid') 1
('replied', 'what') 1
('times', 'seven') 1
('well', 'without') 1
('his', 'pocket') 1
('and', 'simply') 1
('toes', 'when') 1
('current', 'donation') 1
('its', 'tongue') 1
('mad', 'after') 1
('this', 'side') 1
('while', 'finding') 1
('ugly', 'child') 1
('play', 'at') 1
('them', 'say') 1
('break', 'the') 1
('rest', 'her') 1
('obstacle', 'that') 1
('any', 'advantage') 1
('table', 'have') 1
('queer-shaped', 'little') 1
('left', 'no') 1
('replied', 'and') 1
('both', 'his') 1
('story', 'said') 1
('first', 'hold') 1
('rabbit', 'hurried') 1
('dormouse', 'after') 1
('things', 'as') 1
('my', 'wife') 1
('friends', 'shared') 1
('you', 'shan') 1
('voice', 'at') 1
('marked', 'out') 1
('way', 'do') 1
('be', 'rude') 1
('so', 'good') 1
('offended', 'it') 1
('s', 'absence') 1
('justice', 'before') 1
('very', 'poor') 1
('fee', 'as') 1
('rabbit', 'engraved') 1
('seven', 'said') 1
('jury', 'of') 1
('things', 'between') 1
('unlocking', 'the') 1
('much', 'confused') 1
('always', 'hated') 1
('forehead', 'ache') 1
('cat', 'now') 1
('est', 'ma') 1
('half', 'high') 1
('party', 'that') 1
('a', 'summer') 1
('so', 'rich') 1
('a', 'growl') 1
('that', 'cats') 1
('somebody', 'to') 1
('of', 'court') 1
('she', 'must') 1
('air', 'it') 1
('works', 'even') 1
('could', 'show') 1
('still', 'where') 1
('xi', 'who') 1
('so', 'when') 1
('twinkled', 'after') 1
('readable', 'by') 1
('something', 'my') 1
('knot', 'and') 1
('driest', 'thing') 1
('is', 'accessed') 1
('three', 'questions') 1
('you', 'mind') 1
('have', 'somebody') 1
('appeared', 'i') 1
('minute', 'while') 1
('reply', 'it') 1
('we', 'indeed') 1
('lady', 'said') 1
('long', 'tail') 1
('rude', 'the') 1
('however', 'at') 1
('dodo', 'pointing') 1
('speak', 'good') 1
('require', 'such') 1
('writing', 'on') 1
('girl', 'or') 1
('dormouse', 'turn') 1
('but', 'that') 1
('gryphon', 'how') 1
('dear', 'sir') 1
('this', 'elegant') 1
('had', 'settled') 1
('sorrow', 'you') 1
('verses', 'on') 1
('quadrille', 'that') 1
('it', 'any') 1
('suppress', 'him') 1
('me', 'help') 1
('it', 'altogether') 1
('somebody', 'else') 1
('and', 'untwist') 1
('remember', 'remarked') 1
('they', 'arrived') 1
('alice', 'we') 1
('having', 'cheated') 1
('roses', 'growing') 1
('knew', 'she') 1
('calmly', 'though') 1
('contact', 'links') 1
('getting', 'very') 1
('a', 'chrysalis') 1
('heart', 'would') 1
('a', 'feather') 1
('the', 'course') 1
('onions', 'seven') 1
('them', 'quite') 1
('puzzled', 'the') 1
('the', 'porpoise') 1
('nile', 'on') 1
('might', 'have') 1
('and', 'confusion') 1
('alice', 'desperately') 1
('memory', 'and') 1
('hearthrug', 'near') 1
('tumbled', 'head') 1
('of', 'and') 1
('chin', 'in') 1
('raven', 'like') 1
('remember', 'them') 1
('3', 'below') 1
('crab', 'took') 1
('walk', 'long') 1
('ago', 'and') 1
('from', 'beginning') 1
('having', 'the') 1
('begin', 'again') 1
('nearer', 'is') 1
('ll', 'feel') 1
('a', 'cart-horse') 1
('narrow', 'to') 1
('lasted', 'the') 1
('copying', 'or') 1
('herself', 'very') 1
('and', 'lonely') 1
('frightened', 'at') 1
('before', 'he') 1
('nearly', 'all') 1
('meal', 'and') 1
('be', 'offended') 1
('along', 'in') 1
('beak', 'pray') 1
('hedgehog', 'a') 1
('first', 'idea') 1
('the', 'shark') 1
('pointing', 'with') 1
('had', 'hoped') 1
('rome', 'no') 1
('splendidly', 'dressed') 1
('work', 'it') 1
('small', 'but') 1
('each', 'case') 1
('opened', 'their') 1
('not', 'possibly') 1
('few', 'little') 1
('must', 'sugar') 1
('king', 'added') 1
('a', 'solemn') 1
('just', 'missed') 1
('off', 'when') 1
('so', 'either') 1
('others', 'all') 1
('different', 'alice') 1
('trouble', 'myself') 1
('no', 'harm') 1
('our', 'breath') 1
('answer', 'without') 1
('make', 'anything') 1
('came', 'an') 1
('youth', 'and') 1
('slates', 'when') 1
('been', 'running') 1
('hid', 'their') 1
('waiting', 'on') 1
('remembered', 'having') 1
('nobody', 'seems') 1
('rabbit', 'it') 1
('flavour', 'of') 1
('cur', '"such') 1
('not', 'myself') 1
('why', 'if') 1
('seemed', 'too') 1
('s', 'bark') 1
('his', 'great') 1
('waited', 'the') 1
('can', 'listen') 1
('no', 'please') 1
('really', 'have') 1
('feeling', 'at') 1
('you', 'foolish') 1
('drawling-master', 'was') 1
('not', 'becoming') 1
('it', 'left') 1
('alice', 'remained') 1
('kept', 'doubling') 1
('the', 'candle') 1
('impertinent', 'said') 1
('same', 'order') 1
('with', 'trying') 1
('be', 'nothing') 1
('ear', 'alice') 1
('smoking', 'again') 1
('on', 'transcribe') 1
('house', 'quite') 1
('a', 'clear') 1
('hatter', 'this') 1
('liked', 'is') 1
('floor', 'in') 1
('they', 've') 1
('s', 'little') 1
('much', 'what') 1
('the', 'trouble') 1
('you', 'any') 1
('gryphon', 'turn') 1
('miserable', 'mock') 1
('states', '1') 1
('effect', 'the') 1
('s', 'love') 1
('dog', 's') 1
('and', 'seven') 1
('changed', 'his') 1
('and', 'such') 1
('dormouse', 'crossed') 1
('kick', 'and') 1
('was', 'always') 1
('interrupted', 'unimportant') 1
('about', 'cats') 1
('little', 'sharp') 1
('the', 'sound') 1
('them', 'were') 1
('caught', 'it') 1
('no', 'restrictions') 1
('offer', 'it') 1
('and', 'gravy') 1
('and', 'much') 1
('eyes', 'like') 1
('adjourn', 'for') 1
('"the', 'more') 1
('any', 'older') 1
('day', 'no') 1
('and', 'among') 1
('extremely', 'just') 1
('who', 'stole') 1
('bird', 'alice') 1
('duchess', 'who') 1
('rate', 'there') 1
('jogged', 'my') 1
('both', 'its') 1
('of', 'many') 1
('rules', 'in') 1
('may', 'as') 1
('alice', 'three') 1
('gone', 'to') 1
('hold', 'the') 1
('fountains', 'chapter') 1
('fellows', 'were') 1
('mice', 'and') 1
('sections', '3') 1
('snail', 'but') 1
('where', 'can') 1
('of', 'mind') 1
('many', 'tea-things') 1
('being', 'rather') 1
('the', 'right-hand') 1
('i', 'speak') 1
('just', 'what') 1
('reason', 'to') 1
('staff', 'please') 1
('them', 'into') 1
('remain', 'freely') 1
('remarking', 'i') 1
('this', 'curious') 1
('do', 'but') 1
('very', 'lonely') 1
('duchess', 'an') 1
('spoke', 'i') 1
('though', 'as') 1
('in', 'rather') 1
('quite', 'slowly') 1
('height', 'indeed') 1
('once', 'with') 1
('an', 'agony') 1
('computers', 'including') 1
('got', 'down') 1
('that', 'with') 1
('execution', 'once') 1
('synonymous', 'with') 1
('is', 'over') 1
('ada', 'she') 1
('heads', 'below') 1
('itself', 'she') 1
('little', 'from') 1
('-', 'except') 1
('and', 'raised') 1
('stretched', 'her') 1
('eaten', 'up') 1
('home', 'why') 1
('riddle', 'yet') 1
('mouse', 'with') 1
('their', 'curls') 1
('has', 'he') 1
('rules', 'their') 1
('lap', 'of') 1
('chapter', 'iii') 1
('states', 'we') 1
('for', 'protection') 1
('home', 'this') 1
('the', 'corners') 1
('air', 'this') 1
('and', 'secondly') 1
('jurymen', 'are') 1
('the', 'reeds') 1
('a', 'march') 1
('this', 'web') 1
('air', 'as') 1
('do', 'very') 1
('electronically', 'in') 1
('your', 'possession') 1
('accessible', 'by') 1
('her', 'here') 1
('pass', 'away') 1
('turtle', 'persisted') 1
('break', 'she') 1
('after', 'them') 1
('disobey', 'though') 1
('curious', 'she') 1
('croquet-ground', 'the') 1
('come', 'out') 1
('mayn', 't') 1
('english', 'said') 1
('railway', 'she') 1
('besides', 'she') 1
('caterpillar', 'decidedly') 1
('night', 'and') 1
('eel', 'on') 1
('herself', 'falling') 1
('any', 'direction') 1
('time', 'don') 1
('over', 'its') 1
('donations', 'received') 1
('he', 'now') 1
('pool', 'rippling') 1
('meant', 'to') 1
('received', 'written') 1
('sky-rocket', 'so') 1
('have', 'dropped') 1
('goals', 'and') 1
('fourteenth', 'of') 1
('set', 'of') 1
('they', 'seemed') 1
('wits', 'so') 1
('a', 'sound') 1
('take', 'him') 1
('up', 'eagerly') 1
('mark', 'but') 1
('screamed', 'off') 1
('foundation', 'are') 1
('moved', 'who') 1
('care', 'which') 1
('breathe"', 'it') 1
('we', 'don') 1
('away', 'quietly') 1
('understand', 'why') 1
('difficulty', 'alice') 1
('croqueted', 'the') 1
('in', 'chains') 1
('ll', 'take') 1
('and', 'managed') 1
('formats', 'readable') 1
('some', 'meaning') 1
('a', 'journey') 1
('tiny', 'little') 1
('voices', 'asked') 1
('cartwheels', 'and') 1
('meant', 'till') 1
('the', 'doubled-up') 1
('s', 'coming') 1
('agony', 'of') 1
('good', 'way') 1
('the', 'truth') 1
('confusion', 'that') 1
('hardly', 'suppose') 1
('adventures', 'i') 1
('research', 'on') 1
('t', 'grow') 1
('809', 'north') 1
('guessed', 'who') 1
('have', 'wondered') 1
('about', 'something') 1
('distributed', 'to') 1
('efforts', 'of') 1
('think', 'for') 1
('s', 'called') 1
('herself', 'useful') 1
('a', 'walrus') 1
('garden', 'where') 1
('legs', 'in') 1
('throughout', 'numerous') 1
('gryphon', 'of') 1
('hoping', 'she') 1
('life', 'it') 1
('it', 'aloud') 1
('little', 'lizard') 1
('tureen', 'who') 1
('anxiously', 'yes') 1
('was', 'passing') 1
('wag', 'my') 1
('electronically', 'the') 1
('gryphon', 'sat') 1
('pleasanter', 'at') 1
('fell', 'asleep') 1
('"', '-') 1
('head', 'must') 1
('shouted', 'alice') 1
('turtle', 'is') 1
('about', 'read') 1
('throw', 'the') 1
('gave', 'me') 1
('william', 'replied') 1
('thought', 'till') 1
('got', 'altered') 1
('executioner', 'myself') 1
('against', 'each') 1
('a', 'soldier') 1
('grinned', 'when') 1
('right', 'foot') 1
('suppose', 'i') 1
('here', 'till') 1
('and', 'mouths') 1
('length', 'of') 1
('kept', 'all') 1
('elbow', 'was') 1
('zip', 'this') 1
('sneezes', 'for') 1
('lark', 'and') 1
('now', 'here') 1
('cupboards', 'as') 1
('slowly', 'and') 1
('our', 'heads') 1
('his', 'knuckles') 1
('arm', 'round') 1
('change', 'in') 1
('hope', 'they') 1
('t', 'thought') 1
('barley-sugar', 'and') 1
('went', 'by') 1
('finished', 'it') 1
('and', 'printed') 1
('not', 'choosing') 1
('behind', 'us') 1
('legs', 'hanging') 1
('a', 'hint') 1
('left', 'her') 1
('tinkling', 'sheep-bells') 1
('pieces', 'against') 1
('to', 'hold') 1
('certainly', 'alice') 1
('drew', 'a') 1
('states', 'do') 1
('thought', 'decidedly') 1
('live', 'about') 1
('come', 'once') 1
('such', 'thing') 1
('to', 'complying') 1
('and', 'tumbled') 1
('say', 'again') 1
('may', 'contain') 1
('it', 'puffed') 1
('anxiously', 'among') 1
('hand', 'round') 1
('his', 'guilt') 1
('neither', 'of') 1
('disgust', 'and') 1
('journey', 'i') 1
('copy', 'or') 1
('dormouse', 'slowly') 1
('sentenced', 'were') 1
('bright', 'flowers') 1
('crawling', 'away') 1
('week', 'before') 1
('what', 'had') 1
('for', 'with') 1
('executed', 'the') 1
('been', 'was') 1
('fifth', 'bend') 1
('began', 'smoking') 1
('and', 'other') 1
('on', 'everybody') 1
('as', 'serpents') 1
('thoughts', 'she') 1
('down', 'went') 1
('the', 'sneeze') 1
('to', 'without') 1
('send', 'the') 1
('they', 'hurried') 1
('any', 'volunteers') 1
('completely', 'very') 1
('room', 'no') 1
('were', 'nearly') 1
('looked', 'back') 1
('right', 'through') 1
('compliance', 'to') 1
('means', 'much') 1
('a', 'duchess') 1
('sent', 'to') 1
('gently', 'brushing') 1
('away', 'went') 1
('came', 'rattling') 1
('change', 'them') 1
('hearts', 'and') 1
('damage', '1') 1
('bird', 'as') 1
('change', 'and') 1
('accounting', 'for') 1
('the', 'treacle') 1
('hearts', 'were') 1
('noises', 'would') 1
('same', 'little') 1
('box', 'allow') 1
('user', 'who') 1
('our', 'best') 1
('how', 'doth') 1
('what', 'became') 1
('provided', 'you') 1
('large', 'crowd') 1
('flamingo', 'shall') 1
('came', 'back') 1
('important', 'piece') 1
('experiment', 'tried') 1
('arches', 'the') 1
('know', 'how') 1
('t', 'bother') 1
('hatter', 'began') 1
('chapter', 'vi') 1
('indeed', 'to') 1
('here', 'digging') 1
('door', 'but') 1
('rat-hole', 'she') 1
('it', 'even') 1
('minutes', 'together') 1
('your', 'flamingo') 1
('best', 'afore') 1
('f', '4') 1
('quite', 'makes') 1
('eat', 'her') 1
('but', 'some') 1
('sure', '_i_') 1
('must', 'burn') 1
('that', 'attempt') 1
('to', 'about') 1
('find', 'out') 1
('so', 'eagerly') 1
('presently', 'she') 1
('got', 'entangled') 1
('take', 'less') 1
('then', 'treading') 1
('invited', 'yet') 1
('caterpillar', 'was') 1
('turn', 'round') 1
('real', 'nose') 1
('i', 'beat') 1
('straightened', 'out') 1
('knave', 'shook') 1
('almost', 'certain') 1
('wooden', 'spades') 1
('an', 'oyster') 1
('bat', 'how') 1
('the', 'hint') 1
('them', 'however') 1
('difficult', 'game') 1
('here', 'ought') 1
('ever', 'heard') 1
('her', 'said') 1
('got', 'the') 1
('user', 'to') 1
('lying', 'under') 1
('looked', 'under') 1
('blow', 'underneath') 1
('had', 'our') 1
('tucked', 'away') 1
('her', 'at') 1
('seemed', 'not') 1
('looking', 'as') 1
('voice', 'nobody') 1
('altogether', 'for') 1
('alice', 'like') 1
('reasons', 'first') 1
('permission', 'in') 1
('e', 'below') 1
('were', 'using') 1
('just', 'upset') 1
('"', 'will') 1
('rudeness', 'was') 1
('thought', 'i') 1
('s', 'web') 1
('one', 'respectable') 1
('course', 'we') 1
('without', 'my') 1
('cease', 'using') 1
('doubtful', 'whether') 1
('and', 'longed') 1
('happy', 'summer') 1
('half', 'no') 1
('queens', 'and') 1
('matter', 'it') 1
('she', 'dreamed') 1
('upon', 'request') 1
('am', 'is') 1
('one', 'or') 1
('continued', 'turning') 1
('great', 'wonder') 1
('north', '1500') 1
('pairs', 'of') 1
('waiting', 'to') 1
('she', 'listened') 1
('bat', 'and') 1
('house', 'that') 1
('inches', 'deep') 1
('head', 'on') 1
('out', 'now') 1
('turkey', 'toffee') 1
('round', 'also') 1
('know', 'where') 1
('absurd', 'but') 1
('concerning', 'the') 1
('all', 'its') 1
('"never', 'imagine') 1
('away', 'into') 1
('soup', 'there') 1
('candle', 'i') 1
('s', 'hedgehog') 1
('undertone', 'important') 1
('fixed', 'on') 1
('it', 'explained') 1
('was', 'ready') 1
('be', 'angry') 1
('do', 'let') 1
('at', 'his') 1
('chapter', 'iv') 1
('annoy', 'because') 1
('between', 'them') 1
('began', 'picking') 1
('noise', 'going') 1
('adventures', 'first') 1
('spoke', 'it') 1
('rather', 'offended') 1
('to', 'what') 1
('sharp', 'hiss') 1
('curious', 'it') 1
('to', 'somebody') 1
('another', 'however') 1
('distraction', 'uglification') 1
('master', 'was') 1
('guess', 'she') 1
('and', 'swam') 1
('rose', 'up') 1
('once', 'give') 1
('splashed', 'his') 1
('"the', 'foundation"') 1
('voice', 'same') 1
('i', 'did') 1
('does', 'i') 1
('mind', 'she') 1
('very', 'seldom') 1
('many', 'hours') 1
('somebody', 'said') 1
('trims', 'his') 1
('frighten', 'them') 1
('think', 'nothing') 1
('for', 'poor') 1
('invitation', 'for') 1
('lodging', 'houses') 1
('to', 'yesterday') 1
('days', 'and') 1
('any', 'alternate') 1
('comfits', 'luckily') 1
('be', 'all') 1
('in', 'curving') 1
('question', 'why') 1
('at', 'you') 1
('away', 'when') 1
('them', 'again') 1
('now', 'said') 1
('rosetree', 'for') 1
('confirmation', 'of') 1
('were', 'having') 1
('mistake', 'it') 1
('gryphon', 'added') 1
('window', 'that') 1
('twinkle', 'and') 1
('trembled', 'so') 1
('fall', 'upon') 1
('otherwise', 'judging') 1
('wonderland', 'by') 1
('too', 'bad') 1
('volunteers', 'associated') 1
('violently', 'with') 1
('slates', 'what') 1
('concept', 'and') 1
('to', 'maintaining') 1
('of', 'long') 1
('rabbit', 'coming') 1
('evidently', 'meant') 1
('stamping', 'about') 1
('hatter', 'does') 1
('the', 'beautiful') 1
('nobody', 'in') 1
('or', 'corrupt') 1
('the', 'tone') 1
('found', 'the') 1
('over', 'her') 1
('open', 'place') 1
('multiplication', 'table') 1
('can', 'copy') 1
('hurried', 'by') 1
('entity', 'that') 1
('muchness"', 'did') 1
('s', 'going') 1
('dormouse', 'write') 1
('finished', 'my') 1
('re', 'wondering') 1
('meant', 'some') 1
('re', 'putting') 1
('its', '501') 1
('them', 'after') 1
('of', 'derivative') 1
('the', 'one') 1
('silence', 'instantly') 1
('quite', 'absurd') 1
('of', 'neck') 1
('many', 'little') 1
('minutes', 'she') 1
('air', 'even') 1
('readable', 'form') 1
('1', 'general') 1
('even', 'when') 1
('all', 'you') 1
('manage', 'on') 1
('or', 'else') 1
('you', 'now') 1
('were', 'doors') 1
('alternate', 'format') 1
('dormouse', 'sulkily') 1
('she', 'oh') 1
('such', 'nonsense') 1
('the', 'multiplication') 1
('lost', 'away') 1
('on', 'puzzling') 1
('bough', 'of') 1
('s', 'go') 1
('their', 'friends') 1
('hear', 'whispers') 1
('began', 'rather') 1
('his', 'hands') 1
('of', 'verses') 1
('pun', 'the') 1
('wink', 'with') 1
('it', 'more') 1
('now', 'five') 1
('doing', 'out') 1
('got', 'used') 1
('right', 'five') 1
('eggs', 'i') 1
('invitation', 'from') 1
('day', 'you') 1
('how', 'late') 1
('a', 'ring') 1
('queen', 'merely') 1
('dormouse', 'go') 1
('beg', 'pardon') 1
('the', 'country') 1
('everybody', 'has') 1
('glass', 'what') 1
('turtle', 'soup') 1
('is', '"be') 1
('the', 'fun') 1
('old', 'conger-eel') 1
('s', 'beginning') 1
('rapidly', 'she') 1
('table', 'half') 1
('small', 'cake') 1
('how', 'this') 1
('jelly-fish', 'out') 1
('gravely', 'i') 1
('voice', 'fetch') 1
('thoughtfully', 'i') 1
('tax', 'treatment') 1
('ordered', 'they') 1
('her', 'brother') 1
('turtle', 'she') 1
('singing', 'in') 1
('or', 'implied') 1
('her', 'usual') 1
('voice', 'back') 1
('gryphon', 'in') 1
('must', 'know') 1
('eyes', 'for') 1
('tasted', 'an') 1
('all', 'dry') 1
('and', 'welcome') 1
('feet', 'to') 1
('though', 'he') 1
('it', 'this') 1
('and', 'research') 1
('nothing', 'seems') 1
('the', 'lock') 1
('you', 'out') 1
('she', 'tipped') 1
('to', 'charge') 1
('i', 'kept') 1
('included', 'thus') 1
('had', 'ordered') 1
('thing', 'you') 1
('likes', 'i') 1
('much', 'already') 1
('1', '1') 1
('use', 'part') 1
('do', 'or') 1
('apples', 'yer') 1
('gutenberg', 'volunteers') 1
('happened', 'she') 1
('spoken', 'first') 1
('only', 'mustard') 1
('truthful', 'child') 1
('answer', 'questions') 1
('get', 'it') 1
('till', 'at') 1
('farm-yard', 'while') 1
('end', 'said') 1
('first', 'verdict') 1
('up', 'any') 1
('11', 'txt') 1
('luckily', 'the') 1
('you', 'advance') 1
('repeat', 'lessons') 1
('harm', 'in') 1
('bite', 'and') 1
('laugh', 'and') 1
('days', 'the') 1
('furrow', 'in') 1
('gryphon', 'never') 1
('foot', 'slipped') 1
('fee', 'is') 1
('not', 'feel') 1
('grave', 'that') 1
('are', '"much') 1
('very', 'ill') 1
('not', 'being') 1
('cross-examine', 'this') 1
('to', 'calculate') 1
('research', 'they') 1
('about', 'his') 1
('empty', 'she') 1
('and', 'charitable') 1
('do', 'once') 1
('that', 'somebody') 1
('suppose', 'dinah') 1
('way', 'was') 1
('and', 'of') 1
('stop', 'well') 1
('carefully', 'with') 1
('chose', 'the') 1
('dear', 'old') 1
('jumping', 'merrily') 1
('hurried', 'back') 1
('ll', 'sit') 1
('works', 'reports') 1
('that', 'size') 1
('and', 'cannot') 1
('shook', 'both') 1
('an', 'important') 1
('other', 'terms') 1
('arrum', 'an') 1
('never', 'learnt') 1
('leaning', 'over') 1
('was', 'for') 1
('missed', 'their') 1
('she', 'told') 1
('conversation', 'a') 1
('ground', 'and') 1
('getting', 'extremely') 1
('their', 'shoulders') 1
('alice', 'took') 1
('large', 'mushroom') 1
('duchess', 'chop') 1
('than', 'suet') 1
('heard', 'yet') 1
('so', 'kind') 1
('long', 'since') 1
('his', 'normans') 1
('side', 'as') 1
('wasting', 'our') 1
('the', 'lap') 1
('they', 'slipped') 1
('deep', 'well') 1
('yourself', 'to') 1
('her', 'unfortunate') 1
('dancing', 'round') 1
('pig-baby', 'was') 1
('their', 'wits') 1
('learnt', 'it') 1
('re', 'so') 1
('problem', '1') 1
('audibly', 'what') 1
('bill', 'had') 1
('you', 'indicate') 1
('removed', 'all') 1
('executed', 'for') 1
('down', 'continued') 1
('times', 'over') 1
('grin', 'they') 1
('the', 'patience') 1
('time', 'so') 1
('you', 'give') 1
('as', 'curious') 1
('branch', 'of') 1
('ve', 'nothing') 1
('mentioned', 'me') 1
('wish', 'that') 1
('help', 'thinking') 1
('fast', 'in') 1
('saucepans', 'plates') 1
('hurry', 'and') 1
('fees', 'you') 1
('twentieth', 'time') 1
('nose', 'the') 1
('else', 'had') 1
('height', 'it') 1
('be', 'savage') 1
('brother', 's') 1
('hearts', 'she') 1
('hot', 'tea') 1
('that', 'nor') 1
('up', 'towards') 1
('few', 'yards') 1
('low', 'vulgar') 1
('timidly', 'why') 1
('about', 'trying') 1
('located', 'in') 1
('bit', 'again') 1
('to', 'avoid') 1
('her', 'age') 1
('say', 'she') 1
('manage', 'better') 1
('she', 'of') 1
('identify', 'do') 1
('puzzle', 'and') 1
('and', 'will') 1
('hush', 'the') 1
('out', 'i') 1
('anxiously', 'to') 1
('sell', 'the') 1
('though', 'this') 1
('have', 'imitated') 1
('had', 'begun') 1
('fishes', 'in') 1
('behind', 'a') 1
('and', 'straightening') 1
('soup', 'pennyworth') 1
('be', 'read') 1
('so', 'awfully') 1
('dodged', 'behind') 1
('off', 'all') 1
('beheading', 'people') 1
('any', 'word') 1
('on', 'good') 1
('tone', 'explanations') 1
('then', 'sat') 1
('too', 'began') 1
('of', 'adding') 1
('size', 'that') 1
('large', 'dish') 1
('was', 'even') 1
('blame', 'on') 1
('catch', 'hold') 1
('turned', 'away') 1
('knocking', 'said') 1
('of', 'crawling') 1
('ve', 'said') 1
('beautifully', 'marked') 1
('yet', 'oh') 1
('old', 'turtle') 1
('crash', 'now') 1
('voice', 'there') 1
('you', 'so') 1
('a', 'part') 1
('am', 'sir') 1
('possibly', 'hear') 1
('said', 'waving') 1
('slates', 'she') 1
('a', 'sky-rocket') 1
('someone', 'to') 1
('re', 'nervous') 1
('implied', 'warranties') 1
('the', 'user') 1
('read', 'as') 1
('they', 'haven') 1
('the', '"right') 1
('which', 'seven') 1
('can', 'say') 1
('a', 'mock') 1
('when', 'alice') 1
('than', 'nine') 1
('the', 'act') 1
('form', 'including') 1
('liked', 'them') 1
('pleaded', 'alice') 1
('longer', 'than') 1
('files', 'containing') 1
('rubbing', 'its') 1
('yes', 'i') 1
('very', 'dull') 1
('curtsey', 'as') 1
('for', 'damages') 1
('said', 'everybody') 1
('trotting', 'slowly') 1
('way', 'wherever') 1
('a', 'knife') 1
('the', 'order') 1
('instance', 'there') 1
('uncomfortable', 'for') 1
('hot', 'tureen') 1
('head', 'brandy') 1
('people', 'knew') 1
('to-day', 'just') 1
('claim', 'a') 1
('shoes', 'she') 1
('seems', 'alice') 1
('me', 'larger') 1
('your', 'watch') 1
('her', 'hair') 1
('mouse', 'she') 1
('this', 'could') 1
('herself', 'would') 1
('your', 'state') 1
('started', 'to') 1
('she', 'do') 1
('suppose', 'that') 1
('bank', 'the') 1
('the', 'fender') 1
('defect', 'you') 1
('the', 'daisies') 1
('with', 'each') 1
('first', 'verse') 1
('lived', 'much') 1
('drink', 'under') 1
('father', 'i') 1
('then', 'raised') 1
('"defects', '"') 1
('maps', 'and') 1
('in', 'them') 1
('immediate', 'adoption') 1
('running', 'about') 1
('coaxing', 'tone') 1
('as', 'alice') 1
('described', 'in') 1
('toes', 'the') 1
('may', 'use') 1
('if', 'something') 1
('spoke', 'unimportant') 1
('voice', 'repeat') 1
('growing', 'too') 1
('good', 'thing') 1
('waited', 'in') 1
('staring', 'stupidly') 1
('matter', 'on') 1
('the', 'teacups') 1
('would', 'bend') 1
('them', 'even') 1
('addressed', 'her') 1
('"oh', 'tis') 1
('make', 'children') 1
('morning', 'just') 1
('speech', 'you') 1
('directly', 'as') 1
('nurse', 'but') 1
('hippopotamus', 'but') 1
('implied', 'including') 1
('his', 'flappers') 1
('a', 'friend') 1
('its', 'waistcoat-pocket') 1
('set', 'dinah') 1
('age', 'it') 1
('be', 'linked') 1
('one', 'can') 1
('the', 'look-out') 1
('was', 'considering') 1
('keep', 'your') 1
('both', 'bowed') 1
('produced', 'and') 1
('sisters', 'the') 1
('using', 'it') 1
('it', 'directed') 1
('london', 'is') 1
('gutenberg"', 'you') 1
('and', 'grinning') 1
('whether', 'they') 1
('arches', 'left') 1
('dry', 'he') 1
('high', 'i') 1
('whiting', 'kindly') 1
('at', '"') 1
('the', 'balls') 1
('off', 'then') 1
('their', 'fur') 1
('head', 'appeared') 1
('shyly', 'i') 1
('was', 'linked') 1
('serpents', 'do') 1
('s', 'rather') 1
('garden', 'with') 1
('hart', 'the') 1
('bright', 'eager') 1
('nearly', 'at') 1
('footsteps', 'in') 1
('foundation', '"the') 1
('small', 'she') 1
('grass', 'would') 1
('a', 'stop') 1
('rabbit', 'interrupted') 1
('on', 'messages') 1
('his', 'watch') 1
('explanation', 'i') 1
('gryphon', 'alice') 1
('sharply', 'i') 1
('prettier', 'well') 1
('then', 'drawling') 1
('still', 'held') 1
('others', '1') 1
('way', 'it') 1
('each', 'time') 1
('his', 'fan') 1
('it', 'home') 1
('actual', 'direct') 1
('clear', 'way') 1
('quarrelled', 'last') 1
('him', 'declare') 1
('and', 'passed') 1
('walked', 'up') 1
('s', 'remark') 1
('my', 'kitchen') 1
('in', 'march') 1
('here', 'one') 1
('sister', 'of') 1
('and', 'pencils') 1
('we', 'hope') 1
('perfectly', 'round') 1
('gloves', 'she') 1
('flew', 'close') 1
('and', 'days') 1
('right-hand', 'bit') 1
('s', 'at') 1
('king', 'turned') 1
('garden', 'i') 1
('under', 'which') 1
('again', 'into') 1
('wider', 'come') 1
('prisoner', 's') 1
('viii', 'the') 1
('chapter', 'xi') 1
('face', 'to') 1
('tea-party', 'i') 1
('now', 'who') 1
('fourth', 'two') 1
('the', 'silence') 1
('said', 'than') 1
('a', 'piteous') 1
('interrupt', 'again') 1
('bursting', 'out') 1
('same', 'format') 1
('the', 'pack') 1
('prizes', 'prizes') 1
('officers', 'but') 1
('how', 'long') 1
('meat', 'while') 1
('yourself', 'not') 1
('timidly', 'for') 1
('ceiling', 'and') 1
('org/1/11/', 'updated') 1
('off', 'being') 1
('damages', 'even') 1
('see"', 'you') 1
('uglification', 'and') 1
('cheeks', 'he') 1
('is', 'associated') 1
('call', 'after') 1
('feeble', 'voice') 1
('first', 'thought') 1
('mouse-traps', 'and') 1
('of', 'hands') 1
('hardly', 'knowing') 1
('to', 'notice') 1
('right', 'words') 1
('marked', 'in') 1
('unless', 'it') 1
('then', 'hurried') 1
('burn', 'you') 1
('fluttered', 'down') 1
('only', 'alice') 1
('his', 'claws') 1
('you', 'more') 1
('had', 'fits') 1
('alice', 'gently') 1
('beating', 'now') 1
('so', 'as') 1
('to', 'live') 1
('those', 'cool') 1
('can', 'talk') 1
('very', 'diligently') 1
('look', 'through') 1
('bread-knife', 'the') 1
('examining', 'the') 1
('that', 'assembled') 1
('could', 'no') 1
('scattered', 'throughout') 1
('dear', 'little') 1
('hope', 'that') 1
('walk', 'the') 1
('flappers', 'mystery') 1
('had', 'wept') 1
('anger', 'and') 1
('little', 'cartwheels') 1
('here', 'she') 1
('said', 'consider') 1
('it', 'will') 1
('think', 'then') 1
('remarks', 'now') 1
('distance', 'sitting') 1
('stretching', 'and') 1
('t', 'going') 1
('sometimes', 'do') 1
('flat', 'upon') 1
('do', 'why') 1
('other', 'guests') 1
('long', 'passage') 1
('replied', 'only') 1
('her', 'hedgehog') 1
('turtle', 'with') 1
('effect', 'of') 1
('persisted', 'the') 1
('right', 'height') 1
('obsolete', 'old') 1
('one', 'there') 1
('poison', 'so') 1
('thought', 'there') 1
('footman', 'that') 1
('tale', 'was') 1
('it', 'trying') 1
('always', 'took') 1
('forty-two', 'all') 1
('rate', 'he') 1
('another', 'shore') 1
('3', 'if') 1
('asked', 'that') 1
('carrying', 'clubs') 1
('mean', '"purpose"') 1
('through', 'that') 1
('best', 'some') 1
('after', 'waiting') 1
('herself', 'from') 1
('upon', 'and') 1
('settle', 'the') 1
('animal', 'she') 1
('mean', 'the') 1
('a', 'box') 1
('downwards', 'and') 1
('shall', 'remember') 1
('waste', 'it') 1
('to', 'win') 1
('sat', 'on') 1
('hear', 'her') 1
('a', 'water-well') 1
('collected', 'round') 1
('chin', 'was') 1
('messages', 'next') 1
('of', 'i') 1
('readily', 'but') 1
('all', 'cheered') 1
('times', 'six') 1
('m', 'going') 1
('she', 'remained') 1
('came', 'first') 1
('they', 'very') 1
('severely', 'what') 1
('quite', 'know') 1
('for', 'days') 1
('too', 'long') 1
('idea', 'said') 1
('nothing', 'this') 1
('house', 'on') 1
('waters', 'of') 1
('garden', 'the') 1
('guessed', 'the') 1
('some', 'children') 1
('fear', 'they') 1
('trial', 'one') 1
('always', 'growing') 1
('much', 'alas') 1
('a', 'simple') 1
('places', 'all') 1
('matters', 'a') 1
('library', 'of') 1
('sharing', 'a') 1
('soon', 'ahem') 1
('interrupting', 'him') 1
('graceful', 'zigzag') 1
('us', '"') 1
('disagree', 'with') 1
('his', 'whiskers') 1
('receiving', 'it') 1
('guests', 'to') 1
('unimportant', 'unimportant') 1
('i', 'goes') 1
('go', 'alice') 1
('followed', 'the') 1
('reminding', 'her') 1
('of', 'settling') 1
('hardly', 'finished') 1
('crazy', 'the') 1
('you', 'his') 1
('addresses', 'donations') 1
('his', 'fancy') 1
('begin', 'but') 1
('by', 'freely') 1
('and', 'reaching') 1
('are', 'no') 1
('began', 'solemnly') 1
('unfortunate', 'gardeners') 1
('only', 'took') 1
('start', 'full') 1
('lesson', 'to') 1
('bank', 'and') 1
('having', 'missed') 1
('instead', 'chapter') 1
('of', 'contract') 1
('medium', 'with') 1
('shut', 'again') 1
('the', 'shepherd') 1
('a', 'grown') 1
('be', 'paid') 1
('replied', 'counting') 1
('red', 'alice') 1
('hjckrrh', 'from') 1
('heard', 'him') 1
('anxiously', 'over') 1
('turns', 'quarrelling') 1
('tail', 'see') 1
('thimble', 'saying') 1
('the', 'shock') 1
('also', 'its') 1
('once', 'however') 1
('dodo', 'the') 1
('loose', 'slate') 1
('hastily', 'just') 1
('never', 'went') 1
('and', 'noticed') 1
('words', 'as') 1
('even', 'the') 1
('employee', 'of') 1
('cleared', 'all') 1
('large', 'rose-tree') 1
('the', 'fourth') 1
('you', 'within') 1
('gryphon', 'only') 1
('her', 'childhood') 1
('left', 'foot') 1
('trampled', 'under') 1
('king', 'repeated') 1
('first', 'day') 1
('got', 'a') 1
('seaside', 'once') 1
('it', 'fitted') 1
('instantly', 'jumped') 1
('yours', 'i') 1
('invent', 'something') 1
('two', 'two') 1
('of', 'arithmetic') 1
('little', 'queer') 1
('howling', 'and') 1
('and', 'knocked') 1
('from', 'here') 1
('tone', 'nobody') 1
('now', 'more') 1
('locations', 'where') 1
('must', 'needs') 1
('temper', 'said') 1
('slate-pencil', 'and') 1
('were', 'white') 1
('she', 'uncorked') 1
('story', 'indeed') 1
('repeated', 'aloud') 1
('for', 'tastes') 1
('my', 'dears') 1
('said', 'one') 1
('sobbing', 'of') 1
('voice', 'why') 1
('understood', 'what') 1
('its', 'business') 1
('no', 'right') 1
('bit', 'a') 1
('keeping', 'the') 1
('the', 'electronic') 1
('tree', 'by') 1
('and', 'turning') 1
('oh', 'won') 1
('profit', '501') 1
('that', 'finished') 1
('twist', 'itself') 1
('much', 'matter') 1
('unrolled', 'the') 1
('unimportant', 'your') 1
('or', 'appearing') 1
('curiosity', 'it') 1
('would', 'manage') 1
('trying', 'i') 1
('banks', 'and') 1
('were', 'really') 1
('keeping', 'up') 1
('sure', 'this') 1
('alice', 'or') 1
('answered', 'herself') 1
('name', 'like') 1
('more', 'puzzled') 1
('chorus', 'in') 1
('of', 'donations') 1
('as', 'creation') 1
('hatter', 'opened') 1
('are', 'these') 1
('one', 'with') 1
('incessantly', 'stand') 1
('finished', 'this') 1
('it', 'only') 1
('spread', 'his') 1
('again', 'with') 1
('were', 'beautifully') 1
('paper', 'has') 1
('without', 'interrupting') 1
('the', 'sides') 1
('baby', 'joined') 1
('see', 'this') 1
('nursing', 'it') 1
('worse', 'you') 1
('between', 'him') 1
('humbly', 'you') 1
('curious', 'sensation') 1
('perfectly', 'sure') 1
('lost', 'as') 1
('verses', 'the') 1
('goldfish', 'kept') 1
('must', 'i') 1
('nobody', 'moved') 1
('line', 'along') 1
('duchess', 'to') 1
('redistribution', 'start') 1
('concept', 'of') 1
('of', 'short') 1
('that', 'continued') 1
('it', 'added') 1
('shouted', 'in') 1
('s', 'generally') 1
('of', 'paris') 1
('by', 'using') 1
('would', 'like') 1
('ve', 'so') 1
('produced', 'another') 1
('shiny', 'alice') 1
('many', 'teeth') 1
('you', 'content') 1
('went', 'once') 1
('done', 'such') 1
('nearly', 'carried') 1
('and', 'eaten') 1
('official', 'project') 1
('followed', 'a') 1
('won', 'and') 1
('and', 'look') 1
('alice', 'found') 1
('pigeon', 'raising') 1
('mabel', 'for') 1
('frightened', 'all') 1
('next', 'walking') 1
('finish', 'my') 1
('forgetting', 'in') 1
('is', 'may') 1
('judge', 'would') 1
('to', 'but') 1
('procession', 'thought') 1
('pretexts', 'they') 1
('winter', 'day') 1
('her', 'escape') 1
('tried', 'banks') 1
('may', 'charge') 1
('these', 'came') 1
('you', 'butter') 1
('hard', 'word') 1
('tossing', 'her') 1
('on', 'likely') 1
('4', 'information') 1
('case', 'it') 1
('two', 'as') 1
('supple', 'by') 1
('them', 'red') 1
('a', 'dreadfully') 1
('and', 'camomile') 1
('distance', 'screaming') 1
('sitting', 'sad') 1
('moment', 'when') 1
('larger', 'again') 1
('re', 'looking') 1
('would', 'seem') 1
('important', 'the') 1
('beheaded', 'what') 1
('the', 'common') 1
('got', 'burnt') 1
('all', 'ornamented') 1
('shrieked', 'out') 1
('than', 'waste') 1
('saucer', 'of') 1
('the', 'pig-baby') 1
('ferrets', 'where') 1
('after', 'thinking') 1
('so', 'stingy') 1
('the', 'cauldron') 1
('against', 'her') 1
('anger', 'as') 1
('cherry-tart', 'custard') 1
('pale', 'with') 1
('mouse', 'looked') 1
('with', 'both') 1
('tea', 'it') 1
('her', 'reach') 1
('c', 'and') 1
('how', 'your') 1
('writing', 'down') 1
('large', 'arm-chair') 1
('tone', 'the') 1
('were', 'any') 1
('encourage', 'the') 1
('all', 'on') 1
('could', 'i') 1
('feared', 'it') 1
('of', 'paragraphs') 1
('breath', '"') 1
('that', 'nothing') 1
('b', 'newby') 1
('checked', 'himself') 1
('his', 'shrill') 1
('help', 'of') 1
('begin', 'he') 1
('hard', 'at') 1
('m', 'perfectly') 1
('the', 'gloves') 1
('wait', 'as') 1
('cat', 'grins') 1
('morsel', 'of') 1
('to', 'partners') 1
('s', 'begun') 1
('remained', 'the') 1
('shrill', 'little') 1
('tarts', 'the') 1
('dreadfully', 'one') 1
('larger', 'and') 1
('fish', 'and') 1
('far', 'out') 1
('getting', 'somewhere') 1
('occasional', 'exclamation') 1
('hatter', 'grumbled') 1
('lay', 'on') 1
('repeated', 'their') 1
('playing', 'the') 1
('cats', 'nasty') 1
('first', 'saw') 1
('shifting', 'from') 1
('were', 'ornamented') 1
('got', 'it') 1
('crossed', 'the') 1
('also', 'defective') 1
('take', 'your') 1
('curiosity', 'she') 1
('seen', 'in') 1
('sea', 'as') 1
('s', 'bill') 1
('if', 'not') 1
('were', 'live') 1
('very', 'uneasy') 1
('with', 'curiosity') 1
('chimney', 'close') 1
('got', 'settled') 1
('trees', 'and') 1
('fidgeted', 'give') 1
('and', 'peeped') 1
('all', 'do') 1
('elbow', 'on') 1
('week', 'or') 1
('conversation', 'with') 1
('very', 'unpleasant') 1
('for', 'current') 1
('remained', 'looking') 1
('door', 'poor') 1
('e', '2') 1
('"there', 'was') 1
('was', 'up') 1
('gave', 'us') 1
('me', 'by') 1
('consultation', 'about') 1
('bit', 'come') 1
('of', 'solid') 1
('all', 'manner') 1
('one', 'one') 1
('changing', 'the') 1
('particular', 'as') 1
('a', 'fashion') 1
('way', 'holding') 1
('owl', 'and') 1
('mad', 'i') 1
('certain', 'types') 1
('powdered', 'hair') 1
('guard', 'him') 1
('opportunities', 'to') 1
('sneezing', 'all') 1
('him', 'in') 1
('the', 'sands') 1
('stigand', 'the') 1
('gregory', 'b') 1
('questions', 'how') 1
('passion', 'alice') 1
('aloud', 'and') 1
('had', 'very') 1
('more', 'tea') 1
('come', 'so') 1
('growl', 'and') 1
('be', 'growing') 1
('vi', 'pig') 1
('and', '4') 1
('child', 'for') 1
('ran', 'how') 1
('producing', 'from') 1
('queer', 'to') 1
('you', 'dry') 1
('can', 'help') 1
('the', 'rattling') 1
('and', 'concluded') 1
('tone', 'it') 1
('queen', 'added') 1
('where', 'well') 1
('sh', 'and') 1
('its', 'mission') 1
('up', 'my') 1
('i', 'like"') 1
('t', 'any') 1
('paying', 'any') 1
('wonder', 'is') 1
('on', 'who') 1
('dears', 'came') 1
('antipathies', 'i') 1
('tea-tray', 'in') 1
('which', 'word') 1
('looking-glass', 'there') 1
('pocket', 'he') 1
('also', 'govern') 1
('"', 'don') 1
('to', 'encourage') 1
('but', 'come') 1
('hastily', 'dried') 1
('official', 'version') 1
('true', 'said') 1
('queen', 'you') 1
('baby', 'and') 1
('she', 'again') 1
('hoarse', 'and') 1
('what', 'never') 1
('only', 'you') 1
('man', 'the') 1
('cook', 'threw') 1
('a', 'person') 1
('of', 'terror') 1
('or', 'group') 1
('sent', 'for') 1
('a', 'lory') 1
('and', 'hand') 1
('sea', 'some') 1
('all', 'brightened') 1
('cat', 'do') 1
('t', 'fit') 1
('king', 'laid') 1
('behind', 'she') 1
('sorry', 'you') 1
('we', 'should') 1
('and', 'redistributing') 1
('come', 'upon') 1
('the', 'turtles') 1
('to', 'cats') 1
('share', 'of') 1
('all', 'think') 1
('race', 'was') 1
('no', 'notion') 1
('any', 'files') 1
('wrong', 'and') 1
('shoulder', 'with') 1
('the', 'idea') 1
('a', 'shriek') 1
('lamps', 'hanging') 1
('taken', 'into') 1
('throwing', 'an') 1
('stand', 'up') 1
('day', 'your') 1
('wriggling', 'down') 1
('its', 'meaning') 1
('sends', 'in') 1
('fountains', 'but') 1
('being', 'quite') 1
('on', 'he') 1
('at', 'having') 1
('could', 'guess') 1
('beginning', 'was') 1
('array', 'of') 1
('another', 'footman') 1
('matter', 'a') 1
('she', 'hardly') 1
('five', 'who') 1
('print', 'editions') 1
('king', 'nearly') 1
('domain', 'print') 1
('strange', 'adventures') 1
('asking', 'such') 1
('people', 'but') 1
('ye', 'i') 1
('the', 'classics') 1
('enough', 'said') 1
('puppy', 'it') 1
('had', 'succeeded') 1
('t', 'drunk') 1
('the', 'breeze') 1
('might', 'knock') 1
('distributed', 'in') 1
('true', 'down') 1
('1', 'a') 1
('answers', 'if') 1
('only', 'makes') 1
('grin', 'which') 1
('rope', 'will') 1
('determine', 'the') 1
('indeed', 'tis') 1
('large', 'rabbit-hole') 1
('too', 'late') 1
('persons', 'more') 1
('afraid', 'sir') 1
('begin', 'lessons') 1
('so', 'confused') 1
('who', 'only') 1
('gryphon', 'hastily') 1
('my', 'mind') 1
('breeze', 'that') 1
('they', 'pinched') 1
('hiss', 'made') 1
('measure', 'herself') 1
('have', 'liked') 1
('the', 'accusation') 1
('his', 'knee') 1
('and', 'hot') 1
('her', 'french') 1
('me', 'please') 1
('for', 'him') 1
('like', 'what') 1
('of', 'various') 1
('individual', 'work') 1
('spoke', 'fancy') 1
('dear', 'certainly') 1
('"i', 'see') 1
('before', 'downloading') 1
('associated', 'files') 1
('ordering', 'people') 1
('say', '"who') 1
('limbs', 'very') 1
('again', 'dear') 1
('this', 'pool') 1
('sense', 'they') 1
('hers', 'that') 1
('fury', 'and') 1
('first', 'perhaps') 1
('hungry', 'to') 1
('4', 'do') 1
('some', 'alarm') 1
('good', 'school') 1
('distributing', 'this') 1
('ve', 'made') 1
('receipt', 'that') 1
('dears', 'it') 1
('including', 'any') 1
('s', 'that') 1
('and', 'eager') 1
('garden', 'at') 1
('thought', 'at') 1
('now', 'hastily') 1
('i', 'wasn') 1
('as', 'its') 1
('any', 'provision') 1
('changed', 'in') 1
('hatter', 'as') 1
('treatment', 'of') 1
('slowly', 'beginning') 1
('ornamented', 'with') 1
('format', 'other') 1
('snail', 'replied') 1
('again', 'she') 1
('computer', 'codes') 1
('hurry', 'muttering') 1
('the', 'driest') 1
('hands', 'wondering') 1
('gay', 'as') 1
('ebooks', 'redistribution') 1
('and', 'brought') 1
('promoting', 'free') 1
('mixed', 'flavour') 1
('kettle', 'had') 1
('and', 'nibbled') 1
('thought', 'was') 1
('or', 'additions') 1
('particular', 'state') 1
('were', 'clasped') 1
('other', 'he') 1
('at', 'www') 1
('tucked', 'her') 1
('tarts', 'and') 1
('show', 'it') 1
('words', 'to') 1
('gently', 'remarked') 1
('near', 'our') 1
('life', 'you') 1
('child', 'away') 1
('queen', 'but') 1
('table', 'and') 1
('important', 'and') 1
('purpose', 'such') 1
('little', 'ledge') 1
('this', 'be') 1
('parchment', 'in') 1
('nothing', 'had') 1
('chapter', 'ix') 1
('laws', 'in') 1
('had', 'oh') 1
('those', 'provided') 1
('began', 'very') 1
('exclaimed', 'you') 1
('direction', 'in') 1
('keep', 'appearing') 1
('with', 'respect') 1
('introduce', 'it') 1
('dreamy', 'sort') 1
('tiny', 'golden') 1
('"french', 'music') 1
('creature', 'and') 1
('spreading', 'out') 1
('cat', 'or') 1
('caterpillar', 'called') 1
('must', 'appear') 1
('very', 'small') 1
('away', 'comfortably') 1
('m', 'quite') 1
('fury', 'said') 1
('to', 'lose') 1
('of', '"uglification') 1
('a', 'vague') 1
('twelve', 'creatures') 1
('warning', 'shouted') 1
('tale', 'perhaps') 1
('going', 'out') 1
('diligently', 'to') 1
('would', 'only') 1
('tumbling', 'up') 1
('adventures', 'beginning') 1
('only', 'things') 1
('all', 'writing') 1
('here', 'you') 1
('cook', 'to') 1
('my', 'plan') 1
('then', 'unrolled') 1
('writing', 'very') 1
('knife', 'and') 1
('face', 'brightened') 1
('else', 'seemed') 1
('middle', 'nursing') 1
('a', 'louder') 1
('quite', 'enough') 1
('however', 'i') 1
('little', 'passage') 1
('myself', 'have') 1
('meet', 'and') 1
('gryphon', 'that') 1
('something', 'or') 1
('uncommon', 'nonsense') 1
('by', 'being') 1
('opening', 'out') 1
('king', 'replied') 1
('if', 'one') 1
('no', 'notice') 1
('chimneys', 'were') 1
('worse', 'off') 1
('part', 'well') 1
('air', 'if') 1
('stop', 'and') 1
('pat', 'pat') 1
('remedies', 'for') 1
('neatly', 'and') 1
('it', 'begins') 1
('tut', 'tut') 1
('down', 'heads') 1
('suddenly', 'appeared') 1
('snail', '"there') 1
('trying', 'so') 1
('people', 'hot-tempered') 1
('footman', 'continued') 1
('in', 'http') 1
('gutenberg', 's') 1
('the', 'darkness') 1
('calling', 'out') 1
('quite', 'right') 1
('twinkle', '"') 1
('hare', 'she') 1
('re', 'talking') 1
('curiouser', 'cried') 1
('began', 'wrapping') 1
('down', 'said') 1
('seem', 'sending') 1
('not', 'otherwise') 1
('this', 'size') 1
('saying', 'and') 1
('is', 'as') 1
('known', 'them') 1
('door', 'i') 1
('its', 'eyelids') 1
('down', 'off') 1
('life', 'before') 1
('full', 'effect') 1
('do', 'such') 1
('allow', 'disclaimers') 1
('some', 'dead') 1
('s', 'dream') 1
('cannot', 'make') 1
('all', '"') 1
('one', 'doesn') 1
('created', 'from') 1
('either', 'if') 1
('cake', 'but') 1
('seven', 'flung') 1
('the', 'dish') 1
('returns', 'royalty') 1
('kissed', 'her') 1
('her', 'though') 1
('an', 'electronic') 1
('however', 'jury-men') 1
('the', 'method') 1
('had', 'flown') 1
('whiskers', 'how') 1
('talking', 'dear') 1
('the', 'deepest') 1
('until', 'there') 1
('near', 'here') 1
('simple', 'joys') 1
('with', 'seaography') 1
('repeated', 'the') 1
('the', 'spoon') 1
('course', 'was') 1
('six', 'is') 1
('to', '$5') 1
('dream', 'that') 1
('but', 'we') 1
('follow', 'except') 1
('however', 'if') 1
('send', 'donations') 1
('day', 'about') 1
('garden', 'you') 1
('reaching', 'project') 1
('eyes', 'to') 1
('quadrille', 'is') 1
('ebooks', 'are') 1
('direction', 'the') 1
('puppy', 'whereupon') 1
('of', 'speaking') 1
('life', 'indeed') 1
('held', 'the') 1
('sir', 'for') 1
('to', 'whisper') 1
('world', 'of') 1
('s', 'different') 1
('to', 'at') 1
('the', 'slate') 1
('been', 'broken') 1
('contain', '"defects') 1
('with', 'strings') 1
('running', 'a') 1
('f', '5') 1
('seven', 'looked') 1
('entirely', 'of') 1
('come', 'wrong') 1
('i', 'begin') 1
('what', 'does') 1
('know', 'exclaimed') 1
('with', 'any') 1
('being', 'upset') 1
('swam', 'slowly') 1
('another', 'long') 1
('milk', 'at') 1
('like"', 'you') 1
('reaching', 'half') 1
('to', 'disagree') 1
('tunnel', 'for') 1
('the', 'night') 1
('is', 'then') 1
('sight', 'but') 1
('nonproprietary', 'or') 1
('eggs', 'certainly') 1
('word', 'moral') 1
('spoon', 'at') 1
('its', 'paws') 1
('go', 'splashing') 1
('beautifully', 'printed') 1
('mouse', 'splashed') 1
('all', 'moved') 1
('twice', 'she') 1
('grow', 'shorter') 1
('of', 'rudeness') 1
('additional', 'cost') 1
('off', 'outside') 1
('right', 'as') 1
('while', 'all') 1
('that', 'poky') 1
('busily', 'on') 1
('extent', 'permitted') 1
('changed', 'since') 1
('began', 'looking') 1
('been', 'in') 1
('make', 'some') 1
('all', 'thank') 1
('theirs', 'and') 1
('full', 'extent') 1
('but', 'oh') 1
('can', 'even') 1
('this', 'sounds') 1
('enough', 'yet') 1
('a', 'butterfly') 1
('freely', 'distributed') 1
('cost', 'them') 1
('t', 'answer') 1
('fancy', 'what') 1
('taste', 'it') 1
('and', 'director') 1
('rather', 'glad') 1
('crumbs', 'would') 1
('ebooks', 'in') 1
('began', 'whistling') 1
('birds', 'complained') 1
('by', 'mice') 1
('everybody', 'laughed') 1
('"what', 'for') 1
('between', 'whiles') 1
('there', 'thought') 1
('was', 'mouth') 1
('lory', 'who') 1
('section', '5') 1
('better', 'alice') 1
('cackled', 'out') 1
('creep', 'under') 1
('her', 'surprise') 1
('are', 'too') 1
('three', 'times') 1
('conversation', 'of') 1
('equipment', '1') 1
('to', 'identify') 1
('additional', 'contact') 1
('all', 'wrong') 1
('air', 'i') 1
('his', 'son') 1
('indignantly', 'let') 1
('pardon', 'she') 1
('great', 'emphasis') 1
('various', 'formats') 1
('receipt', 'of') 1
('belt', 'and') 1
('requirements', 'are') 1
('tears', 'i') 1
('little', 'irritated') 1
('off', 'oh') 1
('the', 'tops') 1
('look', 'askance') 1
('a', 'queer-looking') 1
('it', 'continued') 1
('time', 'but') 1
('much', 'thought') 1
('my', 'name') 1
('being', 'made') 1
('a', 'furious') 1
('pieces', 'please') 1
('alas', 'it') 1
('listening', 'this') 1
('lory', 'and') 1
('promised', 'to') 1
('she', 'exclaimed') 1
('m', 'getting') 1
('said', 'her') 1
('a-piece', 'all') 1
('and', 'finish') 1
('pale', 'beloved') 1
('sorrows', 'and') 1
('bones', 'and') 1
('never', 'understood') 1
('your', 'applicable') 1
('next', 'remark') 1
('yesterday', 'you') 1
('not', 'cried') 1
('easily', 'comply') 1
('if', 'everybody') 1
('dear', 'let') 1
('near', 'enough') 1
('northumbria', '"') 1
('then', 'roared') 1
('from', 'his') 1
('bent', 'down') 1
('concert', 'on') 1
('fire', 'licking') 1
('s', 'your') 1
('the', 'teapot') 1
('hedges', 'the') 1
('if', 'his') 1
('and', 'trademark') 1
('been', 'before') 1
('alice', 'more') 1
('sighing', 'it') 1
('sister', 'who') 1
('paying', 'copyright') 1
('deepest', 'contempt') 1
('re', 'to') 1
('without', 'speaking') 1
('and', 'many') 1
('fit', 'an') 1
('or', 'detach') 1
('it', 'should') 1
('she', 'boxed') 1
('ever', 'she') 1
('in', 'bill') 1
('from', 'what') 1
('derived', 'from') 1
('general', 'information') 1
('large', 'caterpillar') 1
('been', 'all') 1
('or', 'kettle') 1
('majesty', 'must') 1
('"edwin', 'and') 1
('crowded', 'with') 1
('very', 'loudly') 1
('up', 'both') 1
('cat', 'went') 1
('quite', 'relieved') 1
('flying', 'down') 1
('frightened', 'that') 1
('a', 'farmer') 1
('applicable', 'taxes') 1
('important', 'air') 1
('she', 'be') 1
('could', 'abide') 1
('request', 'of') 1
('door', 'was') 1
('so', 'closely') 1
('name', 'child') 1
('and', 'punching') 1
('information', 'dr') 1
('even', 'in') 1
('weak', 'for') 1
('waiting', 'alice') 1
('6', 'indemnity') 1
('your', 'feelings') 1
('commotion', 'in') 1
('for', 'mabel') 1
('hair', '"') 1
('kick', 'a') 1
('understand', 'it') 1
('making', 'her') 1
('again', 'let') 1
('moral', 'if') 1
('dog', 'near') 1
('and', 'rushed') 1
('wig', 'the') 1
('them', 'such') 1
('snorting', 'like') 1
('effort', 'much') 1
('sighing', 'in') 1
('whistle', 'to') 1
('going', 'through') 1
('against', 'one') 1
('finish', 'his') 1
('impossible', 'there') 1
('and', 'tillie') 1
('hurry', 'that') 1
('$1', 'to') 1
('over', 'me') 1
('the', 'what') 1
('without', 'hearing') 1
('on', 'saying') 1
('to', 'abide') 1
('about', 'reminding') 1
('get', 'somewhere') 1
('shoes', 'on') 1
('forgot', 'you') 1
('look', 'alice') 1
('sour', 'and') 1
('middle', 'alice') 1
('goldfish', 'she') 1
('will', 'put') 1
('simply', 'bowed') 1
('against', 'herself') 1
('arm', 'out') 1
('a', 't') 1
('party', 'swam') 1
('begin', 'the') 1
('trouble', 'yourself') 1
('just', 'possible') 1
('came', 'very') 1
('dropped', 'his') 1
('all', 'would') 1
('hint', 'but') 1
('which', 'produced') 1
('truth', 'did') 1
('reported', 'to') 1
('s', 'conduct') 1
('quite', 'impossible') 1
('height', 'as') 1
('neck', 'as') 1
('reason', 'so') 1
('caterpillar', 'the') 1
('all', 'like') 1
('growled', 'in') 1
('very', 'anxiously') 1
('house', 'in') 1
('long', 'enough') 1
('states', 'check') 1
('presents', 'to') 1
('shaking', 'among') 1
('went', 'one') 1
('king', 'leave') 1
('which', 'are') 1
('lot', 'of') 1
('it', 'appeared') 1
('takes', 'some') 1
('treat', 'when') 1
('the', 'address') 1
('voice', 'that') 1
('plate', 'with') 1
('not', 'make') 1
('from', 'that') 1
('at', 'each') 1
('how', 'confusing') 1
('elect', 'to') 1
('all', 'anxious') 1
('children', 'sweet-tempered') 1
('oh', 'a') 1
('it', 'behind') 1
('giddy', 'and') 1
('"', 'somebody') 1
('great', 'dismay') 1
('turtle', 'a') 1
('even', 'finish') 1
('declared', 'for') 1
('comes', 'at') 1
('ordered', 'and') 1
('copy', 'in') 1
('hot', 'day') 1
('arrow', 'the') 1
('t', 'sound') 1
('his', 'way') 1
('doubtful', 'about') 1
('child', 'my') 1
('about', 'ravens') 1
('a', 'snout') 1
('out', 'laughing') 1
('be', 'involved') 1
('gutenberg-tm', 'name') 1
('dates', 'on') 1
('pig', 'i') 1
('court', 'by') 1
('hat', 'the') 1
('paper', 'as') 1
('watch', 'to') 1
('try', 'another') 1
('he', 'asked') 1
('duchess', 'by') 1
('little', 'dears') 1
('sense', 'and') 1
('preserve', 'free') 1
('fetch', 'the') 1
('ear', 'please') 1
('to', 'mark') 1
('first', 'position') 1
('peeped', 'out') 1
('it', 'well') 1
('such', 'things') 1
('a', 'written') 1
('walking', 'by') 1
('her', 'back') 1
('writing', 'or') 1
('redistribution', 'is') 1
('this', 'speech') 1
('usually', 'see') 1
('her', '"turtle') 1
('politely', 'if') 1
('spoke', 'either') 1
('trademark', 'license') 1
('providing', 'copies') 1
('"', '"i') 1
('eat', 'what') 1
('at', 'school') 1
('oh', 'so') 1
('a', 'failure') 1
('was', 'on') 1
('a', 'present') 1
('dormouse', 'fell') 1
('used', 'and') 1
('this', 'remark') 1
('you', 'derive') 1
('it', 'pointed') 1
('faces', 'at') 1
('peering', 'about') 1
('you', 'mayn') 1
('a', 'french') 1
('this', 'corner') 1
('but', 'alice') 1
('trial', 'done') 1
('you', 'as-is') 1
('puzzled', 'does') 1
('shining', 'tail') 1
('or', 'cannot') 1
('m', 'grown') 1
('addressed', 'to') 1
('small', 'passage') 1
('cannot', 'proceed') 1
('of', 'volunteers') 1
('she', 'muttered') 1
('their', 'elbows') 1
('of', 'rule') 1
('state', 'law') 1
('fur', 'it') 1
('be', 'going') 1
('into', 'alarm') 1
('fall', 'right') 1
('the', 'mistake') 1
('made', 'from') 1
('beginning', 'with') 1
('and', 'barking') 1
('hardly', 'enough') 1
('lost', 'something') 1
('sister', 'sat') 1
('do', 'practically') 1
('the', 'morning') 1
('paper', 'if') 1
('terms', 'from') 1
('smiled', 'in') 1
('a', 'blow') 1
('dear', 'do') 1
('elegant', 'thimble') 1
('more', 'whatever') 1
('like', 'after') 1
('would', 'talk') 1
('dreadfully', 'fond') 1
('little', 'feet') 1
('chief', 'executive') 1
('believe', 'you') 1
('s', 'ein') 1
('duchess', 'everything') 1
('it', 'muttered') 1
('think', 'to') 1
('vanished', 'completely') 1
('my', 'notion') 1
('who', 'at') 1
('ambition', 'distraction') 1
('like', 'being') 1
('duchess', 'sneezed') 1
('come', 'before') 1
('bring', 'me') 1
('goes', 'the') 1
('sang', 'this') 1
('things', 'everything') 1
('shark', 'but') 1
('moment', 'he') 1
('and', 'shook') 1
('this', 'young') 1
('alone', 'i') 1
('orange', 'marmalade') 1
('queen', 'their') 1
('melancholy', 'voice') 1
('door', 'opened') 1
('advantage', 'of') 1
('appear', 'and') 1
('be', 'number') 1
('you', 'walk') 1
('baby', 'grunted') 1
('went', 'as') 1
('you', 'fellows') 1
('would', 'in') 1
('a', 'pencil') 1
('cannot', 'survive') 1
('said', 'pig') 1
('histories', 'about') 1
('threw', 'themselves') 1
('even', 'looking') 1
('managing', 'her') 1
('easy', 'you') 1
('me', 'very') 1
('queer-looking', 'party') 1
('weeks', 'i') 1
('long', 'to') 1
('copy', 'a') 1
('walking', 'about') 1
('she', 'too') 1
('more', 'bread-and-butter') 1
('chapter', 'ii') 1
('there', 'said') 1
('permission', 'if') 1
('herself', 'all') 1
('alice', 'exactly') 1
('hatter', 'nor') 1
('pardon', 'your') 1
('dear', 'it') 1
('fading', 'away') 1
('herself', 'shy') 1
('chance', 'to') 1
('toast', 'she') 1
('rabbit', 'noticed') 1
('alas', 'the') 1
('cause', 'and') 1
('is', 'no') 1
('fortunately', 'was') 1
('be', 'asleep') 1
('it', 'old') 1
('or', 'associated') 1
('grunt', 'said') 1
('collected', 'at') 1
('whiting', 'oh') 1
('myself', 'about') 1
('high', 'she') 1
('tails', 'fast') 1
('ll', 'go') 1
('are', 'scattered') 1
('are', 'waiting') 1
('quite', 'agree') 1
('what', 'happens') 1
('with', 'sobs') 1
('for', 'about') 1
('i', 'fancied') 1
('hedge', 'in') 1
('little', 'wider') 1
('internal', 'revenue') 1
('and', 'given') 1
('as', 'politely') 1
('"coming', 'in') 1
('hare', 'who') 1
('the', 'neck') 1
('no', 'name') 1
('all', 'ridges') 1
('began', 'staring') 1
('walks', 'of') 1
('a', 'regular') 1
('strange', 'creatures') 1
('throat', 'and') 1
('behind', 'to') 1
('find', 'another') 1
('feather', 'flock') 1
('suddenly', 'the') 1
('opened', 'inwards') 1
('you', 'doing') 1
('medium', 'on') 1
('binary', 'compressed') 1
('collar', 'that') 1
('to', 'shrink') 1
('last', 'resource') 1
('here', 'any') 1
('australia', 'and') 1
('the', 'frog-footman') 1
('piteous', 'tone') 1
('lullaby', 'to') 1
('some', 'states') 1
('used', 'on') 1
('stuff', 'the') 1
('dry', 'would') 1
('grow', 'taller') 1
('had', 'already') 1
('have', 'appeared') 1
('let', 'us') 1
('loving', 'heart') 1
('the', 'suppressed') 1
('caterpillar', 's') 1
('talking', 'alice') 1
('means', 'well') 1
('finding', 'that') 1
('trembled', 'till') 1
('make', 'their') 1
('sometimes', 'choked') 1
('go', 'from') 1
('frightened', 'to') 1
('himself', 'as') 1
('saw', 'that') 1
('chapter', 'viii') 1
('curious', 'appearance') 1
('way', 'which') 1
('frowning', 'and') 1
('run', 'in') 1
('are', 'tarts') 1
('head', 'made') 1
('whoever', 'lives') 1
('circle', 'the') 1
('"', 'that') 1
('knowing', 'how') 1
('gryphon', 'at') 1
('you', 'though') 1
('all', 'except') 1
('the', 'shade') 1
('crept', 'a') 1
('quick', 'now') 1
('course', 'of') 1
('a', 'thousand') 1
('to', 'sink') 1
('repeated', 'angrily') 1
('domain', 'works') 1
('me', 'hear') 1
('but', 'its') 1
('additions', 'or') 1
('daughter', 'ah') 1
('a', 'handsome') 1
('s', 'own') 1
('cake', 'on') 1
('meet', 'the') 1
('here', 'with') 1
('gutenberg', 'web') 1
('way', 'again') 1
('dropped', 'them') 1
('startled', 'when') 1
('and', 'waving') 1
('suit', 'the') 1
('other', 'unpleasant') 1
('more', 'faintly') 1
('matter', 'to') 1
('ones', 'choked') 1
('terms', 'than') 1
('different', 'said') 1
('and', 'beasts') 1
('slate', 'oh') 1
('all', 'dripping') 1
('they', 'never') 1
('lad', 'here') 1
('which', 'wasn') 1
('files', 'of') 1
('rather', 'better') 1
('execution', 'what') 1
('know', 'please') 1
('the', 'regular') 1
('i', 'seem') 1
('he', 'replied') 1
('all', 'move') 1
('"purpose"', 'said') 1
('one', 'repeat') 1
('mine', 'is') 1
('proposal', 'then') 1
('on', 'turning') 1
('all', 'persons') 1
('copyright', 'or') 1
('followed', 'it') 1
('distributing', 'any') 1
('dormouse', 'thought') 1
('"come', 'on') 1
('feel', 'which') 1
('gryphon', 'do') 1
('fifteen', 'inches') 1
('dormouse', 'fourteenth') 1
('end', 'to') 1
('remarked', 'they') 1
('only', 'rustling') 1
('faces', 'so') 1
('judge', 'by') 1
('do', 'a') 1
('oneself', 'speak') 1
('came', 'oh') 1
('your', 'tea') 1
('paris', 'and') 1
('ak', '99712') 1
('affair', 'he') 1
('long', 'curly') 1
('visit', 'either') 1
('shakespeare', 'in') 1
('knee', 'while') 1
('quite', 'pale') 1
('dinah', 'and') 1
('after', 'folding') 1
('is', 'thirteen') 1
('best', 'to') 1
('white', 'one') 1
('some', 'surprise') 1
('much', 'paperwork') 1
('creatures', 'order') 1
('and', 'frowning') 1
('a', 'sea') 1
('i', 'find') 1
('pat', 'where') 1
('fear', 'lest') 1
('small', 'as') 1
('had', 'at') 1
('pretty', 'dance') 1
('than', 'are') 1
('discontinue', 'all') 1
('this', 'generally') 1
('speak', 'a') 1
('dogs', 'the') 1
('some', 'crumbs') 1
('he', 'seems') 1
('writing', 'from') 1
('all', 'advance') 1
('that', 'done') 1
('please', '"william') 1
('saw', 'how') 1
('in', 'before') 1
('poker', 'will') 1
('gone', 'through') 1
('to', 'nobody') 1
('to', 'kill') 1
('eyes', 'of') 1
('little', 'larger') 1
('prevent', 'its') 1
('dr', 'gregory') 1
('network', 'of') 1
('cakes', 'as') 1
('had', 'nibbled') 1
('cannot', 'and') 1
('of', 'circle') 1
('foot', 'get') 1
('passed', 'too') 1
('stupid', 'whether') 1
('beating', 'her') 1
('fact', 'we') 1
('sir', 'the') 1
('mean', 'that') 1
('mouse', 'do') 1
('saying', 'thank') 1
('twice', 'set') 1
('largest', 'telescope') 1
('ridge', 'or') 1
('hatter', 'when') 1
('"who', 'am') 1
('t', 'interrupt') 1
('a', 'rather') 1
('hardly', 'hear') 1
('invalidity', 'or') 1
('ebook', 'complying') 1
('away', 'altogether') 1
('kills', 'all') 1
('history', 'of') 1
('cucumber-frames', 'there') 1
('locks', 'i') 1
('the', 'limited') 1
('her', 'became') 1
('king', 'exclaimed') 1
('all', 'for') 1
('be', 'on') 1
('"i', 'gave') 1
('us', 'drawling') 1
('long', 'that') 1
('thinking', 'while') 1
('cat', 'may') 1
('feet', 'ran') 1
('accident', 'all') 1
('could', 'possibly') 1
('folded', 'her') 1
('may', 'choose') 1
('time', 'take') 1
('reports', 'performances') 1
('threw', 'a') 1
('not', 'for') 1
('not', 'uniform') 1
('rate', 'go') 1
('in', 'coils') 1
('was', 'good-bye') 1
('and', 'financial') 1
('soon', 'submitted') 1
('them', 'didn') 1
('treated', 'with') 1
('stupidest', 'tea-party') 1
('gutenberg', 'ebook') 1
('her', 'with') 1
('lizard', 's') 1
('then', 'again') 1
('crossly', 'of') 1
('knowing', 'what') 1
('to', 'drop') 1
('out', 'straight') 1
('king', 'however') 1
('free', 'exactly') 1
('lay', 'sprawling') 1
('herself', 'which') 1
('or', 'indirectly') 1
('alice', 'opened') 1
('for', 'serpents') 1
('up', 'closer') 1
('by', 'without') 1
('is', 'discovered') 1
('executed', 'as') 1
('use', 'going') 1
('queen', 'an') 1
('support', 'to') 1
('door', 'led') 1
('no', 'they') 1
('clear', 'notion') 1
('his', 'scaly') 1
('can', 'said') 1
('nor', 'less') 1
('certainly', 'english') 1
('myself', 'said') 1
('right', 'so') 1
('yesterday', 'because') 1
('certainly', 'there') 1
('to', 'whistle') 1
('lobsters', 'you') 1
('tale', 'they') 1
('this', 'mouse') 1
('unsolicited', 'donations') 1
('by', 'lewis') 1
('applicable', 'to') 1
('might', 'injure') 1
('was', 'she') 1
('telescope', 'and') 1
('soles', 'and') 1
('sides', 'at') 1
('speak', 'what') 1
('fit', 'you') 1
('interrupted', 'if') 1
('it', 'tells') 1
('said', 'by') 1
('wish', 'the') 1
('"take', 'care') 1
('dormouse', 'said') 1
('all', 'joined') 1
('heads', 'cut') 1
('double', 'themselves') 1
('of', 'play') 1
('sister', 'as') 1
('grow', 'any') 1
('and', 'still') 1
('bleeds', 'and') 1
('so', 'managed') 1
('put', 'everything') 1
('copy', 'and') 1
('forwards', 'each') 1
('beautify', 'is') 1
('effect', 'and') 1
('9', 'if') 1
('distribution', 'must') 1
('who', 'approach') 1
('though', 'still') 1
('allow', 'without') 1
('he', 'unfolded') 1
('domain', 'does') 1
('business', 'there') 1
('fire', 'stirring') 1
('became', 'of') 1
('rabbit-hole', 'under') 1
('it', 'yer') 1
('replied', 'to') 1
('hookah', 'into') 1
('s', 'elbow') 1
('done', 'i') 1
('a', 'dish') 1
('words', 'and') 1
('without', 'considering') 1
('any', 'shrimp') 1
('mouse', 'had') 1
('one', 'owns') 1
('her', 'spectacles') 1
('do', 'this') 1
('broken', 'she') 1
('end', 'end') 1
('soothing', 'tone') 1
('despite', 'these') 1
('grinned', 'in') 1
('duck', 'it') 1
('fire-irons', 'came') 1
('minute', 'to') 1
('of', 'cherry-tart') 1
('prizes', 'quite') 1
('to', 'touch') 1
('the', 'shelves') 1
('a', 'cry') 1
('awfully', 'clever') 1
('work', 'to') 1
('sadly', '"will') 1
('howling', 'so') 1
('conversations', 'in') 1
('right', 'i') 1
('the', 'newspapers') 1
('redistribute', 'this') 1
('little', 'boy') 1
('shared', 'their') 1
('pinch', 'him') 1
('was', 'waving') 1
('goose', 'who') 1
('offended', 'again') 1
('the', 'blades') 1
('repeated', 'her') 1
('away', 'even') 1
('trees', 'upon') 1
('reality', 'the') 1
('fly', 'like') 1
('fun', 'now') 1
('already', 'use') 1
('fetch', 'things') 1
('plate', 'came') 1
('watch', 'tell') 1
('being', 'alive') 1
('forehead', 'the') 1
('wearily', 'i') 1
('cake', 'chapter') 1
('respectful', 'tone') 1
('alone', 'serpent') 1
('there', 'might') 1
('head', 'struck') 1
('caucus-race', 'and') 1
('here', 'young') 1
('viewed', 'copied') 1
('s', 'cook') 1
('little', '"') 1
('flock', 'together') 1
('was', 'howling') 1
('together', 'which') 1
('one', 'to') 1
('her', 'down') 1
('a', 'moral') 1
('far', 'before') 1
('makes', 'rather') 1
('vinegar', 'that') 1
('poky', 'little') 1
('solemn', 'as') 1
('loose', 'network') 1
('read', 'fairy-tales') 1
('accept', 'all') 1
('yourself', 'some') 1
('containing', 'a') 1
('dears', 'i') 1
('s', 'side') 1
('bit', 'her') 1
('curiosity', 'soles') 1
('states', 'of') 1
('long', 'words') 1
('of', 'taking') 1
('the', 'wise') 1
('away', 'but') 1
('sneeze', 'were') 1
('jury-men', 'would') 1
('the', 'milk-jug') 1
('gryphon', 'answered') 1
('and', 'unlocking') 1
('know', 'pointing') 1
('a', 'proper') 1
('assembled', 'about') 1
('house', 'i') 1
('sitting', 'between') 1
('tell', 'them') 1
('or', 'furrow') 1
('license', 'included') 1
('watching', 'them') 1
('came', 'running') 1
('and', 'offer') 1
('paperwork', 'and') 1
('rules', 'set') 1
('vanishing', 'so') 1
('head', 'those') 1
('tortoise', 'why') 1
('toes', '[later') 1
('wild', 'beast') 1
('i', 'learn') 1
('that', 'inquired') 1
('eyes', 'i') 1
('alice', 'glanced') 1
('fainting', 'in') 1
('her', 'temper') 1
('alice', 'got') 1
('water-well', 'said') 1
('won', 'this') 1
('squeeze', 'so') 1
('herself', 'so') 1
('fitted', 'alice') 1
('getting', 'she') 1
('any', 'rules') 1
('behead', 'that') 1
('say', 'look') 1
('re', 'at') 1
('some', 'kind') 1
('minutes', 'alice') 1
('it', 'thought') 1
('hookah', 'and') 1
('trial', 'cannot') 1
('sits', 'purring') 1
('across', 'to') 1
('were', 'two') 1
('bottle', 'does') 1
('bad', 'cold') 1
('status', 'with') 1
('hung', 'upon') 1
('never', 'saw') 1
('owed', 'to') 1
('jumped', 'into') 1
('bear', 'she') 1
('spoon', 'while') 1
('a', 'jack-in-the-box') 1
('such', 'very') 1
('happen', 'she') 1
('am', 'very') 1
('just', 'under') 1
('way', 'stop') 1
('missed', 'her') 1
('about', 'lessons') 1
('sound', 'at') 1
('executioner', 'the') 1
('a', 'subject') 1
('little', 'while') 1
('explain', 'to') 1
('pointed', 'to') 1
('knows', 'such') 1
('bottle', 'she') 1
('deal', 'on') 1
('face', 'wake') 1
('one', 'eats') 1
('them', 'attempted') 1
('chatte', 'which') 1
('or', 'by') 1
('eye', 'but') 1
('alice', 'after') 1
('lonely', 'on') 1
('the', 'proposal') 1
('is', 'narrow') 1
('waited', 'to') 1
('why', 'is') 1
('say', 'the') 1
('s', 'about') 1
('that', 'curled') 1
('spoke', 'to') 1
('keep', 'moving') 1
('other', 'copies') 1
('something', 'better') 1
('on', 'shrinking') 1
('d', 'let') 1
('pink', 'eyes') 1
('re', 'called') 1
('painting', 'those') 1
('if', 'only') 1
('you', 'fly') 1
('herself', 'talking') 1
('name', 'associated') 1
('a', 'knot') 1
('had', 'asked') 1
('to', 'copying') 1
('doors', 'all') 1
('draw', 'water') 1
('of', 'uglifying') 1
('on', 'three') 1
('her', 'up') 1
('was', 'shut') 1
('a', 'boon') 1
('place', 'for') 1
('very', 'deeply') 1
('party', 'distributing') 1
('over', 'afterwards') 1
('love', 'that') 1
('sure', 'however') 1
('creatures', 'wouldn') 1
('am', 'so') 1
('replied', 'thoughtfully') 1
('tongue', 'added') 1
('instantly', 'made') 1
('gryphon', 'as') 1
('her', 'choice') 1
('might', 'well') 1
('fellow', 'don') 1
('up', 'lazy') 1
('from', 'copying') 1
('tell', 'its') 1
('asked', 'it') 1
('only', 'does') 1
('hurt', 'it') 1
('politely', 'but') 1
('e', '3') 1
('different', 'person') 1
('reason', 'they') 1
('flat', 'with') 1
('give', 'yourself') 1
('straight', 'on') 1
('ve', 'read') 1
('sort', 'in') 1
('burning', 'with') 1
('s', 'over') 1
('a', 'fact') 1
('or', 're-use') 1
('voice', 'she') 1
('exclamation', 'of') 1
('service', 'the') 1
('more', 'about') 1
('e', '4') 1
('go', 'after') 1
('do', 'pleaded') 1
('oblong', 'and') 1
('herself', 'of') 1
('heard', 'one') 1
('can', 'guess') 1
('politely', 'feeling') 1
('while', 'till') 1
('was', 'some') 1
('cardboard', 'all') 1
('these', 'requirements') 1
('way', 'being') 1
('mine', 'coming') 1
('calculated', 'using') 1
('turtle', 'nine') 1
('pigeon', 'went') 1
('alice', 'crouched') 1
('for', 'showing') 1
('alice', 'folded') 1
('footmen', 'alice') 1
('person', 'of') 1
('sadly', 'hand') 1
('and', 'doesn') 1
('left', 'alone') 1
('directly', 'or') 1
('hastily', 'put') 1
('spoke', 'for') 1
('them', 'back') 1
('spot', 'this') 1
('m', 'too') 1
('his', 'crown') 1
('the', 'eggs') 1
('looked', 'good-natured') 1
('desperately', 'he') 1
('as', 'look') 1
('aloud', 'addressing') 1
('soup', '"') 1
('suppose', 'you') 1
('little', 'puppy') 1
('the', 'arch') 1
('denies', 'it') 1
('laughed', 'so') 1
('a', 'library') 1
('note-book', 'cackled') 1
('gryphon', 'with') 1
('roses', 'five') 1
('digging', 'in') 1
('were', 'indeed') 1
('much', 'about') 1
('know', 'so') 1
('asleep', 'i') 1
('upsetting', 'all') 1
('was', 'moving') 1
('laws', 'the') 1
('remaining', 'behind') 1
('clever', 'i') 1
('couple', 'you') 1
('sage', 'as') 1
('centre', 'of') 1
('and', 'fanned') 1
('quite', 'strange') 1
('is', 'not') 1
('once', 'crowded') 1
('world', 'am') 1
('grown', 'in') 1
('decided', 'tone') 1
('on', 'looking') 1
('a', 'sharp') 1
('infringement', 'a') 1
('to', 'pinch') 1
('prosecute', 'you') 1
('a', 'frying-pan') 1
('patience', 'of') 1
('once', 'a') 1
('up', 'what') 1
('held', 'up') 1
('be', 'collected') 1
('caucus-race', 'what') 1
('such', 'damage') 1
('or', 'breach') 1
('first', 'at') 1
('an', 'occasional') 1
('holder', 'your') 1
('you', 'which') 1
('you', 'drink') 1
('i', 'and') 1
('everything', 'there') 1
('might', 'venture') 1
('you', 'discover') 1
('pleases', 'chorus') 1
('version', 'posted') 1
('turtle', 'crumbs') 1
('snappishly', 'you') 1
('lessons', 'thought') 1
('a', 'dance') 1
('old', 'middle-aged') 1
('tis', 'so') 1
('almost', 'think') 1
('comfits', 'this') 1
('got', 'thrown') 1
('more', 'calmly') 1
('time', 'round') 1
('say', 'things') 1
('speaking', 'so') 1
('this', 'they') 1
('cards', 'at') 1
('to', 'be"') 1
('injure', 'the') 1
('alice', 'added') 1
('written', 'up') 1
('no', 'lower') 1
('ve', 'cleared') 1
('be"', 'or') 1
('everything', 'about') 1
('fly', 'up') 1
('turn', 'and') 1
('sooner', 'than') 1
('glass', 'box') 1
('dispute', 'with') 1
('speak', 'not') 1
('i', 'went') 1
('rate', 'the') 1
('the', 'large') 1
('they', 'said') 1
('i', 'mentioned') 1
('s', 'marked') 1
('again', 'repeated') 1
('fanning', 'herself') 1
('shepherd', 'boy') 1
('the', 'previous') 1
('have', 'next') 1
('fetch', 'her') 1
('mouse', 'turning') 1
('say', 'when') 1
('which', 'would') 1
('scroll', 'of') 1
('himself', 'suddenly') 1
('alternately', 'without') 1
('are', 'worse') 1
('executed', 'whether') 1
('room', 'with') 1
('get', 'an') 1
('conquest', 'edwin') 1
('witness', 'would') 1
('the', 'less') 1
('by', 'keeping') 1
('us', 'both') 1
('garden', 'door') 1
('done', 'she') 1
('sleep', 'these') 1
('familiarly', 'with') 1
('wood', 'if') 1
('insolence', 'of') 1
('the', 'maximum') 1
('cats', 'always') 1
('tortoise', 'because') 1
('ugh', 'serpent') 1
('was', 'lit') 1
('corrupt', 'data') 1
('re', 'going') 1
('without', 'opening') 1
('hot-tempered', 'she') 1
('go', 'anywhere') 1
('swim', 'in') 1
('have', 'baked') 1
('of', 'lodging') 1
('bit', 'afraid') 1
('trademark', 'it') 1
('about', 'anxiously') 1
('hare', 'i') 1
('chapter', 'i') 1
('you', 'but') 1
('a', 'crash') 1
('dinner', 'and') 1
('rubbing', 'his') 1
('different', 'terms') 1
('please', 'if') 1
('within', 'a') 1
('other', 'trying') 1
('nibbled', 'some') 1
('transcribe', 'and') 1
('holding', 'her') 1
('always', 'six') 1
('tea', 'not') 1
('tax', 'identification') 1
('dozing', 'off') 1
('me', 'my') 1
('pebbles', 'came') 1
('three', 'and') 1
('managed', 'it') 1
('to', 'dream') 1
('then', 'turning') 1
('been', 'but') 1
('jury', 'not') 1
('alice', 'swallowing') 1
('whisper', 'half') 1
('flashed', 'across') 1
('gutenberg', 'are') 1
('since', 'she') 1
('say', 'than') 1
('of', 'everything') 1
('was', 'leaning') 1
('to', 'break') 1
('should', 'it') 1
('dog', 'growls') 1
('think', 'she') 1
('remark', 'tut') 1
('just', 'take') 1
('mouse', 'everything') 1
('getting', 'its') 1
('solemnly', 'dancing') 1
('anxiously', 'looking') 1
('teacups', 'as') 1
('however', 'on') 1
('experiment', 'he') 1
('provisions', '1') 1
('dark', 'hall') 1
('complained', 'that') 1
('and', 'furrows') 1
('youth', 'father') 1
('thing', 'grunted') 1
('alice', 'appeared') 1
('decided', 'on') 1
('her', 'skirt') 1
('one', 's') 1
('alive', 'for') 1
('little', 'birds') 1
('liability', 'breach') 1
('her', 'saucer') 1
('long', 'hall') 1
('imposed', 'by') 1
('created', 'to') 1
('the', 'drawling-master') 1
('that', 'could') 1
('actually', 'took') 1
('on', 'various') 1
('by', 'seeing') 1
('to', 'read') 1
('it', 'after') 1
('do', 'well') 1
('fight', 'with') 1
('sand', 'with') 1
('from', 'public') 1
('of', 'yours') 1
('garden', 'called') 1
('non', 'profit') 1
('to', 'guard') 1
('them', 'fast') 1
('thing', 'the') 1
('an', 'eel') 1
('you', 'our') 1
('the', 'wig') 1
('beheaded', 'and') 1
('use', 'to') 1
('s', 'shrill') 1
('first', 'one') 1
('are', 'around') 1
('very', 'truthful') 1
('tone', 'was') 1
('incidental', 'damages') 1
('was', 'such') 1
('thought', 'over') 1
('t', 'grunt') 1
('simply', 'arranged') 1
('another', 'key') 1
('was', 'thoroughly') 1
('at', 'processions') 1
('hatter', 'but') 1
('were', 'nice') 1
('queen', 'ordering') 1
('herself', 'his') 1
('of', 'these') 1
('bringing', 'these') 1
('to', 'stoop') 1
('body', 'tucked') 1
('alice', 'an') 1
('variations', 'i') 1
('all', 'his') 1
('uncomfortable', 'and') 1
('no', 'jury') 1
('of', 'march') 1
('found', 'a') 1
('distributing', 'a') 1
('rome', 'and') 1
('a', 'tidy') 1
('to', 'like') 1
('promotion', 'and') 1
('1', 'the') 1
('sharp', 'chin') 1
('rate', 'i') 1
('soft', 'thing') 1
('how', 'was') 1
('later', 'however') 1
('out', 'first') 1
('who', 'ever') 1
('begins', '"i') 1
('large', 'ring') 1
('book', 'thought') 1
('went', 'nearer') 1
('from', 'several') 1
('a', 'yelp') 1
('some', 'curiosity') 1
('tulip-roots', 'instead') 1
('surprise', 'the') 1
('asked', 'alice') 1
('quiver', 'all') 1
('noise', 'inside') 1
('crab', 'a') 1
('timid', 'and') 1
('see', 'me') 1
('change', 'if') 1
('to', 'some') 1
('s', 'principal') 1
('was', 'addressed') 1
('looking', 'thoughtfully') 1
('in', 'bringing') 1
('talking', 'together') 1
('children', 'how') 1
('three', 'dates') 1
('you', 'prepare') 1
('me', 'executed') 1
('either', 'but') 1
('out', 'as') 1
('once', 'one') 1
('should', 'understand') 1
('five', 'is') 1
('indirectly', 'from') 1
('the', 'production') 1
('sentence', 'in') 1
('everything', 'within') 1
('one', 'bill') 1
('was', 'terribly') 1
('panting', 'and') 1
('another', 'hedgehog') 1
('cannot', 'be') 1
('no', 'mice') 1
('court', 'suppress') 1
('station', 'however') 1
('way', '"up') 1
('of', 'expecting') 1
('was', 'growing') 1
('said', 'but') 1
('question', 'but') 1
('eyes', 'again') 1
('the', 'nearer') 1
('again', 'took') 1
('her', 'friend') 1
('was', 'his') 1
('an', 'obstacle') 1
('never', 'once') 1
('alice', 'started') 1
('wood', 'she') 1
('put', 'their') 1
('backs', 'was') 1
('whiting', 'before') 1
('white', 'and') 1
('it', 'teases') 1
('large', 'one') 1
('alice', 'would') 1
('livery', 'otherwise') 1
('two', 'the') 1
('had', 'hurt') 1
('in', 'without') 1
('had', 'peeped') 1
('hot', 'she') 1
('fur', 'clinging') 1
('comply', 'either') 1
('be', 'done') 1
('pg', 'search') 1
('talk', 'on') 1
('advance', 'they') 1
('second', 'verse') 1
('terms', 'imposed') 1
('best', 'thing') 1
('where', 'dinn') 1
('copyright', 'notice') 1
('being', 'that') 1
('wonderland', 'this') 1
('among', 'those') 1
('saying', 'in') 1
('writing-desks', 'which') 1
('and', 'one') 1
('same', 'age') 1
('push', 'the') 1
('have', 'him') 1
('finds', 'out') 1
('chimney', 'oh') 1
('letter', 'written') 1
('turtle', 'alice') 1
('never', 'mind') 1
('hedgehog', 'was') 1
('rather', 'proud') 1
('here', 'but') 1
('friends', 'had') 1
('he', 'thought') 1
('wandering', 'when') 1
('s', 'crown') 1
('spoke', 'at') 1
('foundation', 'anyone') 1
('quite', 'like') 1
('rapped', 'loudly') 1
('deletions', 'to') 1
('knave', 'i') 1
('just', 'succeeded') 1
('with', 'offers') 1
('jar', 'for') 1
('guess', 'that') 1
('miles', 'i') 1
('drop', 'the') 1
('cards', 'after') 1
('and', 'saw') 1
('tells', 'us') 1
('air', 'do') 1
('the', 'fight') 1
('of', 'saying') 1
('s', 'story') 1
('going', 'messages') 1
('guinea-pig', 'head') 1
('little', 'animal') 1
('absurd', 'for') 1
('she', 'knows') 1
('to', 'tremble') 1
('stand', 'and') 1
('on', 'would') 1
('too', 'large') 1
('states', 'compliance') 1
('that', 'must') 1
('had', 'learnt') 1
('short', 'speech') 1
('order', 'one') 1
('must', 'obtain') 1
('subject', 'to') 1
('jury', 'who') 1
('french', 'and') 1
('on', 'hearing') 1
('own', 'tears') 1
('only', 'by') 1
('not', 'wish') 1
('modern', 'with') 1
('the', 'circumstances') 1
('now', 'it') 1
('footman', 's') 1
('made', 'he') 1
('read', 'understand') 1
('off', 'thinking') 1
('merchantibility', 'or') 1
('slate', 'with') 1
('re', 'about') 1
('on', 'its') 1
('directed', 'at') 1
('them', 'called') 1
('like', 'one') 1
('door', 'began') 1
('boon', 'was') 1
('alice', 'recognised') 1
('it', 'set') 1
('geography', 'london') 1
('one', 'that') 1
('cause', 'of') 1
('then', 'keep') 1
('strange', 'and') 1
('gloves', 'how') 1
('day', 'this') 1
('begged', 'the') 1
('gutenberg-tm', 'web') 1
('make', 'with') 1
('anxiously', 'fixed') 1
('be', 'almost') 1
('this', 'as') 1
('his', 'sleep') 1
('write', 'that') 1
('fees', 'to') 1
('their', 'putting') 1
('giddy', 'all') 1
('a', 'languid') 1
('severely', 'who') 1
('neighbour', 'to') 1
('herself', 'why') 1
('offers', 'to') 1
('though', 'they') 1
('ful', 'soup') 1
('know', 'sir') 1
('a', 'star-fish') 1
('her', 'its') 1
('bill', 'thought') 1
('draw', 'you') 1
('neck', 'would') 1
('is', 'alice') 1
('her', 'swim') 1
('been', 'jumping') 1
('most', 'confusing') 1
('the', 'sense') 1
('dance', 'to') 1
('it', 'unfolded') 1
('shoes', 'the') 1
('to-night', 'i') 1
('of', 'pepper') 1
('the', 'unjust') 1
('be', 'herself') 1
('series', 'of') 1
('t', 'walk') 1
('day', 'or') 1
('leaves', 'and') 1
('fancy', 'who') 1
('exactly', 'what') 1
('conversation', 'while') 1
('when', 'her') 1
('of', 'public') 1
('alice', 'gave') 1
('birds', 'hurried') 1
('clamour', 'of') 1
('read', 'by') 1
('quite', 'follow') 1
('or', 'federal') 1
('time', 'sat') 1
('cushion', 'resting') 1
('second', 'time') 1
('not', 'necessarily') 1
('five', 'don') 1
('little', 'fishes') 1
('a', 'comfort') 1
('end', 'i') 1
('provision', 'of') 1
('be', 'free') 1
('they', 'should') 1
('throw', 'them') 1
('are', 'very') 1
('lewis', 'carroll') 1
('temper', 'of') 1
('how', 'brave') 1
('alice', 'sadly') 1
('changing', 'so') 1
('set', 'about') 1
('its', 'dinner') 1
('act', 'of') 1
('came', 'between') 1
('king', 'rubbing') 1
('no', 'result') 1
('if', 'my') 1
('a', 'different') 1
('please', 'read') 1
('say', 'drink') 1
('to', 'such') 1
('following', 'sentence') 1
('replied', 'alice') 1
('would', 'the') 1
('some', 'difficulty') 1
('chorus', 'yes') 1
('speaking', 'and') 1
('lizard', 'as') 1
('not', 'void') 1
('are', 'outside') 1
('voice', 'close') 1
('where', 'it') 1
('they', 'looked') 1
('great', 'wig') 1
('of', 'swimming') 1
('how', 'glad') 1
('she', 'caught') 1
('take', 'care') 1
('question', 'you') 1
('moving', 'about') 1
('who', 'notifies') 1
('smoking', 'a') 1
('forgetting', 'her') 1
('unrolled', 'itself') 1
('himself', 'in') 1
('may', 'elect') 1
('remark', 'and') 1
('you', 'old') 1
('how', 'far') 1
('fan', 'quick') 1
('a', 'mineral') 1
('sounded', 'quite') 1
('they', 'won') 1
('who', 'you') 1
('i', 'call') 1
('shoes', 'done') 1
('in', 'head') 1
('pop', 'down') 1
('life', 'volunteers') 1
('next', 'question') 1
('clean', 'cup') 1
('expecting', 'to') 1
('alice', 'thinking') 1
('advice', 'though') 1
('skirt', 'upsetting') 1
('hall', 'in') 1
('eat"', 'is') 1
('come', 'yet') 1
('or', 'seemed') 1
('down', 'there') 1
('her', 'turn') 1
('knew', 'time') 1
('time', 'busily') 1
('worth', 'hearing') 1
('ever', 'since') 1
('too', 'but') 1
('opposite', 'to') 1
('license', 'apply') 1
('sort', 'next') 1
('they', 'take') 1
('this', 'minute') 1
('further', 'so') 1
('two', 'you') 1
('be', 'shutting') 1
('domain', 'and') 1
('to', 'dry') 1
('solicitation', 'requirements') 1
('the', 'outside') 1
('least', 'there') 1
('glad', 'there') 1
('moment', 'it') 1
('general', 'conclusion') 1
('little', 'animals') 1
('lobsters', 'again') 1
('key', 'on') 1
('that', 'looked') 1
('and', 'ever') 1
('extraordinary', 'noise') 1
('hours', 'the') 1
('curly', 'brown') 1
('little', 'she') 1
('that', 'make') 1
('might', 'tell') 1
('important', 'as') 1
('sir', 'just') 1
('miserable', 'hatter') 1
('stairs', 'that') 1
('uneasily', 'at') 1
('soldiers', 'shouted') 1
('party', 'at') 1
('all', 'walks') 1
('everything', 'upon') 1
('or', 'determine') 1
('be', 'particular') 1
('a', 'series') 1
('below', 'her') 1
('mississippi', 'and') 1
('evidence', 'we') 1
('located', 'also') 1
('can', 'reach') 1
('earnestly', 'now') 1
('some', 'mischief') 1
('how', 'odd') 1
('in', 'same') 1
('pig', 'she') 1
('eager', 'with') 1
('pretending', 'to') 1
('yes', 'we') 1
('your', 'written') 1
('scream', 'half') 1
('delight', 'it') 1
('were', 'never') 1
('enough', 'they') 1
('never', 'come') 1
('be', 'what') 1
('get', 'on') 1
('be', 'from') 1
('enormous', 'puppy') 1
('keep', 'up') 1
('never', 'and') 1
('sooner', 'or') 1
('i', 'move') 1
('help', 'produce') 1
('beautiful', 'beauti') 1
('round', 'but') 1
('puffed', 'away') 1
('it', 'if') 1
('pictured', 'to') 1
('go', 'near') 1
('inside', 'no') 1
('do', 'anything') 1
('before', 'if') 1
('you', 'distribute') 1
('skimming', 'out') 1
('one', 'a-piece') 1
('medium', 'you') 1
('master', 'says') 1
('large', 'round') 1
('deeply', 'with') 1
('wrote', 'it') 1
('well', 'was') 1
('she', 'and') 1
('pig', 'my') 1
('friend', 'replied') 1
('s', 'laid') 1
('only', 'bowed') 1
('may', 'sit') 1
('said', 'tossing') 1
('the', 'exclusion') 1
('pigeon', 'the') 1
('derision', 'i') 1
('other', 'was') 1
('believe', 'so') 1
('open', 'air') 1
('day', 'that') 1
('their', 'verdict') 1
('nice', 'muddle') 1
('tale', 'said') 1
('pine-apple', 'roast') 1
('a', 'hard') 1
('old', 'it') 1
('wasting', 'it') 1
('peeped', 'over') 1
('rippling', 'to') 1
('too', 'that') 1
('history', 'and') 1
('at', 'that') 1
('its', 'children') 1
('that', 'did') 1
('note-book', 'hastily') 1
('tail', 'about') 1
('lazily', 'about') 1
('ll', 'remember') 1
('a', 'chorus') 1
('alice', 'aloud') 1
('except', 'those') 1
('run', 'back') 1
('solicit', 'contributions') 1
('so', 'yet') 1
('delightful', 'it') 1
('much', 'if') 1
('least', 'notice') 1
('look', 'for') 1
('gryphon', 'remarked') 1
('work', '1') 1
('guinea-pigs', 'thought') 1
('telescope', 'that') 1
('1500', 'west') 1
('small', 'donations') 1
('i', 'hate') 1
('long', 'claws') 1
('limitation', 'of') 1
('went', 'sh') 1
('3', 'letter') 1
('or', 'your') 1
('scroll', 'and') 1
('to', 'offend') 1
('drowned', 'in') 1
('has', 'agreed') 1
('wet', 'cross') 1
('writing', 'in') 1
('quiet', 'till') 1
('be', 'sending') 1
('and', 'large') 1
('then', 'if') 1
('chrysalis', 'you') 1
('learn', 'music') 1
('ever', 'be') 1
('she', 'called') 1
('but', 'one') 1
('and', 'told') 1
('you', 'fair') 1
('nay', 'i') 1
('doubtfully', 'it') 1
('go', 'by') 1
('loudly', 'at') 1
('birds', 'tittered') 1
('same', 'shedding') 1
('stupid', 'but') 1
('oh', 'she') 1
('doubtfully', 'as') 1
('the', 'animals') 1
('the', 'pepper-box') 1
('alice', 'where') 1
('it', 'don') 1
('it', 'tricks') 1
('speed', 'back') 1
('things', 'had') 1
('surprised', 'that') 1
('advise', 'you') 1
('went', 'straight') 1
('wood', 'is') 1
('viewing', 'displaying') 1
('to', 'viewing') 1
('not', 'talk') 1
('head', 'unless') 1
('it', 'what') 1
('puzzling', 'all') 1
('livery', 'with') 1
('back', 'please') 1
('crowd', 'assembled') 1
('will', 'talk') 1
('is', 'asleep') 1
('baby', 'said') 1
('you', 'cut') 1
('choice', 'the') 1
('dressed', 'with') 1
('loud', 'and') 1
('eagerly', 'wrote') 1
('mournfully', 'not') 1
('s', 'knee') 1
('and', 'reported') 1
('thinking', 'again') 1
('jury-box', 'and') 1
('smiled', 'and') 1
('half', 'believed') 1
('slipped', 'and') 1
('heels', 'in') 1
('frightened', 'by') 1
('cucumber-frame', 'or') 1
('on', 'every') 1
('mistake', 'and') 1
('king', 'here') 1
('no', 'longer') 1
('mentioned', 'before') 1
('meet', 'william') 1
('excellent', 'opportunity') 1
('new', 'kind') 1
('though', 'i') 1
('e-mail', 'within') 1
('you', 'not') 1
('not', 'particular') 1
('attempted', 'to') 1
('1', 'with') 1
('great', 'interest') 1
('7', 'and') 1
('putting', 'things') 1
('never', 'executes') 1
('ah', 'well') 1
('please', 'sir') 1
('was', 'indeed') 1
('cook', 'till') 1
('pegs', 'she') 1
('toss', 'of') 1
('seen', 'that') 1
('written', 'confirmation') 1
('jury', 'consider') 1
('label', 'with') 1
('from', 'any') 1
('no', 'tears') 1
('left', 'the') 1
('suddenly', 'down') 1
('ever', 'getting') 1
('that', 'queer') 1
('accident', 'of') 1
('of', 'warranty') 1
('cook', 'she') 1
('a', 'confused') 1
('the', 'queerest') 1
('face', 'very') 1
('provide', 'access') 1
('rate', 'a') 1
('before', 'they') 1
('her', 'try') 1
('hastily', 'afraid') 1
('his', 'tail') 1
('heads', 'she') 1
('floor', 'as') 1
('by', 'way') 1
('work', 'b') 1
('nor', 'i') 1
('shoulders', 'got') 1
('away', 'under') 1
('not', 'met') 1
('mushroom', 'said') 1
('move', 'she') 1
('copying', 'and') 1
('not', 'got') 1
('king', 'say') 1
('of', 'putting') 1
('here', 'may') 1
('whom', 'you') 1
('of', 'works') 1
('hearing', 'anything') 1
('both', 'cried') 1
('in', 'chorus') 1
('extra', '"') 1
('washing', 'her') 1
('my', 'throat') 1
('speaking', 'but') 1
('round', 'lives') 1
('oh', 'such') 1
('the', 'solicitation') 1
('eyes', 'tell') 1
('exclaimed', 'turning') 1
('off', 'if') 1
('arm', 'curled') 1
('had', 'spoken') 1
('waving', 'of') 1
('from', 'which') 1
('the', 'schoolroom') 1
('may', 'demand') 1
('the', 'sounds') 1
('and', 'where') 1
('minute', 'alice') 1
('no', 'additional') 1
('on', 'second') 1
('days', 'following') 1
('the', 'carrier') 1
('alice', 'stand') 1
('crumbs', 'must') 1
('brown', 'hair') 1
('something', 'important') 1
('bill', 'was') 1
('anything', 'for') 1
('recovered', 'from') 1
('no', 'meaning') 1
('sky', 'alice') 1
('arch', 'i') 1
('france', 'then') 1
('how', 'large') 1
('smoke', 'from') 1
('one', 'shilling') 1
('whose', 'thoughts') 1
('will', 'not') 1
('ut', '84116') 1
('damages', 'if') 1
('finish', 'your') 1
('lobster', 'i') 1
('pattern', 'on') 1
('or', 'redistribute') 1
('angry', 'about') 1
('cat', 'she') 1
('certainly', 'but') 1
('such', 'states') 1
('swallowing', 'down') 1
('began', 'nibbling') 1
('soup', 'soup') 1
('other', 'as') 1
('alice', 'sharply') 1
('chose', 'to') 1
('way', 'the') 1
('linked', 'to') 1
('all', 'speed') 1
('ran', 'round') 1
('was', 'standing') 1
('dormouse', 's') 1
('child', 'was') 1
('trademark/copyright', 'agreement') 1
('like', 'changing') 1
('works', 'posted') 1
('above', 'her') 1
('reply', 'that') 1
('hands', 'how') 1
('chapter', 'vii') 1
('much', 'indeed') 1
('the', 'twentieth') 1
('welcome', 'little') 1
('confusion', 'as') 1
('and', 'whispered') 1
('you', 'deserved') 1
('including', 'outdated') 1
('those', 'twelve') 1
('joys', 'remembering') 1
('door', 'staring') 1
('planning', 'to') 1
('alice', 'allow') 1
('in', 'managing') 1
('patriotic', 'archbishop') 1
('even', 'introduced') 1
('head', 'about') 1
('put', 'em') 1
('grand', 'words') 1
('and', 'fetch') 1
('turn-up', 'nose') 1
('houses', 'and') 1
('bring', 'tears') 1
('beginning', 'very') 1
('the', 'sea-shore') 1
('concert', 'given') 1
('turned', 'the') 1
('story', 'for') 1
('all', 'else') 1
('confusion', 'he') 1
('michael', 's') 1
('head', 'but') 1
('a', 'ridge') 1
('wash', 'off') 1
('unfortunate', 'little') 1
('now', 'we') 1
('changed', 'into') 1
('wise', 'little') 1
('of', 'laughter') 1
('toys', 'to') 1
('normans', '"') 1
('any', 'you') 1
('it', 'first') 1
('off', 'without') 1
('throat', 'said') 1
('of', 'cardboard') 1
('globe', 'of') 1
('by', 'two') 1
('he', 'd') 1
('or', 'if') 1
('behind', 'alice') 1
('knave', 'did') 1
('kindly', 'but') 1
('marked', 'with') 1
('knocking', 'the') 1
('reasonable', 'pace') 1
('take', 'me') 1
('her', 'best') 1
('arm', 'and') 1
('remarking', 'as') 1
('hanging', 'from') 1
('whiting', 'to') 1
('were', 'playing') 1
('well', 'wait') 1
('country', 'is') 1
('tied', 'up') 1
('dull', 'reality') 1
('dormouse', 'out') 1
('a', 'prize') 1
('your', 'use') 1
('"i', 'sleep') 1
('had', 'become') 1
('there', 'stood') 1
('heads', 'off') 1
('positively', 'refused') 1
('trademark', 'contact') 1
('"', 'thank') 1
('around', 'it') 1
('lizard', 'could') 1
('his', 'belt') 1
('what', 'year') 1
('little', 'bird') 1
('gravely', 'and') 1
('interrupted', 'there') 1
('very', 'decidedly') 1
('t', 'cried') 1
('wondering', 'very') 1
('field', 'after') 1
('had', 'forgotten') 1
('story', 'you') 1
('night', 'you') 1
('who', 'always') 1
('cat', 'removed') 1
('silence', 'it') 1
('trot', 'away') 1
('shedding', 'gallons') 1
('temper', 'hold') 1
('instantly', 'threw') 1
('got', 'their') 1
('you', 'speak') 1
('even', 'make') 1
('is', 'something') 1
('books', 'and') 1
('on', 'within') 1
('"come', 'up') 1
('she', 'passed') 1
('glaring', 'at') 1
('beloved', 'snail') 1
('for', 'access') 1
('great', 'disappointment') 1
('deal', 'of') 1
('well', 'alice') 1
('moon', 'and') 1
('rest', 'herself') 1
('crossed', 'over') 1
('printed', 'and') 1
('promising', 'certainly') 1
('verdict', 'he') 1
('dreadfully', 'savage') 1
('proper', 'places') 1
('gutenberg-tm', 's') 1
('name', 'is') 1
('rather', 'late') 1
('white', 'but') 1
('on', 'others') 1
('indignant', 'voice') 1
('other', 'but') 1
('yelled', 'the') 1
('federal', 'laws') 1
('very', 'hard') 1
('a', 'graceful') 1
('http', '//gutenberg') 1
('couples', 'they') 1
('together', '"') 1
('true', '"') 1
('signed', 'at') 1
('his', 'cheeks') 1
('her', 'or') 1
('be', 'at') 1
('very', 'turn-up') 1
('and', 'permanent') 1
('guilt', 'said') 1
('ring', 'with') 1
('second', 'thing') 1
('know', 'your') 1
('avoid', 'shrinking') 1
('this', 'witness') 1
('give', 'birthday') 1
('do', '"') 1
('again', 'they') 1
('stole', 'those') 1
('queen', 'sentence') 1
('reading', 'but') 1
('good', 'that') 1
('arm', 'you') 1
('lory', 'hastily') 1
('found', 'what') 1
('the', 'legs') 1
('of', 'of') 1
('far', 'down') 1
('alice', 'now') 1
('the', 'salt') 1
('coming', 'how') 1
('seated', 'on') 1
('more', 'while') 1
('chimney', 'as') 1
('perhaps', 'your') 1
('alone', 'swamp') 1
('alone', 'here') 1
('written', 'about') 1
('what', 'day') 1
('two', 'began') 1
('several', 'times') 1
('cupboards', 'and') 1
('that', 'can') 1
('witness', 'well') 1
('had', 'someone') 1
('those', 'beds') 1
('just', 'before') 1
('unpleasant', 'state') 1
('nearer', 'till') 1
('anything', 'why') 1
('me', 'he') 1
('listen', 'mary') 1
('a', 'by') 1
('roots', 'of') 1
('made', 'up') 1
('a', 'buttercup') 1
('throne', 'when') 1
('who', 'did') 1
('history', 'alice') 1
('course', '"i') 1
('chuckled', 'what') 1
('pepper', 'for') 1
('he', 'trusts') 1
('low', 'and') 1
('ran', 'but') 1
('running', 'out') 1
('moment', 'five') 1
('next', 'first') 1
('too', 'weak') 1
('woman', 'and') 1
('simply', '"never') 1
('hard', 'against') 1
('them', 'raw') 1
('be', 'much') 1
('noticed', 'alice') 1
('oh', 'ever') 1
('curiouser', 'and') 1
('that', 'person') 1
('tail', 'but') 1
('she', 'pictured') 1
('deserved', 'to') 1
('been', 'doing') 1
('some', 'other') 1
('s', 'alice') 1
('"will', 'you') 1
('head', 'was') 1
('her', 'wonderful') 1
('changes', 'she') 1
('all', 'soup') 1
('party', 'were') 1
('throwing', 'everything') 1
('or', 'access') 1
('had', 'brought') 1
('stool', 'in') 1
('favoured', 'by') 1
('twist', 'it') 1
('the', 'tail') 1
('only', 'look') 1
('some', 'winter') 1
('result', 'seemed') 1
('can', 'all') 1
('the', 'righthand') 1
('ve', 'finished') 1
('who', 'in') 1
('be', 'listening') 1
('most', 'important') 1
('of', 'computers') 1
('certain', 'it') 1
('alas', 'for') 1
('and', 'hold') 1
('this', 'that') 1
('came', 'rather') 1
('head', 'and') 1
('drawling', 'stretching') 1
('drink', 'much') 1
('bore', 'it') 1
('keep', 'through') 1
('loud', 'indignant') 1
('once', 'tasted') 1
('d', 'do') 1
('just', 'see') 1
('held', 'out') 1
('invited', 'said') 1
('fell', 'on') 1
('ebook', 'alice') 1
('he', 'thanked') 1
('escape', 'so') 1
('all', 'pardoned') 1
('tarts', 'on') 1
('feel', 'encouraged') 1
('caterpillar', 'this') 1
('hedgehog', 'which') 1
('having', 'tea') 1
('questions', 'and') 1
('of', 'rules') 1
('copy', 'it') 1
('possessed', 'in') 1
('spoke', 'we') 1
('hare', 'then') 1
('you', 'wish') 1
('law', 'the') 1
('walked', 'sadly') 1
('the', 'part') 1
('dream', 'first') 1
('then', 'tell') 1
('than', 'it') 1
('uglifying', 'it') 1
('hair', 'wants') 1
('house', 'opened') 1
('may', 'do') 1
('and', 'picking') 1
('but', 'frowning') 1
('used', 'in') 1
('begun', 'asking') 1
('king', 'nothing') 1
('either', 'question') 1
('cutting', 'said') 1
('her', 'answer') 1
('s', 'pause') 1
('were', 'down') 1
('who', 'it') 1
('say', 'said') 1
('turn', 'or') 1
('his', 'mouth') 1
('paid', 'within') 1
('bathing', 'machines') 1
('this', 'rope') 1
('and', 'discontinue') 1
('never', 'seen') 1
('humbly', 'i') 1
('doing', 'alice') 1
('as', 'quickly') 1
('we', 'quarrelled') 1
('manage', 'the') 1
('and', 'its') 1
('year', 'for') 1
('askance', 'said') 1
('next', 'as') 1
('replied', 'we') 1
('her', 'fancy') 1
('case', 'said') 1
('uglify', 'is') 1
('write', 'this') 1
('removed', 'said') 1
('search', 'facility') 1
('attached', 'full') 1
('not', 'oh') 1
('and', 'barley-sugar') 1
('of', 'sitting') 1
('the', 'remaining') 1
('sensation', 'among') 1
('one', 'two') 1
('and', 'find') 1
('own', 'mind') 1
('provided', 'to') 1
('you', 'finished') 1
('a', 'fight') 1
('the', 'goose') 1
('gone', 'if') 1
('file', 'or') 1
('cunning', 'old') 1
('table', 'was') 1
('down', 'that') 1
('follow', 'the') 1
('till', 'tomorrow') 1
('proves', 'his') 1
('was', 'your') 1
('spread', 'public') 1
('to', 'stop') 1
('learn', 'oh') 1
('remove', 'the') 1
('a', 'clean') 1
('word', 'processing') 1
('lesson-book', 'the') 1
('he', 'll') 1
('a', 'non') 1
('jury-box', 'thought') 1
('once', 'upon') 1
('them', 'bowed') 1
('ma', 'chatte') 1
('happened', 'how') 1
('confused', 'poor') 1
('verse', 'the') 1
('me', 'thought') 1
('and', 'finding') 1
('went', 'so') 1
('lines', 'cried') 1
('"before', 'she') 1
('curious', 'creatures') 1
('whiting', 'now') 1
('violently', 'up') 1
('to', 'undo') 1
('nursing', 'her') 1
('or', 'damaged') 1
('bark', 'sounded') 1
('grazed', 'his') 1
('hint', 'to') 1
('mice', 'in') 1
('turtles', 'all') 1
('use', 'their') 1
('already', 'heard') 1
('other', 'however') 1
('proved', 'it') 1
('hedge', 'then') 1
('ledge', 'of') 1
('run', 'home') 1
('copy', 'if') 1
('t', 'mentioned') 1
('sat', 'upon') 1
('some', 'severity') 1
('so', 'small') 1
('gave', 'one') 1
('it', 'gloomily') 1
('alive', 'with') 1
('remarking', 'that') 1
('speak', 'to') 1
('dinner', 'i') 1
('_i_', 'don') 1
('most', 'interesting') 1
('partner', 'cried') 1
('wander', 'about') 1
('pulling', 'me') 1
('king', 'looked') 1
('which', 'and') 1
('the', 'loveliest') 1
('turns', 'out') 1
('"keep', 'back') 1
('words', 'yes') 1
('the', 'rules') 1
('sneeze', 'of') 1
('too', 'small') 1
('dreaming', 'after') 1
('an', 'egg') 1
('table', 'in') 1
('while', 'finishing') 1
('this', 'new') 1
('is', 'look') 1
('garden', 'among') 1
('all', 'ready') 1
('imagine', 'her') 1
('king', 'very') 1
('first', 'said') 1
('remarks', 'and') 1
('the', 'confused') 1
('first', 'form') 1
('was', 'mystery') 1
('it', 'oh') 1
('a', 'world') 1
('steam-engine', 'when') 1
('more', 'sounds') 1
('been', 'invited') 1
('very', 'melancholy') 1
('voice', 'behind') 1
('must', 'include') 1
('be', 'telling') 1
('a', 'red-hot') 1
('of', 'anger') 1
('indignantly', 'ah') 1
('the', 'face') 1
('earth', 'how') 1
('bit', 'to') 1
('me', 'whether') 1
('consider', 'their') 1
('the', 'box') 1
('singers', 'in') 1
('alice', 'caught') 1
('guinea-pigs', 'filled') 1
('expend', 'considerable') 1
('patted', 'on') 1
('"you', 'can') 1
('widest', 'array') 1
('denying', 'it') 1
('m', 'but') 1
('with', 'oh') 1
('ann', 'said') 1
('alice', 'surprised') 1
('muttering', 'over') 1
('larger', 'i') 1
('crimson', 'with') 1
('the', 'choking') 1
('neighbouring', 'pool') 1
('people', 'in') 1
('in', 'couples') 1
('expressing', 'yourself') 1
('a', 'twinkling') 1
('web', 'pages') 1
('was', 'still') 1
('a', 'delightful') 1
('her', 'any') 1
('yet', 'what') 1
('sharks', 'are') 1
('her', 'oh') 1
('speak', 'english') 1
('unfortunate', 'guests') 1
('dinn', 'she') 1
('on', 'treacle') 1
('is', 'but') 1
('face', 'i') 1
('look-out', 'for') 1
('man', 'there') 1
('party', 'sat') 1
('what', 'with') 1
('freely', 'shared') 1
('tried', 'hard') 1
('table', 'with') 1
('tears', 'again') 1
('answered', 'three') 1
('neck', 'of') 1
('stopped', 'hastily') 1
('set', 'the') 1
('am', 'to') 1
('updated', 'editions') 1
('with', 'my') 1
('or', 'distributed') 1
('is', 'dinah') 1
('all', 'know') 1
('his', 'time') 1
('better', 'this') 1
('duck', 'with') 1
('late', 'so') 1
('"much', 'of') 1
('possibly', 'reach') 1
('second', 'copy') 1
('with', 'fright') 1
('heap', 'of') 1
('a', 'united') 1
('middle-aged', 'and') 1
('hundred', 'pounds') 1
('gravely', 'what') 1
('care', 'where') 1
('water', 'her') 1
('made', 'some') 1
('of', 'lamps') 1
('all', 'works') 1
('many', 'small') 1
('again', 'that') 1
('contact', 'the') 1
('following', 'each') 1
('last', 'march') 1
('of', 'living') 1
('size', 'alice') 1
('soup', 'chorus') 1
('dinah', 'she') 1
('t', 'interrupted') 1
('unless', 'a') 1
('b', 'alteration') 1
('your', 'walk') 1
('cheered', 'alice') 1
('five', 'in') 1
('he', 'has') 1
('international', 'donations') 1
('quite', 'away') 1
('payments', 'and') 1
('his', 'arms') 1
('back', 'at') 1
('home', 'when') 1
('presented', 'the') 1
('his', 'story') 1
('must', 'manage') 1
('without', 'maybe') 1
('last', 'said') 1
('the', 'slightest') 1
('added', 'it') 1
('home', 'thought') 1
('nurse', 'it') 1
('as', 'specified') 1
('wondered', 'at') 1
('do', 'either') 1
('myself', 'the') 1
('you', 'hold') 1
('soldier', 'on') 1
('nobody', 'which') 1
('might', 'appear') 1
('you', 'pay') 1
('and', 'felt') 1
('whole', 'place') 1
('first', 'the') 1
('tax', 'returns') 1
('very', 'nice') 1
('keep', 'tight') 1
('only', 'i') 1
('receive', 'specific') 1
('not', 'see') 1
('always', 'tea-time') 1
('no', 'pleasing') 1
('shall', 'get') 1
('so', 'savage') 1
('had', 'its') 1
('low', 'would') 1
('re', 'dreadfully') 1
('its', 'forehead') 1
('an', 'air') 1
('hare', 'moved') 1
('ran', 'with') 1
('rock', 'and') 1
('wet', 'as') 1
('his', 'eye') 1
('sounded', 'promising') 1
('where', 'said') 1
('angrily', 'here') 1
('mabel', 'after') 1
('all', 'what') 1
('assistance', 'they') 1
('so', 'thin') 1
('thought', 'still') 1
('own', 'child-life') 1
('could', 'hardly') 1
('that', 'soup') 1
('miles', 'down') 1
('out', 'we') 1
('in', 'among') 1
('another', 'rush') 1
('will', 'take') 1
('creatures', 'who') 1
('committed', 'to') 1
('shaking', 'it') 1
('may', 'stand') 1
('quietly', 'into') 1
('wrong', 'i') 1
('"there', 'is') 1
('w', 'rabbit') 1
('t', 'found') 1
('cook', 'had') 1
('afterwards', 'stuff') 1
('drive', 'one') 1
('knave', 'the') 1
('magpie', 'began') 1
('v', 'advice') 1
('was', 'thatched') 1
('hearts', 'alice') 1
('alice', 'didn') 1
('shall', 'see') 1
('butter', 'you') 1
('take', 'his') 1
('arise', 'directly') 1
('canvas', 'bag') 1
('such', 'stuff') 1
('the', 'children') 1
('the', 'rosetree') 1
('you', 'coward') 1
('changes', 'are') 1
('a', 'snatch') 1
('then', 'bill') 1
('think', 'very') 1
('every', 'line') 1
('manage', 'alice') 1
('the', 'conclusion') 1
('its', 'original') 1
('3', 'limited') 1
('accepted', 'but') 1
('narrow', 'escape') 1
('the', 'strange') 1
('using', 'or') 1
('to', 'tinkling') 1
('ordering', 'off') 1
('then', 'turned') 1
('goes', 'bill') 1
('ring', 'and') 1
('sight', 'alice') 1
('it', 'here') 1
('eyes', 'bright') 1
('time', 'interrupted') 1
('business', 'two') 1
('seemed', 'ready') 1
('states', 'where') 1
('he', 'is') 1
('was', 'scratching') 1
('beginning', 'again') 1
('name', 'again') 1
('since', 'her') 1
('asked', 'we') 1
('the', 'water') 1
('the', 'officer') 1
('gutenberg', 'org/1/11/') 1
('that', 'depends') 1
('too', 'slippery') 1
('restrictions', 'whatsoever') 1
('listen', 'all') 1
('flapper', 'across') 1
('first', 'it') 1
('noticed', 'had') 1
('bristling', 'all') 1
('like', 'they') 1
('course', 'to') 1
('t', 'mine') 1
('severity', 'it') 1
('t', 'gone') 1
('quicker', 'what') 1
('walking', 'away') 1
('sorrow', 'she') 1
('was', 'of') 1
('kindly', 'permitted') 1
('good', 'character') 1
('questions', 'about') 1
('strict', 'liability') 1
('cat', 'which') 1
('grin', 'without') 1
('nearly', 'everything') 1
('the', 'different') 1
('at', 'present') 1
('him', 'she') 1
('table', 'as') 1
('then', 'another') 1
('checks', 'online') 1
('such', 'confusion') 1
('were', 'shaped') 1
('have', 'prizes') 1
('dreadfully', 'ugly') 1
('at', 'poor') 1
('and', 'things') 1
('the', 'refreshments') 1
('thing', 'mock') 1
('head', 's') 1
('feel', 'it') 1
('his', 'plate') 1
('where', 'alice') 1
('gone', 'across') 1
('trademark', 'project') 1
('girl', 'like') 1
('but', 'in') 1
('cat', 'again') 1
('to', 'electronic') 1
('her', 'ever') 1
('hearts', 'carrying') 1
('works', 'unless') 1
('an', 'account') 1
('prize', 'herself') 1
('so', 'bill') 1
('same', 'when') 1
('i', 'took') 1
('house', '"let') 1
('he', 'took') 1
('s', 'our') 1
('of', 'sleep') 1
('song', 'i') 1
('guessed', 'in') 1
('on', 'rather') 1
('grins', 'like') 1
('her', 'knee') 1
('the', 'irs') 1
('other', 'guinea-pig') 1
('the', 'doors') 1
('and', 'wander') 1
('many', 'voices') 1
('fits', 'my') 1
('unpleasant', 'things') 1
('a', 'bough') 1
('being', 'so') 1
('argue', 'it') 1
('folded', 'frowning') 1
('future', 'for') 1
('some', 'change') 1
('thing', 'very') 1
('lay', 'the') 1
('kitchen', 'that') 1
('re', 'making') 1
('exclusion', 'or') 1
('takes', 'a') 1
('nobody', 'asked') 1
('off', 'staring') 1
('puzzled', 'but') 1
('the', 'faster') 1
('friend', 'of') 1
('king', 'when') 1
('was', 'done') 1
('week', 'he') 1
('hatter', 'trembled') 1
('from', 'day') 1
('quite', 'dull') 1
('now', 'a') 1
('likely', 'story') 1
('birds', 'with') 1
('between', 'yourself') 1
('grass', 'merely') 1
('my', 'hand') 1
('dear', 'dinah') 1
('burst', 'of') 1
('yet', 'she') 1
('something', 'now') 1
('courage', 'it') 1
('little', 'snappishly') 1
('need', 'is') 1
('why', 'that') 1
('loud', 'as') 1
('tittered', 'audibly') 1
('he', 'only') 1
('that', 'wherever') 1
('was', 'nine') 1
('it', 'exclaimed') 1
('which', 'were') 1
('tone', 'so') 1
('by', 'people') 1
('generally', 'takes') 1
('any', 'good') 1
('d', 'taken') 1
('i', 'may') 1
('else"', 'but') 1
('heard', 'every') 1
('but', 'none') 1
('daisies', 'when') 1
('suppressed', 'guinea-pigs') 1
('tastes', 'sing') 1
('sing', 'this') 1
('is', 'if') 1
('ask', 'the') 1
('moment', 'and') 1
('further', 'off') 1
('most', 'project') 1
('mind', 'about') 1
('mad', 'at') 1
('thinking', 'i') 1
('see', 'alice') 1
('please', 'would') 1
('and', 'cried') 1
('more', 'questions') 1
('felt', 'certain') 1
('s', 'half') 1
('this', 'paragraph') 1
('forepaws', 'to') 1
('baby', 'violently') 1
('heads', 'are') 1
('you', 'charge') 1
('for', 'obtaining') 1
('s', 'latin') 1
('associated', 'is') 1
('english', 'coast') 1
('book', 'of') 1
('unjust', 'things') 1
('to', 'nurse') 1
('unhappy', 'at') 1
('distance', 'would') 1
('out', 'but') 1
('and', 'nonsense') 1
('executioner', 'ran') 1
('much', 'care') 1
('will', 'tell') 1
('one', 'and') 1
('violates', 'the') 1
('to', 'reaching') 1
('remember', 'where') 1
('way', 'up') 1
('growls', 'when') 1
('came', 'carried') 1
('online', 'payments') 1
('sensation', 'which') 1
('granted', 'tax') 1
('queer', 'things') 1
('watch', 'said') 1
('variety', 'of') 1
('very', 'ugly') 1
('hastily', 'but') 1
('her', 'collar') 1
('were', 'perfectly') 1
('cost', 'fee') 1
('him', 'or') 1
('understand', 'where') 1
('another', 'dig') 1
('think', 'how') 1
('and', 'mine') 1
('goose', 'with') 1
('perhaps', 'even') 1
('puzzled', 'expression') 1
('much', 'she') 1
('good', 'height') 1
('slippery', 'and') 1
('the', 'antipathies') 1
('that', 'like') 1
('has', 'just') 1
('give', 'notice') 1
('played', 'at') 1
('closed', 'eyes') 1
('several', 'nice') 1
('nearly', 'out') 1
('this', 'seemed') 1
('draggled', 'feathers') 1
('sure', 'as') 1
('drunk', 'half') 1
('or', 'soldiers') 1
('size', 'the') 1
('bit', 'hurt') 1
('was', 'swimming') 1
('began', 'sneezing') 1
('thirty', 'years') 1
('railway', 'station') 1
('and', 'smiled') 1
('heard', 'this') 1
('difficult', 'question') 1
('soldiers', 'remaining') 1
('perhaps', 'said') 1
('for', 'life') 1
('person', 'i') 1
('so', 'these') 1
('just', 'explain') 1
('matters', 'it') 1
('quite', 'unable') 1
('began', 'bowing') 1
('had', 'but') 1
('"', 'she') 1
('demand', 'a') 1
('as', 'steady') 1
('proud', 'of') 1
('you', 'by') 1
('little', 'quicker') 1
('uncomfortably', 'sharp') 1
('the', 'passage') 1
('such', 'an') 1
('anxious', 'to') 1
('fall', 'and') 1
('remember', 'things') 1
('party', 'some') 1
('very', 'meekly') 1
('whiting', 'i') 1
('live', 'flamingoes') 1
('and', 'addressed') 1
('in', 'books') 1
('bawled', 'out') 1
('royalties', 'special') 1
('org', 'you') 1
('house', 'till') 1
('window', 'she') 1
('paid', 'the') 1
('whereupon', 'the') 1
('to', 'cut') 1
('and', 'scrambling') 1
('what', 'happened') 1
('stirring', 'the') 1
('often', 'read') 1
('all', 'alone') 1
('entrance', 'of') 1
('happens', 'and') 1
('the', 'eyes') 1
('told', 'her') 1
('ours', 'they') 1
('be', 'interpreted') 1
('educational', 'corporation') 1
('d', 'been') 1
('more', 'she') 1
('lobsters', 'out') 1
('dry', 'me') 1
('question', 'it') 1
('exactly', 'the') 1
('day-school', 'too') 1
('denied', 'nothing') 1
('lasted', 'then') 1
('creatures', 'she') 1
('of', 'interrupting') 1
('again', 'suddenly') 1
('bowing', 'to') 1
('been', 'of') 1
('skurried', 'away') 1
('receive', 'the') 1
('appears', 'or') 1
('as', 'nearly') 1
('our', 'small') 1
('before', 'oh') 1
('smallest', 'notice') 1
('only', 'say') 1
('that', 'green') 1
('melan', 'dr') 1
('that', 'proves') 1
('locked', 'and') 1
('a', 'set') 1
('running', 'half') 1
('off', 'this') 1
('hare', 'meekly') 1
('followed', 'them') 1
('chin', 'it') 1
('overcome', 'to') 1
('state', 's') 1
('dreadful', 'time') 1
('that', 'into') 1
('bend', 'i') 1
('write', 'out') 1
('great', 'eyes') 1
('thinking', 'there') 1
('off', 'in') 1
('duchess', 'hush') 1
('do', 'nothing') 1
('other', 'curious') 1
('was', 'trickling') 1
('herself', 'with') 1
('managed', 'i') 1
('commercial', 'redistribution') 1
('room', 'again') 1
('medium', 'and') 1
('fury', '"i') 1
('rats', 'and') 1
('see', 'shakespeare') 1
('s', 'slate-pencil') 1
('cried', 'come') 1
('quietly', 'marched') 1
('rose-tree', 'she') 1
('fond', 'she') 1
('eat', 'it') 1
('her', 'still') 1
('squeaking', 'voice') 1
('getting', 'the') 1
('ferrets', 'are') 1
('called', 'a') 1
('handed', 'them') 1
('a', 'lark') 1
('accessed', 'displayed') 1
('are', 'set') 1
('kings', 'and') 1
('neither', 'more') 1
('with', 'almost') 1
('five', 'always') 1
('an', 'ignorant') 1
('ran', 'across') 1
('funny', 'watch') 1
('reading', 'about') 1
('i', 'see"') 1
('rattle', 'of') 1
('right', 'thing') 1
('was', 'playing') 1
('we', 'change') 1
('takes', 'twenty-four') 1
('shoulders', 'that') 1
('free', 'future') 1
('face', 'was') 1
('interrupted', 'alice') 1
('caterpillar', 'not') 1
('very', 'sadly') 1
('our', 'dinah') 1
('dormouse', 'followed') 1
('forgotten', 'to') 1
('broken', 'only') 1
('cause', 'section') 1
('round', 'if') 1
('a', 'partner') 1
('well', 'look') 1
('fat', 'yet') 1
('if', 'we') 1
('was', 'something') 1
('reply', 'please') 1
('velvet', 'cushion') 1
('rule', 'at') 1
('grinning', 'from') 1
('of', 'fright') 1
('nervous', 'manner') 1
('to', 'how') 1
('again', 'very') 1
('this', 'short') 1
('begun', 'my') 1
('re', 'done') 1
('and', 'asking') 1
('took', 'her') 1
('rattling', 'in') 1
('hush', 'hush') 1
('the', 'crowd') 1
('moment', 'my') 1
('hand', 'again') 1
('was', 'labelled') 1
('was', 'sent') 1
('sight', 'he') 1
('and', 'turns') 1
('tea-time', 'and') 1
('pleased', 'at') 1
('and', 'decidedly') 1
('scolded', 'herself') 1
('in', 'questions') 1
('accusation', 'said') 1
('said', 'aloud') 1
('gutenberg-tm', 'including') 1
('life', 'she') 1
('dream', 'dear') 1
('try', 'geography') 1
('holder', 'additional') 1
('with', 'many') 1
('pebbles', 'were') 1
('way', 'down') 1
('to', 'quiver') 1
('thick', 'wood') 1
('sounded', 'best') 1
('the', 'wandering') 1
('or', 'proprietary') 1
('necessarily', 'keep') 1
('tone', 'exactly') 1
('knife', 'it') 1
('explanations', 'take') 1
('terms', 'will') 1
('and', 'repeated') 1
('size', 'do') 1
('next', 'day') 1
('michael', 'hart') 1
('growing', 'on') 1
('he', 'pleases') 1
('talk', 'i') 1
('he', 'certainly') 1
('house', 'because') 1
('sadly', 'and') 1
('where', 'shall') 1
('or', 'unenforceability') 1
('last', 'with') 1
('tillie', 'and') 1
('itself', 'upright') 1
('singing', 'a') 1
('alone', 'with') 1
('has', 'a') 1
('in', 'dancing') 1
('found', 'an') 1
('contributions', 'to') 1
('hatter', 'here') 1
('his', 'ear') 1
('was', 'this') 1
('of', 'axes') 1
('charge', 'for') 1
('a', 'history') 1
('hope', 'it') 1
('alice', 'every') 1
('dormouse', 'shall') 1
('is', 'just') 1
('slipped', 'the') 1
('rabbit', 'started') 1
('even', 'waiting') 1
('herself', 'safe') 1
('set', 'them') 1
('slates', 'll') 1
('witness', 'at') 1
('neat', 'little') 1
('of', 'stick') 1
('exporting', 'a') 1
('wildly', 'about') 1
('though', 'you') 1
('subject', 'ten') 1
('more', 'hopeless') 1
('and', 'why') 1
('is', 'to-day') 1
('that', 'down') 1
('what', 'made') 1
('magic', 'bottle') 1
('tears', 'into') 1
('any', 'binary') 1
('seen', 'when') 1
('party', 'went') 1
('if', 'anything') 1
('once', 'considering') 1
('it', 'signifies') 1
('c', 'the') 1
('others', 'looked') 1
('queerest', 'thing') 1
('otherwise', '"') 1
('through', 'next') 1
('arms', 'round') 1
('growing', 'you') 1
('sisters', 'they') 1
('little', 'shaking') 1
('alice', 'severely') 1
('hair', 'has') 1
('both', 'of') 1
('down', 'without') 1
('players', 'all') 1
('she', 'suddenly') 1
('became', 'alive') 1
('freely', 'sharing') 1
('mineral', 'i') 1
('twelve', 'jurors') 1
('he', 'dipped') 1
('procession', 'wondering') 1
('when', 'his') 1
('and', 'neither') 1
('heard', 'yes') 1
('things', 'on') 1
('moment', 'how') 1
('just', 'grazed') 1
('to', 'disobey') 1
('ll', 'soon') 1
('interrupting', 'it') 1
('i', 'vote') 1
('dormouse', 'indignantly') 1
('began', 'nursing') 1
('with', 'wooden') 1
('received', 'from') 1
('appeared', 'to') 1
('be', 'worth') 1
('my', 'hair') 1
('with', 'cupboards') 1
('happen', 'in') 1
('t', 'choke') 1
('rabbit', 'actually') 1
('brass', 'plate') 1
('at', '809') 1
('rose-tree', 'stood') 1
('the', 'cur') 1
('is', '"oh') 1
('soon', 'had') 1
('frog', 'or') 1
('newsletter', 'to') 1
('age', 'as') 1
('read', 'in') 1
('undo', 'it') 1
('gryphon', 'then') 1
('she', 'simply') 1
('shillings', 'and') 1
('let', 'you') 1
('mushroom', 'she') 1
('further', 'she') 1
('in', 'talking') 1
('one', 'only') 1
('conqueror', 'for') 1
('woman', 'but') 1
('gardeners', 'at') 1
('gardeners', 'oblong') 1
('have', 'croqueted') 1
('and', 'green') 1
('then', 'after') 1
('gloves', 'in') 1
('digging', 'her') 1
('the', 'happy') 1
('already', 'that') 1
('round', 'face') 1
('usual', 'height') 1
('small', 'off') 1
('book', 'but') 1
('round', 'goes') 1
('and', 'official') 1
('england', 'the') 1
('nobody', 'spoke') 1
('gloves', 'this') 1
('meant', 'for') 1
('quite', 'crowded') 1
('shelves', 'as') 1
('eye', 'was') 1
('ll', 'see') 1
('the', 'watch') 1
('decidedly', 'uncivil') 1
('alice', 'reeling') 1
('was', 'much') 1
('bring', 'but') 1
('again', '"before') 1
('now', 'my') 1
('pencil', 'that') 1
('on', 'planning') 1
('feebly', 'stretching') 1
('suddenly', 'called') 1
('transcription', 'errors') 1
('then', 'he') 1
('comfortably', 'enough') 1
('evidence', 'to') 1
('ridiculous', 'fashion') 1
('in', 'asked') 1
('into', 'this') 1
('these', 'strange') 1
('believed', 'herself') 1
('salt', 'lake') 1
('critical', 'to') 1
('the', 'ebooks') 1
('parchment', 'scroll') 1
('come', 'in') 1
('the', 'temper') 1
('not', 'notice') 1
('format', 'used') 1
('grown', 'woman') 1
('ve', 'kept') 1
('dark', 'to') 1
('foundation"', 'or') 1
('large', 'pool') 1
('choked', 'his') 1
('others', 'that') 1
('dormouse', 'was') 1
('silence', 'all') 1
('never', 'one') 1
('puppy', 'jumped') 1
('one', 'place') 1
('smiling', 'at') 1
('cat', 'so') 1
('half', 'expecting') 1
('again', 'which') 1
('is', 'committed') 1
('undertone', 'to') 1
('question', 'said') 1
('stood', 'watching') 1
('do', 'come') 1
('direction', 'like') 1
('do', 'wonder') 1
('little', 'hot') 1
('a', 'neat') 1
('had', 'paused') 1
('the', 'hot') 1
('of', 'smoke') 1
('of', 'gloves') 1
('the', 'setting') 1
('and', 'tremulous') 1
('secure', 'and') 1
('person', 'you') 1
('now', 'for') 1
('looking', 'about') 1
('of', 'volunteer') 1
('please', 'go') 1
('thought', 'you') 1
('then', 'always') 1
('porpoise', '"') 1
('works', 'possessed') 1
('very', 'readily') 1
('a', 'somersault') 1
('been', 'anxiously') 1
('think', 'or') 1
('shoes', 'and') 1
('"', 'why') 1
('to', 'finish') 1
('making', 'faces') 1
('feet', 'as') 1
('soon', 'the') 1
('but', 'never') 1
('king', 'shan') 1
('to', 'wish') 1
('solicit', 'donations') 1
('list', 'feeling') 1
('that', 'came') 1
('which', 'certainly') 1
('all', 'have') 1
('always', 'lay') 1
('myself', 'to') 1
('some', 'tarts') 1
('the', 'requirements') 1
('feel', 'with') 1
('beat', 'time') 1
('worth', 'the') 1
('eyes', 'immediately') 1
('roof', 'was') 1
('silence', 'for') 1
('harmless', 'from') 1
('him', 'you') 1
('was', 'opened') 1
('queer', 'indeed') 1
('but', 'slowly') 1
('in', 'paragraphs') 1
('size', 'again') 1
('everybody', 'executed') 1
('its', 'nose') 1
('herself', 'suppose') 1
('are', 'first') 1
('kept', 'a') 1
('shouted', 'at') 1
('exactly', 'one') 1
('little', 'besides') 1
('neatly', 'spread') 1
('only', 'answered') 1
('from', 'both') 1
('stirring', 'a') 1
('waistcoat-pocket', 'and') 1
('now', 'don') 1
('other', 'birds') 1
('dormouse', 'began') 1
('only', 'she') 1
('and', 'timidly') 1
('so', 'severely') 1
('proceed', 'said') 1
('mystery', 'ancient') 1
('clock', 'for') 1
('dodo', 'in') 1
('left', 'and') 1
('s', 'under') 1
('i', 'sleep"') 1
('gutenberg"', 'appears') 1
('sheep-bells', 'and') 1
('a', 'funny') 1
('what', 'things') 1
('no', 'indeed') 1
('other', 'paw') 1
('inquisitively', 'and') 1
('voice', 'but') 1
('proud', 'as') 1
('really', 'must') 1
('it', 'arrum') 1
('s', 'by') 1
('certain', 'i') 1
('engraved', 'upon') 1
('they', 'met') 1
('and', 'while') 1
('words', 'have') 1
('reduced', 'the') 1
('leaves', 'which') 1
('game', 'indeed') 1
('sigh', 'he') 1
('ask', 'perhaps') 1
('that', 'walk') 1
('its', 'hurry') 1
('it', 'hurried') 1
('under', 'it') 1
('sometimes', 'taller') 1
('saw', 'maps') 1
('they', 'cried') 1
('your', 'waist') 1
('of', 'every') 1
('no', 'label') 1
('only', 'been') 1
('free', 'of') 1
('were', 'a') 1
('marked', 'as') 1
('bag', 'which') 1
('please', 'come') 1
('through', 'into') 1
('knew', 'what') 1
('afore', 'she') 1
('tried', 'her') 1
('muttered', 'to') 1
('nicely', 'by') 1
('received', 'knife') 1
('says', '"come') 1
('alice', 'by') 1
('others', 'you') 1
('one', 'indeed') 1
('she', 'shook') 1
('disappointment', 'it') 1
('in', 'but') 1
('and', 'howling') 1
('twinkling', 'begins') 1
('it', 'how') 1
('serpent', 'and') 1
('star-fish', 'thought') 1
('to', 'execution') 1
('date', 'contact') 1
('fireplace', 'is') 1
('see', 'because') 1
('or', 'with') 1
('a', 'crowd') 1
('sat', 'for') 1
('or', '11') 1
('one', 'arm') 1
('it', 'flashed') 1
('than', 'before') 1
('lady', 'to') 1
('every', 'christmas') 1
('deal', 'until') 1
('from', 'said') 1
('other', 'arm') 1
('the', 'rattle') 1
('her', 'next') 1
('pool', 'a') 1
('no', 'pictures') 1
('interesting', 'and') 1
('hare', 'yes') 1
('perfectly', 'quiet') 1
('wanted', 'to') 1
('so', 'like') 1
('far', '"') 1
('creation', 'of') 1
('could', 'even') 1
('cat', 'we') 1
('croquet', 'then') 1
('representations', 'concerning') 1
('is', 'enough') 1
('re', 'thinking') 1
('will', 'burn') 1
('had', 'expected') 1
('hedgehog', 'the') 1
('a', 'back-somersault') 1
('pglaf', 'owns') 1
('have', 'none') 1
('there', 'isn') 1
('sharp', 'bark') 1
('help', 'preserve') 1
('numerous', 'locations') 1
('of', 'rome') 1
('course', 'had') 1
('t', 'been') 1
('editions', 'means') 1
('hatter', 'let') 1
('glass', 'from') 1
('struck', 'against') 1
('folded', 'quietly') 1
('signifies', 'much') 1
('because', 'it') 1
('northumbria', 'declared') 1
('cattle', 'in') 1
('inches', 'is') 1
('to', 'spell') 1
('had', 'said') 1
('shaking', 'him') 1
('or', 'computer') 1
('neck', 'kept') 1
('grow', 'here') 1
('eyes', 'very') 1
('finding', 'morals') 1
('who', 'got') 1
('gone', 'well') 1
('at', 'him') 1
('began', 'a') 1
('to', 'measure') 1
('lory', 'as') 1
('like', 'but') 1
('cut', 'your') 1
('come', 'or') 1
('knave', 'turn') 1
('and', 'me') 1
('ve', 'begun') 1
('alice', 'watched') 1
('it', 'lasted') 1
('finger', 'for') 1
('them', 'off') 1
('gryphon', 'is') 1
('thought', 'of') 1
('may', 'nurse') 1
('persisted', 'how') 1
('on', 'at') 1
('offend', 'the') 1
('savage', 'exclaimed') 1
('little', 'shrieks') 1
('after', 'watching') 1
('simple', 'question') 1
('see', 'its') 1
('people', 'near') 1
('shiver', 'i') 1
('high', 'even') 1
('hare', 'took') 1
('what', 'an') 1
('in', 'prison') 1
('why', 'not') 1
('deep', 'hollow') 1
('making', 'personal') 1
('before', 'them') 1
('that', 'savage') 1
('here', 'cried') 1
('pepper', 'mostly') 1
('she', 'stopped') 1
('employees', 'are') 1
('entity', 'providing') 1
('not', 'escape') 1
('pleased', 'and') 1
('permission', 'for') 1
('a', 'daisy-chain') 1
('brought', 'herself') 1
('down', 'among') 1
('more', 'happened') 1
('thing', 'sobbed') 1
('prizes', 'there') 1
('kind', 'to') 1
('minute', 'trying') 1
('about', 'wasting') 1
('you', 'turned') 1
('pressing', 'against') 1
('after', 'glaring') 1
('that', '-') 1
('stored', 'may') 1
('always', 'to') 1
('the', 'defective') 1
('jury', 'or') 1
('newby', 'chief') 1
('crown', 'over') 1
('sad', 'tale') 1
('its', 'age') 1
('every', 'moment') 1
('methods', 'and') 1
('people', 'why') 1
('altogether', 'like') 1
('latin', 'grammar') 1
('hatter', 'continued') 1
('while', 'alice') 1
('queen', 'turning') 1
('sing', 'her') 1
('2', 'information') 1
('without', 'prominently') 1
('i', 'he') 1
('able', 'i') 1
('butter', 'wouldn') 1
('one', 'about') 1
('who', 'said') 1
('arm-in-arm', 'with') 1
('comfort', 'one') 1
('turtle', 'these') 1
('move', 'that') 1
('gutenberg"', 'associated') 1
('and', 'sharks') 1
('raised', 'himself') 1
('hardly', 'knew') 1
('thoughtfully', 'they') 1
('hungry', 'for') 1
('indicating', 'that') 1
('juror', 'it') 1
('in', 'as') 1
('she', 'dropped') 1
('quick', 'about') 1
('bad', 'that') 1
('t', 'show') 1
('best', 'cat') 1
('his', 'brush') 1
('such', 'and') 1
('t', 'speak') 1
('jury', 'wrote') 1
('foundation', 'as') 1
('eyes', 'by') 1
('use', 'speaking') 1
('never', 'they') 1
('she', 'pitied') 1
('disk', 'or') 1
('down', 'looking') 1
('and', 'beg') 1
('s', 'perfectly') 1
('might', 'what') 1
('boy', 'i') 1
('this', 'ointment') 1
('those', 'tarts') 1
('charitable', 'donations') 1
('thoroughly', 'enjoy') 1
('terribly', 'frightened') 1
('the', 'story') 1
('answer', 'i') 1
('sudden', 'burst') 1
('gloves', 'while') 1
('miss', 'me') 1
('includes', 'information') 1
('wondering', 'why') 1
('world', 'go') 1
('letter', 'is') 1
('spoke', 'but') 1
('but', 'all') 1
('a', 'round') 1
('off', 'for') 1
('painting', 'them') 1
('about', 'by') 1
('method', 'you') 1
('read', 'this') 1
('edgar', 'atheling') 1
('itself', 'oh') 1
('feet', 'and') 1
('the', 'centre') 1
('more', 'boldly') 1
('words', 'came') 1
('right', 'word') 1
('makes', 'people') 1
('nothing', 'yet') 1
('cause', 'to') 1
('wine', 'the') 1
('chapter', 'v') 1
('dinah', 'tell') 1
('jury-box', 'with') 1
('gone', 'from') 1
('eat', 'me') 1
('telling', 'them') 1
('king', 'put') 1
('most', 'things') 1
('sounded', 'an') 1
('forgetting', 'that') 1
('a', 'body') 1
('only', 'walk') 1
('mostly', 'said') 1
('learn', 'it') 1
('t', 'done') 1
('stairs', 'alice') 1
('maybe', 'it') 1
('being', 'ordered') 1
('a', 'pause') 1
('beauti', 'ful') 1
('happens', 'she') 1
('hedgehogs', 'were') 1
('i', 'passed') 1
('little', 'cakes') 1
('and', 'expecting') 1
('same', 'year') 1
('better', 'with') 1
('little', 'magic') 1
('twelfth', 'alice') 1
('ran', 'wildly') 1
('crown', 'on') 1
('counting', 'off') 1
('it', 'chose') 1
('disclaim', 'all') 1
('choking', 'of') 1
('go', 'at') 1
('morning', 'but') 1
('age', 'there') 1
('dinah', 'if') 1
('almost', 'out') 1
('over', 'yes') 1
('adding', 'you') 1
('copying', 'distributing') 1
('have', 'meant') 1
('serpents', 'there') 1
('the', 'crown') 1
('could', 'draw') 1
('shake', 'at') 1
('a', 'second') 1
('other', 'saying') 1
('fish', 'would') 1
('up', 'his') 1
('all', 'finished') 1
('with', 'or') 1
('ran', 'the') 1
('very', 'cautiously') 1
('it', 'chuckled') 1
('s', 'treading') 1
('herself', 'out') 1
('hatter', 'alice') 1
('caterpillar', 'just') 1
('pool', 'she') 1
('words', 'out') 1
('enough', 'alice') 1
('feelings', 'may') 1
('of', 'room') 1
('m', 'here') 1
('to', 'wink') 1
('they', 'told') 1
('consider', 'my') 1
('stopped', 'and') 1
('dear', 'she') 1
('be', 'thought') 1
('turtle', 'interrupted') 1
('that', 'rabbit-hole') 1
('fan', 'in') 1
('come', 'the') 1
('was', 'engaged') 1
('say', 'so') 1
('on', 'where') 1
('wrong', 'about') 1
('courtiers', 'these') 1
('regular', 'rule') 1
('live', 'i') 1
('rose-tree', 'and') 1
('of', 'serpent') 1
('again', 'please') 1
('grave', 'and') 1
('a', 'branch') 1
('more', 'nor') 1
('here', 'as') 1
('things', 'get') 1
('with', 'draggled') 1
('considering', 'how') 1
('beasts', 'as') 1
('repeated', 'thoughtfully') 1
('large', 'she') 1
('a', 'strange') 1
('to', 'twenty') 1
('appealed', 'to') 1
('the', 'flame') 1
('below', 'there') 1
('saw', 'mine') 1
('voice', 'sometimes') 1
('pressed', 'upon') 1
('it', 'could') 1
('and', 'pictures') 1
('agreement', 'if') 1
('the', 'cattle') 1
('blades', 'of') 1
('very', 'fine') 1
('any', 'country') 1
('began', 'an') 1
('however', 'when') 1
('a', 'commotion') 1
('before', 'never') 1
('heads', 'downward') 1
('more', 'if') 1
('remarked', 'don') 1
('happen', 'any') 1
('she', 'liked') 1
('ebooks', 'and') 1
('curious', 'as') 1
('one', 'left') 1
('suit', 'them') 1
('me', 'were') 1
('fighting', 'for') 1
('waiting', 'outside') 1
('little', 'half') 1
('rather', 'doubtful') 1
('i', 'would') 1
('balanced', 'an') 1
('stupidly', 'up') 1
('t', 'swim') 1
('other', 'children') 1
('596-1887', 'email') 1
('s', 'hear') 1
('property', 'infringement') 1
('mouse', 's') 1
('looked', 'along') 1
('angrily', 'really') 1
('three-legged', 'table') 1
('saucepan', 'flew') 1
('agreement', 'will') 1
('low', 'hurried') 1
('came', 'nearer') 1
('collection', 'will') 1
('hundreds', 'of') 1
('really', 'good') 1
('up', 'a') 1
('places', 'shouted') 1
('of', 'repeating') 1
('two', 'in') 1
('cakes', 'she') 1
('read', 'several') 1
('resting', 'their') 1
('repeating', 'his') 1
('were', 'always') 1
('s', 'really') 1
('sister', 'was') 1
('edwin', 'and') 1
('hurry', 'this') 1
('feeble', 'squeaking') 1
('say', 'there') 1
('occasionally', 'and') 1
('stop', 'these') 1
('head', 'pressing') 1
('faces', 'in') 1
('game', 'feeling') 1
('tossing', 'the') 1
('heavy', 'sobbing') 1
('he', 'repeated') 1
('her', 'lessons') 1
('said', 'he') 1
('said', '"what') 1
('obtain', 'a') 1
('work', 'without') 1
('placed', 'along') 1
('yours', 'wasn') 1
('the', 'field') 1
('shoulders', 'were') 1
('things', 'in') 1
('about', 'you') 1
('say', 'one') 1
('long', 'breath') 1
('late', 'when') 1
('who', 'turned') 1
('right', 'distance') 1
('alice', 'always') 1
('mushroom', 'growing') 1
('over', 'other') 1
('mad', 'said') 1
('should', 'frighten') 1
('had', 'followed') 1
('all', 'turning') 1
('zealand', 'or') 1
('start', 'at') 1
('dear', 'dear') 1
('far', 'we') 1
('were', 'obliged') 1
('of', 'present') 1
('of', 'mixed') 1
('_i_', 'shan') 1
('read', 'them') 1
('my', 'limbs') 1
('a', 'cucumber-frame') 1
('wonder', 'she') 1
('get', 'them') 1
('those', 'roses') 1
('sure', 'then') 1
('yawned', 'and') 1
('head', 'the') 1
('computer', 'virus') 1
('make', 'donations') 1
('afford', 'to') 1
('of', 'grass') 1
('words', 'so') 1
('sentence', 'set') 1
('settling', 'all') 1
('entity', 'to') 1
('and', 'pepper') 1
('verse', 'of') 1
('all', 'spoke') 1
('hall', 'with') 1
('either', 'a') 1
('for', 'project') 1
('distribute', 'copies') 1
('her', 'side') 1
('and', 'intellectual') 1
('slowly', 'opened') 1
('it', 'twelve') 1
('a', 'thick') 1
('altogether', 'alice') 1
('number', 'one') 1
('a', 'pleasure') 1
('it', 'meant') 1
('frying-pan', 'after') 1
('kind', 'alice') 1
('please', 'mind') 1
('cautiously', 'but') 1
('going', 'though') 1
('federal', 'tax') 1
('energetic', 'remedies') 1
('the', 'immediate') 1
('lady', 'tells') 1
('the', 'night-air') 1
('low', 'hall') 1
('immediately', 'met') 1
('7', 'do') 1
('child', 'the') 1
('agent', 'or') 1
('land', 'again') 1
('be', 'treated') 1
('know', 'something') 1
('going', 'up') 1
('practically', 'anything') 1
('hare', 'he') 1
('and', 'fortunately') 1
('gently', 'smiling') 1
('usual', 'said') 1
('that', 'accounts') 1
('about', 'easily') 1
('shall', 'not') 1
('there', 'that') 1
('of', 'killing') 1
('sulkily', 'and') 1
('great', 'fear') 1
('on', 'my') 1
('invented', 'it') 1
('then', 'yours') 1
('arranged', 'the') 1
('less', 'said') 1
('open', 'her') 1
('banquet', ']') 1
('ridges', 'and') 1
('lessons', 'and') 1
('and', 'pulled') 1
('carefully', 'nibbling') 1
('enough', 'for') 1
('dish', 'as') 1
('protection', 'you') 1
('noticed', 'before') 1
('book-shelves', 'here') 1
('ask', 'them') 1
('her', 'question') 1
('along', 'catch') 1
('permitted', 'to') 1
('pounds', 'he') 1
('two', 'lines') 1
('and', 'would') 1
('running', 'on') 1
('your', 'knocking') 1
('also', 'and') 1
('mice', 'oh') 1
('queer', 'little') 1
('by', 'taking') 1
('most', 'extraordinary') 1
('a', 'procession') 1
('went', 'mad') 1
('using', 'any') 1
('minute', 'there') 1
('have', 'happened') 1
('a', 'bad') 1
('a', 'rat-hole') 1
('she', 'checked') 1
('"there', 's') 1
('and', 'loving') 1
('trial', 'dear') 1
('them', 'hit') 1
('deep', 'or') 1
('turtle', 'hold') 1
('swimming', 'away') 1
('engaged', 'in') 1
('to', 'rise') 1
('no', 'very') 1
('had', 'all') 1
('asked', 'begin') 1
('really', 'impossible') 1
('only', 'hear') 1
('might', 'find') 1
('to', 'trouble') 1
('rabbit', 'trotting') 1
('jury', 'had') 1
('last', 'words') 1
('wondering', 'if') 1
('are', 'gratefully') 1
('it', 'by') 1
('you', 'fond') 1
('a', 'wondering') 1
('after-time', 'be') 1
('quite', 'plainly') 1
('about', 'again') 1
('both', 'footmen') 1
('air', 'are') 1
('hand', 'upon') 1
('alice', 'alone') 1
('hall', 'after') 1
('squeaked', 'this') 1
('sobbed', 'again') 1
('about', 'fifteen') 1
('ask', 'his') 1
('will', 'some') 1
('put', 'more') 1
('and', 'do') 1
('m', 'never') 1
('a', 'helpless') 1
('stretched', 'herself') 1
('caterpillar', 'angrily') 1
('me', 'i') 1
('against', 'a') 1
('argued', 'each') 1
('trouble', 'you') 1
('egg', 'i') 1
('of', 'pretending') 1
('sleep', 'twinkle') 1
('glass', 'and') 1
('t', 'stand') 1
('words', 'eat') 1
('m', 'growing') 1
('buttercup', 'to') 1
('sending', 'presents') 1
('hurried', 'out') 1
('a', 'race-course') 1
('in', 'confusion') 1
('become', 'very') 1
('of', 'nursing') 1
('middle', 'being') 1
('thirteen', 'and') 1
('the', 'shrill') 1
('haste', 'she') 1
('which', 'he') 1
('three', 'soldiers') 1
('teeth', 'so') 1
('bit', 'if') 1
('have', 'changed') 1
('important', 'unimportant') 1
('reason', 'of') 1
('pleasure', 'of') 1
('now', 'run') 1
('upset', 'and') 1
('remark', 'myself') 1
('i', 'fell') 1
('crouched', 'down') 1
('seldom', 'followed') 1
('sight', 'before') 1
('arm', 'yer') 1
('more', 'clearly') 1
('dispute', 'going') 1
('was', 'appealed') 1
('do', 'lying') 1
('professor', 'michael') 1
('alice', 'kept') 1
('fancied', 'she') 1
('all', 'shaped') 1
('financial', 'support') 1
('depends', 'a') 1
('5', 'do') 1
('forget', 'them') 1
('of', 'lying') 1
('violently', 'dropped') 1
('anything', 'about') 1
('crowd', 'collected') 1
('rabbit', 'jumping') 1
('mouth', 'open') 1
('reach', 'it') 1
('with', 'public') 1
('all', 'locked') 1
('hastily', 'began') 1
('passage', 'into') 1
('removed', 'of') 1
('sure', 'what') 1
('made', 'entirely') 1
('without', 'wide') 1
('angrily', 'a') 1
('to', 'hide') 1
('without', 'knocking') 1
('holder', 'found') 1
('frog-footman', 'repeated') 1
('sky', 'ugh') 1
('copy', 'upon') 1
('loud', 'crash') 1
('believe', 'to') 1
('crimson', 'velvet') 1
('lay', 'far') 1
('was', 'favoured') 1
('and', 'credit') 1
('explanation', 'oh') 1
('sea', 'of') 1
('hear', 'it') 1
('each', 'date') 1
('that', 'perhaps') 1
('are', 'secondly') 1
('can', 'go') 1
('copyright', 'royalties') 1
('one', 'sharp') 1
('the', 'creature') 1
('up', 'said') 1
('moment', 'down') 1
('dream', 'of') 1
('the', 'cause') 1
('you', 'or') 1
('lose', 'your') 1
('caused', 'a') 1
('alice', 'panted') 1
('any', 'minute') 1
('cheshire', 'puss') 1
('eyes', 'then') 1
('wants', 'for') 1
('first', 'then') 1
('thing', 'sat') 1
('drive', 'on') 1
('the', 'doorway') 1
('corner', 'no') 1
('caterpillar', 'here') 1
('it', 'rather') 1
('or', 'hypertext') 1
('trees', 'a') 1
('no', 'mistake') 1
('much', 'right') 1
('we', 'called') 1
('game', 'began') 1
('the', 'grin') 1
('indignantly', 'and') 1
('license', 'please') 1
('i', 'advise') 1
('head', 'downwards') 1
('wildly', 'up') 1
('the', 'main') 1
('finish', 'if') 1
('thought', 'about') 1
('have', 'signed') 1
('pardoned', 'come') 1
('ringlets', 'and') 1
('ignorant', 'little') 1
('picked', 'her') 1
('went', 'slowly') 1
('she', 'can') 1
('came', 'skimming') 1
('him', 'into') 1
('see', 'such') 1
('answered', 'come') 1
('say', 'whether') 1
('beasts', 'and') 1
('but', 'everything') 1
('the', 'pieces') 1
('licensed', 'works') 1
('irs', 'the') 1
('that', 'loose') 1
('wig', 'look') 1
('it', 'stays') 1
('m', 'such') 1
('which', 'isn') 1
('size', 'by') 1
('which', 'happens') 1
('his', 'throat') 1
('is', 'queer') 1
('the', 'invalidity') 1
('it', 'give') 1
('locks', 'were') 1
('put', 'one') 1
('silence', 'in') 1
('tone', 'at') 1
('other', 'format') 1
('airs', 'do') 1
('instance', 'suppose') 1
('write', 'one') 1
('something', 'splashing') 1
('end', 'then') 1
('a', 'hurried') 1
('splashing', 'about') 1
('hot', 'buttered') 1
('sluggard', '"') 1
('she', 'wants') 1
('while', 'however') 1
('large', 'cauldron') 1
('last', 'concert') 1
('free', 'at') 1
('ladder', 'why') 1
('i', 'look') 1
('line', 'speak') 1
('the', 'chimneys') 1
('did', 'with') 1
('now', 'dears') 1
('i', 'told') 1
('copyright', 'status') 1
('data', 'transcription') 1
('leap', 'out') 1
('ground', 'as') 1
('riddles', 'i') 1
('sister', 'on') 1
('affectionately', 'into') 1
('why', 'your') 1
('s', 'free') 1
('having', 'nothing') 1
('around', 'his') 1
('song', 'she') 1
('feet', 'they') 1
('crocodile', 'improve') 1
('appeared', 'on') 1
('soup', 'does') 1
('faster', 'while') 1
('great', 'hall') 1
('called', 'softly') 1
('should', 'i') 1
('the', 'hearth') 1
('discovered', 'and') 1
('we', 'try') 1
('was', 'dreadfully') 1
('once', 'while') 1
('jurors', 'had') 1
('soon', 'her') 1
('her', 'a') 1
('what', 'have') 1
('what', 'this') 1
('gone', 'in') 1
('the', 'sage') 1
('ve', 'none') 1
('than', 'alice') 1
('acceptance', 'of') 1
('took', 'down') 1
('you', 'weren') 1
('any', 'sense') 1
('turtle', 'recovered') 1
('much', 'accustomed') 1
('two', 'three') 1
('still', 'just') 1
('bread-and-butter', 'getting') 1
('she', 'what') 1
('was', 'about') 1
('last', 'of') 1
('and', 'out') 1
('have', 'called') 1
('remember', 'said') 1
('even', 'then') 1
('look', 'down') 1
('to', 'suit') 1
('things', 'happening') 1
('it', 'before') 1
('idiotic', 'and') 1
('this', 'affair') 1
('day', 'why') 1
('dunce', 'go') 1
('again', 'using') 1
('inside', 'you') 1
('came', 'suddenly') 1
('speak', 'first') 1
('vegetable', 'it') 1
('your', 'efforts') 1
('butter', 'the') 1
('me', 'pat') 1
('tea-time', 'dinah') 1
('possible', 'it') 1
('should', 'chance') 1
('what', 'such') 1
('that', 'provided') 1
('order', 'of') 1
('hatters', 'before') 1
('you', '"') 1
('writing-desk', 'come') 1
('wise', 'fish') 1
('she', 'considered') 1
('pig', 'or') 1
('extraordinary', 'ways') 1
('last', 'turned') 1
('much', 'out') 1
('of', 'boots') 1
('to', 'pocket') 1
('if', 'if') 1
('hurt', 'and') 1
('two', 'looking') 1
('helpless', 'sort') 1
('large', 'plate') 1
('room', 'when') 1
('thoughts', 'were') 1
('angry', 'and') 1
('em', 'together') 1
('and', 'people') 1
('executive', 'and') 1
('she', 'let') 1
('gutenberg-tm', 'depends') 1
('most', 'curious') 1
('of', 'lullaby') 1
('court', 'as') 1
('best', 'plan') 1
('to', 'worry') 1
('were', 'just') 1
('his', 'grey') 1
('snout', 'than') 1
('rather', 'impatiently') 1
('rabbit', 'she') 1
('adventures', 'till') 1
('fender', 'with') 1
('under', 'his') 1
('hers', 'she') 1
('herself', 'not') 1
('upon', 'tiptoe') 1
('usurpation', 'and') 1
('else', 'for') 1
('her', 'sentence') 1
('more', 'thank') 1
('being', 'all') 1
('ask', 'suppose') 1
('was', 'bristling') 1
('particular', 'she') 1
('refreshments', 'but') 1
('timidly', 'up') 1
('asked', 'yes') 1
('letter', 'after') 1
('rate', 'said') 1
('creatures', 'of') 1
('executioner', 'fetch') 1
('all', 'must') 1
('dormouse', 'denied') 1
('being', 'run') 1
('the', 'patriotic') 1
('more', 'simply') 1
('want', 'a') 1
('remark', 'of') 1
('this', 'caused') 1
('whisper', 'a') 1
('prohibition', 'against') 1
('s', 'heavy') 1
('frowning', 'but') 1
('other', 'end') 1
('turned', 'into') 1
('chin', 'however') 1
('the', 'singers') 1
('them', 'over') 1
('happening', 'while') 1
('my', 'fur') 1
('asking', 'no') 1
('evidence', 'the') 1
('open', 'any') 1
('this', 'child') 1
('led', 'the') 1
('not', 'unlink') 1
('you', 'find') 1
('enough', 'when') 1
('words', 'a') 1
('silence', 'what') 1
('very', 'absurd') 1
('org/license', 'section') 1
('//pglaf', 'org/donate') 1
('but', 'as') 1
('underneath', 'her') 1
('confused', 'way') 1
('of', 'bread-and-butter') 1
('way', 'forwards') 1
('said', 'fifteenth') 1
('dear', 'you') 1
('opinion', 'said') 1
('how', 'it') 1
('getting', 'home') 1
('court', 'without') 1
('possibly', 'make') 1
('some', 'noise') 1
('read', 'they') 1
('right', 'in') 1
('see', 'whether') 1
('tut', 'child') 1
('word', 'two') 1
('expecting', 'nothing') 1
('that', 'ever') 1
('about', 'among') 1
('custody', 'by') 1
('low', 'timid') 1
('lory', 'positively') 1
('mustard-mine', 'near') 1
('several', 'other') 1
('to', 'date') 1
('any', 'statements') 1
('you', 'sir') 1
('began', 'fading') 1
('cup', 'interrupted') 1
('chanced', 'to') 1
('roared', 'the') 1
('possibility', 'of') 1
('hands', 'up') 1
('duck', 'found') 1
('as', 'safe') 1
('that', 'part') 1
('long', 'low') 1
('in', 'less') 1
('know', 'better') 1
('very', 'fond') 1
('herself', 'what') 1
('soup', 'chapter') 1
('would', 'make') 1
('org', 'this') 1
('more', 'broken') 1
('swimming', 'about') 1
('my', 'adventures') 1
('by', 'your') 1
('know', 'silence') 1
('else', 'leave') 1
('heavy', 'sobs') 1
('well', 'and') 1
('approach', 'us') 1
('duchess', 'she') 1
('honour', 'he') 1
('girls', 'of') 1
('would', 'cost') 1
('know', 'no') 1
('repeated', 'with') 1
('a', 'puzzled') 1
('much', 'from') 1
('stand', 'beating') 1
('hart', 'is') 1
('pleased', 'tone') 1
('teapot', 'at') 1
('indeed', 'were') 1
('looking', 'across') 1
('ll', 'think') 1
('shorter', 'one') 1
('and', 'drew') 1
('disclaimers', 'of') 1
('mouse', 'dear') 1
('uncivil', 'but') 1
('nurse', 'and') 1
('were', 'still') 1
('your', 'acceptance') 1
('king', 'or') 1
('more', 'conversation') 1
('agree', 'with') 1
('court', 'but') 1
('hand', 'with') 1
('king', 'who') 1
('to', 'show') 1
('donations', 'or') 1
('me', 'they') 1
('frog', 'and') 1
('door', 'as') 1
('remembered', 'the') 1
('and', 'grief') 1
('friend', 'when') 1
('of', 'making') 1
('coils', 'what') 1
('wish', 'it') 1
('use', 'as') 1
('took', 'to') 1
('believe', 'i') 1
('pleasure', 'in') 1
('charge', 'with') 1
('finished', 'said') 1
('my', 'way') 1
('of', 'history') 1
('sometimes', 'shorter') 1
('alice', 'angrily') 1
('turtle', 'suddenly') 1
('wonder', 'at') 1
('c', 'any') 1
('anything', 'so') 1
('"william', 'the') 1
('girl', 'said') 1
('humble', 'tone') 1
('legs', 'of') 1
('and', 'writing-desks') 1
('might', 'bite') 1
('custard', 'pine-apple') 1
('sixpence', '_i_') 1
('listeners', 'were') 1
('do', 'almost') 1
('where', 'are') 1
('use', 'denying') 1
('common', 'way') 1
('it', 'uneasily') 1
('it', 'proves') 1
('then', 'stop') 1
('they', 'lessen') 1
('besides', 'all') 1
('"too', 'far') 1
('mark', 'the') 1
('both', 'go') 1
('by-the-bye', 'what') 1
('tea', 'when') 1
('voices', 'all') 1
('were', 'ten') 1
('newspapers', 'at') 1
('jurymen', 'on') 1
('chief', 'difficulty') 1
('that', 'squeaked') 1
('began', 'shrinking') 1
('duchess', 'it') 1
('severely', 'as') 1
('identification', 'number') 1
('very', 'good-naturedly') 1
('matter', 'much') 1
('three', 'your') 1
('rest', 'waited') 1
('roses', 'off') 1
('the', 'after-time') 1
('hand', 'if') 1
('high', 'to') 1
('earth', 'at') 1
('business@pglaf', 'org') 1
('shade', 'however') 1
('then', 'added') 1
('king', 'with') 1
('had', 'changed') 1
('alice', 'joined') 1
('business', 'of') 1
('//pglaf', 'org/fundraising') 1
('voices', 'hold') 1
('herself', 'if') 1
('it', 'likes') 1
('down', 'one') 1
('rather', 'sharply') 1
('moving', 'them') 1
('something', 'interesting') 1
('fell', 'very') 1
('them', 'before') 1
('shilling', 'the') 1
('as', 'solemn') 1
('any', 'use') 1
('of', 'changes') 1
('had', 'plenty') 1
('cauldron', 'of') 1
('two', '"') 1
('virus', 'or') 1
('court', 'bring') 1
('which', 'shall') 1
('recovered', 'his') 1
('herself', 'this') 1
('keep', 'it') 1
('and', 'mustard') 1
('a', 'frightened') 1
('its', 'sleep') 1
('taxes', 'the') 1
('the', 'dream') 1
('on', 'all') 1
('gutenberg', 'is') 1
('voice', 'now') 1
('and', 'return') 1
('convert', 'to') 1
('young', 'man') 1
('before', 'as') 1
('required', 'to') 1
('again', 'ou') 1
('in', 'surprise') 1
('time', 'that') 1
('bright', 'brass') 1
('rabbit', 'asked') 1
('your', 'nose') 1
('stalk', 'out') 1
('survive', 'without') 1
('these', 'said') 1
('your', 'little') 1
('t', 'time') 1
('purpose', '1') 1
('she', 'sentenced') 1
('me', 'who') 1
('defective', 'work') 1
('accounts', 'for') 1
('picture', 'up') 1
('book', 'written') 1
('sobs', 'of') 1
('display', 'perform') 1
('games', 'now') 1
('i', 'gave') 1
('led', 'right') 1
('made', 'the') 1
('and', 'may') 1
('made', 'it') 1
('one', 'quite') 1
('close', 'above') 1
('a', 'stalk') 1
('soldiers', 'carrying') 1
('are', 'the') 1
('should', 'push') 1
('evidence', 'yet') 1
('delight', 'and') 1
('died', 'away') 1
('on', 'if') 1
('make', 'it') 1
('pray', 'don') 1
('rules', 'for') 1
('thump', 'thump') 1
('gryphon', 'lifted') 1
('you', 'haven') 1
('might', 'end') 1
('your', 'hat') 1
('rabbit-hole', 'alice') 1
('mean', 'by') 1
('certain', 'implied') 1
('have', 'the') 1
('history', 'you') 1
('appearing', 'and') 1
('editions', 'all') 1
('she', 'wandered') 1
('license', 'the') 1
('is', 'synonymous') 1
('us', 'get') 1
('of', 'thought') 1
('same', 'height') 1
('within', '30') 1
('delight', 'which') 1
('words', 'soo') 1
('green', 'stuff') 1
('panther', 'took') 1
('m', 'opening') 1
('fills', 'the') 1
('up', 'she') 1
('different', 'sizes') 1
('tiny', 'hands') 1
('escape', 'again') 1
('long', 'hookah') 1
('payments', 'should') 1
('been', 'picked') 1
('a', 'wild') 1
('let', 'dinah') 1
('people', 'about') 1
('minded', 'their') 1
('loveliest', 'garden') 1
('last', 'time') 1
('do', 'copyright') 1
('gutenberg-tm', 'and') 1
('tiny', 'white') 1
('collection', 'despite') 1
('english', 'now') 1
('existence', 'and') 1
('facility', 'http') 1
('donation', 'methods') 1
('turned', 'angrily') 1
('rabbit', 'returning') 1
('an', 'open') 1
('most', 'uncommonly') 1
('fairbanks', 'ak') 1
('poor', 'child') 1
('little', 'pebbles') 1
('at', 'applause') 1
('caterpillar', 'i') 1
('was', 'empty') 1
('gave', 'the') 1
('pinch', 'it') 1
('the', 'frightened') 1
('crown', 'william') 1
('fellow', 'the') 1
('mouse', 'you') 1
('what', 'will') 1
('they', 'in') 1
('hurry', 'no') 1
('just', 'think') 1
('his', 'friends') 1
('nothing', 'perhaps') 1
('him', 'as') 1
('rabbits', 'i') 1
('out', 'behead') 1
('swim', '"') 1
('goes', 'his') 1
('word', 'you') 1
('never', 'before') 1
('scale', 'how') 1
('temper', 'and') 1
('sky', 'all') 1
('and', 'wags') 1
('violence', 'that') 1
('to', 'end') 1
('far', 'below') 1
('breathe', 'i') 1
('her', 'after') 1
('paw', 'lives') 1
('throw', 'us') 1
('really', 'clever') 1
('gazing', 'up') 1
('pepper', 'when') 1
('pigs', 'and') 1
('wide', 'spread') 1
('course', 'yes') 1
('begun', 'well') 1
('spoke', 'alice') 1
('which', 'puzzled') 1
('other', 'parts') 1
('high', 'whoever') 1
('shall', 'they') 1
('s', 'croquet-ground') 1
('cheshire', 'cats') 1
('re', 'changed') 1
('reach', 'the') 1
('twenty', 'at') 1
('tell', 'it') 1
('cat', 'without') 1
('the', 'lowing') 1
('a', 'day-school') 1
('room', 'the') 1
('duck', 'and') 1
('wrong', 'sighed') 1
('lessons', 'you') 1
('60', 'days') 1
('refund"', 'described') 1
('while', 'and') 1
('clever', 'thing') 1
('increasing', 'the') 1
('two', 'were') 1
('elbow', 'against') 1
('get"', 'is') 1
('offer', 'him') 1
('a', 'foot') 1
('cried', 'so') 1
('head', 'with') 1
('i', 'once') 1
('hall', 'was') 1
('same', 'words') 1
('second', 'opportunity') 1
('see', 'so') 1
('done', 'thought') 1
('tried', 'very') 1
('myself', 'i') 1
('fees', 'or') 1
('some', 'were') 1
('e', 'unless') 1
('lonely', 'and') 1
('dainties', 'would') 1
('sit', 'with') 1
('baby', 'it') 1
('worm', 'the') 1
('leaves', 'i') 1
('one', 'old') 1
('round', 'eyes') 1
('she', 'knelt') 1
('till', 'its') 1
('bitter', 'and') 1
('some', 'while') 1
('were', 'inside') 1
('d', 'she') 1
('must', 'cease') 1
('hair', 'goes') 1
('mean', 'you') 1
('keep', 'ebooks') 1
('court', 'what') 1
('web', 'page') 1
('earth', 'let') 1
('asked', 'your') 1
('somewhere', 'alice') 1
('herself', 'alice') 1
('jaws', 'are') 1
('that', 'do') 1
('know', 'one') 1
('thistle', 'again') 1
('wish', 'people') 1
('pages', 'for') 1
('fight', 'was') 1
('or', 'heard') 1
('damaged', 'disk') 1
('pool', 'was') 1
('cheap', 'sort') 1
('have', 'of') 1
('stopped', 'to') 1
('tone', 'but') 1
('crash', 'as') 1
('be', 'named') 1
('tiptoe', 'and') 1
('mistake', 'about') 1
('accepting', 'unsolicited') 1
('vote', 'the') 1
('heart', 'of') 1
('s', 'him') 1
('stoop', 'soup') 1
('walked', 'on') 1
('label', 'this') 1
('rather', 'finish') 1
('now', 'let') 1
('day', 'is') 1
('just', 'the') 1
('head', 'if') 1
('me', 'beautifully') 1
('only', 'too') 1
('across', 'his') 1
('cost', 'and') 1
('passed', 'on') 1
('great', 'or') 1
('made', 'believe') 1
('as', 'but') 1
('hatter', 'hurriedly') 1
('his', 'slate') 1
('angry', 'therefore') 1
('replied', 'at') 1
('talking', 'just') 1
('advisable', '"') 1
('hare', 'was') 1
('my', 'gloves') 1
('and', 'ourselves') 1
('poured', 'a') 1
('porpoise', 'close') 1
('was', 'hardly') 1
('duchess', 'asked') 1
('voice', 'let') 1
('mustard', 'isn') 1
('days', 'wrong') 1
('owl', 'as') 1
('really', 'offended') 1
('you', 'just') 1
('tired', 'and') 1
('melancholy', 'words') 1
('walk', 'with') 1
('longitude', 'i') 1
('will', 'hear') 1
('for', 'dinner') 1
('mind', 'as') 1
('carried', 'the') 1
('wrapping', 'itself') 1
('people', 'here') 1
('your', 'pocket') 1
('stays', 'the') 1
('works', 'see') 1
('cook', 'tulip-roots') 1
('the', 'guinea-pig') 1
('take', 'off') 1
('him', 'sighing') 1
('all', 'wrote') 1
('minute', 'the') 1
('simple', 'rules') 1
('distributing', 'or') 1
('ending', 'with') 1
('had', 'closed') 1
('can', 'swim') 1
('to', 'annoy') 1
('argument', 'with') 1
('edition', 'most') 1
('live', 'in') 1
('a', 'lesson') 1
('nice', 'soft') 1
('only', 'as') 1
('never-ending', 'meal') 1
('indemnify', 'and') 1
('they', 'set') 1
('washing', 'said') 1
('eye', 'i') 1
('more', 'there') 1
('broken', 'to') 1
('knew', 'who') 1
('pinched', 'by') 1
('you', 'cause') 1
('accustomed', 'to') 1
('scrambling', 'about') 1
('contemptuously', 'who') 1
('how', 'dreadfully') 1
('mind', 'the') 1
('hatter', 'added') 1
('all', 'played') 1
('it', 'muttering') 1
('//gutenberg', 'org/license') 1
('it', 'purring') 1
('everybody', 'looked') 1
('was', 'peering') 1
('now', 'which') 1
('comes', 'to') 1
('queen', 'till') 1
('unusually', 'large') 1
('site', 'which') 1
('replied', 'not') 1
('them', 'word') 1
('and', 'fidgeted') 1
('down', 'stupid') 1
('walked', 'down') 1
('for', 'thirty') 1
('the', 'mallets') 1
('everything', 'seemed') 1
('go', 'for') 1
('ask', 'help') 1
('to', 'twist') 1
('tried', 'another') 1
('teacup', 'instead') 1
('with', 'others') 1
('this', 'down') 1
('ear', 'you') 1
('as-is', 'with') 1
('choked', 'with') 1
('sea', 'so') 1
('day', 'did') 1
('so', 'full') 1
('and', 'listen') 1
('was', 'kindly') 1
('delightful', 'thing') 1
('get', 'any') 1
('the', 'moon') 1
('else', 'you') 1
('before', 'you') 1
('removed', 'the') 1
('all', 'to') 1
('had', 'fluttered') 1
('his', 'arm') 1
('king', 'it') 1
('dismay', 'and') 1
('does', 'your') 1
('the', 'the') 1
('with', 'fury') 1
('advantage', 'from') 1
('yourself', 'airs') 1
('trying', 'every') 1
('her', 'there') 1
('take', 'out') 1
('tail', 'certainly') 1
('just', 'about') 1
('contain', 'a') 1
('yet', 'and') 1
('explain', 'myself') 1
('summer', 'days') 1
('i', 'then') 1
('what', 'work') 1
('scream', 'of') 1
('it', 'matters') 1
('growing', 'small') 1
('other', 'bit') 1
('sleep', 'you') 1
('originator', 'of') 1
('her', 'alice') 1
('in', 'waiting') 1
('a', 'compilation') 1
('question', 'was') 1
('their', 'forepaws') 1
('to', 'anyone') 1
('their', 'hearing') 1
('fit', '"') 1
('reading', 'or') 1
('were', 'or') 1
('away', 'she') 1
('nonsense', 'alice') 1
('a', 'dodo') 1
('thunder', 'and') 1
('meekly', 'replied') 1
('up', 'if') 1
('a', 'pie') 1
('eyes', 'anxiously') 1
('that', 'rate') 1
('jaws', 'i') 1
('a', 'corner') 1
('reply', 'for') 1
('she', 'concluded') 1
('course', 'he') 1
('eagerly', 'there') 1
('help', 'bursting') 1
('about', 'said') 1
('be', 'impertinent') 1
('ve', 'forgotten') 1
('so', 'extremely') 1
('his', 'sorrow') 1
('crawled', 'away') 1
('william', 'to') 1
('contemptuously', 'i') 1
('two', 'little') 1
('many', 'more') 1
('bill', 'she') 1
('had', 'you') 1
('think', 'at') 1
('better', 'ask') 1
('sit', 'up') 1
('carefully', 'remarking') 1
('he', 'moved') 1
('on', 'crying') 1
('much', 'pleased') 1
('or', 'would') 1
('below', 'a') 1
('hungry', 'in') 1
('declare', 'it') 1
('never', 'so') 1
('beast', 'screamed') 1
('them', 'something') 1
('him', 'he') 1
('got', 'any') 1
('only', 'yesterday') 1
('date', 'on') 1
('a', 'writing-desk') 1
('off', 'quite') 1
('including', 'obsolete') 1
('can', 'thoroughly') 1
('did', 'alice') 1
('love', 'tis') 1
('angry', 'tone') 1
('whole', 'cause') 1
('were', 'placed') 1
('or', 'might') 1
('stay', 'in') 1
('place', 'with') 1
('queer', 'thing') 1
('sense', 'in') 1
('did', 'there') 1
('quietly', 'and') 1
('a', 'queer') 1
('not', 'used') 1
('opening', 'its') 1
('pity', 'it') 1
('draw', 'treacle') 1
('knew', 'to') 1
('please', 'then') 1
('better', 'and') 1
('yours', '"') 1
('hm', 'no') 1
('performed', 'viewed') 1
('even', 'get') 1
('our', 'web') 1
('find', 'my') 1
('own', 'courage') 1
('doing', 'here') 1
('hands', 'were') 1
('dormouse', 'turned') 1
('marched', 'off') 1
('types', 'of') 1
('even', 'spoke') 1
('no', 'accounting') 1
('about', 'stopping') 1
('return', 'the') 1
('feathers', 'the') 1
('"up', 'above') 1
('distributor', 'under') 1
('which', 'tied') 1
('until', 'it') 1
('t', 'prove') 1
('promoting', 'the') 1
('was', 'trembling') 1
('had', 'slipped') 1
('see', 'she') 1
('liked', 'and') 1
('well', 'either') 1
('how', 'should') 1
('the', 'twelve') 1
('again', 'it') 1
('might', 'happen') 1
('spoke', 'as') 1
('yes', 'it') 1
('table', 'said') 1
('clasped', 'upon') 1
('voice', 'what') 1
('slowly', 'after') 1
('all', 'other') 1
('again', 'cried') 1
('not', 'tell') 1
('you', 'goose') 1
('thing', 'yourself') 1
('works', 'on') 1
('his', 'remark') 1
('might', 'belong') 1
('wonder', 'alice') 1
('bit', 'she') 1
('itself', 'half') 1
('sixteenth', 'added') 1
('cat', 'only') 1
('glass', 'now') 1
('a', 'most') 1
('a', 'teacup') 1
('hatter', 'looked') 1
('re', 'like') 1
('puzzling', 'question') 1
('were', 'seated') 1
('kill', 'it') 1
('soup', 'is') 1
('water', 'had') 1
('swam', 'about') 1
('my', 'history') 1
('mouth', 'with') 1
('you', 'it') 1
('eagerly', 'for') 1
('despair', 'she') 1
('furrows', 'the') 1
('twinkling', 'half-past') 1
('compressed', 'marked') 1
('over', 'here') 1
('be', 'renamed') 1
('axes', 'said') 1
('tears', 'no') 1
('standing', 'before') 1
('really', 'said') 1
('this', 'cat') 1
('them', 'sour') 1
('under', 'its') 1
('for', 'ten') 1
('turtle', 'who') 1
('remarked', 'oh') 1
('grow', 'smaller') 1
('shingle', 'will') 1
('terrier', 'you') 1
('tougher', 'than') 1
('spell', 'stupid') 1
('altogether', 'but') 1
('table', 'for') 1
('renamed', 'creating') 1
('here', 'run') 1
('a', 'fine') 1
('round', 'alice') 1
('and', 'without') 1
('different', 'but') 1
('email', 'newsletter') 1
('be', 'nervous') 1
('fact', 'there') 1
('was', 'dozing') 1
('its', 'great') 1
('sing', 'said') 1
('sternly', 'explain') 1
('alarm', 'this') 1
('without', 'charge') 1
('family', 'always') 1
('an', 'honest') 1
('were', 'silent') 1
('she', 'grew') 1
('is', '64-6221541') 1
('re', 'wrong') 1
('specific', 'permission') 1
('for', 'making') 1
('alice', 'call') 1
('mouse', 'doesn') 1
('once', 'said') 1
('hare', 'visit') 1
('uneasy', 'to') 1
('must', 'require') 1
('smallest', 'idea') 1
('and', 'addresses') 1
('open', 'it') 1
('excellent', 'plan') 1
('her', 'other') 1
('ran', 'to') 1
('to', 'stand') 1
('be', 'very') 1
('is', 'all') 1
('angrily', 'or') 1
('ringlets', 'at') 1
('then', 'explain') 1
('agreement', 'see') 1
('flinging', 'the') 1
('almost', 'anything') 1
('stood', 'still') 1
('means', 'to') 1
('handed', 'over') 1
('and', 'legs') 1
('life', 'the') 1
('is', 'another') 1
('gallons', 'of') 1
('knuckles', 'it') 1
('emphasis', 'looking') 1
('mad', 'people') 1
('since', 'that') 1
('you', 'in') 1
('performing', 'displaying') 1
('boots', 'every') 1
('its', 'body') 1
('say', 'which') 1
('swam', 'to') 1
('mad', 'as') 1
('perhaps', 'after') 1
('handsome', 'pig') 1
('said', 'right') 1
('her', 'anger') 1
('extremely', 'small') 1
('grow', 'at') 1
('oh', 'it') 1
('serpents', 'night') 1
('began', 'moving') 1
('is', '"the') 1
('tongue', 'hanging') 1
('sea', 'though') 1
('taken', 'the') 1
('lobster', 'alice') 1
('want', 'yours') 1
('sharply', 'for') 1
('with', 'hearts') 1
('cook', 'took') 1
('again', 'singing') 1
('a', 'remarkable') 1
('of', 'exporting') 1
('unlink', 'or') 1
('stood', 'the') 1
('is', 'gay') 1
('so', 'dreadfully') 1
('unenforceability', 'of') 1
('in', 'search') 1
('come', 'away') 1
('distant', 'green') 1
('languid', 'sleepy') 1
('better', 'i') 1
('youth', 'one') 1
('eyes', 'ran') 1
('felt', 'ready') 1
('reply', 'idiot') 1
('direction', 'waving') 1
('worry', 'it') 1
('the', 'company') 1
('feel', 'a') 1
('perfectly', 'idiotic') 1
('once', 'the') 1
('then', 'came') 1
('alice', 'oh') 1
('paw', 'trying') 1
('surprise', 'that') 1
('have', 'put') 1
('come', 'my') 1
('who', 'might') 1
('handed', 'back') 1
('breathe', 'when') 1
('crying', 'like') 1
('king', 'hastily') 1
('next', 'when') 1
('times', 'as') 1
('now', 'at') 1
('great', 'puzzle') 1
('chimney', 'and') 1
('great', 'crash') 1
('so', 'useful') 1
('domain', 'ebooks') 1
('touch', 'her') 1
('the', 'proper') 1
('waistcoat-pocket', 'or') 1
('various', 'pretexts') 1
('work', '-') 1
('for', '"') 1
('rise', 'like') 1
('miss', 'this') 1
('other', 'ways') 1
('those', 'of') 1
('was', 'evidently') 1
('they', 'came') 1
('added', 'them') 1
('is', 'also') 1
('of', 'em') 1
('re', 'enough') 1
('often', 'created') 1
('violently', 'that') 1
('letters', 'it') 1
('and', 'sadly') 1
('being', 'arches') 1
('and', 'go') 1
('s', 'why') 1
('cats', 'for') 1
('them', 'free') 1
('uncorked', 'it') 1
('-', 'if') 1
('slate', 'herald') 1
('widest', 'variety') 1
('moment', 'like') 1
('alice', 'quietly') 1
('license', 'for') 1
('zigzag', 'and') 1
('and', 'several') 1
('does', 'which') 1
('even', 'stigand') 1
('course', 'said') 1
('began', 'o') 1
('course', 'just') 1
('direction', 'it') 1
('done', 'by') 1
('mentioned', 'dinah') 1
('large', 'kitchen') 1
('by', 'wild') 1
('looked', 'like') 1
('fish', 'came') 1
('in', 'locations') 1
('of', 'milk') 1
('"be', 'what') 1
('which', 'has') 1
('table', 'all') 1
('ll', 'miss') 1
('jurymen', 'no') 1
('very', 'solemnly') 1
('moment', 'a') 1
('consented', 'to') 1
('then', 'dipped') 1
('two', 'days') 1
('yawned', 'once') 1
('luckily', 'for') 1
('remember', 'half') 1
('proves', 'nothing') 1
('the', 'old') 1
('mouse', 'heard') 1
('abide', 'by') 1
('once', 'took') 1
('and', 'drinking') 1
('three', 'to') 1
('or', 'courtiers') 1
('table', 'set') 1
('words', 'did') 1
('any', 'pepper') 1
('the', 'prizes') 1
('little', 'histories') 1
('being', 'fast') 1
('beds', 'of') 1
('have', 'our') 1
('door', 'with') 1
('words', 'i') 1
('rather', 'alarmed') 1
('right', 'paw') 1
('govern', 'what') 1
('me', 'think') 1
('bread-and-butter', 'just') 1
('said', 'two') 1
('queer', 'to-day') 1
('stockings', 'for') 1
('say', 'pig') 1
('solemnly', 'rising') 1
('and', 'yesterday') 1
('purring', 'not') 1
('he', 'kept') 1
('of', 'herself') 1
('high', 'chapter') 1
('provoking', 'to') 1
('a', 'tea-tray') 1
('crab', 'he') 1
('very', 'middle') 1
('take', 'a') 1
('the', 'jar') 1
('hoarsely', 'all') 1
('saying', 'tell') 1
('put', 'out') 1
('oldest', 'rule') 1
('turtle', 'drive') 1
('agreement', 'by') 1
('becoming', 'and') 1
('f', '6') 1
('life', 'never') 1
('dear', 'quiet') 1
('t', 'begin') 1
('grass', 'rustled') 1
('with', 'variations') 1
('teacups', 'would') 1
('beat', 'them') 1
('and', 'eels') 1
('and', 'meat') 1
('knee', 'as') 1
('a', 'distribution') 1
('modified', 'and') 1
('many', 'out-of-the-way') 1
('quite', 'sure') 1
('dodo', 'had') 1
('states', 'if') 1
('and', 'writhing') 1
('first', 'they') 1
('finished', 'off') 1
('night', 'let') 1
('subject', 'go') 1
('and', 'rabbits') 1
('how', 'cheerfully') 1
('the', 'flurry') 1
('dripping', 'wet') 1
('rest', 'were') 1
('said', 'anxiously') 1
('property', 'trademark/copyright') 1
('arm', 'affectionately') 1
('five', 'i') 1
('would', 'ever') 1
('good', 'english') 1
('over', 'however') 1
('same', 'side') 1
('are', 'so') 1
('work', 'nibbling') 1
('where', 'have') 1
('timidly', 'but') 1
('remarked', 'if') 1
('deal', 'this') 1
('not', 'easy') 1
('nest', 'alice') 1
('dream', 'the') 1
('each', 'hand') 1
('that', 'saves') 1
('dish', 'or') 1
('are', 'often') 1
('seals', 'turtles') 1
('high', 'but') 1
('a', 'sad') 1
('the', 'riddle') 1
('that', 'generally') 1
('dream', 'it') 1
('anything', 'else') 1
('looked', 'into') 1
('the', 'jelly-fish') 1
('be', 'clearer') 1
('of', 'escape') 1
('his', 'tea') 1
('no', 'toys') 1
('speak', 'roughly') 1
('whenever', 'any') 1
('advice', 'from') 1
('curls', 'got') 1
('and', 'modern') 1
('nothing', 'said') 1
('cheerfully', 'he') 1
('cut', 'it') 1
('walk', 'a') 1
('darkness', 'as') 1
('fanned', 'herself') 1
('tipped', 'over') 1
('conversations', 'so') 1
('may', 'copy') 1
('followed', 'her') 1
('wrong', 'from') 1
('life', 'to') 1
('off', 'sneezing') 1
('donate', 'international') 1
('dipped', 'it') 1
('half', 'shut') 1
('school', 'at') 1
('dinn', 'may') 1
('question', 'of') 1
('you', 'share') 1
('and', 'rubbing') 1
('would', 'put') 1
('and', 'leave') 1
('shoes', 'under') 1
('precious', 'nose') 1
('the', 'gross') 1
('but', 'checked') 1
('i', 'feared') 1
('savage', 'if') 1
('tarts', 'upon') 1
('fees', 'that') 1
('agreement', 'there') 1
('bottle', 'saying') 1
('i', 'the') 1
('all', 'access') 1
('was', 'room') 1
('cat', 'sitting') 1
('has', 'become') 1
('stand', 'down') 1
('open', 'them') 1
('good', 'manners') 1
('including', 'but') 1
('here', 'directly') 1
('learn', 'lessons') 1
('ought', 'and') 1
('court', 'of') 1
('but', 'those') 1
('a', 'vegetable') 1
('natural', 'but') 1
('alice', 'put') 1
('itself', 'out') 1
('present', 'thought') 1
('clearly', 'alice') 1
('high', 'said') 1
('tired', 'herself') 1
('was', 'thinking') 1
('interrupted', 'yawning') 1
('rabbit', 'put') 1
('indeed', 'cried') 1
('manners', 'for') 1
('the', 'waters') 1
('rabbit-hole', 'went') 1
('after', 'hunting') 1
('the', 'locks') 1
('quickly', 'as') 1
('not', 'noticed') 1
('the', 'busy') 1
('was', 'peeping') 1
('away', 'my') 1
('ebook', 'or') 1
('away', 'besides') 1
('deal', 'worse') 1
('99712', 'but') 1
('girls', 'eat') 1
('are', 'ferrets') 1
('cut', 'some') 1
('that', 'proved') 1
('past', 'it') 1
('our', 'family') 1
('he', 'checked') 1
('hastily', 'and') 1
('thing', 'never') 1
('to', 'receive') 1
('work', 'as') 1
('now', 'in') 1
('not', 'as') 1
('picking', 'the') 1
('back', 'however') 1
('seen', 'the') 1
('come', 'over') 1
('air', 'mixed') 1
('and', 'till') 1
('ever', 'happen') 1
('retire', 'in') 1
('over', 'heels') 1
('gloves', 'that') 1
('may', 'go') 1
('master', 'though') 1
('expecting', 'every') 1
('from', 'ear') 1
('on', 'talking') 1
('the', 'pebbles') 1
('question', 'what') 1
('at', 'tea-time') 1
('kiss', 'my') 1
('work', 'may') 1
('off', 'writing') 1
('the', 'ten') 1
('notice', 'is') 1
('her', 'yes') 1
('said', 'just') 1
('spectacles', 'where') 1
('time', 'i') 1
('timidly', 'as') 1
('suppose', 'yes') 1
('she', 'doesn') 1
('to', 'invent') 1
('no', 'arches') 1
('a', 'steam-engine') 1
('maximum', 'disclaimer') 1
('telescope', 'i') 1
('way', 'back') 1
('king', 'triumphantly') 1
('pressed', 'hard') 1
('it', 'asked') 1
('are', 'legally') 1
('here', 'thought') 1
('head', 'in') 1
('shall', 'only') 1
('somehow', 'fallen') 1
('run', 'over') 1
('copied', 'and') 1
('my', 'arm') 1
('have', 'everybody') 1
('things', 'twinkled') 1
('any', 'copy') 1
('came', 'trotting') 1
('for', 'sneezing') 1
('people', 'had') 1
('not', 'long') 1
('race-course', 'in') 1
('and', 'feebly') 1
('not', 'going') 1
('proceed', '"edwin') 1
('rather', 'unwillingly') 1
('treacle', 'from') 1
('somebody', 'so') 1
('remain', 'where') 1
('rule', 'in') 1
('whatever', 'said') 1
('look', 'and') 1
('alice', 'anything') 1
('tongue', 'ma') 1
('is', 'provided') 1
('dogs', 'either') 1
('turned', 'crimson') 1
('or', 'small') 1
('s', 'certainly') 1
('1', 'd') 1
('with', 'him') 1
('4', 'except') 1
('word', 'with') 1
('tide', 'rises') 1
('alice', 'considered') 1
('verses', 'to') 1
('quite', 'understand') 1
('wonder', 'and') 1
('for', 'he') 1
('my', 'jaw') 1
('red', 'rose-tree') 1
('child', 'again') 1
('well', 'in') 1
('the', 'oldest') 1
('ever', 'so') 1
('lessons', 'said') 1
('her', 'mind') 1
('against', 'accepting') 1
('another', 'snatch') 1
('work', 'from') 1
('fell', 'upon') 1
('small', 'enough') 1
('between', 'the') 1
('hare', 'that') 1
('to', 'agree') 1
('english', 'thought') 1
('knew', 'how') 1
('minding', 'their') 1
('livery', 'came') 1
('and', 'throw') 1
('concerning', 'tax') 1
('then', 'silence') 1
('duchess', 'began') 1
('presents', 'like') 1
('wanted', 'leaders') 1
('happened', 'so') 1
('hand', 'on') 1
('principal', 'office') 1
('machine', 'readable') 1
('themselves', 'up') 1
('rustling', 'in') 1
('long', 'grass') 1
('appearance', 'in') 1
('authority', 'among') 1
('natural', 'to') 1
('to', 'everything') 1
('honest', 'man') 1
('anything', 'with') 1
('be', 'quick') 1
('than', 'three') 1
('the', 'flamingo') 1
('next', 'if') 1
('carry', 'out') 1
('the', 'stairs') 1
('is', 'owed') 1
('unimportant', 'alice') 1
('cats', 'cried') 1
('have', 'this') 1
('little', 'toss') 1
('executioner', 'went') 1
('rumbling', 'of') 1
('serpent', 'screamed') 1
('garden', 'how') 1
('other', 'project') 1
('tongue', 'said') 1
('hatter', 'so') 1
('everything', 'i') 1
('dogs', 'it') 1
('feeling', 'quite') 1
('curiosity', 'and') 1
('is', 'bill') 1
('disappeared', 'so') 1
('the', 'chief') 1
('of', 'tiny') 1
('a', 'couple') 1
('somewhere', 'down') 1
('s', 'plenty') 1
('every', 'day') 1
('receive', 'a') 1
('queen', 'to-day') 1
('the', 'archbishop') 1
('half', 'afraid') 1
('were', 'writing') 1
('passage', 'not') 1
('have', 'removed') 1
('ugh', 'said') 1
('a', 'pleasant') 1
('one', 'would') 1
('any', 'disclaimer') 1
('with', 'these') 1
('tea', 'i') 1
('no', 'representations') 1
('once', 'but') 1
('charges', 'at') 1
('all', 'use') 1
('much', 'larger') 1
('again', 'keep') 1
('things', 'indeed') 1
('in', 'most') 1
('yourself', 'for') 1
('much', 'evidence') 1
('would', 'break') 1
('riper', 'years') 1
('alice', 'seriously') 1
('thimble', 'said') 1
('he', 'shall') 1
('highest', 'tree') 1
('be', 'some') 1
('hear', 'about') 1
('now', 'dinah') 1
('very', 'rude') 1
('means', 'that') 1
('every', 'word') 1
('can', 'receive') 1
('head', 'contemptuously') 1
('to', 'day') 1
('make', 'any') 1
('in', 'like') 1
('will', 'prosecute') 1
('by', 'u') 1
('talk', 'in') 1
('a', 'holiday') 1
('carried', 'on') 1
('upon', 'an') 1
('goes', 'like') 1
('difficulties', 'great') 1
('d', 'get') 1
('are', 'accepted') 1
('the', 'games') 1
('shared', 'with') 1
('printed', 'editions') 1
('new', 'computers') 1
('would', 'always') 1
('on', 'yawning') 1
('kind', 'express') 1
('plan', 'exclaimed') 1
('how', 'fond') 1
('pool', 'all') 1
('it', 'never') 1
('knot', 'said') 1
('noticed', 'with') 1
('ground', 'alice') 1
('pig', 'alice') 1
('was', 'full') 1
('formats', 'will') 1
('was', 'busily') 1
('least', 'idea') 1
('work', 'copyright') 1
('queer', 'everything') 1
('music', 'ah') 1
('it', 'woke') 1
('disclaimer', 'of') 1
('brought', 'it') 1
('coming', 'down') 1
('christmas', 'and') 1
('it', 'alice') 1
('hedgehog', 'just') 1
('with', 'us') 1
('meeting', 'adjourn') 1
('bottle', 'that') 1
('here', 'why') 1
('fig', 'said') 1
('are', 'your') 1
('branches', 'and') 1
('tarts', 'made') 1
('there', 'may') 1
('very', 'true') 1
('a', 'court') 1
('she', 'left') 1
('hastily', 'for') 1
('set', 'out') 1
('why', 'then') 1
('stairs', 'how') 1
('she', 'hurried') 1
('plate', 'alice') 1
('nevertheless', 'she') 1
('executed', 'on') 1
('sleep', 'when') 1
('room', 'they') 1
('on', 'tiptoe') 1
('s', 'asleep') 1
('panted', 'as') 1
('lived', 'on') 1
('contract', 'except') 1
('production', 'promotion') 1
('fall', 'a') 1
('explanation', 'the') 1
('left', 'alive') 1
('you', 'forget') 1
('e', '6') 1
('plan', 'it') 1
('in', 'to') 1
('the', 'internal') 1
('tail', 'as') 1
('other', 'i') 1
('sneezing', 'on') 1
('advantage', 'said') 1
('alice', 'loudly') 1
('through', 'thought') 1
('of', 'nearly') 1
('kept', 'getting') 1
('to', 'follow') 1
('made', 'no') 1
('took', 'me') 1
('sink', 'into') 1
('see', 'when') 1
('denied', 'so') 1
('nearer', 'alice') 1
('had', 'meanwhile') 1
('compliance', 'for') 1
('that', 'ridiculous') 1
('t', 'directed') 1
('school', 'every') 1
('i', 'daresay') 1
('must', 'remember') 1
('who', 'would') 1
('had', 'caught') 1
('the', 'pie') 1
('eagerly', 'the') 1
('cried', 'wake') 1
('rabbit', 'hastily') 1
('own', 'i') 1
('slates', 'but') 1
('the', 'directions') 1
('they', 'wouldn') 1
('thing', 'that') 1
('he', 'hurried') 1
('herself', 'lying') 1
('good', 'advice') 1
('of', 'finding') 1
('treacle-well', 'eh') 1
('with', 'only') 1
('801', '596-1887') 1
('m', 'why') 1
('that', 'lay') 1
('not', 'above') 1
('seen', 'she') 1
('4557', 'melan') 1
('considered', 'him') 1
('site', 'includes') 1
('paw', 'round') 1
('ground', 'so') 1
('them', 'about') 1
('dodo', 'then') 1
('i', 'growl') 1
('for', 'going') 1
('happen', '"miss') 1
('wine', 'she') 1
('lory', 'with') 1
('keeping', 'so') 1
('court', 'all') 1
('too', 'close') 1
('your', 'opinion') 1
('of', 'goldfish') 1
('thrown', 'out') 1
('them', 'but') 1
('joined', 'wow') 1
('had', 'somehow') 1
('s', 'ears') 1
('them', 'this') 1
('that', 'again') 1
('iv', 'the') 1
('knocking', 'and') 1
('came', 'flying') 1
('such', 'dainties') 1
('put', 'my') 1
('soldiers', 'wandered') 1
('like', 'keeping') 1
('had', 'known') 1
('further', 'opportunities') 1
('gardeners', 'but') 1
('but', 'was') 1
('melancholy', 'air') 1
('afraid', 'but') 1
('that', 'curious') 1
('called', 'the') 1
('give', 'him') 1
('the', 'status') 1
('without', 'complying') 1
('drew', 'her') 1
('off', 'into') 1
('gravy', 'and') 1
('that', 'arise') 1
('twelve', 'and') 1
('fitness', 'for') 1
('hands', 'at') 1
('hatter', 'shook') 1
('hear', 'some') 1
('wore', 'his') 1
('em', 'do') 1
('garden', 'first') 1
('the', 'tiny') 1
('remaining', 'provisions') 1
('hypertext', 'form') 1
('how', 'surprised') 1
('same', 'solemn') 1
('anything', 'near') 1
('writhing', 'of') 1
('large', 'canvas') 1
('table', 'nothing') 1
('curious', 'croquet-ground') 1
('off', 'quarrelling') 1
('sugar', 'my') 1
('life', 'just') 1
('are', 'nobody') 1
('of', 'mississippi') 1
('org/fundraising', 'contributions') 1
('and', 'opened') 1
('fish', 'game') 1
('broke', 'off') 1
('noticing', 'her') 1
('solemnly', 'presented') 1
('on', 'till') 1
('nicely', 'straightened') 1
('lessen', 'from') 1
('defective', 'or') 1
('when', 'we') 1
('"such', 'a') 1
('poison', 'it') 1
('idea', 'was') 1
('struck', 'her') 1
('to', 'settle') 1
('were', 'nine') 1
('m', 'said') 1
('ran', 'as') 1
('person', 'then') 1
('whatever', 'happens') 1
('angrily', 'at') 1
('murdering', 'the') 1
('one', 'time') 1
('can', 'kick') 1
('lesson-books', 'and') 1
('old', 'thing') 1
('real', 'turtle') 1
('shore', 'and') 1
('very', 'sulkily') 1
('this', 'piece') 1
('it', 'something') 1
('constant', 'howling') 1
('good', 'terms') 1
('have', 'ordered') 1
('been', 'found') 1
('the', 'bread-knife') 1
('i', 'cut') 1
('queen', 'it') 1
('last', 'they') 1
('moment', 'they') 1
('leaning', 'her') 1
('very', 'grave') 1
('that', 'your') 1
('carrying', 'the') 1
('usual', 'you') 1
('bone', 'in') 1
('sadly', 'down') 1
('much', 'to-night') 1
('nothing', 'when') 1
('person', 'soon') 1
('your', 'country') 1
('to', 'run') 1
('remembered', 'trying') 1
('alice', 'besides') 1
('to', 'wash') 1
('by', 'talking') 1
('nothing', 'nobody') 1
('corner', 'but') 1
('outdated', 'equipment') 1
('take', 'no') 1
('walked', 'a') 1
('5', 'some') 1
('provided', 'in') 1
('hearth', 'and') 1
('for', 'to') 1
('with', 'pink') 1
('go', 'no') 1
('tears', 'which') 1
('that', 'cheshire') 1
('or', 'obtain') 1
('this', 'of') 1
('kept', 'fanning') 1
('birds', 'why') 1
('dance', '"') 1
('three', 'were') 1
('swallow', 'a') 1
('name', 'alice') 1
('"right', 'of') 1
('usual', 'come') 1
('this', 'fireplace') 1
('things', 'don') 1
('mouse', 'replied') 1
('esq', 'hearthrug') 1
('"with', 'what') 1
('eats', 'cake') 1
('screaming', 'with') 1
('trial', 'stupid') 1
('it', 'presently') 1
('might', 'answer') 1
('30', 'days') 1
('get', 'us') 1
('house', 'down') 1
('wide', 'on') 1
('favourite', 'word') 1
('sounded', 'hoarse') 1
('large', 'in') 1
('alice', 'so') 1
('serpent', 'it') 1
('a', 'drawing') 1
('she', 'sits') 1
('very', 'sudden') 1
('a', 'loose') 1
('one', 'minute') 1
('felt', 'dreadfully') 1
('a', 'sleepy') 1
('which', 'case') 1
('sobs', 'choked') 1
('2', 'if') 1
('time', 'of') 1
('displaying', 'the') 1
('running', 'when') 1
('and', 'yawned') 1
('first', 'really') 1
('license', 'and') 1
('be', 'as') 1
('finger', 'pressed') 1
('she', 'wasn') 1
('timidly', 'said') 1
('fan', 'she') 1
('knows', 'it') 1
('gryphon', 'whispered') 1
('away', 'some') 1
('laws', 'and') 1
('oh', 'as') 1
('far', 'as') 1
('perhaps', 'as') 1
('yet', 'alice') 1
('little', 'eyes') 1
('people', 'that') 1
('choked', 'and') 1
('s', 'hand') 1
('hurry', 'you') 1
('head', 'would') 1
('some', 'fun') 1
('or', 'more') 1
('passion', 'and') 1
('tea', 'upon') 1
('joined', 'the') 1
('ever', 'thought') 1
('no', 'you') 1
('liability', 'to') 1
('countries', 'are') 1
('plainly', 'through') 1
('and', 'giving') 1
('busy', 'bee') 1
('well', 'of') 1
('it', 'mouse') 1
('late', 'and') 1
('alice', 'turned') 1
('a', 'red') 1
('next', 'peeped') 1
('followed', 'by') 1
('get', 'me') 1
('thump', 'down') 1
('the', 'roots') 1
('indeed', 'and') 1
('sending', 'me') 1
('it', 'sounds') 1
('he', 'doesn') 1
('eyes', 'are') 1
('he', 'knows') 1
('remarkable', 'in') 1
('for', 'yourself') 1
('was', 'generally') 1
('a', 'memorandum') 1
('unimportant', 'of') 1
('wonder', 'as') 1
('so', 'out-of-the-way') 1
('game', 's') 1
('very', 'clear') 1
('changed', 'several') 1
('the', 'constant') 1
('or', 'is') 1
('your', 'cat') 1
('cook', 'treacle') 1
('a', 'consultation') 1
('3', 'educational') 1
('trying', 'which') 1
('large', 'fan') 1
('strange', 'tale') 1
('found', 'to') 1
('it', 'ran') 1
('flung', 'down') 1
('remark', 'with') 1
('house', 'which') 1
('moving', 'round') 1
('afterwards', 'it') 1
('mouse', 'getting') 1
('look', 'so') 1
('find', 'the') 1
('nothing', 'written') 1
('soldiers', 'had') 1
('"they', 'all') 1
('added', 'looking') 1
('till', 'now') 1
('straightening', 'itself') 1
('treacle', 'out') 1
('future', 'generations') 1
('sigh', 'it') 1
('begun', 'they') 1
('out-of-the-way', 'down') 1
('ve', 'fallen') 1
('wags', 'its') 1
('water', 'out') 1
('not', 'contain') 1
('for', 'shutting') 1
('remember', 'about') 1
('grumbled', 'you') 1
('bottle', 'had') 1
('school', 'said') 1
('was', 'heard') 1
('round', 'eager') 1
('up', 'dormouse') 1
('fix', 'the') 1
('it', 'no') 1
('and', 'granted') 1
('soon', 'make') 1
('queer', 'noises') 1
('fancied', 'that') 1
('three-legged', 'stool') 1
('croqueting', 'one') 1
('mouse', 'gave') 1
('came', 'near') 1
('soup', 'and') 1
('up', 'now') 1
('is', 'who') 1
('so', 'desperate') 1
('gryphon', 'she') 1
('mouth', 'enough') 1
('support', 'the') 1
('there', 'she') 1
('branches', 'of') 1
('hers', 'would') 1
('foundation', 'web') 1
('other', 'form') 1
('a', 'pleased') 1
('quite', 'so') 1
('getting', 'tired') 1
('archbishop', 'of') 1
('or', 'using') 1
('hard', 'indeed') 1
('sister', 'kissed') 1
('and', 'c') 1
('it', 'yet') 1
('likely', 'true') 1
('see', 'four') 1
('hurry', 'an') 1
('conger-eel', 'that') 1
('to', 'execute') 1
(f) What are the most common words and pairs of words in Alice in Wonderland?
You might find the sorted function or the sort function for lists to be useful.
print_dict_sorted_by_value(histogram_single)
the 1807 and 933 to 805 a 689 of 625 it 605 she 553 i 533 you 477 said 462 in 425 alice 399 was 358 that 330 as 273 her 248 with 225 at 225 t 218 s 213 on 204 all 200 for 178 had 178 this 178 but 175 not 166 be 165 they 154 or 153 so 152 very 145 what 139 is 133 little 128 he 126 if 116 out 114 one 106 about 102 down 102 up 100 do 98 no 98 there 98 his 96 then 94 know 88 them 88 were 85 have 85 like 84 again 83 herself 83 would 83 went 83 when 80 project 79 could 78 any 76 by 76 queen 75 thought 74 can 73 are 73 off 73 your 71 how 70 see 69 me 68 time 68 into 67 who 65 its 63 king 63 m 63 did 63 an 61 don 61 well 60 now 60 my 58 began 58 turtle 58 gutenberg-tm 57 ll 57 which 56 mock 56 hatter 56 quite 55 gryphon 55 way 55 other 54 must 54 work 53 think 53 some 52 only 52 their 52 just 52 say 51 first 51 here 51 from 51 much 51 head 50 go 50 more 50 thing 49 " 48 voice 48 rabbit 47 such 46 never 46 looked 45 got 45 get 45 come 45 oh 44 ve 44 1 44 mouse 43 him 43 after 42 we 42 duchess 42 round 41 tone 40 dormouse 40 came 40 over 40 why 40 two 39 great 39 before 39 will 39 back 38 re 38 been 38 cat 37 found 35 nothing 34 march 34 without 34 right 34 once 34 works 33 last 33 long 33 large 33 tell 32 things 32 put 31 moment 31 hare 31 white 30 heard 30 door 30 make 30 made 30 d 30 looking 30 next 30 should 29 replied 29 dear 29 eyes 29 use 28 might 28 upon 28 e 28 look 28 caterpillar 28 going 27 away 27 may 27 poor 27 shall 27 seemed 27 electronic 27 while 26 three 26 won 26 than 26 course 26 gutenberg 26 day 25 rather 25 yet 25 too 25 soon 25 same 25 sure 24 foundation 24 good 24 took 24 added 23 felt 23 getting 22 set 22 wish 22 another 22 please 22 anything 22 ever 21 find 21 under 21 till 21 take 21 let 21 half 21 words 21 terms 21 old 21 minute 21 even 21 however 21 hand 20 end 20 cried 20 sort 20 curious 19 tried 19 feet 19 being 19 full 19 house 18 court 18 wonder 18 enough 18 agreement 18 soup 18 where 18 something 18 table 18 perhaps 17 jury 17 spoke 17 asked 17 bill 17 eat 17 sat 17 these 17 talking 17 question 17 side 17 garden 16 turned 16 am 16 through 16 doesn 16 hastily 16 used 16 bit 16 indeed 16 ran 16 both 16 people 16 high 16 because 16 give 15 face 15 saying 15 mad 15 hear 15 beginning 15 speak 15 near 15 change 15 gave 15 idea 15 donations 15 called 15 seen 15 us 15 knew 15 done 15 license 14 better 14 talk 14 dinah 14 suppose 14 trying 14 saw 14 air 14 silence 14 low 14 remember 14 everything 14 states 14 itself 14 didn 14 left 14 ought 14 read 14 anxiously 14 certainly 14 many 14 suddenly 13 room 13 dodo 13 sea 13 far 13 really 13 behind 13 gone 13 size 13 tea 13 grow 13 cook 13 literary 13 cats 13 beautiful 13 still 13 archive 13 always 13 close 13 kept 13 game 13 copyright 13 baby 13 begin 13 dance 13 wouldn 13 nearly 13 whole 13 yes 13 hardly 12 every 12 try 12 afraid 12 turning 12 deal 12 finished 12 help 12 life 12 arm 12 majesty 12 best 12 chapter 12 among 12 pigeon 12 makes 12 our 12 hands 12 small 12 keep 12 hurry 11 footman 11 tears 11 thinking 11 copy 11 minutes 11 mind 11 wasn 11 name 11 glad 11 hurried 11 growing 11 agree 11 whether 11 else 11 does 11 waited 11 pool 11 ask 11 word 11 most 11 though 11 gloves 11 either 11 hold 11 those 11 paragraph 11 f 10 own 10 turn 10 repeated 10 explain 10 yourself 10 mouth 10 remark 10 child 10 trademark 10 mean 10 children 10 having 10 trial 10 bottle 10 witness 10 lessons 10 opened 10 united 10 fan 10 soldiers 10 3 10 foot 10 offended 10 walked 10 few 10 different 10 against 10 rest 10 access 10 creatures 10 remarked 10 queer 10 sitting 10 "i 10 sight 10 heads 10 serpent 9 matter 9 has 9 party 9 hall 9 want 9 place 9 timidly 9 leave 9 mine 9 opportunity 9 sister 9 conversation 9 birds 9 waiting 9 answer 9 shook 9 join 9 angrily 9 tail 9 couldn 9 each 9 knave 9 interrupted 9 written 9 public 9 continued 9 believe 9 rate 9 key 9 glass 9 reason 9 least 9 shouted 9 together 9 call 9 puzzled 9 refund 9 window 8 running 8 hard 8 live 8 seem 8 whiting 8 hadn 8 associated 8 making 8 asleep 8 followed 8 sentence 8 days 8 five 8 nose 8 changed 8 slates 8 moral 8 play 8 learn 8 pig 8 gardeners 8 others 8 mushroom 8 beg 8 story 8 appeared 8 feel 8 adventures 8 number 8 marked 8 including 8 everybody 8 domain 8 lying 8 hearts 8 watch 8 wood 8 slowly 8 eagerly 8 exactly 8 top 8 http 8 ready 8 business 8 org 8 fact 8 person 8 nobody 8 meaning 8 notice 8 sit 8 coming 8 haven 8 important 8 means 8 fee 8 dry 8 new 8 happen 8 free 8 forth 8 noticed 8 laws 8 distance 8 kind 8 stood 7 drink 7 outside 7 feeling 7 bright 7 grown 7 sir 7 - 7 generally 7 wondering 7 fall 7 middle 7 lobsters 7 begun 7 manage 7 lory 7 tired 7 copies 7 isn 7 somebody 7 book 7 oop 7 soo 7 myself 7 distributing 7 goes 7 history 7 golden 7 deep 7 except 7 permission 7 dream 7 hair 7 shoes 7 repeat 7 state 7 writing 7 provide 7 eye 7 listen 7 lobster 7 understand 7 frightened 7 william 7 trees 7 evidence 7 almost 7 fetch 7 happened 7 subject 7 information 7 tarts 7 chin 7 surprised 7 pepper 7 world 7 fancy 7 open 7 section 7 pleased 7 draw 7 nonsense 7 ebooks 7 song 7 puppy 7 twinkle 7 larger 7 neck 7 hedgehog 7 silent 7 cheshire 7 shan 6 executed 6 ten 6 particular 6 distribute 6 himself 6 broken 6 along 6 arms 6 seven 6 sneezing 6 melancholy 6 c 6 trouble 6 within 6 youth 6 tax 6 father 6 ear 6 wow 6 exclaimed 6 english 6 roof 6 chimney 6 volunteers 6 bread-and-butter 6 lizard 6 sing 6 using 6 write 6 chorus 6 late 6 leaves 6 stupid 6 o 6 liked 6 times 6 pardon 6 sharp 6 forgotten 6 part 6 dreadfully 6 croquet 6 loud 6 nice 6 charge 6 distribution 6 web 6 inches 6 executioner 6 four 6 editions 6 jumped 6 stop 6 second 6 below 6 unless 6 stand 6 received 6 paid 6 general 6 fell 6 told 6 between 6 trembling 6 comply 6 grin 6 often 6 politely 6 tree 5 usual 5 likely 5 rule 5 swam 5 become 5 eggs 5 evening 5 4 5 prizes 5 stay 5 cause 5 crowded 5 curiosity 5 shriek 5 ground 5 direction 5 knee 5 home 5 tis 5 swim 5 gutenberg" 5 twice 5 aloud 5 rules 5 whispered 5 sounded 5 seems 5 altogether 5 interesting 5 certain 5 "project 5 doing 5 hookah 5 sleep 5 instantly 5 nearer 5 school 5 compliance 5 surprise 5 pack 5 posted 5 waving 5 sleepy 5 kid 5 wrong 5 pocket 5 drew 5 happens 5 sudden 5 limited 5 replacement 5 remembered 5 cut 5 speaking 5 nine 5 dare 5 form 5 across 5 impatiently 5 angry 5 simple 5 reply 5 owner 5 nervous 5 case 5 pair 5 ah 5 shrill 5 man 5 morning 5 shouldn 5 taking 5 shut 5 height 5 ebook 5 temper 5 passed 5 walk 5 young 5 unimportant 5 cannot 5 walking 5 sighed 5 treacle 5 quietly 5 hot 5 meant 5 clock 5 moved 5 faces 5 medium 5 alone 5 until 5 finish 5 several 5 dropped 5 paper 5 flamingo 5 sometimes 5 ears 5 asking 5 confusion 5 sadly 5 finger 5 procession 5 piece 5 strange 5 sides 4 freely 4 crumbs 4 grass 4 corner 4 argument 4 natural 4 rabbit-hole 4 animals 4 uncomfortable 4 frowning 4 fast 4 8 4 twinkling 4 paws 4 fallen 4 difficulty 4 shoulder 4 vanished 4 support 4 sounds 4 violently 4 hearing 4 girl 4 jurymen 4 dead 4 reach 4 pictures 4 capital 4 begins 4 provided 4 players 4 ordered 4 judge 4 allow 4 fish 4 spread 4 creating 4 crowd 4 busily 4 status 4 decidedly 4 savage 4 tale 4 fond 4 mary 4 ootiful 4 phrase 4 chance 4 since 4 yer 4 pale 4 collection 4 doubt 4 led 4 verses 4 taught 4 none 4 site 4 lay 4 answered 4 digging 4 providing 4 explanation 4 distributed 4 sharply 4 dish 4 mice 4 water 4 hers 4 beau 4 besides 4 beat 4 verse 4 short 4 damages 4 carried 4 shrinking 4 met 4 boots 4 displaying 4 pointing 4 ventured 4 law 4 reading 4 passage 4 sobs 4 mouths 4 stuff 4 bats 4 lives 4 format 4 screamed 4 worth 4 green 4 solemnly 4 fees 4 additional 4 confused 4 requirements 4 deeply 4 wanted 4 //pglaf 4 fellow 4 hours 4 thoughtfully 4 verdict 4 letter 4 mission 4 tongue 4 removed 4 care 4 run 4 arches 4 thimble 4 sky 4 severely 4 jury-box 4 less 4 holder 4 questions 4 fear 4 indignantly 4 consider 4 mabel 4 sigh 4 further 4 managed 4 located 4 guinea-pigs 4 held 4 says 4 jumping 4 grunted 4 otherwise 4 wonderland 4 jurors 4 porpoise 4 shoulders 4 also 4 hope 4 thank 4 individual 4 true 4 twelve 4 anyone 4 escape 4 breath 4 plan 4 duck 4 easily 4 creature 4 keeping 4 bottom 4 taken 4 bowed 4 stick 4 perfectly 4 quadrille 4 sound 4 contact 4 officers 4 earth 4 suppressed 4 tiny 4 kitchen 4 ann 4 honour 4 box 4 catch 4 age 4 copying 4 puzzling 4 alas 4 yesterday 3 hanging 3 sorts 3 9 3 limitation 3 user 3 butter 3 sent 3 obtain 3 appear 3 bat 3 em 3 faster 3 nor 3 fit 3 speech 3 croquet-ground 3 remained 3 eaglet 3 sobbing 3 applicable 3 tortoise 3 hoping 3 pattering 3 civil 3 brought 3 easy 3 equipment 3 alive 3 joined 3 smaller 3 suit 3 crash 3 "what 3 dull 3 pity 3 cake 3 bank 3 legs 3 owl 3 timid 3 paw 3 peeped 3 gravely 3 handed 3 guess 3 dogs 3 sad 3 somewhere 3 defective 3 nurse 3 takes 3 livery 3 staring 3 solemn 3 delight 3 complying 3 follow 3 panther 3 yours 3 defect 3 pieces 3 warranties 3 listening 3 wrote 3 choked 3 possibly 3 lost 3 out-of-the-way 3 pleaded 3 fury 3 throw 3 country 3 grave 3 girls 3 figure 3 shaking 3 5 3 return 3 hurt 3 friend 3 email 3 cost 3 finding 3 efforts 3 kick 3 considering 3 bringing 3 mentioned 3 to-day 3 pressed 3 official 3 nibbling 3 dog 3 performing 3 knowledge 3 rose-tree 3 proper 3 hoarse 3 week 3 printed 3 crossed 3 courage 3 trumpet 3 guessed 3 liability 3 sighing 3 salt 3 cards 3 cry 3 directly 3 immediately 3 repeating 3 growl 3 bring 3 longer 3 mark 3 7 3 roses 3 tossing 3 howling 3 bound 3 advantage 3 pat 3 upset 3 impossible 3 whisper 3 tails 3 instead 3 anxious 3 cheered 3 disclaimer 3 dears 3 notion 3 floor 3 mistake 3 links 3 paragraphs 3 hungry 3 hedgehogs 3 snail 3 caucus-race 3 sending 3 spectacles 3 opening 3 forgetting 3 slipped 3 crab 3 b 3 follows 3 telescope 3 master 3 edge 3 carefully 3 doth 3 wide 3 permitted 3 directions 3 love 3 themselves 3 show 3 shore 3 tucked 3 muttering 3 "there 3 teacup 3 2 3 putting 3 crown 3 royalty 3 stopped 3 guests 3 online 3 sense 3 fun 3 voices 3 remarking 3 settled 3 whatever 3 candle 3 remarks 3 gently 3 around 3 effect 3 "you 3 loudly 3 simply 3 miles 3 washing 3 needn 3 //www 3 money 3 worse 3 list 3 night 3 donate 3 serpents 3 picked 3 following 3 derivative 3 slate 3 caught 3 grand 3 constant 3 checked 3 nursing 3 boy 3 decided 3 french 3 noise 3 grinned 3 hush 3 real 3 fire 3 cakes 3 venture 3 music 3 folded 3 present 3 pray 3 meet 3 stairs 3 unfortunate 3 cautiously 3 ma 3 already 3 lived 3 dark 3 holding 3 passion 3 confusing 3 order 3 fly 3 beheaded 3 fur 3 funny 3 elbow 3 execution 3 entity 3 instance 3 immediate 3 succeeded 3 moving 3 advance 3 eager 3 lady 3 payments 3 considered 3 knocking 3 attending 3 obliged 3 receive 3 miss 3 above 3 expecting 3 visit 3 u 3 sulky 3 move 3 hunting 3 filled 3 watching 3 future 3 plate 3 tasted 3 turns 3 whiskers 3 toes 3 resting 2 morcar 2 laughed 2 wretched 2 difficult 2 playing 2 shorter 2 relief 2 brown 2 redistributing 2 pinch 2 pglaf 2 concept 2 usually 2 thoughts 2 changes 2 ashamed 2 destroy 2 accordance 2 changing 2 forehead 2 leaning 2 pause 2 conclusion 2 www 2 threw 2 mostly 2 regular 2 names 2 goose 2 barrowful 2 sneeze 2 remain 2 break 2 tea-party 2 custody 2 lefthand 2 busy 2 startled 2 bear 2 executions 2 based 2 crying 2 muchness 2 "plain 2 ring 2 alarm 2 denied 2 smiling 2 dishes 2 invited 2 specified 2 research 2 protect 2 produced 2 ordering 2 extremely 2 humbly 2 laid 2 collected 2 generations 2 wine 2 raised 2 federal 2 office 2 whom 2 mystery 2 claws 2 implied 2 shared 2 riddles 2 locks 2 trembled 2 comes 2 heart 2 six 2 presents 2 distant 2 sensation 2 active 2 fix 2 telling 2 copied 2 forgot 2 branches 2 hint 2 concerning 2 scream 2 90 2 three-legged 2 quickly 2 feelings 2 tea-time 2 fish-footman 2 weak 2 501 2 delighted 2 created 2 coaxing 2 dreadful 2 receipt 2 plenty 2 "how 2 flowers 2 clearly 2 year 2 assembled 2 abide 2 choice 2 offer 2 ornamented 2 yawned 2 contain 2 conversations 2 authority 2 ferrets 2 sh 2 plates 2 intellectual 2 wasting 2 poison 2 wild 2 cares 2 nicely 2 crimson 2 cup 2 wind 2 turtles 2 learning 2 comfits 2 purring 2 ringlets 2 sun 2 electronically 2 pinched 2 shutting 2 lap 2 imagine 2 cushion 2 showing 2 entirely 2 purpose 2 accident 2 rush 2 label 2 files 2 prisoner 2 frog 2 entangled 2 accepted 2 encouraging 2 splashing 2 ascii" 2 sang 2 triumphantly 2 occurred 2 given 2 thousand 2 picking 2 stole 2 deny 2 heavy 2 reaching 2 wink 2 smile 2 wash 2 sulkily 2 quick 2 disappeared 2 michael 2 giddy 2 kindly 2 whenever 2 locations 2 taller 2 share 2 pleasure 2 patiently 2 promoting 2 advisable 2 experiment 2 anger 2 search 2 uneasily 2 front 2 red 2 lovely 2 feeble 2 declare 2 considerable 2 row 2 "the 2 damage 2 knife 2 laughing 2 breach 2 bird 2 reasonable 2 shower 2 mile 2 concluded 2 became 2 breathe 2 dinn 2 mustard 2 11 2 paying 2 places 2 undertone 2 thoroughly 2 physical 2 position 2 muttered 2 rapidly 2 apples 2 ago 2 guinea-pig 2 employees 2 unrolled 2 wants 2 shouting 2 flat 2 half-past 2 pebbles 2 dinner 2 sisters 2 wonderful 2 dancing 2 pigs 2 started 2 remarkable 2 advice 2 twist 2 knot 2 neatly 2 manner 2 available 2 squeaking 2 swimming 2 giving 2 clear 2 doubtfully 2 doors 2 excellent 2 stretched 2 dipped 2 lonely 2 meekly 2 curled 2 forget 2 older 2 sorrowful 2 vanilla 2 secondly 2 depends 2 6 2 rome 2 charges 2 ugh 2 narrow 2 woman 2 computers 2 whose 2 goldfish 2 beasts 2 invitation 2 cupboards 2 unhappy 2 delightful 2 fancied 2 introduce 2 tumbling 2 hit 2 send 2 absurd 2 throwing 2 blew 2 drunk 2 proved 2 property 2 wildly 2 extraordinary 2 warranty 2 hate 2 twenty-four 2 years 2 wherever 2 animal 2 smiled 2 cross-examine 2 file 2 safe 2 curiouser 2 footsteps 2 caused 2 teacups 2 concert 2 thistle 2 persisted 2 computer 2 cool 2 merely 2 doubtful 2 bad 2 shaped 2 sooner 2 scroll 2 pie 2 tut 2 treading 2 month 2 bite 2 royalties 2 longed 2 contributions 2 flamingoes 2 royal 2 wandered 2 [later 2 ways 2 wandering 2 addressed 2 dispute 2 knows 2 blow 2 violent 2 singers 2 references 2 tiptoe 2 singing 2 fine 2 knowing 2 note-book 2 check 2 rattling 2 stoop 2 quiet 2 longitude 2 formats 2 signed 2 stirring 2 "it" 2 watched 2 falling 2 hart 2 yawning 2 thump 2 courtiers 2 stretching 2 proves 2 returned 2 panting 2 loose 2 costs 2 unpleasant 2 clever 2 race 2 maybe 2 smoking 2 carry 2 presently 2 rubbing 2 wet 2 earnestly 2 neither 2 waistcoat-pocket 2 lasted 2 appearing 2 prominently 2 various 2 wig 2 messages 2 latitude 2 date 2 solicit 2 drawling 2 dr 2 wake 2 sell 2 afterwards 2 sorrow 2 bark 2 belongs 2 prevent 2 summer 2 bend 2 expenses 2 beautifully 2 treacle-well 2 ugly 2 fright 2 nibbled 2 cauldron 2 broke 2 catching 2 interrupting 2 page 2 northumbria 2 lie 2 anywhere 2 readable 2 miserable 2 sneezes 2 fountains 2 start 2 tones 2 redistribution 2 lieu 2 contemptuously 2 remaining 2 linked 2 struck 2 friends 2 unfolded 2 tells 2 burn 2 fight 2 beating 2 smallest 2 ill 2 throat 2 stamping 2 missed 2 atom 2 hour 2 straight 2 trotting 2 registered 2 sharing 2 mercia 2 body 2 learnt 2 parchment 2 personal 2 drive 2 blasts 2 directed 2 brightened 2 included 2 carrying 2 mixed 2 owns 2 railway 2 snatch 2 pennyworth 2 obtaining 2 archbishop 2 hasn 2 taste 2 painting 2 hedge 2 closed 2 ] 2 raving 2 luckily 2 chose 2 legal 2 jaws 2 proceed 2 jar 2 earls 2 living 2 wise 2 fashion 2 recovered 2 matters 2 effort 2 prepare 2 line 2 chief 2 "come 2 remedies 2 paris 2 hurriedly 2 exempt 2 inside 2 conqueror 2 quarrelling 2 proud 2 useful 2 rude 2 spoon 2 widest 2 _i_ 2 nowhere 2 processing 1 carrier 1 believed 1 judging 1 purple 1 seaside 1 disclaim 1 north 1 whistle 1 problem 1 pitied 1 saves 1 behead 1 breeze 1 shedding 1 refund" 1 rose 1 adding 1 empty 1 speed 1 rich 1 eh 1 mustard-mine 1 burnt 1 denies 1 presented 1 canterbury 1 banks 1 hatching 1 stool 1 increasing 1 bitter 1 producing 1 addressing 1 night-air 1 need 1 feebly 1 comfort 1 non 1 contradicted 1 cart-horse 1 evidently 1 to-night 1 accept 1 licking 1 passing 1 sixpence 1 passionate 1 recognised 1 crouched 1 protection 1 "french 1 preserve 1 letters 1 wider 1 straightening 1 inkstand 1 toffee 1 creation 1 fading 1 steam-engine 1 "with 1 clamour 1 meal 1 executes 1 elect 1 daughter 1 additions 1 sign 1 untwist 1 uglification 1 chatte 1 scaly 1 errors 1 piteous 1 bleeds 1 ye 1 oyster 1 wings 1 necessarily 1 unsolicited 1 fifth 1 strength 1 internal 1 tidy 1 cheap 1 engaged 1 absence 1 housemaid 1 goals 1 unwillingly 1 appears 1 listened 1 eaten 1 despite 1 hung 1 hurrying 1 owed 1 familiarly 1 "who 1 sorry 1 direct 1 pg 1 brass 1 idiotic 1 hopeless 1 indirectly 1 injure 1 helped 1 tumbled 1 shrieked 1 stupidest 1 crept 1 account 1 hundred 1 frying-pan 1 paused 1 proposal 1 wrapping 1 low-spirited 1 xi 1 whoever 1 woke 1 punished 1 grazed 1 codes 1 scratching 1 backs 1 1500 1 muchness" 1 produce 1 beast 1 enormous 1 memorandum 1 seldom 1 water-well 1 shade 1 possession 1 gregory 1 morsel 1 variety 1 globe 1 terribly 1 approach 1 derision 1 irritated 1 noticing 1 condemn 1 slippery 1 jogged 1 roared 1 whereupon 1 donors 1 welcome 1 edition 1 shingle 1 be" 1 fixed 1 hoped 1 rabbits 1 faintly 1 blame 1 normans 1 centre 1 method 1 paperwork 1 lake 1 tinkling 1 hated 1 curls 1 favoured 1 breathe" 1 meanwhile 1 lad 1 immense 1 finds 1 save 1 submitted 1 driest 1 commotion 1 sends 1 returning 1 ak 1 sixteenth 1 proprietary 1 tipped 1 trusts 1 oneself 1 lately 1 express 1 periodic 1 shiny 1 distraction 1 prohibition 1 committed 1 truthful 1 languid 1 wander 1 measure 1 pulled 1 peering 1 skurried 1 zip 1 financial 1 rapped 1 spot 1 clean 1 stigand 1 nasty 1 ceiling 1 rightly 1 onions 1 thin 1 honest 1 furrows 1 shilling 1 indignant 1 remembering 1 practice 1 annoy 1 crawled 1 officer 1 frighten 1 2001 1 809 1 inclined 1 toss 1 panted 1 jelly-fish 1 skirt 1 moderate 1 unlocking 1 pencil 1 accustomed 1 red-hot 1 custard 1 fourteenth 1 conger-eel 1 flying 1 assistance 1 character 1 pretty 1 doubled-up 1 company 1 histories 1 processions 1 station 1 txt 1 laugh 1 pretexts 1 content 1 discovered 1 death 1 thick 1 "birds 1 thrown 1 seals 1 imitated 1 land 1 coils 1 tomorrow 1 disagree 1 possibility 1 adoption 1 strings 1 wits 1 grey 1 returns 1 outdated 1 accessible 1 pounds 1 pencils 1 vanishing 1 day-school 1 stiff 1 chimneys 1 require 1 flinging 1 trials 1 ein 1 v 1 fair 1 uncomfortably 1 especially 1 hedges 1 swallowed 1 leaders 1 kissed 1 audibly 1 pleasing 1 soothing 1 arch 1 explanations 1 fits 1 indicating 1 neighbour 1 toys 1 dreamy 1 wife 1 writhing 1 tea-things 1 leaving 1 consultation 1 trickling 1 canvas 1 holiday 1 queer-looking 1 poky 1 reduced 1 grinning 1 riper 1 turkey 1 begged 1 "much 1 cattle 1 snappishly 1 corrupt 1 warning 1 lewis 1 inquisitively 1 perform 1 patriotic 1 choke 1 liable 1 butterfly 1 soft 1 eats 1 suppress 1 sleep" 1 jury-men 1 gained 1 fat 1 worried 1 originator 1 positively 1 look-out 1 terrier 1 whispers 1 dropping 1 existence 1 chains 1 educational 1 nile 1 expressing 1 peeping 1 wondered 1 nay 1 overhead 1 interest 1 shelves 1 enjoy 1 hid 1 after-time 1 baked 1 incessantly 1 dreaming 1 international 1 respectful 1 forty-two 1 belt 1 rippling 1 raising 1 frog-footman 1 saucer 1 queens 1 yelp 1 limbs 1 accounting 1 jack-in-the-box 1 dodged 1 hollow 1 howled 1 promised 1 settling 1 fanning 1 pay 1 ink 1 bed 1 needs 1 overcome 1 shrimp 1 draggled 1 determine 1 ridge 1 double 1 sternly 1 brushing 1 like" 1 growled 1 $1 1 fortunately 1 sentenced 1 calmly 1 fluttered 1 corporation 1 delay 1 attempted 1 banquet 1 becoming 1 choosing 1 raw 1 performed 1 melan 1 bathing 1 calculate 1 tea-tray 1 reasons 1 marmalade 1 lesson 1 hoarsely 1 consequential 1 downward 1 vii 1 profit 1 bore 1 array 1 brother 1 addresses 1 displayed 1 vulgar 1 doze 1 interpreted 1 closely 1 "will 1 persons 1 appearance 1 affectionately 1 waste 1 arm-in-arm 1 tremulous 1 branch 1 stingy 1 classics 1 birthday 1 askance 1 mouse-traps 1 hearth 1 slate-pencil 1 highest 1 "let 1 sizes 1 stockings 1 imposed 1 version 1 eating 1 coward 1 beak 1 exists 1 minding 1 arranged 1 charities 1 murdering 1 dig 1 org/license 1 shark 1 contempt 1 houses 1 unenforceability 1 bent 1 rope 1 revenue 1 dreamed 1 softly 1 tillie 1 currants 1 puffed 1 stalk 1 clinging 1 tremble 1 binary 1 righthand 1 murder 1 farm-yard 1 hopeful 1 poured 1 skimming 1 tureen 1 sharks 1 ledge 1 gay 1 library 1 rise 1 milk 1 fellows 1 undo 1 altered 1 elbows 1 feared 1 derived 1 introduced 1 energetic 1 stopping 1 thatched 1 kneel 1 orange 1 underneath 1 flown 1 lower 1 w 1 doorway 1 director 1 stays 1 comfortably 1 axes 1 prettier 1 shrieks 1 chuckled 1 morals 1 died 1 therefore 1 odd 1 curtsey 1 loving 1 calling 1 humble 1 happening 1 stolen 1 vegetable 1 "uglification 1 original 1 transcribe 1 crawling 1 brush 1 whiles 1 choose 1 quicker 1 corners 1 obsolete 1 renamed 1 accessed 1 prize 1 indirect 1 sand 1 glaring 1 magpie 1 request 1 argued 1 balls 1 twinkled 1 fanned 1 tie 1 "purpose" 1 solid 1 pleasant 1 execute 1 ridiculous 1 actual 1 void 1 reminding 1 desperately 1 cucumber-frames 1 uniform 1 org/donate 1 squeaked 1 representations 1 good-bye 1 thanked 1 $5 1 roast 1 ending 1 subscribe 1 remove 1 smoke 1 provisions 1 mournfully 1 books 1 gross 1 common 1 explained 1 sweet-tempered 1 clapping 1 completely 1 thunder 1 shock 1 opposite 1 throne 1 "such 1 includes 1 lessen 1 leap 1 invent 1 tight 1 as-is 1 idiot 1 pegs 1 spreading 1 saucepan 1 service 1 right-hand 1 brandy 1 "before 1 whistling 1 standing 1 played 1 seated 1 growling 1 alternate 1 curly 1 pronounced 1 shake 1 group 1 numerous 1 argue 1 signifies 1 professor 1 promotion 1 tricks 1 cherry-tart 1 transcription 1 crashed 1 cucumber-frame 1 "he 1 settle 1 uglifying 1 lifted 1 counting 1 pretending 1 ointment 1 grew 1 back-somersault 1 hundreds 1 demand 1 picture 1 foundation" 1 uneasy 1 seaography 1 respectable 1 notifies 1 pulling 1 tunnel 1 neat 1 occur 1 rosetree 1 grunt 1 figures 1 louder 1 expression 1 pattern 1 agreed 1 appealed 1 daresay 1 permanent 1 push 1 whatsoever 1 chanced 1 herald 1 lot 1 deductible 1 speaker 1 by-the-bye 1 dates 1 darkness 1 wore 1 terror 1 801 1 mallets 1 knock 1 balanced 1 sea-shore 1 daisies 1 juror 1 wooden 1 incidental 1 wag 1 deepest 1 beautify 1 lit 1 nonproprietary 1 somersault 1 sobbed 1 ensuring 1 fairy-tales 1 indemnify 1 bag 1 proofread 1 upsetting 1 placed 1 fitness 1 lips 1 compressed 1 quarrelled 1 hippopotamus 1 else" 1 learned 1 granted 1 vague 1 games 1 schoolroom 1 moon 1 usurpation 1 newby 1 downwards 1 viewing 1 84116 1 derive 1 relieved 1 velvet 1 exporting 1 gather 1 grant 1 shining 1 zealand 1 pope 1 iii 1 restrictions 1 australia 1 known 1 desperate 1 sections 1 sands 1 hide 1 practically 1 kettle 1 sluggard 1 marched 1 subdued 1 ada 1 extra 1 consented 1 result 1 pretend 1 unjust 1 handsome 1 discover 1 lose 1 donation 1 looking-glass 1 violates 1 forwards 1 largest 1 cackled 1 scrambling 1 gratefully 1 sky-rocket 1 bread-knife 1 writing-desk 1 latin 1 main 1 accepting 1 labelled 1 field 1 sob 1 hatters 1 uglify 1 pairs 1 rearing 1 grins 1 swamp 1 convert 1 straightened 1 sneezed 1 print 1 drop 1 trot 1 telescopes 1 expected 1 weren 1 seeing 1 fender 1 childhood 1 canary 1 solicitation 1 employee 1 eel 1 denying 1 reeling 1 subjects 1 involved 1 64-6221541 1 axis 1 disobey 1 alternately 1 poker 1 london 1 rumbling 1 000 1 rising 1 blacking 1 xii 1 attached 1 walks 1 possible 1 insult 1 shrink 1 promising 1 calculated 1 impertinent 1 crocodile 1 doubling 1 identification 1 croqueting 1 confirmed 1 bone 1 insolence 1 compilation 1 treated 1 fig 1 modern 1 writing-desks 1 upright 1 flustered 1 entrance 1 cutting 1 ou 1 ambition 1 claim 1 today 1 60 1 lesson-books 1 quarrel 1 never-ending 1 hiss 1 yelled 1 spades 1 loveliest 1 splashed 1 "oh 1 managing 1 complaining 1 dried 1 virus 1 infringement 1 fairbanks 1 meeting 1 checks 1 twenty 1 fire-irons 1 harmless 1 "information 1 pie-crust 1 later 1 a-piece 1 feathers 1 "william 1 queerest 1 described 1 worm 1 choking 1 //gutenberg 1 shifting 1 buttercup 1 flashed 1 redistribute 1 ignorant 1 patience 1 vi 1 kills 1 gallons 1 nodded 1 "we 1 thunderstorm 1 seriously 1 drawling-master 1 soles 1 previous 1 pass 1 cheated 1 legally 1 foolish 1 disgust 1 throughout 1 meat 1 offend 1 synonymous 1 statements 1 ancient 1 rushed 1 cheeks 1 fumbled 1 pace 1 ours 1 accusation 1 unlink 1 furrow 1 cross 1 favourite 1 replace 1 awfully 1 fishes 1 fifteenth 1 elsie 1 lamps 1 flower-beds 1 neighbouring 1 expense 1 diligently 1 lines 1 merchantibility 1 touch 1 rat-hole 1 shape 1 truth 1 sits 1 "miss 1 reported 1 incomplete 1 afford 1 leant 1 flurry 1 x 1 examining 1 exclusion 1 executive 1 atheling 1 denial 1 downloading 1 precious 1 star-fish 1 596-1887 1 maximum 1 antipathies 1 barking 1 spoken 1 joys 1 trampled 1 thirteen 1 pun 1 kill 1 nevertheless 1 sugar 1 gloomily 1 tied 1 "poison" 1 cries 1 slightest 1 negligence 1 accounts 1 crazy 1 grammar 1 zigzag 1 reality 1 alteration 1 "right 1 folding 1 daisy-chain 1 length 1 jaw 1 mississippi 1 disclaimers 1 undoing 1 99712 1 indicate 1 pop 1 avoid 1 killing 1 wept 1 waist 1 towards 1 inaccurate 1 paint 1 inquired 1 airs 1 mineral 1 spell 1 tittered 1 network 1 bright-eyed 1 agony 1 applause 1 tastes 1 crossly 1 declared 1 partners 1 uncivil 1 provoking 1 france 1 "be 1 mischief 1 flapper 1 interrupt 1 afore 1 fitted 1 coast 1 ourselves 1 particularly 1 apply 1 lazy 1 thus 1 exact 1 leading 1 soldier 1 egg 1 tops 1 commercial 1 partner 1 contract 1 fancying 1 pet 1 cardboard 1 hearthrug 1 regulating 1 sorrows 1 disappointment 1 critical 1 attended 1 puzzle 1 prison 1 harm 1 shiver 1 drinking 1 stupidly 1 clubs 1 raven 1 addition 1 impatient 1 reeds 1 detach 1 invalidity 1 yards 1 couples 1 upstairs 1 buttered 1 trims 1 cartwheels 1 identify 1 minded 1 secret 1 brain 1 pardoned 1 roots 1 riddle 1 newsletter 1 furiously 1 treatment 1 clasped 1 ate 1 twentieth 1 refused 1 pleasanter 1 lodging 1 discontinue 1 confirmation 1 contemptuous 1 bawled 1 est 1 emphasis 1 re-use 1 50 1 current 1 prosecute 1 ladder 1 muscular 1 card 1 pictured 1 multiplication 1 patted 1 burst 1 ones 1 winter 1 flavour 1 get" 1 30 1 taxes 1 memory 1 listeners 1 rudeness 1 resource 1 machine 1 past 1 barley-sugar 1 updated 1 s/he 1 bones 1 pleases 1 stored 1 extent 1 tide 1 strict 1 methods 1 climb 1 walrus 1 pages 1 rock 1 severity 1 cease 1 see" 1 exclamation 1 oldest 1 geography 1 fairly 1 fireplace 1 pressing 1 named 1 gravy 1 opportunities 1 hm 1 dainties 1 squeeze 1 steady 1 fork 1 manners 1 understood 1 sheep-bells 1 lark 1 blades 1 possessed 1 thirty 1 signify 1 performances 1 ravens 1 display 1 viii 1 good-naturedly 1 feather 1 unable 1 conduct 1 iv 1 arguments 1 20% 1 licensed 1 organized 1 blows 1 dressed 1 punitive 1 rats 1 farmer 1 swallow 1 viewed 1 collar 1 rustling 1 noises 1 beloved 1 refreshments 1 rises 1 "edwin 1 eleventh 1 deserved 1 plainly 1 sage 1 quiver 1 lullaby 1 offers 1 teeth 1 flew 1 arrow 1 magic 1 encouraged 1 fifteen 1 punching 1 nest 1 curtain 1 couple 1 grief 1 flame 1 win 1 include 1 someone 1 lest 1 fainting 1 modified 1 machines 1 circle 1 invented 1 kings 1 hot-tempered 1 cunning 1 dripping 1 arithmetic 1 conquest 1 required 1 affair 1 scale 1 helpless 1 cheerfully 1 advise 1 reports 1 supple 1 arrum 1 "turtle 1 boon 1 irs 1 swallowing 1 weeks 1 bother 1 cold 1 pig-baby 1 f3 1 flock 1 burning 1 ut 1 "they 1 curtseying 1 principal 1 belong 1 snout 1 squeezed 1 esq 1 good-natured 1 survive 1 modification 1 prove 1 educations 1 worry 1 tulip-roots 1 maps 1 guilt 1 die 1 profits 1 "too 1 ix 1 flung 1 vinegar 1 special 1 pointed 1 facility 1 eat" 1 merrily 1 turn-up 1 edwin 1 data 1 business@pglaf 1 gbnewby@pglaf 1 parts 1 footmen 1 receiving 1 buttons 1 flower-pot 1 "defects 1 scattered 1 teapot 1 lastly 1 ahem 1 screaming 1 uncommonly 1 bee 1 knocked 1 opinion 1 frontispiece 1 theirs 1 forepaws 1 org/fundraising 1 flappers 1 capering 1 obstacle 1 camomile 1 inwards 1 boxed 1 knelt 1 ful 1 suet 1 damaged 1 newspapers 1 farther 1 address 1 "up 1 son 1 charitable 1 brave 1 beheading 1 setting 1 fourth 1 christmas 1 variations 1 croqueted 1 retire 1 city 1 twelfth 1 fills 1 grumbled 1 drowned 1 glanced 1 laughter 1 lazily 1 annoyed 1 hypertext 1 kiss 1 fidgeted 1 puss 1 maintaining 1 production 1 4557 1 chrysalis 1 happy 1 rubbed 1 book-shelves 1 splash 1 "never 1 ache 1 vote 1 alarmed 1 adjourn 1 dozing 1 race-course 1 teaching 1 pour 1 snorting 1 saucepans 1 unusually 1 scolded 1 staff 1 planning 1 handwriting 1 expend 1 waters 1 rustled 1 wriggling 1 extras 1 attends 1 curving 1 provision 1 bough 1 bristling 1 creep 1 graceful 1 comfortable 1 uncorked 1 distributor 1 queer-shaped 1 occasionally 1 heap 1 deletions 1 types 1 "coming 1 cleared 1 fighting 1 disk 1 chop 1 uncommon 1 act 1 acceptance 1 wearily 1 journey 1 gazing 1 ridges 1 blown 1 toast 1 furious 1 beds 1 sink 1 actually 1 dismay 1 cur 1 shy 1 "take 1 child-life 1 countries 1 haste 1 arise 1 hat 1 oblong 1 hjckrrh 1 spite 1 e-mail 1 tougher 1 salmon 1 pink 1 guard 1 difficulties 1 able 1 somehow 1 failure 1 pence 1 lesson-book 1 trademark/copyright 1 muddle 1 milk-jug 1 mournful 1 west 1 drawing 1 engraved 1 heels 1 lowing 1 attempts 1 beauti 1 complained 1 "keep 1 wait 1 org/1/11/ 1 lacie 1 diamonds 1 arrived 1 mayn 1 respect 1 specific 1 indemnity 1 promise 1 agent 1 edgar 1 accidentally 1 eels 1 family 1 encourage 1 dive 1 sticks 1 shepherd 1 justice 1 improve 1 losing 1 powdered 1 bursting 1 england 1 sprawling 1 carroll 1 closer 1 simpleton 1 series 1 boldly 1 readily 1 "twinkle 1 finishing 1 eyelids 1 shyly 1 middle-aged 1 violence 1 bowing 1 answers 1 secure 1 knuckles 1 shakespeare 1 treat 1 dunce 1 pine-apple 1 shillings 1 containing 1 govern 1 sour 1 faint 1 elegant 1 wags 1 attempt 1 likes 1 pepper-box 1 despair 1 rattle 1 locked 1 splendidly 1 teases 1 clearer 1 occasional 1 growls 1 ii 1 roughly 1 arm-chair 1 credit 1 volunteer 1 circumstances 1 lock 1
Problem 4. ArgMax and ArgSort¶
(a) Finding the index of the largest (or smallest) element in a list is a commonly needed operation, but Python does not provide this function in its standard library (numpy will provide those). Write two functions
def argmax(list_input):
idx = None
for i, item in enumerate(list_input):
if i == 0:
m = item
elif item > m:
idx = i
m = item
return idx
def argmin(list_input):
idx = None
for i, item in enumerate(list_input):
if i == 0:
m = item
elif item < m:
idx = i
m = item
return idx
that return the index of the largest and smallest element in the list list_input respectively. Example output:
>>> list1 = [1,3,2,6,0,2,3,4,5]
>>> argmax(list1)
3
>>> argmin(list1)
4
# try it here
list1 = [1,3,2,6,0,2,3,4,5]
print(argmin(list1))
4
(b) (extra) Instead of just finding the index of the largest or smallest element, one might be interested in the entire list of indices that would sort the list. In one of the previous exercises we presented you with this piece of code for finding the indices that sort a list.
l = [1,3,2,6,0,2,3,4,5]
list(zip(*sorted(zip(l, range(len(l))))))[1]
(4, 0, 2, 5, 1, 6, 7, 8, 3)
It works by combining the list with the list of indices, sorting the combined list, and then untangling the results. Have a look at the documentation of the zip function to understand how it works. Write a function:
def argsort(l):
sorted_index = []
index_and_item = []
for i, v in enumerate(l):
index_and_item.append((v, i))
for v, i in sorted(index_and_item):
sorted_index.append(i)
return sorted_index
def argsort_short(l):
return [i for (v, i) in sorted((v, i) for (i, v) in enumerate(l))]
print(argsort([1,3,2,6,0,2,3,4,5]))
print(argsort_short([1,3,2,6,0,2,3,4,5]))
[4, 0, 2, 5, 1, 6, 7, 8, 3] [4, 0, 2, 5, 1, 6, 7, 8, 3]
that returns the list of indices that would sort the list, but instead of using the hard to read line above that uses zip, use list comprehensions. Example output:
>>> l = [1,3,2,6,0,2,3,4,5]
>>> argsort(l)
[4, 0, 2, 5, 1, 6, 7, 8, 3]
>>> [l[i] for i in argsort(l)]
[0, 1, 2, 2, 3, 3, 4, 5, 6]
# try it here
l = [1,3,2,6,0,2,3,4,5]
print(argsort(l))
print([l[i] for i in argsort(l)])
[4, 0, 2, 5, 1, 6, 7, 8, 3] [0, 1, 2, 2, 3, 3, 4, 5, 6]
Problem 5. Simple ciphers¶
Suppose you wish to send your friend a message, and if someone happens to look at it, you do not want them to know what it says.
A simple way of doing this is to replace each letter, with
a different one.
For example, suppose I wish to send the phrase “dancing is silent poetry”.
By exchanging each letter with another, we can encode this as: “robqwbu wg gwzsbh dcshfm”.
(a) Write a function that swaps the letter in a string according to a dictionary. For example:
def swapdict(string, dic):
swapped = ''
for c in string:
if c in dic:
swapped += dic[c]
else:
swapped += c
return swapped
>>> print swapdict('hello', {'e': 'i'})
hillo
>>> print swapdict('hello', {'l': 'w'})
hewwo
>>> print swapdict('hello', {'l': 'm', 'h': 'p', 'e': 'o', 'o': 'e'})
pomme
# your code here
print(swapdict('hello', {'e': 'i'}))
print(swapdict('hello', {'l': 'w'}))
print(swapdict('hello', {'l': 'm', 'h': 'p', 'e': 'o', 'o': 'e'}))
hillo hewwo pomme
(b) Write a function that generates a dictionary whose keys are letters of the alphabet, and whose values are those letters shifted along by a given number of letters.
def shiftdict(i):
import string
alphabet = string.ascii_lowercase
shiftdict = {}
for c in alphabet:
shifted = ord(c)+i
if shifted < ord('a'):
shifted = ord('z') - (ord('a') - shifted) + 1
elif shifted > ord('z'):
shifted = ord('a') + (shifted - ord('z')) - 1
shiftdict[c] = chr(shifted)
return shiftdict
shiftdict(13)
{'a': 'n',
'b': 'o',
'c': 'p',
'd': 'q',
'e': 'r',
'f': 's',
'g': 't',
'h': 'u',
'i': 'v',
'j': 'w',
'k': 'x',
'l': 'y',
'm': 'z',
'n': 'a',
'o': 'b',
'p': 'c',
'q': 'd',
'r': 'e',
's': 'f',
't': 'g',
'u': 'h',
'v': 'i',
'w': 'j',
'x': 'k',
'y': 'l',
'z': 'm'}
>>> print shiftdict(0)
{'a': 'a', 'b': 'b', ..., 'z': 'z'}
>>> print shiftdict(3)
{'a': 'd', 'b': 'e', ..., 'z': 'c'}
>>> print shiftdict(13)
{'a': 'n', 'b': 'o', ..., 'z': 'm'}
In the first case, the letters are not shifted, because the argument to shiftdict is zero. In the second case, letters are shifted along by three letters: “a” is the first letter, and “d” is the forth letter, and so key “a” points to letter “d”.
# try it here
print(shiftdict(3))
{'d': 'g', 'h': 'k', 'z': 'c', 'i': 'l', 'w': 'z', 'f': 'i', 'b': 'e', 'k': 'n', 'c': 'f', 'g': 'j', 'y': 'b', 't': 'w', 'j': 'm', 'o': 'r', 'u': 'x', 'l': 'o', 'r': 'u', 'e': 'h', 'a': 'd', 's': 'v', 'q': 't', 'x': 'a', 'n': 'q', 'p': 's', 'm': 'p', 'v': 'y'}
(c) Now we are ready to encode our message: “dancing is silent poetry”.
>>> print swapdict('dancing is silent poetry', shiftdict(14))
swapdict('dancing is silent poetry', shiftdict(14))
'robqwbu wg gwzsbh dcshfm'
(d) Write a function that takes a dictionary and swaps the roles of the keys and the values.
def invertdict(dictionary):
return dict((v, k) for k, v in dictionary.items())
Here are some examples to check it works:
>>> invertdict({'a':'b'})
{'b': 'a'}
>>> invertdict({'b':'a', 'a': 'b'})
{'a': 'b', 'b': 'a'}
>>> invertdict({'a':'b', 'b': 'c', 'c': 'a'})
{'a': 'c', 'b': 'a','c': 'b'}
print(invertdict({'a':'b'}))
print(invertdict({'b':'a', 'a': 'b'}))
print(invertdict({'a':'b', 'b': 'c', 'c': 'a'}))
{'b': 'a'}
{'a': 'b', 'b': 'a'}
{'a': 'c', 'b': 'a', 'c': 'b'}
(e) Can you decode this message, that was encoded using the same scheme? “qzuipo nblft ju tjnqmf ipqfgvmmz”. Use only invertdict, swapdict and shiftdict.
print(swapdict('dancing is silent poetry', shiftdict(14)))
print(swapdict('qzuipo nblft ju tjnqmf ipqfgvmmz', shiftdict(-1)))
robqwbu wg gwzsbh dcshfm python makes it simple hopefully
(f) You notice that your friend is sending encrypted messages to other people, but they appear to be encoded using a different argument to shiftdict.
Use a for-loop, swapdict and shiftdict to work out the encoding scheme, and what this message says: “nyhcpaf pz aol yvva vm spnoaulzz”.
for i in range(27):
print(swapdict('nyhcpaf pz aol yvva vm spnoaulzz', shiftdict(i)))
print("------")
print(swapdict('nyhcpaf pz aol yvva vm spnoaulzz', shiftdict(19)))
nyhcpaf pz aol yvva vm spnoaulzz ozidqbg qa bpm zwwb wn tqopbvmaa pajerch rb cqn axxc xo urpqcwnbb qbkfsdi sc dro byyd yp vsqrdxocc rclgtej td esp czze zq wtrseypdd sdmhufk ue ftq daaf ar xustfzqee tenivgl vf gur ebbg bs yvtugarff ufojwhm wg hvs fcch ct zwuvhbsgg vgpkxin xh iwt gddi du axvwicthh whqlyjo yi jxu heej ev bywxjduii xirmzkp zj kyv iffk fw czxykevjj yjsnalq ak lzw jggl gx dayzlfwkk zktobmr bl max khhm hy ebzamgxll alupcns cm nby liin iz fcabnhymm bmvqdot dn ocz mjjo ja gdbcoiznn cnwrepu eo pda nkkp kb hecdpjaoo doxsfqv fp qeb ollq lc ifdeqkbpp epytgrw gq rfc pmmr md jgefrlcqq fqzuhsx hr sgd qnns ne khfgsmdrr gravity is the root of lightness hsbwjuz jt uif sppu pg mjhiuoftt itcxkva ku vjg tqqv qh nkijvpguu judylwb lv wkh urrw ri oljkwqhvv kvezmxc mw xli vssx sj pmklxriww lwfanyd nx ymj wtty tk qnlmysjxx mxgboze oy znk xuuz ul romnztkyy nyhcpaf pz aol yvva vm spnoaulzz ------ gravity is the root of lightness