├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── bower.json ├── package.json ├── raw ├── 99webtools.txt ├── bbalet_stopwords_en.txt ├── fergiemcdowall_stopwords_en.txt ├── geonetwork-eng.txt ├── gh-stopwords-json-en.txt ├── information-retrieval-group.txt ├── js-StopWord.txt ├── language-resource-stopwords.txt ├── mysql.txt ├── node-stopwords-english.txt ├── onix-text-retrieval.txt ├── pubmed.txt ├── ranksnl-google.txt ├── ranksnl1-english.txt ├── ranksnl2-english.txt ├── seobook.txt ├── seopowersuite.txt ├── snowball-tartarus.txt ├── stop-words-english1.txt ├── stop-words-english2.txt ├── stop-words-english4.txt ├── stop-words-english5.txt ├── stopwords-brez.txt ├── stopwords-filter-en.txt ├── textfixer.txt └── webconfs.txt ├── stopwords-en.json └── stopwords-en.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .dropbox 3 | .DS_Store 4 | Icon? 5 | Thumbs.db 6 | 7 | *.log 8 | node_modules 9 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | *.txt 2 | .idea 3 | raw 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - "4" 5 | - "6" 6 | - "node" 7 | 8 | sudo: false 9 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Gene Diaz 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Stopwords English (EN) 2 | ======= 3 | 4 | [![Build Status](https://travis-ci.org/stopwords-iso/stopwords-en.svg?branch=master)](https://travis-ci.org/stopwords-iso/stopwords-en) 5 | 6 | The most comprehensive collection of stopwords for the english language. 7 | 8 | A [multiple language](https://github.com/stopwords-iso/stopwords-iso) collection is also available. 9 | 10 | ### Usage 11 | 12 | The collection comes in a 13 | [JSON format](https://raw.githubusercontent.com/stopwords-iso/stopwords-en/master/stopwords-en.json) and a 14 | [text format](https://raw.githubusercontent.com/stopwords-iso/stopwords-en/master/stopwords-en.txt). 15 | You are free to use this collection any way you like. 16 | It is only currently published on [npm](https://www.npmjs.com/stopwords-en) and [bower](https://bower.io). 17 | 18 | ```sh 19 | $ npm install stopwords-en 20 | ``` 21 | 22 | ```sh 23 | $ bower install stopwords-en 24 | ``` 25 | 26 | ```js 27 | // Node 28 | const stopwords = require('stopwords-en'); // array of stopwords 29 | ``` 30 | 31 | ### Contributing 32 | 33 | If you wish to remove or update some of the stopwords, please file an issue first before sending a PR on the repo of the specific language. 34 | 35 | If you would like to add a stopword or a new set of stopwords, please add them as a new text file insie the `raw` directory then send a PR. 36 | 37 | Please send a separate PR on the [main repo](https://github.com/stopwords-iso/stopwords-iso) to credit the source of the added stopwords. 38 | 39 | ### Credits 40 | 41 | All stopwords sources are [listed on the main repo](https://github.com/stopwords-iso/stopwords-iso/blob/master/CREDITS.md). 42 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "stopwords-en", 3 | "description": "The most comprehensive collection of stopwords for the english language.", 4 | "keywords": [ 5 | "english", 6 | "stopwords", 7 | "stop words" 8 | ], 9 | "homepage": "https://github.com/stopwords-iso/stopwords-en", 10 | "authors": [ 11 | "Gene Diaz " 12 | ], 13 | "license": "MIT", 14 | "main": "stopwords-en.json", 15 | "ignore": [ 16 | "**/.*", 17 | "raw", 18 | "node_modules", 19 | "bower_components" 20 | ] 21 | } 22 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "stopwords-en", 3 | "version": "0.3.0", 4 | "author": "Gene Diaz (http://genediazjr.com)", 5 | "description": "The most comprehensive collection of stopwords for the english language.", 6 | "keywords": [ 7 | "english", 8 | "stopwords", 9 | "stop words" 10 | ], 11 | "license": "MIT", 12 | "repository": "git://github.com/stopwords-iso/stopwords-en", 13 | "bugs": "https://github.com/stopwords-iso/stopwords-en/issues", 14 | "main": "stopwords-en.json", 15 | "engines": { 16 | "node": ">=0.10.0" 17 | }, 18 | "scripts": { 19 | "build": "stopwords-collator -s raw -o stopwords-en", 20 | "test": "npm run build && jsonlint stopwords-en.json -q" 21 | }, 22 | "devDependencies": { 23 | "stopwords-collator": "*", 24 | "jsonlint": "1.6.x" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /raw/99webtools.txt: -------------------------------------------------------------------------------- 1 | a 2 | able 3 | about 4 | across 5 | after 6 | all 7 | almost 8 | also 9 | am 10 | among 11 | an 12 | and 13 | any 14 | are 15 | as 16 | at 17 | be 18 | because 19 | been 20 | but 21 | by 22 | can 23 | cannot 24 | could 25 | dear 26 | did 27 | do 28 | does 29 | either 30 | else 31 | ever 32 | every 33 | for 34 | from 35 | get 36 | got 37 | had 38 | has 39 | have 40 | he 41 | her 42 | hers 43 | him 44 | his 45 | how 46 | however 47 | i 48 | if 49 | in 50 | into 51 | is 52 | it 53 | its 54 | just 55 | least 56 | let 57 | like 58 | likely 59 | may 60 | me 61 | might 62 | most 63 | must 64 | my 65 | neither 66 | no 67 | nor 68 | not 69 | of 70 | off 71 | often 72 | on 73 | only 74 | or 75 | other 76 | our 77 | own 78 | rather 79 | said 80 | say 81 | says 82 | she 83 | should 84 | since 85 | so 86 | some 87 | than 88 | that 89 | the 90 | their 91 | them 92 | then 93 | there 94 | these 95 | they 96 | this 97 | tis 98 | to 99 | too 100 | twas 101 | us 102 | wants 103 | was 104 | we 105 | were 106 | what 107 | when 108 | where 109 | which 110 | while 111 | who 112 | whom 113 | why 114 | will 115 | with 116 | would 117 | yet 118 | you 119 | your 120 | ain't 121 | aren't 122 | can't 123 | could've 124 | couldn't 125 | didn't 126 | doesn't 127 | don't 128 | hasn't 129 | he'd 130 | he'll 131 | he's 132 | how'd 133 | how'll 134 | how's 135 | i'd 136 | i'll 137 | i'm 138 | i've 139 | isn't 140 | it's 141 | might've 142 | mightn't 143 | must've 144 | mustn't 145 | shan't 146 | she'd 147 | she'll 148 | she's 149 | should've 150 | shouldn't 151 | that'll 152 | that's 153 | there's 154 | they'd 155 | they'll 156 | they're 157 | they've 158 | wasn't 159 | we'd 160 | we'll 161 | we're 162 | weren't 163 | what'd 164 | what's 165 | when'd 166 | when'll 167 | when's 168 | where'd 169 | where'll 170 | where's 171 | who'd 172 | who'll 173 | who's 174 | why'd 175 | why'll 176 | why's 177 | won't 178 | would've 179 | wouldn't 180 | you'd 181 | you'll 182 | you're 183 | you've -------------------------------------------------------------------------------- /raw/bbalet_stopwords_en.txt: -------------------------------------------------------------------------------- 1 | 2 | a 3 | about 4 | above 5 | across 6 | after 7 | afterwards 8 | again 9 | against 10 | all 11 | almost 12 | alone 13 | along 14 | already 15 | also 16 | although 17 | always 18 | am 19 | among 20 | amongst 21 | amoungst 22 | amount 23 | an 24 | and 25 | another 26 | any 27 | anyhow 28 | anyone 29 | anything 30 | anyway 31 | anywhere 32 | are 33 | around 34 | as 35 | at 36 | back 37 | be 38 | became 39 | because 40 | become 41 | becomes 42 | becoming 43 | been 44 | before 45 | beforehand 46 | behind 47 | being 48 | below 49 | beside 50 | besides 51 | between 52 | beyond 53 | bill 54 | both 55 | bottom 56 | but 57 | by 58 | call 59 | can 60 | cannot 61 | cant 62 | co 63 | con 64 | could 65 | couldnt 66 | cry 67 | de 68 | describe 69 | detail 70 | do 71 | done 72 | down 73 | due 74 | during 75 | each 76 | eg 77 | eight 78 | either 79 | eleven 80 | else 81 | elsewhere 82 | empty 83 | enough 84 | etc 85 | even 86 | ever 87 | every 88 | everyone 89 | everything 90 | everywhere 91 | except 92 | few 93 | fifteen 94 | fify 95 | fill 96 | find 97 | fire 98 | first 99 | five 100 | for 101 | former 102 | formerly 103 | forty 104 | found 105 | four 106 | from 107 | front 108 | full 109 | further 110 | get 111 | give 112 | go 113 | had 114 | has 115 | hasnt 116 | have 117 | he 118 | hence 119 | her 120 | here 121 | hereafter 122 | hereby 123 | herein 124 | hereupon 125 | hers 126 | herself 127 | him 128 | himself 129 | his 130 | how 131 | however 132 | hundred 133 | ie 134 | if 135 | in 136 | inc 137 | indeed 138 | interest 139 | into 140 | is 141 | it 142 | its 143 | itself 144 | keep 145 | last 146 | latter 147 | latterly 148 | least 149 | less 150 | ltd 151 | made 152 | many 153 | may 154 | me 155 | meanwhile 156 | might 157 | mill 158 | mine 159 | more 160 | moreover 161 | most 162 | mostly 163 | move 164 | much 165 | must 166 | my 167 | myself 168 | name 169 | namely 170 | neither 171 | never 172 | nevertheless 173 | next 174 | nine 175 | no 176 | nobody 177 | none 178 | noone 179 | nor 180 | not 181 | nothing 182 | now 183 | nowhere 184 | of 185 | off 186 | often 187 | on 188 | once 189 | one 190 | only 191 | onto 192 | or 193 | other 194 | others 195 | otherwise 196 | our 197 | ours 198 | ourselves 199 | out 200 | over 201 | own 202 | part 203 | per 204 | perhaps 205 | please 206 | put 207 | rather 208 | re 209 | same 210 | see 211 | seem 212 | seemed 213 | seeming 214 | seems 215 | serious 216 | several 217 | she 218 | should 219 | show 220 | side 221 | since 222 | sincere 223 | six 224 | sixty 225 | so 226 | some 227 | somehow 228 | someone 229 | something 230 | sometime 231 | sometimes 232 | somewhere 233 | still 234 | such 235 | system 236 | take 237 | ten 238 | than 239 | that 240 | the 241 | their 242 | them 243 | themselves 244 | then 245 | thence 246 | there 247 | thereafter 248 | thereby 249 | therefore 250 | therein 251 | thereupon 252 | these 253 | they 254 | thin 255 | third 256 | this 257 | those 258 | though 259 | three 260 | through 261 | throughout 262 | thru 263 | thus 264 | to 265 | together 266 | too 267 | top 268 | toward 269 | towards 270 | twelve 271 | twenty 272 | two 273 | un 274 | under 275 | until 276 | up 277 | upon 278 | us 279 | very 280 | via 281 | was 282 | we 283 | well 284 | were 285 | what 286 | whatever 287 | when 288 | whence 289 | whenever 290 | where 291 | whereafter 292 | whereas 293 | whereby 294 | wherein 295 | whereupon 296 | wherever 297 | whether 298 | which 299 | while 300 | whither 301 | who 302 | whoever 303 | whole 304 | whom 305 | whose 306 | why 307 | will 308 | with 309 | within 310 | without 311 | would 312 | yet 313 | you 314 | your 315 | yours 316 | yourself 317 | yourselves 318 | -------------------------------------------------------------------------------- /raw/fergiemcdowall_stopwords_en.txt: -------------------------------------------------------------------------------- 1 | about 2 | after 3 | all 4 | also 5 | am 6 | an 7 | and 8 | another 9 | any 10 | are 11 | as 12 | at 13 | be 14 | because 15 | been 16 | before 17 | being 18 | between 19 | both 20 | but 21 | by 22 | came 23 | can 24 | come 25 | could 26 | did 27 | do 28 | each 29 | for 30 | from 31 | get 32 | got 33 | has 34 | had 35 | he 36 | have 37 | her 38 | here 39 | him 40 | himself 41 | his 42 | how 43 | if 44 | in 45 | into 46 | is 47 | it 48 | like 49 | make 50 | many 51 | me 52 | might 53 | more 54 | most 55 | much 56 | must 57 | my 58 | never 59 | now 60 | of 61 | on 62 | only 63 | or 64 | other 65 | our 66 | out 67 | over 68 | said 69 | same 70 | see 71 | should 72 | since 73 | some 74 | still 75 | such 76 | take 77 | than 78 | that 79 | the 80 | their 81 | them 82 | then 83 | there 84 | these 85 | they 86 | this 87 | those 88 | through 89 | to 90 | too 91 | under 92 | up 93 | very 94 | was 95 | way 96 | we 97 | well 98 | were 99 | what 100 | where 101 | which 102 | while 103 | who 104 | with 105 | would 106 | you 107 | your 108 | a 109 | i -------------------------------------------------------------------------------- /raw/geonetwork-eng.txt: -------------------------------------------------------------------------------- 1 | i 2 | me 3 | my 4 | myself 5 | we 6 | our 7 | ours 8 | ourselves 9 | you 10 | your 11 | yours 12 | yourself 13 | yourselves 14 | he 15 | him 16 | his 17 | himself 18 | she 19 | her 20 | hers 21 | herself 22 | it 23 | its 24 | itself 25 | they 26 | them 27 | their 28 | theirs 29 | themselves 30 | what 31 | which 32 | who 33 | whom 34 | this 35 | that 36 | these 37 | those 38 | am 39 | is 40 | are 41 | was 42 | were 43 | be 44 | been 45 | being 46 | have 47 | has 48 | had 49 | having 50 | do 51 | does 52 | did 53 | doing 54 | would 55 | shall 56 | should 57 | could 58 | must 59 | ought 60 | i'm 61 | you're 62 | he's 63 | she's 64 | it's 65 | we're 66 | they're 67 | i've 68 | you've 69 | we've 70 | they've 71 | i'd 72 | you'd 73 | he'd 74 | she'd 75 | we'd 76 | they'd 77 | i'll 78 | you'll 79 | he'll 80 | she'll 81 | we'll 82 | they'll 83 | isn't 84 | aren't 85 | wasn't 86 | weren't 87 | hasn't 88 | haven't 89 | hadn't 90 | doesn't 91 | don't 92 | didn't 93 | won't 94 | wouldn't 95 | shan't 96 | shouldn't 97 | can't 98 | cannot 99 | couldn't 100 | mustn't 101 | let's 102 | that's 103 | who's 104 | what's 105 | here's 106 | there's 107 | when's 108 | where's 109 | why's 110 | how's 111 | daren't 112 | needn't 113 | oughtn't 114 | mightn't 115 | a 116 | an 117 | the 118 | and 119 | but 120 | if 121 | or 122 | because 123 | as 124 | until 125 | while 126 | of 127 | at 128 | by 129 | for 130 | with 131 | about 132 | against 133 | between 134 | into 135 | through 136 | during 137 | before 138 | after 139 | above 140 | below 141 | to 142 | from 143 | up 144 | down 145 | in 146 | out 147 | on 148 | off 149 | over 150 | under 151 | again 152 | further 153 | then 154 | once 155 | here 156 | there 157 | when 158 | where 159 | why 160 | how 161 | all 162 | any 163 | both 164 | each 165 | few 166 | more 167 | most 168 | other 169 | some 170 | such 171 | no 172 | nor 173 | not 174 | only 175 | own 176 | same 177 | so 178 | than 179 | too 180 | very 181 | one 182 | every 183 | least 184 | less 185 | many 186 | now 187 | ever 188 | never 189 | say 190 | says 191 | said 192 | also 193 | get 194 | go 195 | goes 196 | just 197 | made 198 | make 199 | put 200 | see 201 | seen 202 | whether 203 | like 204 | well 205 | back 206 | even 207 | still 208 | way 209 | take 210 | since 211 | another 212 | however 213 | two 214 | three 215 | four 216 | five 217 | first 218 | second 219 | new 220 | old 221 | high 222 | long -------------------------------------------------------------------------------- /raw/gh-stopwords-json-en.txt: -------------------------------------------------------------------------------- 1 | a 2 | a's 3 | able 4 | about 5 | above 6 | according 7 | accordingly 8 | across 9 | actually 10 | after 11 | afterwards 12 | again 13 | against 14 | ain't 15 | all 16 | allow 17 | allows 18 | almost 19 | alone 20 | along 21 | already 22 | also 23 | although 24 | always 25 | am 26 | among 27 | amongst 28 | an 29 | and 30 | another 31 | any 32 | anybody 33 | anyhow 34 | anyone 35 | anything 36 | anyway 37 | anyways 38 | anywhere 39 | apart 40 | appear 41 | appreciate 42 | appropriate 43 | are 44 | aren't 45 | around 46 | as 47 | aside 48 | ask 49 | asking 50 | associated 51 | at 52 | available 53 | away 54 | awfully 55 | b 56 | be 57 | became 58 | because 59 | become 60 | becomes 61 | becoming 62 | been 63 | before 64 | beforehand 65 | behind 66 | being 67 | believe 68 | below 69 | beside 70 | besides 71 | best 72 | better 73 | between 74 | beyond 75 | both 76 | brief 77 | but 78 | by 79 | c 80 | c'mon 81 | c's 82 | came 83 | can 84 | can't 85 | cannot 86 | cant 87 | cause 88 | causes 89 | certain 90 | certainly 91 | changes 92 | clearly 93 | co 94 | com 95 | come 96 | comes 97 | concerning 98 | consequently 99 | consider 100 | considering 101 | contain 102 | containing 103 | contains 104 | corresponding 105 | could 106 | couldn't 107 | course 108 | currently 109 | d 110 | definitely 111 | described 112 | despite 113 | did 114 | didn't 115 | different 116 | do 117 | does 118 | doesn't 119 | doing 120 | don't 121 | done 122 | down 123 | downwards 124 | during 125 | e 126 | each 127 | edu 128 | eg 129 | eight 130 | either 131 | else 132 | elsewhere 133 | enough 134 | entirely 135 | especially 136 | et 137 | etc 138 | even 139 | ever 140 | every 141 | everybody 142 | everyone 143 | everything 144 | everywhere 145 | ex 146 | exactly 147 | example 148 | except 149 | f 150 | far 151 | few 152 | fifth 153 | first 154 | five 155 | followed 156 | following 157 | follows 158 | for 159 | former 160 | formerly 161 | forth 162 | four 163 | from 164 | further 165 | furthermore 166 | g 167 | get 168 | gets 169 | getting 170 | given 171 | gives 172 | go 173 | goes 174 | going 175 | gone 176 | got 177 | gotten 178 | greetings 179 | h 180 | had 181 | hadn't 182 | happens 183 | hardly 184 | has 185 | hasn't 186 | have 187 | haven't 188 | having 189 | he 190 | he's 191 | hello 192 | help 193 | hence 194 | her 195 | here 196 | here's 197 | hereafter 198 | hereby 199 | herein 200 | hereupon 201 | hers 202 | herself 203 | hi 204 | him 205 | himself 206 | his 207 | hither 208 | hopefully 209 | how 210 | howbeit 211 | however 212 | i 213 | i'd 214 | i'll 215 | i'm 216 | i've 217 | ie 218 | if 219 | ignored 220 | immediate 221 | in 222 | inasmuch 223 | inc 224 | indeed 225 | indicate 226 | indicated 227 | indicates 228 | inner 229 | insofar 230 | instead 231 | into 232 | inward 233 | is 234 | isn't 235 | it 236 | it'd 237 | it'll 238 | it's 239 | its 240 | itself 241 | j 242 | just 243 | k 244 | keep 245 | keeps 246 | kept 247 | know 248 | known 249 | knows 250 | l 251 | last 252 | lately 253 | later 254 | latter 255 | latterly 256 | least 257 | less 258 | lest 259 | let 260 | let's 261 | like 262 | liked 263 | likely 264 | little 265 | look 266 | looking 267 | looks 268 | ltd 269 | m 270 | mainly 271 | many 272 | may 273 | maybe 274 | me 275 | mean 276 | meanwhile 277 | merely 278 | might 279 | more 280 | moreover 281 | most 282 | mostly 283 | much 284 | must 285 | my 286 | myself 287 | n 288 | name 289 | namely 290 | nd 291 | near 292 | nearly 293 | necessary 294 | need 295 | needs 296 | neither 297 | never 298 | nevertheless 299 | new 300 | next 301 | nine 302 | no 303 | nobody 304 | non 305 | none 306 | noone 307 | nor 308 | normally 309 | not 310 | nothing 311 | novel 312 | now 313 | nowhere 314 | o 315 | obviously 316 | of 317 | off 318 | often 319 | oh 320 | ok 321 | okay 322 | old 323 | on 324 | once 325 | one 326 | ones 327 | only 328 | onto 329 | or 330 | other 331 | others 332 | otherwise 333 | ought 334 | our 335 | ours 336 | ourselves 337 | out 338 | outside 339 | over 340 | overall 341 | own 342 | p 343 | particular 344 | particularly 345 | per 346 | perhaps 347 | placed 348 | please 349 | plus 350 | possible 351 | presumably 352 | probably 353 | provides 354 | q 355 | que 356 | quite 357 | qv 358 | r 359 | rather 360 | rd 361 | re 362 | really 363 | reasonably 364 | regarding 365 | regardless 366 | regards 367 | relatively 368 | respectively 369 | right 370 | s 371 | said 372 | same 373 | saw 374 | say 375 | saying 376 | says 377 | second 378 | secondly 379 | see 380 | seeing 381 | seem 382 | seemed 383 | seeming 384 | seems 385 | seen 386 | self 387 | selves 388 | sensible 389 | sent 390 | serious 391 | seriously 392 | seven 393 | several 394 | shall 395 | she 396 | should 397 | shouldn't 398 | since 399 | six 400 | so 401 | some 402 | somebody 403 | somehow 404 | someone 405 | something 406 | sometime 407 | sometimes 408 | somewhat 409 | somewhere 410 | soon 411 | sorry 412 | specified 413 | specify 414 | specifying 415 | still 416 | sub 417 | such 418 | sup 419 | sure 420 | t 421 | t's 422 | take 423 | taken 424 | tell 425 | tends 426 | th 427 | than 428 | thank 429 | thanks 430 | thanx 431 | that 432 | that's 433 | thats 434 | the 435 | their 436 | theirs 437 | them 438 | themselves 439 | then 440 | thence 441 | there 442 | there's 443 | thereafter 444 | thereby 445 | therefore 446 | therein 447 | theres 448 | thereupon 449 | these 450 | they 451 | they'd 452 | they'll 453 | they're 454 | they've 455 | think 456 | third 457 | this 458 | thorough 459 | thoroughly 460 | those 461 | though 462 | three 463 | through 464 | throughout 465 | thru 466 | thus 467 | to 468 | together 469 | too 470 | took 471 | toward 472 | towards 473 | tried 474 | tries 475 | truly 476 | try 477 | trying 478 | twice 479 | two 480 | u 481 | un 482 | under 483 | unfortunately 484 | unless 485 | unlikely 486 | until 487 | unto 488 | up 489 | upon 490 | us 491 | use 492 | used 493 | useful 494 | uses 495 | using 496 | usually 497 | uucp 498 | v 499 | value 500 | various 501 | very 502 | via 503 | viz 504 | vs 505 | w 506 | want 507 | wants 508 | was 509 | wasn't 510 | way 511 | we 512 | we'd 513 | we'll 514 | we're 515 | we've 516 | welcome 517 | well 518 | went 519 | were 520 | weren't 521 | what 522 | what's 523 | whatever 524 | when 525 | whence 526 | whenever 527 | where 528 | where's 529 | whereafter 530 | whereas 531 | whereby 532 | wherein 533 | whereupon 534 | wherever 535 | whether 536 | which 537 | while 538 | whither 539 | who 540 | who's 541 | whoever 542 | whole 543 | whom 544 | whose 545 | why 546 | will 547 | willing 548 | wish 549 | with 550 | within 551 | without 552 | won't 553 | wonder 554 | would 555 | wouldn't 556 | x 557 | y 558 | yes 559 | yet 560 | you 561 | you'd 562 | you'll 563 | you're 564 | you've 565 | your 566 | yours 567 | yourself 568 | yourselves 569 | z 570 | zero -------------------------------------------------------------------------------- /raw/information-retrieval-group.txt: -------------------------------------------------------------------------------- 1 | a 2 | about 3 | above 4 | across 5 | after 6 | afterwards 7 | again 8 | against 9 | all 10 | almost 11 | alone 12 | along 13 | already 14 | also 15 | although 16 | always 17 | am 18 | among 19 | amongst 20 | amoungst 21 | amount 22 | an 23 | and 24 | another 25 | any 26 | anyhow 27 | anyone 28 | anything 29 | anyway 30 | anywhere 31 | are 32 | around 33 | as 34 | at 35 | back 36 | be 37 | became 38 | because 39 | become 40 | becomes 41 | becoming 42 | been 43 | before 44 | beforehand 45 | behind 46 | being 47 | below 48 | beside 49 | besides 50 | between 51 | beyond 52 | bill 53 | both 54 | bottom 55 | but 56 | by 57 | call 58 | can 59 | cannot 60 | cant 61 | co 62 | computer 63 | con 64 | could 65 | couldnt 66 | cry 67 | de 68 | describe 69 | detail 70 | do 71 | done 72 | down 73 | due 74 | during 75 | each 76 | eg 77 | eight 78 | either 79 | eleven 80 | else 81 | elsewhere 82 | empty 83 | enough 84 | etc 85 | even 86 | ever 87 | every 88 | everyone 89 | everything 90 | everywhere 91 | except 92 | few 93 | fifteen 94 | fify 95 | fill 96 | find 97 | fire 98 | first 99 | five 100 | for 101 | former 102 | formerly 103 | forty 104 | found 105 | four 106 | from 107 | front 108 | full 109 | further 110 | get 111 | give 112 | go 113 | had 114 | has 115 | hasnt 116 | have 117 | he 118 | hence 119 | her 120 | here 121 | hereafter 122 | hereby 123 | herein 124 | hereupon 125 | hers 126 | herself 127 | him 128 | himself 129 | his 130 | how 131 | however 132 | hundred 133 | i 134 | ie 135 | if 136 | in 137 | inc 138 | indeed 139 | interest 140 | into 141 | is 142 | it 143 | its 144 | itself 145 | keep 146 | last 147 | latter 148 | latterly 149 | least 150 | less 151 | ltd 152 | made 153 | many 154 | may 155 | me 156 | meanwhile 157 | might 158 | mill 159 | mine 160 | more 161 | moreover 162 | most 163 | mostly 164 | move 165 | much 166 | must 167 | my 168 | myself 169 | name 170 | namely 171 | neither 172 | never 173 | nevertheless 174 | next 175 | nine 176 | no 177 | nobody 178 | none 179 | noone 180 | nor 181 | not 182 | nothing 183 | now 184 | nowhere 185 | of 186 | off 187 | often 188 | on 189 | once 190 | one 191 | only 192 | onto 193 | or 194 | other 195 | others 196 | otherwise 197 | our 198 | ours 199 | ourselves 200 | out 201 | over 202 | own 203 | part 204 | per 205 | perhaps 206 | please 207 | put 208 | rather 209 | re 210 | same 211 | see 212 | seem 213 | seemed 214 | seeming 215 | seems 216 | serious 217 | several 218 | she 219 | should 220 | show 221 | side 222 | since 223 | sincere 224 | six 225 | sixty 226 | so 227 | some 228 | somehow 229 | someone 230 | something 231 | sometime 232 | sometimes 233 | somewhere 234 | still 235 | such 236 | system 237 | take 238 | ten 239 | than 240 | that 241 | the 242 | their 243 | them 244 | themselves 245 | then 246 | thence 247 | there 248 | thereafter 249 | thereby 250 | therefore 251 | therein 252 | thereupon 253 | these 254 | they 255 | thick 256 | thin 257 | third 258 | this 259 | those 260 | though 261 | three 262 | through 263 | throughout 264 | thru 265 | thus 266 | to 267 | together 268 | too 269 | top 270 | toward 271 | towards 272 | twelve 273 | twenty 274 | two 275 | un 276 | under 277 | until 278 | up 279 | upon 280 | us 281 | very 282 | via 283 | was 284 | we 285 | well 286 | were 287 | what 288 | whatever 289 | when 290 | whence 291 | whenever 292 | where 293 | whereafter 294 | whereas 295 | whereby 296 | wherein 297 | whereupon 298 | wherever 299 | whether 300 | which 301 | while 302 | whither 303 | who 304 | whoever 305 | whole 306 | whom 307 | whose 308 | why 309 | will 310 | with 311 | within 312 | without 313 | would 314 | yet 315 | you 316 | your 317 | yours 318 | yourself 319 | yourselves -------------------------------------------------------------------------------- /raw/js-StopWord.txt: -------------------------------------------------------------------------------- 1 | a 2 | able 3 | about 4 | above 5 | abst 6 | accordance 7 | according 8 | accordingly 9 | across 10 | act 11 | actually 12 | added 13 | adj 14 | 15 | affected 16 | affecting 17 | affects 18 | after 19 | afterwards 20 | again 21 | against 22 | ah 23 | all 24 | almost 25 | alone 26 | along 27 | already 28 | also 29 | although 30 | 31 | always 32 | am 33 | among 34 | amongst 35 | an 36 | and 37 | announce 38 | another 39 | any 40 | anybody 41 | anyhow 42 | anymore 43 | anyone 44 | anything 45 | anyway 46 | anyways 47 | 48 | anywhere 49 | apparently 50 | approximately 51 | are 52 | aren 53 | arent 54 | arise 55 | around 56 | as 57 | aside 58 | ask 59 | asking 60 | at 61 | auth 62 | available 63 | away 64 | awfully 65 | 66 | b 67 | back 68 | be 69 | became 70 | because 71 | become 72 | becomes 73 | becoming 74 | been 75 | before 76 | beforehand 77 | begin 78 | beginning 79 | beginnings 80 | begins 81 | behind 82 | 83 | being 84 | believe 85 | below 86 | beside 87 | besides 88 | between 89 | beyond 90 | biol 91 | both 92 | brief 93 | briefly 94 | but 95 | by 96 | c 97 | ca 98 | came 99 | can 100 | cannot 101 | can't 102 | cause 103 | causes 104 | 105 | certain 106 | certainly 107 | co 108 | com 109 | come 110 | comes 111 | contain 112 | containing 113 | contains 114 | could 115 | couldnt 116 | d 117 | date 118 | did 119 | didn't 120 | different 121 | do 122 | does 123 | doesn't 124 | 125 | doing 126 | done 127 | don't 128 | down 129 | downwards 130 | due 131 | during 132 | e 133 | each 134 | ed 135 | edu 136 | effect 137 | eg 138 | eight 139 | eighty 140 | either 141 | else 142 | elsewhere 143 | end 144 | ending 145 | enough 146 | 147 | especially 148 | et 149 | et-al 150 | etc 151 | even 152 | ever 153 | every 154 | everybody 155 | everyone 156 | everything 157 | everywhere 158 | ex 159 | except 160 | f 161 | far 162 | few 163 | ff 164 | fifth 165 | first 166 | five 167 | fix 168 | 169 | followed 170 | following 171 | follows 172 | for 173 | former 174 | formerly 175 | forth 176 | found 177 | four 178 | from 179 | further 180 | furthermore 181 | g 182 | gave 183 | get 184 | gets 185 | getting 186 | give 187 | given 188 | gives 189 | 190 | giving 191 | go 192 | goes 193 | gone 194 | got 195 | gotten 196 | h 197 | had 198 | happens 199 | hardly 200 | has 201 | hasn't 202 | have 203 | haven't 204 | having 205 | he 206 | hed 207 | hence 208 | her 209 | here 210 | hereafter 211 | hereby 212 | herein 213 | 214 | heres 215 | hereupon 216 | hers 217 | herself 218 | hes 219 | hi 220 | hid 221 | him 222 | himself 223 | his 224 | hither 225 | home 226 | how 227 | howbeit 228 | however 229 | hundred 230 | i 231 | id 232 | ie 233 | if 234 | i'll 235 | im 236 | immediate 237 | 238 | immediately 239 | importance 240 | important 241 | in 242 | inc 243 | indeed 244 | index 245 | information 246 | instead 247 | into 248 | invention 249 | inward 250 | is 251 | isn't 252 | it 253 | itd 254 | it'll 255 | its 256 | itself 257 | 258 | i've 259 | j 260 | just 261 | k 262 | keep 263 | keeps 264 | kept 265 | kg 266 | km 267 | know 268 | known 269 | knows 270 | l 271 | largely 272 | last 273 | lately 274 | later 275 | latter 276 | latterly 277 | least 278 | less 279 | lest 280 | let 281 | lets 282 | like 283 | 284 | liked 285 | likely 286 | line 287 | little 288 | 'll 289 | look 290 | looking 291 | looks 292 | ltd 293 | m 294 | made 295 | mainly 296 | make 297 | makes 298 | many 299 | may 300 | maybe 301 | me 302 | mean 303 | means 304 | meantime 305 | meanwhile 306 | 307 | merely 308 | mg 309 | might 310 | million 311 | miss 312 | ml 313 | more 314 | moreover 315 | most 316 | mostly 317 | mr 318 | mrs 319 | much 320 | mug 321 | must 322 | my 323 | myself 324 | n 325 | na 326 | name 327 | namely 328 | nay 329 | nd 330 | near 331 | nearly 332 | 333 | necessarily 334 | necessary 335 | need 336 | needs 337 | neither 338 | never 339 | nevertheless 340 | new 341 | next 342 | nine 343 | ninety 344 | no 345 | nobody 346 | non 347 | none 348 | nonetheless 349 | noone 350 | nor 351 | 352 | normally 353 | nos 354 | not 355 | noted 356 | nothing 357 | now 358 | nowhere 359 | o 360 | obtain 361 | obtained 362 | obviously 363 | of 364 | off 365 | often 366 | oh 367 | ok 368 | okay 369 | old 370 | omitted 371 | on 372 | once 373 | one 374 | ones 375 | 376 | only 377 | onto 378 | or 379 | ord 380 | other 381 | others 382 | otherwise 383 | ought 384 | our 385 | ours 386 | ourselves 387 | out 388 | outside 389 | over 390 | overall 391 | owing 392 | own 393 | p 394 | page 395 | pages 396 | part 397 | 398 | particular 399 | particularly 400 | past 401 | per 402 | perhaps 403 | placed 404 | please 405 | plus 406 | poorly 407 | possible 408 | possibly 409 | potentially 410 | pp 411 | predominantly 412 | present 413 | 414 | previously 415 | primarily 416 | probably 417 | promptly 418 | proud 419 | provides 420 | put 421 | q 422 | que 423 | quickly 424 | quite 425 | qv 426 | r 427 | ran 428 | rather 429 | rd 430 | re 431 | readily 432 | really 433 | recent 434 | 435 | recently 436 | ref 437 | refs 438 | regarding 439 | regardless 440 | regards 441 | related 442 | relatively 443 | research 444 | respectively 445 | resulted 446 | resulting 447 | results 448 | right 449 | run 450 | s 451 | 452 | said 453 | same 454 | saw 455 | say 456 | saying 457 | says 458 | sec 459 | section 460 | see 461 | seeing 462 | seem 463 | seemed 464 | seeming 465 | seems 466 | seen 467 | self 468 | selves 469 | sent 470 | seven 471 | several 472 | shall 473 | she 474 | shed 475 | 476 | she'll 477 | shes 478 | should 479 | shouldn't 480 | show 481 | showed 482 | shown 483 | showns 484 | shows 485 | significant 486 | significantly 487 | similar 488 | similarly 489 | since 490 | six 491 | slightly 492 | so 493 | 494 | some 495 | somebody 496 | somehow 497 | someone 498 | somethan 499 | something 500 | sometime 501 | sometimes 502 | somewhat 503 | somewhere 504 | soon 505 | sorry 506 | specifically 507 | specified 508 | specify 509 | 510 | specifying 511 | still 512 | stop 513 | strongly 514 | sub 515 | substantially 516 | successfully 517 | such 518 | sufficiently 519 | suggest 520 | sup 521 | sure 522 | t 523 | take 524 | taken 525 | taking 526 | tell 527 | tends 528 | 529 | th 530 | than 531 | thank 532 | thanks 533 | thanx 534 | that 535 | that'll 536 | thats 537 | that've 538 | the 539 | their 540 | theirs 541 | them 542 | themselves 543 | then 544 | thence 545 | there 546 | thereafter 547 | thereby 548 | 549 | thered 550 | therefore 551 | therein 552 | there'll 553 | thereof 554 | therere 555 | theres 556 | thereto 557 | thereupon 558 | there've 559 | these 560 | they 561 | theyd 562 | they'll 563 | theyre 564 | they've 565 | 566 | think 567 | this 568 | those 569 | thou 570 | though 571 | thoughh 572 | thousand 573 | throug 574 | through 575 | throughout 576 | thru 577 | thus 578 | til 579 | tip 580 | to 581 | together 582 | too 583 | took 584 | toward 585 | towards 586 | 587 | tried 588 | tries 589 | truly 590 | try 591 | trying 592 | ts 593 | twice 594 | two 595 | u 596 | un 597 | under 598 | unfortunately 599 | unless 600 | unlike 601 | unlikely 602 | until 603 | unto 604 | up 605 | upon 606 | ups 607 | us 608 | use 609 | used 610 | 611 | useful 612 | usefully 613 | usefulness 614 | uses 615 | using 616 | usually 617 | v 618 | value 619 | various 620 | 've 621 | very 622 | via 623 | viz 624 | vol 625 | vols 626 | vs 627 | w 628 | want 629 | wants 630 | was 631 | wasn't 632 | way 633 | we 634 | wed 635 | 636 | welcome 637 | we'll 638 | went 639 | were 640 | weren't 641 | we've 642 | what 643 | whatever 644 | what'll 645 | whats 646 | when 647 | whence 648 | whenever 649 | where 650 | whereafter 651 | whereas 652 | whereby 653 | wherein 654 | 655 | wheres 656 | whereupon 657 | wherever 658 | whether 659 | which 660 | while 661 | whim 662 | whither 663 | who 664 | whod 665 | whoever 666 | whole 667 | who'll 668 | whom 669 | whomever 670 | whos 671 | whose 672 | why 673 | widely 674 | 675 | willing 676 | wish 677 | with 678 | within 679 | without 680 | won't 681 | words 682 | world 683 | would 684 | wouldn't 685 | www 686 | x 687 | y 688 | yes 689 | yet 690 | you 691 | youd 692 | you'll 693 | your 694 | youre 695 | yours 696 | yourself 697 | 698 | yourselves 699 | you've 700 | z 701 | zero 702 | -------------------------------------------------------------------------------- /raw/language-resource-stopwords.txt: -------------------------------------------------------------------------------- 1 | a 2 | a's 3 | able 4 | about 5 | above 6 | according 7 | accordingly 8 | across 9 | actually 10 | after 11 | afterwards 12 | again 13 | against 14 | ain't 15 | all 16 | allow 17 | allows 18 | almost 19 | alone 20 | along 21 | already 22 | also 23 | although 24 | always 25 | am 26 | among 27 | amongst 28 | an 29 | and 30 | another 31 | any 32 | anybody 33 | anyhow 34 | anyone 35 | anything 36 | anyway 37 | anyways 38 | anywhere 39 | apart 40 | appear 41 | appreciate 42 | appropriate 43 | are 44 | aren't 45 | around 46 | as 47 | aside 48 | ask 49 | asking 50 | associated 51 | at 52 | available 53 | away 54 | awfully 55 | b 56 | be 57 | became 58 | because 59 | become 60 | becomes 61 | becoming 62 | been 63 | before 64 | beforehand 65 | behind 66 | being 67 | believe 68 | below 69 | beside 70 | besides 71 | best 72 | better 73 | between 74 | beyond 75 | both 76 | brief 77 | but 78 | by 79 | c 80 | c'mon 81 | c's 82 | came 83 | can 84 | can't 85 | cannot 86 | cant 87 | cause 88 | causes 89 | certain 90 | certainly 91 | changes 92 | clearly 93 | co 94 | com 95 | come 96 | comes 97 | concerning 98 | consequently 99 | consider 100 | considering 101 | contain 102 | containing 103 | contains 104 | corresponding 105 | could 106 | couldn't 107 | course 108 | currently 109 | d 110 | definitely 111 | described 112 | despite 113 | did 114 | didn't 115 | different 116 | do 117 | does 118 | doesn't 119 | doing 120 | don't 121 | done 122 | down 123 | downwards 124 | during 125 | e 126 | each 127 | edu 128 | eg 129 | eight 130 | either 131 | else 132 | elsewhere 133 | enough 134 | entirely 135 | especially 136 | et 137 | etc 138 | even 139 | ever 140 | every 141 | everybody 142 | everyone 143 | everything 144 | everywhere 145 | ex 146 | exactly 147 | example 148 | except 149 | f 150 | far 151 | few 152 | fifth 153 | first 154 | five 155 | followed 156 | following 157 | follows 158 | for 159 | former 160 | formerly 161 | forth 162 | four 163 | from 164 | further 165 | furthermore 166 | g 167 | get 168 | gets 169 | getting 170 | given 171 | gives 172 | go 173 | goes 174 | going 175 | gone 176 | got 177 | gotten 178 | greetings 179 | h 180 | had 181 | hadn't 182 | happens 183 | hardly 184 | has 185 | hasn't 186 | have 187 | haven't 188 | having 189 | he 190 | he's 191 | hello 192 | help 193 | hence 194 | her 195 | here 196 | here's 197 | hereafter 198 | hereby 199 | herein 200 | hereupon 201 | hers 202 | herself 203 | hi 204 | him 205 | himself 206 | his 207 | hither 208 | hopefully 209 | how 210 | howbeit 211 | however 212 | i 213 | i'd 214 | i'll 215 | i'm 216 | i've 217 | ie 218 | if 219 | ignored 220 | immediate 221 | in 222 | inasmuch 223 | inc 224 | indeed 225 | indicate 226 | indicated 227 | indicates 228 | inner 229 | insofar 230 | instead 231 | into 232 | inward 233 | is 234 | isn't 235 | it 236 | it'd 237 | it'll 238 | it's 239 | its 240 | itself 241 | j 242 | just 243 | k 244 | keep 245 | keeps 246 | kept 247 | know 248 | knows 249 | known 250 | l 251 | last 252 | lately 253 | later 254 | latter 255 | latterly 256 | least 257 | less 258 | lest 259 | let 260 | let's 261 | like 262 | liked 263 | likely 264 | little 265 | look 266 | looking 267 | looks 268 | ltd 269 | m 270 | mainly 271 | many 272 | may 273 | maybe 274 | me 275 | mean 276 | meanwhile 277 | merely 278 | might 279 | more 280 | moreover 281 | most 282 | mostly 283 | much 284 | must 285 | my 286 | myself 287 | n 288 | name 289 | namely 290 | nd 291 | near 292 | nearly 293 | necessary 294 | need 295 | needs 296 | neither 297 | never 298 | nevertheless 299 | new 300 | next 301 | nine 302 | no 303 | nobody 304 | non 305 | none 306 | noone 307 | nor 308 | normally 309 | not 310 | nothing 311 | novel 312 | now 313 | nowhere 314 | o 315 | obviously 316 | of 317 | off 318 | often 319 | oh 320 | ok 321 | okay 322 | old 323 | on 324 | once 325 | one 326 | ones 327 | only 328 | onto 329 | or 330 | other 331 | others 332 | otherwise 333 | ought 334 | our 335 | ours 336 | ourselves 337 | out 338 | outside 339 | over 340 | overall 341 | own 342 | p 343 | particular 344 | particularly 345 | per 346 | perhaps 347 | placed 348 | please 349 | plus 350 | possible 351 | presumably 352 | probably 353 | provides 354 | q 355 | que 356 | quite 357 | qv 358 | r 359 | rather 360 | rd 361 | re 362 | really 363 | reasonably 364 | regarding 365 | regardless 366 | regards 367 | relatively 368 | respectively 369 | right 370 | s 371 | said 372 | same 373 | saw 374 | say 375 | saying 376 | says 377 | second 378 | secondly 379 | see 380 | seeing 381 | seem 382 | seemed 383 | seeming 384 | seems 385 | seen 386 | self 387 | selves 388 | sensible 389 | sent 390 | serious 391 | seriously 392 | seven 393 | several 394 | shall 395 | she 396 | should 397 | shouldn't 398 | since 399 | six 400 | so 401 | some 402 | somebody 403 | somehow 404 | someone 405 | something 406 | sometime 407 | sometimes 408 | somewhat 409 | somewhere 410 | soon 411 | sorry 412 | specified 413 | specify 414 | specifying 415 | still 416 | sub 417 | such 418 | sup 419 | sure 420 | t 421 | t's 422 | take 423 | taken 424 | tell 425 | tends 426 | th 427 | than 428 | thank 429 | thanks 430 | thanx 431 | that 432 | that's 433 | thats 434 | the 435 | their 436 | theirs 437 | them 438 | themselves 439 | then 440 | thence 441 | there 442 | there's 443 | thereafter 444 | thereby 445 | therefore 446 | therein 447 | theres 448 | thereupon 449 | these 450 | they 451 | they'd 452 | they'll 453 | they're 454 | they've 455 | think 456 | third 457 | this 458 | thorough 459 | thoroughly 460 | those 461 | though 462 | three 463 | through 464 | throughout 465 | thru 466 | thus 467 | to 468 | together 469 | too 470 | took 471 | toward 472 | towards 473 | tried 474 | tries 475 | truly 476 | try 477 | trying 478 | twice 479 | two 480 | u 481 | un 482 | under 483 | unfortunately 484 | unless 485 | unlikely 486 | until 487 | unto 488 | up 489 | upon 490 | us 491 | use 492 | used 493 | useful 494 | uses 495 | using 496 | usually 497 | uucp 498 | v 499 | value 500 | various 501 | very 502 | via 503 | viz 504 | vs 505 | w 506 | want 507 | wants 508 | was 509 | wasn't 510 | way 511 | we 512 | we'd 513 | we'll 514 | we're 515 | we've 516 | welcome 517 | well 518 | went 519 | were 520 | weren't 521 | what 522 | what's 523 | whatever 524 | when 525 | whence 526 | whenever 527 | where 528 | where's 529 | whereafter 530 | whereas 531 | whereby 532 | wherein 533 | whereupon 534 | wherever 535 | whether 536 | which 537 | while 538 | whither 539 | who 540 | who's 541 | whoever 542 | whole 543 | whom 544 | whose 545 | why 546 | will 547 | willing 548 | wish 549 | with 550 | within 551 | without 552 | won't 553 | wonder 554 | would 555 | would 556 | wouldn't 557 | x 558 | y 559 | yes 560 | yet 561 | you 562 | you'd 563 | you'll 564 | you're 565 | you've 566 | your 567 | yours 568 | yourself 569 | yourselves 570 | z 571 | zero -------------------------------------------------------------------------------- /raw/mysql.txt: -------------------------------------------------------------------------------- 1 | a's 2 | ableabout 3 | above 4 | according 5 | accordingly 6 | across 7 | actually 8 | after 9 | afterwards 10 | again 11 | against 12 | ain't 13 | all 14 | allow 15 | allows 16 | almost 17 | alone 18 | along 19 | already 20 | also 21 | although 22 | always 23 | am 24 | among 25 | amongst 26 | an 27 | and 28 | another 29 | any 30 | anybody 31 | anyhow 32 | anyone 33 | anything 34 | anyway 35 | anyways 36 | anywhere 37 | apart 38 | appear 39 | appreciate 40 | appropriate 41 | are 42 | aren't 43 | around 44 | as 45 | aside 46 | ask 47 | asking 48 | associated 49 | at 50 | available 51 | away 52 | awfully 53 | be 54 | became 55 | because 56 | become 57 | becomes 58 | becoming 59 | been 60 | before 61 | beforehand 62 | behind 63 | being 64 | believe 65 | below 66 | beside 67 | besides 68 | best 69 | better 70 | between 71 | beyond 72 | both 73 | brief 74 | but 75 | by 76 | c'mon 77 | c's 78 | came 79 | can 80 | can't 81 | cannot 82 | cant 83 | cause 84 | causes 85 | certain 86 | certainly 87 | changes 88 | clearly 89 | co 90 | com 91 | come 92 | comes 93 | concerning 94 | consequently 95 | consider 96 | considering 97 | contain 98 | containing 99 | contains 100 | corresponding 101 | could 102 | couldn't 103 | course 104 | currently 105 | definitely 106 | described 107 | despite 108 | did 109 | didn't 110 | different 111 | do 112 | does 113 | doesn't 114 | doing 115 | don't 116 | done 117 | down 118 | downwards 119 | during 120 | each 121 | edu 122 | eg 123 | eight 124 | either 125 | else 126 | elsewhere 127 | enough 128 | entirely 129 | especially 130 | et 131 | etc 132 | even 133 | ever 134 | every 135 | everybody 136 | everyone 137 | everything 138 | everywhere 139 | ex 140 | exactly 141 | example 142 | except 143 | far 144 | few 145 | fifth 146 | first 147 | five 148 | followed 149 | following 150 | follows 151 | for 152 | former 153 | formerly 154 | forth 155 | four 156 | from 157 | further 158 | furthermore 159 | get 160 | gets 161 | getting 162 | given 163 | gives 164 | go 165 | goes 166 | going 167 | gone 168 | got 169 | gotten 170 | greetings 171 | had 172 | hadn't 173 | happens 174 | hardly 175 | has 176 | hasn't 177 | have 178 | haven't 179 | having 180 | he 181 | he's 182 | hello 183 | help 184 | hence 185 | her 186 | here 187 | here's 188 | hereafter 189 | hereby 190 | herein 191 | hereupon 192 | hers 193 | herself 194 | hi 195 | him 196 | himself 197 | his 198 | hither 199 | hopefully 200 | how 201 | howbeit 202 | however 203 | i'd 204 | i'll 205 | i'm 206 | i've 207 | ie 208 | if 209 | ignored 210 | immediate 211 | in 212 | inasmuch 213 | inc 214 | indeed 215 | indicate 216 | indicated 217 | indicates 218 | inner 219 | insofar 220 | instead 221 | into 222 | inward 223 | is 224 | isn't 225 | it 226 | it'd 227 | it'll 228 | it's 229 | its 230 | itself 231 | just 232 | keep 233 | keeps 234 | kept 235 | know 236 | known 237 | knows 238 | last 239 | lately 240 | later 241 | latter 242 | latterly 243 | least 244 | less 245 | lest 246 | let 247 | let's 248 | like 249 | liked 250 | likely 251 | little 252 | look 253 | looking 254 | looks 255 | ltd 256 | mainly 257 | many 258 | may 259 | maybe 260 | me 261 | mean 262 | meanwhile 263 | merely 264 | might 265 | more 266 | moreover 267 | most 268 | mostly 269 | much 270 | must 271 | my 272 | myself 273 | name 274 | namely 275 | nd 276 | near 277 | nearly 278 | necessary 279 | need 280 | needs 281 | neither 282 | never 283 | nevertheless 284 | new 285 | next 286 | nine 287 | no 288 | nobody 289 | non 290 | none 291 | noone 292 | nor 293 | normally 294 | not 295 | nothing 296 | novel 297 | now 298 | nowhere 299 | obviously 300 | of 301 | off 302 | often 303 | oh 304 | ok 305 | okay 306 | old 307 | on 308 | once 309 | one 310 | ones 311 | only 312 | onto 313 | or 314 | other 315 | others 316 | otherwise 317 | ought 318 | our 319 | ours 320 | ourselves 321 | out 322 | outside 323 | over 324 | overall 325 | own 326 | particular 327 | particularly 328 | per 329 | perhaps 330 | placed 331 | please 332 | plus 333 | possible 334 | presumably 335 | probably 336 | provides 337 | que 338 | quite 339 | qv 340 | rather 341 | rd 342 | re 343 | really 344 | reasonably 345 | regarding 346 | regardless 347 | regards 348 | relatively 349 | respectively 350 | right 351 | said 352 | same 353 | saw 354 | say 355 | saying 356 | says 357 | second 358 | secondly 359 | see 360 | seeing 361 | seem 362 | seemed 363 | seeming 364 | seems 365 | seen 366 | self 367 | selves 368 | sensible 369 | sent 370 | serious 371 | seriously 372 | seven 373 | several 374 | shall 375 | she 376 | should 377 | shouldn't 378 | since 379 | six 380 | so 381 | some 382 | somebody 383 | somehow 384 | someone 385 | something 386 | sometime 387 | sometimes 388 | somewhat 389 | somewhere 390 | soon 391 | sorry 392 | specified 393 | specify 394 | specifying 395 | still 396 | sub 397 | such 398 | sup 399 | sure 400 | t's 401 | take 402 | taken 403 | tell 404 | tends 405 | th 406 | than 407 | thank 408 | thanks 409 | thanx 410 | that 411 | that's 412 | thats 413 | the 414 | their 415 | theirs 416 | them 417 | themselves 418 | then 419 | thence 420 | there 421 | there's 422 | thereafter 423 | thereby 424 | therefore 425 | therein 426 | theres 427 | thereupon 428 | these 429 | they 430 | they'd 431 | they'll 432 | they're 433 | they've 434 | think 435 | third 436 | this 437 | thorough 438 | thoroughly 439 | those 440 | though 441 | three 442 | through 443 | throughout 444 | thru 445 | thus 446 | to 447 | together 448 | too 449 | took 450 | toward 451 | towards 452 | tried 453 | tries 454 | truly 455 | try 456 | trying 457 | twice 458 | two 459 | un 460 | under 461 | unfortunately 462 | unless 463 | unlikely 464 | until 465 | unto 466 | up 467 | upon 468 | us 469 | use 470 | used 471 | useful 472 | uses 473 | using 474 | usually 475 | value 476 | various 477 | very 478 | via 479 | viz 480 | vs 481 | want 482 | wants 483 | was 484 | wasn't 485 | way 486 | we 487 | we'd 488 | we'll 489 | we're 490 | we've 491 | welcome 492 | well 493 | went 494 | were 495 | weren't 496 | what 497 | what's 498 | whatever 499 | when 500 | whence 501 | whenever 502 | where 503 | where's 504 | whereafter 505 | whereas 506 | whereby 507 | wherein 508 | whereupon 509 | wherever 510 | whether 511 | which 512 | while 513 | whither 514 | who 515 | who's 516 | whoever 517 | whole 518 | whom 519 | whose 520 | why 521 | will 522 | willing 523 | wish 524 | with 525 | within 526 | without 527 | won't 528 | wonder 529 | would 530 | wouldn't 531 | yes 532 | yet 533 | you 534 | you'd 535 | you'll 536 | you're 537 | you've 538 | your 539 | yours 540 | yourself 541 | yourselves 542 | zero -------------------------------------------------------------------------------- /raw/node-stopwords-english.txt: -------------------------------------------------------------------------------- 1 | a 2 | able 3 | about 4 | above 5 | abroad 6 | according 7 | accordingly 8 | across 9 | actually 10 | adj 11 | after 12 | afterwards 13 | again 14 | against 15 | ago 16 | ahead 17 | aint 18 | all 19 | allow 20 | allows 21 | almost 22 | alone 23 | along 24 | alongside 25 | already 26 | also 27 | although 28 | always 29 | am 30 | amid 31 | amidst 32 | among 33 | amongst 34 | an 35 | and 36 | another 37 | any 38 | anybody 39 | anyhow 40 | anyone 41 | anything 42 | anyway 43 | anyways 44 | anywhere 45 | apart 46 | appear 47 | appreciate 48 | appropriate 49 | are 50 | arent 51 | around 52 | as 53 | as 54 | aside 55 | ask 56 | asking 57 | associated 58 | at 59 | available 60 | away 61 | awfully 62 | b 63 | back 64 | backward 65 | backwards 66 | be 67 | became 68 | because 69 | become 70 | becomes 71 | becoming 72 | been 73 | before 74 | beforehand 75 | begin 76 | behind 77 | being 78 | believe 79 | below 80 | beside 81 | besides 82 | best 83 | better 84 | between 85 | beyond 86 | both 87 | brief 88 | but 89 | by 90 | c 91 | came 92 | can 93 | cannot 94 | cant 95 | cant 96 | caption 97 | cause 98 | causes 99 | certain 100 | certainly 101 | changes 102 | clearly 103 | cmon 104 | co 105 | co. 106 | com 107 | come 108 | comes 109 | concerning 110 | consequently 111 | consider 112 | considering 113 | contain 114 | containing 115 | contains 116 | corresponding 117 | could 118 | couldnt 119 | course 120 | cs 121 | currently 122 | d 123 | dare 124 | darent 125 | definitely 126 | described 127 | despite 128 | did 129 | didnt 130 | different 131 | directly 132 | do 133 | does 134 | doesnt 135 | doing 136 | done 137 | dont 138 | down 139 | downwards 140 | during 141 | e 142 | each 143 | edu 144 | eg 145 | eight 146 | eighty 147 | either 148 | else 149 | elsewhere 150 | end 151 | ending 152 | enough 153 | entirely 154 | especially 155 | et 156 | etc 157 | even 158 | ever 159 | evermore 160 | every 161 | everybody 162 | everyone 163 | everything 164 | everywhere 165 | ex 166 | exactly 167 | example 168 | except 169 | f 170 | fairly 171 | far 172 | farther 173 | few 174 | fewer 175 | fifth 176 | first 177 | five 178 | followed 179 | following 180 | follows 181 | for 182 | forever 183 | former 184 | formerly 185 | forth 186 | forward 187 | found 188 | four 189 | from 190 | further 191 | furthermore 192 | g 193 | get 194 | gets 195 | getting 196 | given 197 | gives 198 | go 199 | goes 200 | going 201 | gone 202 | got 203 | gotten 204 | greetings 205 | h 206 | had 207 | hadnt 208 | half 209 | happens 210 | hardly 211 | has 212 | hasnt 213 | have 214 | havent 215 | having 216 | he 217 | hed 218 | hell 219 | hello 220 | help 221 | hence 222 | her 223 | here 224 | hereafter 225 | hereby 226 | herein 227 | heres 228 | hereupon 229 | hers 230 | herself 231 | hes 232 | hi 233 | him 234 | himself 235 | his 236 | hither 237 | hopefully 238 | how 239 | howbeit 240 | however 241 | hundred 242 | i 243 | id 244 | ie 245 | if 246 | ignored 247 | ill 248 | im 249 | immediate 250 | in 251 | inasmuch 252 | inc 253 | inc. 254 | indeed 255 | indicate 256 | indicated 257 | indicates 258 | inner 259 | inside 260 | insofar 261 | instead 262 | into 263 | inward 264 | is 265 | isnt 266 | it 267 | itd 268 | itll 269 | its 270 | its 271 | itself 272 | ive 273 | j 274 | just 275 | k 276 | keep 277 | keeps 278 | kept 279 | know 280 | known 281 | knows 282 | l 283 | last 284 | lately 285 | later 286 | latter 287 | latterly 288 | least 289 | less 290 | lest 291 | let 292 | lets 293 | like 294 | liked 295 | likely 296 | likewise 297 | little 298 | look 299 | looking 300 | looks 301 | low 302 | lower 303 | ltd 304 | m 305 | made 306 | mainly 307 | make 308 | makes 309 | many 310 | may 311 | maybe 312 | maynt 313 | me 314 | mean 315 | meantime 316 | meanwhile 317 | merely 318 | might 319 | mightnt 320 | mine 321 | minus 322 | miss 323 | more 324 | moreover 325 | most 326 | mostly 327 | mr 328 | mrs 329 | much 330 | must 331 | mustnt 332 | my 333 | myself 334 | n 335 | name 336 | namely 337 | nd 338 | near 339 | nearly 340 | necessary 341 | need 342 | neednt 343 | needs 344 | neither 345 | never 346 | neverf 347 | neverless 348 | nevertheless 349 | new 350 | next 351 | nine 352 | ninety 353 | no 354 | nobody 355 | non 356 | none 357 | nonetheless 358 | noone 359 | no-one 360 | nor 361 | normally 362 | not 363 | nothing 364 | notwithstanding 365 | novel 366 | now 367 | nowhere 368 | o 369 | obviously 370 | of 371 | off 372 | often 373 | oh 374 | ok 375 | okay 376 | old 377 | on 378 | once 379 | one 380 | ones 381 | ones 382 | only 383 | onto 384 | opposite 385 | or 386 | other 387 | others 388 | otherwise 389 | ought 390 | oughtnt 391 | our 392 | ours 393 | ourselves 394 | out 395 | outside 396 | over 397 | overall 398 | own 399 | p 400 | particular 401 | particularly 402 | past 403 | per 404 | perhaps 405 | placed 406 | please 407 | plus 408 | possible 409 | presumably 410 | probably 411 | provided 412 | provides 413 | q 414 | que 415 | quite 416 | qv 417 | r 418 | rather 419 | rd 420 | re 421 | really 422 | reasonably 423 | recent 424 | recently 425 | regarding 426 | regardless 427 | regards 428 | relatively 429 | respectively 430 | right 431 | round 432 | s 433 | said 434 | same 435 | saw 436 | say 437 | saying 438 | says 439 | second 440 | secondly 441 | see 442 | seeing 443 | seem 444 | seemed 445 | seeming 446 | seems 447 | seen 448 | self 449 | selves 450 | sensible 451 | sent 452 | serious 453 | seriously 454 | seven 455 | several 456 | shall 457 | shant 458 | she 459 | shed 460 | shell 461 | shes 462 | should 463 | shouldnt 464 | since 465 | six 466 | so 467 | some 468 | somebody 469 | someday 470 | somehow 471 | someone 472 | something 473 | sometime 474 | sometimes 475 | somewhat 476 | somewhere 477 | soon 478 | sorry 479 | specified 480 | specify 481 | specifying 482 | still 483 | sub 484 | such 485 | sup 486 | sure 487 | t 488 | take 489 | taken 490 | taking 491 | tell 492 | tends 493 | th 494 | than 495 | thank 496 | thanks 497 | thanx 498 | that 499 | thatll 500 | thats 501 | thats 502 | thatve 503 | the 504 | their 505 | theirs 506 | them 507 | themselves 508 | then 509 | thence 510 | there 511 | thereafter 512 | thereby 513 | thered 514 | therefore 515 | therein 516 | therell 517 | therere 518 | theres 519 | theres 520 | thereupon 521 | thereve 522 | these 523 | they 524 | theyd 525 | theyll 526 | theyre 527 | theyve 528 | thing 529 | things 530 | think 531 | third 532 | thirty 533 | this 534 | thorough 535 | thoroughly 536 | those 537 | though 538 | three 539 | through 540 | throughout 541 | thru 542 | thus 543 | till 544 | to 545 | together 546 | too 547 | took 548 | toward 549 | towards 550 | tried 551 | tries 552 | truly 553 | try 554 | trying 555 | ts 556 | twice 557 | two 558 | u 559 | un 560 | under 561 | underneath 562 | undoing 563 | unfortunately 564 | unless 565 | unlike 566 | unlikely 567 | until 568 | unto 569 | up 570 | upon 571 | upwards 572 | us 573 | use 574 | used 575 | useful 576 | uses 577 | using 578 | usually 579 | v 580 | value 581 | various 582 | versus 583 | very 584 | via 585 | viz 586 | vs 587 | w 588 | want 589 | wants 590 | was 591 | wasnt 592 | way 593 | we 594 | wed 595 | welcome 596 | well 597 | well 598 | went 599 | were 600 | were 601 | werent 602 | weve 603 | what 604 | whatever 605 | whatll 606 | whats 607 | whatve 608 | when 609 | whence 610 | whenever 611 | where 612 | whereafter 613 | whereas 614 | whereby 615 | wherein 616 | wheres 617 | whereupon 618 | wherever 619 | whether 620 | which 621 | whichever 622 | while 623 | whilst 624 | whither 625 | who 626 | whod 627 | whoever 628 | whole 629 | wholl 630 | whom 631 | whomever 632 | whos 633 | whose 634 | why 635 | will 636 | willing 637 | wish 638 | with 639 | within 640 | without 641 | wonder 642 | wont 643 | would 644 | wouldnt 645 | x 646 | y 647 | yes 648 | yet 649 | you 650 | youd 651 | youll 652 | your 653 | youre 654 | yours 655 | yourself 656 | yourselves 657 | youve 658 | z 659 | zero -------------------------------------------------------------------------------- /raw/onix-text-retrieval.txt: -------------------------------------------------------------------------------- 1 | a 2 | about 3 | above 4 | across 5 | after 6 | again 7 | against 8 | all 9 | almost 10 | alone 11 | along 12 | already 13 | also 14 | although 15 | always 16 | among 17 | an 18 | and 19 | another 20 | any 21 | anybody 22 | anyone 23 | anything 24 | anywhere 25 | are 26 | area 27 | areas 28 | around 29 | as 30 | ask 31 | asked 32 | asking 33 | asks 34 | at 35 | away 36 | b 37 | back 38 | backed 39 | backing 40 | backs 41 | be 42 | became 43 | because 44 | become 45 | becomes 46 | been 47 | before 48 | began 49 | behind 50 | being 51 | beings 52 | best 53 | better 54 | between 55 | big 56 | both 57 | but 58 | by 59 | c 60 | came 61 | can 62 | cannot 63 | case 64 | cases 65 | certain 66 | certainly 67 | clear 68 | clearly 69 | come 70 | could 71 | d 72 | did 73 | differ 74 | different 75 | differently 76 | do 77 | does 78 | done 79 | down 80 | down 81 | downed 82 | downing 83 | downs 84 | during 85 | e 86 | each 87 | early 88 | either 89 | end 90 | ended 91 | ending 92 | ends 93 | enough 94 | even 95 | evenly 96 | ever 97 | every 98 | everybody 99 | everyone 100 | everything 101 | everywhere 102 | f 103 | face 104 | faces 105 | fact 106 | facts 107 | far 108 | felt 109 | few 110 | find 111 | finds 112 | first 113 | for 114 | four 115 | from 116 | full 117 | fully 118 | further 119 | furthered 120 | furthering 121 | furthers 122 | g 123 | gave 124 | general 125 | generally 126 | get 127 | gets 128 | give 129 | given 130 | gives 131 | go 132 | going 133 | good 134 | goods 135 | got 136 | great 137 | greater 138 | greatest 139 | group 140 | grouped 141 | grouping 142 | groups 143 | h 144 | had 145 | has 146 | have 147 | having 148 | he 149 | her 150 | here 151 | herself 152 | high 153 | high 154 | high 155 | higher 156 | highest 157 | him 158 | himself 159 | his 160 | how 161 | however 162 | i 163 | if 164 | important 165 | in 166 | interest 167 | interested 168 | interesting 169 | interests 170 | into 171 | is 172 | it 173 | its 174 | itself 175 | j 176 | just 177 | k 178 | keep 179 | keeps 180 | kind 181 | knew 182 | know 183 | known 184 | knows 185 | l 186 | large 187 | largely 188 | last 189 | later 190 | latest 191 | least 192 | less 193 | let 194 | lets 195 | like 196 | likely 197 | long 198 | longer 199 | longest 200 | m 201 | made 202 | make 203 | making 204 | man 205 | many 206 | may 207 | me 208 | member 209 | members 210 | men 211 | might 212 | more 213 | most 214 | mostly 215 | mr 216 | mrs 217 | much 218 | must 219 | my 220 | myself 221 | n 222 | necessary 223 | need 224 | needed 225 | needing 226 | needs 227 | never 228 | new 229 | new 230 | newer 231 | newest 232 | next 233 | no 234 | nobody 235 | non 236 | noone 237 | not 238 | nothing 239 | now 240 | nowhere 241 | number 242 | numbers 243 | o 244 | of 245 | off 246 | often 247 | old 248 | older 249 | oldest 250 | on 251 | once 252 | one 253 | only 254 | open 255 | opened 256 | opening 257 | opens 258 | or 259 | order 260 | ordered 261 | ordering 262 | orders 263 | other 264 | others 265 | our 266 | out 267 | over 268 | p 269 | part 270 | parted 271 | parting 272 | parts 273 | per 274 | perhaps 275 | place 276 | places 277 | point 278 | pointed 279 | pointing 280 | points 281 | possible 282 | present 283 | presented 284 | presenting 285 | presents 286 | problem 287 | problems 288 | put 289 | puts 290 | q 291 | quite 292 | r 293 | rather 294 | really 295 | right 296 | right 297 | room 298 | rooms 299 | s 300 | said 301 | same 302 | saw 303 | say 304 | says 305 | second 306 | seconds 307 | see 308 | seem 309 | seemed 310 | seeming 311 | seems 312 | sees 313 | several 314 | shall 315 | she 316 | should 317 | show 318 | showed 319 | showing 320 | shows 321 | side 322 | sides 323 | since 324 | small 325 | smaller 326 | smallest 327 | so 328 | some 329 | somebody 330 | someone 331 | something 332 | somewhere 333 | state 334 | states 335 | still 336 | still 337 | such 338 | sure 339 | t 340 | take 341 | taken 342 | than 343 | that 344 | the 345 | their 346 | them 347 | then 348 | there 349 | therefore 350 | these 351 | they 352 | thing 353 | things 354 | think 355 | thinks 356 | this 357 | those 358 | though 359 | thought 360 | thoughts 361 | three 362 | through 363 | thus 364 | to 365 | today 366 | together 367 | too 368 | took 369 | toward 370 | turn 371 | turned 372 | turning 373 | turns 374 | two 375 | u 376 | under 377 | until 378 | up 379 | upon 380 | us 381 | use 382 | used 383 | uses 384 | v 385 | very 386 | w 387 | want 388 | wanted 389 | wanting 390 | wants 391 | was 392 | way 393 | ways 394 | we 395 | well 396 | wells 397 | went 398 | were 399 | what 400 | when 401 | where 402 | whether 403 | which 404 | while 405 | who 406 | whole 407 | whose 408 | why 409 | will 410 | with 411 | within 412 | without 413 | work 414 | worked 415 | working 416 | works 417 | would 418 | x 419 | y 420 | year 421 | years 422 | yet 423 | you 424 | young 425 | younger 426 | youngest 427 | your 428 | yours 429 | z -------------------------------------------------------------------------------- /raw/pubmed.txt: -------------------------------------------------------------------------------- 1 | a 2 | about 3 | again 4 | all 5 | almost 6 | also 7 | although 8 | always 9 | among 10 | an 11 | and 12 | another 13 | any 14 | are 15 | as 16 | at 17 | be 18 | because 19 | been 20 | before 21 | being 22 | between 23 | both 24 | but 25 | by 26 | can 27 | could 28 | did 29 | do 30 | does 31 | done 32 | due 33 | during 34 | each 35 | either 36 | enough 37 | especially 38 | etc 39 | for 40 | found 41 | from 42 | further 43 | had 44 | has 45 | have 46 | having 47 | here 48 | how 49 | however 50 | i 51 | if 52 | in 53 | into 54 | is 55 | it 56 | its 57 | itself 58 | just 59 | kg 60 | km 61 | made 62 | mainly 63 | make 64 | may 65 | mg 66 | might 67 | ml 68 | mm 69 | most 70 | mostly 71 | must 72 | nearly 73 | neither 74 | no 75 | nor 76 | obtained 77 | of 78 | often 79 | on 80 | our 81 | overall 82 | perhaps 83 | pmid 84 | quite 85 | rather 86 | really 87 | regarding 88 | seem 89 | seen 90 | several 91 | should 92 | show 93 | showed 94 | shown 95 | shows 96 | significantly 97 | since 98 | so 99 | some 100 | such 101 | than 102 | that 103 | the 104 | their 105 | theirs 106 | them 107 | then 108 | there 109 | therefore 110 | these 111 | they 112 | this 113 | those 114 | through 115 | thus 116 | to 117 | upon 118 | use 119 | used 120 | using 121 | various 122 | very 123 | was 124 | we 125 | were 126 | what 127 | when 128 | which 129 | while 130 | with 131 | within 132 | without 133 | would -------------------------------------------------------------------------------- /raw/ranksnl-google.txt: -------------------------------------------------------------------------------- 1 | I 2 | a 3 | about 4 | an 5 | are 6 | as 7 | at 8 | be 9 | by 10 | com 11 | for 12 | from 13 | how 14 | in 15 | is 16 | it 17 | of 18 | on 19 | or 20 | that 21 | the 22 | this 23 | to 24 | was 25 | what 26 | when 27 | where 28 | who 29 | will 30 | with 31 | the 32 | www -------------------------------------------------------------------------------- /raw/ranksnl1-english.txt: -------------------------------------------------------------------------------- 1 | a 2 | about 3 | above 4 | after 5 | again 6 | against 7 | all 8 | am 9 | an 10 | and 11 | any 12 | are 13 | aren't 14 | as 15 | at 16 | be 17 | because 18 | been 19 | before 20 | being 21 | below 22 | between 23 | both 24 | but 25 | by 26 | can't 27 | cannot 28 | could 29 | couldn't 30 | did 31 | didn't 32 | do 33 | does 34 | doesn't 35 | doing 36 | don't 37 | down 38 | during 39 | each 40 | few 41 | for 42 | from 43 | further 44 | had 45 | hadn't 46 | has 47 | hasn't 48 | have 49 | haven't 50 | having 51 | he 52 | he'd 53 | he'll 54 | he's 55 | her 56 | here 57 | here's 58 | hers 59 | herself 60 | him 61 | himself 62 | his 63 | how 64 | how's 65 | i 66 | i'd 67 | i'll 68 | i'm 69 | i've 70 | if 71 | in 72 | into 73 | is 74 | isn't 75 | it 76 | it's 77 | its 78 | itself 79 | let's 80 | me 81 | more 82 | most 83 | mustn't 84 | my 85 | myself 86 | no 87 | nor 88 | not 89 | of 90 | off 91 | on 92 | once 93 | only 94 | or 95 | other 96 | ought 97 | our 98 | ours 99 | ourselves 100 | out 101 | over 102 | own 103 | same 104 | shan't 105 | she 106 | she'd 107 | she'll 108 | she's 109 | should 110 | shouldn't 111 | so 112 | some 113 | such 114 | than 115 | that 116 | that's 117 | the 118 | their 119 | theirs 120 | them 121 | themselves 122 | then 123 | there 124 | there's 125 | these 126 | they 127 | they'd 128 | they'll 129 | they're 130 | they've 131 | this 132 | those 133 | through 134 | to 135 | too 136 | under 137 | until 138 | up 139 | very 140 | was 141 | wasn't 142 | we 143 | we'd 144 | we'll 145 | we're 146 | we've 147 | were 148 | weren't 149 | what 150 | what's 151 | when 152 | when's 153 | where 154 | where's 155 | which 156 | while 157 | who 158 | who's 159 | whom 160 | why 161 | why's 162 | with 163 | won't 164 | would 165 | wouldn't 166 | you 167 | you'd 168 | you'll 169 | you're 170 | you've 171 | your 172 | yours 173 | yourself 174 | yourselves -------------------------------------------------------------------------------- /raw/ranksnl2-english.txt: -------------------------------------------------------------------------------- 1 | a 2 | able 3 | about 4 | above 5 | abst 6 | accordance 7 | according 8 | accordingly 9 | across 10 | act 11 | actually 12 | added 13 | adj 14 | affected 15 | affecting 16 | affects 17 | after 18 | afterwards 19 | again 20 | against 21 | ah 22 | all 23 | almost 24 | alone 25 | along 26 | already 27 | also 28 | although 29 | always 30 | am 31 | among 32 | amongst 33 | an 34 | and 35 | announce 36 | another 37 | any 38 | anybody 39 | anyhow 40 | anymore 41 | anyone 42 | anything 43 | anyway 44 | anyways 45 | anywhere 46 | apparently 47 | approximately 48 | are 49 | aren 50 | arent 51 | arise 52 | around 53 | as 54 | aside 55 | ask 56 | asking 57 | at 58 | auth 59 | available 60 | away 61 | awfully 62 | b 63 | back 64 | be 65 | became 66 | because 67 | become 68 | becomes 69 | becoming 70 | been 71 | before 72 | beforehand 73 | begin 74 | beginning 75 | beginnings 76 | begins 77 | behind 78 | being 79 | believe 80 | below 81 | beside 82 | besides 83 | between 84 | beyond 85 | biol 86 | both 87 | brief 88 | briefly 89 | but 90 | by 91 | c 92 | ca 93 | came 94 | can 95 | cannot 96 | can't 97 | cause 98 | causes 99 | certain 100 | certainly 101 | co 102 | com 103 | come 104 | comes 105 | contain 106 | containing 107 | contains 108 | could 109 | couldnt 110 | d 111 | date 112 | did 113 | didn't 114 | different 115 | do 116 | does 117 | doesn't 118 | doing 119 | done 120 | don't 121 | down 122 | downwards 123 | due 124 | during 125 | e 126 | each 127 | ed 128 | edu 129 | effect 130 | eg 131 | eight 132 | eighty 133 | either 134 | else 135 | elsewhere 136 | end 137 | ending 138 | enough 139 | especially 140 | et 141 | et-al 142 | etc 143 | even 144 | ever 145 | every 146 | everybody 147 | everyone 148 | everything 149 | everywhere 150 | ex 151 | except 152 | f 153 | far 154 | few 155 | ff 156 | fifth 157 | first 158 | five 159 | fix 160 | followed 161 | following 162 | follows 163 | for 164 | former 165 | formerly 166 | forth 167 | found 168 | four 169 | from 170 | further 171 | furthermore 172 | g 173 | gave 174 | get 175 | gets 176 | getting 177 | give 178 | given 179 | gives 180 | giving 181 | go 182 | goes 183 | gone 184 | got 185 | gotten 186 | h 187 | had 188 | happens 189 | hardly 190 | has 191 | hasn't 192 | have 193 | haven't 194 | having 195 | he 196 | hed 197 | hence 198 | her 199 | here 200 | hereafter 201 | hereby 202 | herein 203 | heres 204 | hereupon 205 | hers 206 | herself 207 | hes 208 | hi 209 | hid 210 | him 211 | himself 212 | his 213 | hither 214 | home 215 | how 216 | howbeit 217 | however 218 | hundred 219 | i 220 | id 221 | ie 222 | if 223 | i'll 224 | im 225 | immediate 226 | immediately 227 | importance 228 | important 229 | in 230 | inc 231 | indeed 232 | index 233 | information 234 | instead 235 | into 236 | invention 237 | inward 238 | is 239 | isn't 240 | it 241 | itd 242 | it'll 243 | its 244 | itself 245 | i've 246 | j 247 | just 248 | k 249 | keep 250 | keeps 251 | kept 252 | kg 253 | km 254 | know 255 | known 256 | knows 257 | l 258 | largely 259 | last 260 | lately 261 | later 262 | latter 263 | latterly 264 | least 265 | less 266 | lest 267 | let 268 | lets 269 | like 270 | liked 271 | likely 272 | line 273 | little 274 | 'll 275 | look 276 | looking 277 | looks 278 | ltd 279 | m 280 | made 281 | mainly 282 | make 283 | makes 284 | many 285 | may 286 | maybe 287 | me 288 | mean 289 | means 290 | meantime 291 | meanwhile 292 | merely 293 | mg 294 | might 295 | million 296 | miss 297 | ml 298 | more 299 | moreover 300 | most 301 | mostly 302 | mr 303 | mrs 304 | much 305 | mug 306 | must 307 | my 308 | myself 309 | n 310 | na 311 | name 312 | namely 313 | nay 314 | nd 315 | near 316 | nearly 317 | necessarily 318 | necessary 319 | need 320 | needs 321 | neither 322 | never 323 | nevertheless 324 | new 325 | next 326 | nine 327 | ninety 328 | no 329 | nobody 330 | non 331 | none 332 | nonetheless 333 | noone 334 | nor 335 | normally 336 | nos 337 | not 338 | noted 339 | nothing 340 | now 341 | nowhere 342 | o 343 | obtain 344 | obtained 345 | obviously 346 | of 347 | off 348 | often 349 | oh 350 | ok 351 | okay 352 | old 353 | omitted 354 | on 355 | once 356 | one 357 | ones 358 | only 359 | onto 360 | or 361 | ord 362 | other 363 | others 364 | otherwise 365 | ought 366 | our 367 | ours 368 | ourselves 369 | out 370 | outside 371 | over 372 | overall 373 | owing 374 | own 375 | p 376 | page 377 | pages 378 | part 379 | particular 380 | particularly 381 | past 382 | per 383 | perhaps 384 | placed 385 | please 386 | plus 387 | poorly 388 | possible 389 | possibly 390 | potentially 391 | pp 392 | predominantly 393 | present 394 | previously 395 | primarily 396 | probably 397 | promptly 398 | proud 399 | provides 400 | put 401 | q 402 | que 403 | quickly 404 | quite 405 | qv 406 | r 407 | ran 408 | rather 409 | rd 410 | re 411 | readily 412 | really 413 | recent 414 | recently 415 | ref 416 | refs 417 | regarding 418 | regardless 419 | regards 420 | related 421 | relatively 422 | research 423 | respectively 424 | resulted 425 | resulting 426 | results 427 | right 428 | run 429 | s 430 | said 431 | same 432 | saw 433 | say 434 | saying 435 | says 436 | sec 437 | section 438 | see 439 | seeing 440 | seem 441 | seemed 442 | seeming 443 | seems 444 | seen 445 | self 446 | selves 447 | sent 448 | seven 449 | several 450 | shall 451 | she 452 | shed 453 | she'll 454 | shes 455 | should 456 | shouldn't 457 | show 458 | showed 459 | shown 460 | showns 461 | shows 462 | significant 463 | significantly 464 | similar 465 | similarly 466 | since 467 | six 468 | slightly 469 | so 470 | some 471 | somebody 472 | somehow 473 | someone 474 | somethan 475 | something 476 | sometime 477 | sometimes 478 | somewhat 479 | somewhere 480 | soon 481 | sorry 482 | specifically 483 | specified 484 | specify 485 | specifying 486 | still 487 | stop 488 | strongly 489 | sub 490 | substantially 491 | successfully 492 | such 493 | sufficiently 494 | suggest 495 | sup 496 | sure -------------------------------------------------------------------------------- /raw/seobook.txt: -------------------------------------------------------------------------------- 1 | a 2 | ii 3 | about 4 | above 5 | according 6 | across 7 | 39 8 | actually 9 | ad 10 | adj 11 | ae 12 | af 13 | after 14 | afterwards 15 | ag 16 | again 17 | against 18 | ai 19 | al 20 | all 21 | almost 22 | alone 23 | along 24 | already 25 | also 26 | although 27 | always 28 | am 29 | among 30 | amongst 31 | an 32 | and 33 | another 34 | any 35 | anyhow 36 | anyone 37 | anything 38 | anywhere 39 | ao 40 | aq 41 | ar 42 | are 43 | aren 44 | aren't 45 | around 46 | arpa 47 | as 48 | at 49 | au 50 | aw 51 | az 52 | b 53 | ba 54 | bb 55 | bd 56 | be 57 | became 58 | because 59 | become 60 | becomes 61 | becoming 62 | been 63 | before 64 | beforehand 65 | begin 66 | beginning 67 | behind 68 | being 69 | below 70 | beside 71 | besides 72 | between 73 | beyond 74 | bf 75 | bg 76 | bh 77 | bi 78 | billion 79 | bj 80 | bm 81 | bn 82 | bo 83 | both 84 | br 85 | bs 86 | bt 87 | but 88 | buy 89 | bv 90 | bw 91 | by 92 | bz 93 | c 94 | ca 95 | can 96 | can't 97 | cannot 98 | caption 99 | cc 100 | cd 101 | cf 102 | cg 103 | ch 104 | ci 105 | ck 106 | cl 107 | click 108 | cm 109 | cn 110 | co 111 | co. 112 | com 113 | copy 114 | could 115 | couldn 116 | couldn't 117 | cr 118 | cs 119 | cu 120 | cv 121 | cx 122 | cy 123 | cz 124 | d 125 | de 126 | did 127 | didn 128 | didn't 129 | dj 130 | dk 131 | dm 132 | do 133 | does 134 | doesn 135 | doesn't 136 | don 137 | don't 138 | down 139 | during 140 | dz 141 | e 142 | each 143 | ec 144 | edu 145 | ee 146 | eg 147 | eh 148 | eight 149 | eighty 150 | either 151 | else 152 | elsewhere 153 | end 154 | ending 155 | enough 156 | er 157 | es 158 | et 159 | etc 160 | even 161 | ever 162 | every 163 | everyone 164 | everything 165 | everywhere 166 | except 167 | f 168 | few 169 | fi 170 | fifty 171 | find 172 | first 173 | five 174 | fj 175 | fk 176 | fm 177 | fo 178 | for 179 | former 180 | formerly 181 | forty 182 | found 183 | four 184 | fr 185 | free 186 | from 187 | further 188 | fx 189 | g 190 | ga 191 | gb 192 | gd 193 | ge 194 | get 195 | gf 196 | gg 197 | gh 198 | gi 199 | gl 200 | gm 201 | gmt 202 | gn 203 | go 204 | gov 205 | gp 206 | gq 207 | gr 208 | gs 209 | gt 210 | gu 211 | gw 212 | gy 213 | h 214 | had 215 | has 216 | hasn 217 | hasn't 218 | have 219 | haven 220 | haven't 221 | he 222 | he'd 223 | he'll 224 | he's 225 | help 226 | hence 227 | her 228 | here 229 | here's 230 | hereafter 231 | hereby 232 | herein 233 | hereupon 234 | hers 235 | herself 236 | him 237 | himself 238 | his 239 | hk 240 | hm 241 | hn 242 | home 243 | homepage 244 | how 245 | however 246 | hr 247 | ht 248 | htm 249 | html 250 | http 251 | hu 252 | hundred 253 | i 254 | i'd 255 | i'll 256 | i'm 257 | i've 258 | i.e. 259 | id 260 | ie 261 | if 262 | il 263 | im 264 | in 265 | inc 266 | inc. 267 | indeed 268 | information 269 | instead 270 | int 271 | into 272 | io 273 | iq 274 | ir 275 | is 276 | isn 277 | isn't 278 | it 279 | it's 280 | its 281 | itself 282 | j 283 | je 284 | jm 285 | jo 286 | join 287 | jp 288 | k 289 | ke 290 | kg 291 | kh 292 | ki 293 | km 294 | kn 295 | kp 296 | kr 297 | kw 298 | ky 299 | kz 300 | l 301 | la 302 | last 303 | later 304 | latter 305 | lb 306 | lc 307 | least 308 | less 309 | let 310 | let's 311 | li 312 | like 313 | likely 314 | lk 315 | ll 316 | lr 317 | ls 318 | lt 319 | ltd 320 | lu 321 | lv 322 | ly 323 | m 324 | ma 325 | made 326 | make 327 | makes 328 | many 329 | maybe 330 | mc 331 | md 332 | me 333 | meantime 334 | meanwhile 335 | mg 336 | mh 337 | microsoft 338 | might 339 | mil 340 | million 341 | miss 342 | mk 343 | ml 344 | mm 345 | mn 346 | mo 347 | more 348 | moreover 349 | most 350 | mostly 351 | mp 352 | mq 353 | mr 354 | mrs 355 | ms 356 | msie 357 | mt 358 | mu 359 | much 360 | must 361 | mv 362 | mw 363 | mx 364 | my 365 | myself 366 | mz 367 | n 368 | na 369 | namely 370 | nc 371 | ne 372 | neither 373 | net 374 | netscape 375 | never 376 | nevertheless 377 | new 378 | next 379 | nf 380 | ng 381 | ni 382 | nine 383 | ninety 384 | nl 385 | no 386 | nobody 387 | none 388 | nonetheless 389 | noone 390 | nor 391 | not 392 | nothing 393 | now 394 | nowhere 395 | np 396 | nr 397 | nu 398 | nz 399 | o 400 | of 401 | off 402 | often 403 | om 404 | on 405 | once 406 | one 407 | one's 408 | only 409 | onto 410 | or 411 | org 412 | other 413 | others 414 | otherwise 415 | our 416 | ours 417 | ourselves 418 | out 419 | over 420 | overall 421 | own 422 | p 423 | pa 424 | page 425 | pe 426 | per 427 | perhaps 428 | pf 429 | pg 430 | ph 431 | pk 432 | pl 433 | pm 434 | pn 435 | pr 436 | pt 437 | pw 438 | py 439 | q 440 | qa 441 | r 442 | rather 443 | re 444 | recent 445 | recently 446 | reserved 447 | ring 448 | ro 449 | ru 450 | rw 451 | s 452 | sa 453 | same 454 | sb 455 | sc 456 | sd 457 | se 458 | seem 459 | seemed 460 | seeming 461 | seems 462 | seven 463 | seventy 464 | several 465 | sg 466 | sh 467 | she 468 | she'd 469 | she'll 470 | she's 471 | should 472 | shouldn 473 | shouldn't 474 | si 475 | since 476 | site 477 | six 478 | sixty 479 | sj 480 | sk 481 | sl 482 | sm 483 | sn 484 | so 485 | some 486 | somehow 487 | someone 488 | something 489 | sometime 490 | sometimes 491 | somewhere 492 | sr 493 | st 494 | still 495 | stop 496 | su 497 | such 498 | sv 499 | sy 500 | sz 501 | t 502 | taking 503 | tc 504 | td 505 | ten 506 | text 507 | tf 508 | tg 509 | test 510 | th 511 | than 512 | that 513 | that'll 514 | that's 515 | the 516 | their 517 | them 518 | themselves 519 | then 520 | thence 521 | there 522 | there'll 523 | there's 524 | thereafter 525 | thereby 526 | therefore 527 | therein 528 | thereupon 529 | these 530 | they 531 | they'd 532 | they'll 533 | they're 534 | they've 535 | thirty 536 | this 537 | those 538 | though 539 | thousand 540 | three 541 | through 542 | throughout 543 | thru 544 | thus 545 | tj 546 | tk 547 | tm 548 | tn 549 | to 550 | together 551 | too 552 | toward 553 | towards 554 | tp 555 | tr 556 | trillion 557 | tt 558 | tv 559 | tw 560 | twenty 561 | two 562 | tz 563 | u 564 | ua 565 | ug 566 | uk 567 | um 568 | under 569 | unless 570 | unlike 571 | unlikely 572 | until 573 | up 574 | upon 575 | us 576 | use 577 | used 578 | using 579 | uy 580 | uz 581 | v 582 | va 583 | vc 584 | ve 585 | very 586 | vg 587 | vi 588 | via 589 | vn 590 | vu 591 | w 592 | was 593 | wasn 594 | wasn't 595 | we 596 | we'd 597 | we'll 598 | we're 599 | we've 600 | web 601 | webpage 602 | website 603 | welcome 604 | well 605 | were 606 | weren 607 | weren't 608 | wf 609 | what 610 | what'll 611 | what's 612 | whatever 613 | when 614 | whence 615 | whenever 616 | where 617 | whereafter 618 | whereas 619 | whereby 620 | wherein 621 | whereupon 622 | wherever 623 | whether 624 | which 625 | while 626 | whither 627 | who 628 | who'd 629 | who'll 630 | who's 631 | whoever 632 | NULL 633 | whole 634 | whom 635 | whomever 636 | whose 637 | why 638 | will 639 | with 640 | within 641 | without 642 | won 643 | won't 644 | would 645 | wouldn 646 | wouldn't 647 | ws 648 | www 649 | x 650 | y 651 | ye 652 | yes 653 | yet 654 | you 655 | you'd 656 | you'll 657 | you're 658 | you've 659 | your 660 | yours 661 | yourself 662 | yourselves 663 | yt 664 | yu 665 | z 666 | za 667 | zm 668 | zr 669 | 10 670 | z 671 | org 672 | inc 673 | width 674 | length -------------------------------------------------------------------------------- /raw/seopowersuite.txt: -------------------------------------------------------------------------------- 1 | a 2 | able 3 | about 4 | above 5 | abroad 6 | according 7 | accordingly 8 | across 9 | actually 10 | adj 11 | after 12 | afterwards 13 | again 14 | against 15 | ago 16 | ahead 17 | ain't 18 | all 19 | allow 20 | allows 21 | almost 22 | alone 23 | along 24 | alongside 25 | already 26 | also 27 | although 28 | always 29 | am 30 | amid 31 | amidst 32 | among 33 | amongst 34 | an 35 | and 36 | another 37 | any 38 | anybody 39 | anyhow 40 | anyone 41 | anything 42 | anyway 43 | anyways 44 | anywhere 45 | apart 46 | appear 47 | appreciate 48 | appropriate 49 | are 50 | aren't 51 | around 52 | as 53 | a's 54 | aside 55 | ask 56 | asking 57 | associated 58 | at 59 | available 60 | away 61 | awfully 62 | b 63 | back 64 | backward 65 | backwards 66 | be 67 | became 68 | because 69 | become 70 | becomes 71 | becoming 72 | been 73 | before 74 | beforehand 75 | begin 76 | behind 77 | being 78 | believe 79 | below 80 | beside 81 | besides 82 | best 83 | better 84 | between 85 | beyond 86 | both 87 | brief 88 | but 89 | by 90 | c 91 | came 92 | can 93 | cannot 94 | cant 95 | can't 96 | caption 97 | cause 98 | causes 99 | certain 100 | certainly 101 | changes 102 | clearly 103 | c'mon 104 | co 105 | co. 106 | com 107 | come 108 | comes 109 | concerning 110 | consequently 111 | consider 112 | considering 113 | contain 114 | containing 115 | contains 116 | corresponding 117 | could 118 | couldn't 119 | course 120 | c's 121 | currently 122 | d 123 | dare 124 | daren't 125 | definitely 126 | described 127 | despite 128 | did 129 | didn't 130 | different 131 | directly 132 | do 133 | does 134 | doesn't 135 | doing 136 | done 137 | don't 138 | down 139 | downwards 140 | during 141 | e 142 | each 143 | edu 144 | eg 145 | eight 146 | eighty 147 | either 148 | else 149 | elsewhere 150 | end 151 | ending 152 | enough 153 | entirely 154 | especially 155 | et 156 | etc 157 | even 158 | ever 159 | evermore 160 | every 161 | everybody 162 | everyone 163 | everything 164 | everywhere 165 | ex 166 | exactly 167 | example 168 | except 169 | f 170 | fairly 171 | far 172 | farther 173 | few 174 | fewer 175 | fifth 176 | first 177 | five 178 | followed 179 | following 180 | follows 181 | for 182 | forever 183 | former 184 | formerly 185 | forth 186 | forward 187 | found 188 | four 189 | from 190 | further 191 | furthermore 192 | g 193 | get 194 | gets 195 | getting 196 | given 197 | gives 198 | go 199 | goes 200 | going 201 | gone 202 | got 203 | gotten 204 | greetings 205 | h 206 | had 207 | hadn't 208 | half 209 | happens 210 | hardly 211 | has 212 | hasn't 213 | have 214 | haven't 215 | having 216 | he 217 | he'd 218 | he'll 219 | hello 220 | help 221 | hence 222 | her 223 | here 224 | hereafter 225 | hereby 226 | herein 227 | here's 228 | hereupon 229 | hers 230 | herself 231 | he's 232 | hi 233 | him 234 | himself 235 | his 236 | hither 237 | hopefully 238 | how 239 | howbeit 240 | however 241 | hundred 242 | i 243 | i'd 244 | ie 245 | if 246 | ignored 247 | i'll 248 | i'm 249 | immediate 250 | in 251 | inasmuch 252 | inc 253 | inc. 254 | indeed 255 | indicate 256 | indicated 257 | indicates 258 | inner 259 | inside 260 | insofar 261 | instead 262 | into 263 | inward 264 | is 265 | isn't 266 | it 267 | it'd 268 | it'll 269 | its 270 | it's 271 | itself 272 | i've 273 | j 274 | just 275 | k 276 | keep 277 | keeps 278 | kept 279 | know 280 | known 281 | knows 282 | l 283 | last 284 | lately 285 | later 286 | latter 287 | latterly 288 | least 289 | less 290 | lest 291 | let 292 | let's 293 | like 294 | liked 295 | likely 296 | likewise 297 | little 298 | look 299 | looking 300 | looks 301 | low 302 | lower 303 | ltd 304 | m 305 | made 306 | mainly 307 | make 308 | makes 309 | many 310 | may 311 | maybe 312 | mayn't 313 | me 314 | mean 315 | meantime 316 | meanwhile 317 | merely 318 | might 319 | mightn't 320 | mine 321 | minus 322 | miss 323 | more 324 | moreover 325 | most 326 | mostly 327 | mr 328 | mrs 329 | much 330 | must 331 | mustn't 332 | my 333 | myself 334 | n 335 | name 336 | namely 337 | nd 338 | near 339 | nearly 340 | necessary 341 | need 342 | needn't 343 | needs 344 | neither 345 | never 346 | neverf 347 | neverless 348 | nevertheless 349 | new 350 | next 351 | nine 352 | ninety 353 | no 354 | nobody 355 | non 356 | none 357 | nonetheless 358 | noone 359 | no-one 360 | nor 361 | normally 362 | not 363 | nothing 364 | notwithstanding 365 | novel 366 | now 367 | nowhere 368 | o 369 | obviously 370 | of 371 | off 372 | often 373 | oh 374 | ok 375 | okay 376 | old 377 | on 378 | once 379 | one 380 | ones 381 | one's 382 | only 383 | onto 384 | opposite 385 | or 386 | other 387 | others 388 | otherwise 389 | ought 390 | oughtn't 391 | our 392 | ours 393 | ourselves 394 | out 395 | outside 396 | over 397 | overall 398 | own 399 | p 400 | particular 401 | particularly 402 | past 403 | per 404 | perhaps 405 | placed 406 | please 407 | plus 408 | possible 409 | presumably 410 | probably 411 | provided 412 | provides 413 | q 414 | que 415 | quite 416 | qv 417 | r 418 | rather 419 | rd 420 | re 421 | really 422 | reasonably 423 | recent 424 | recently 425 | regarding 426 | regardless 427 | regards 428 | relatively 429 | respectively 430 | right 431 | round 432 | s 433 | said 434 | same 435 | saw 436 | say 437 | saying 438 | says 439 | second 440 | secondly 441 | see 442 | seeing 443 | seem 444 | seemed 445 | seeming 446 | seems 447 | seen 448 | self 449 | selves 450 | sensible 451 | sent 452 | serious 453 | seriously 454 | seven 455 | several 456 | shall 457 | shan't 458 | she 459 | she'd 460 | she'll 461 | she's 462 | should 463 | shouldn't 464 | since 465 | six 466 | so 467 | some 468 | somebody 469 | someday 470 | somehow 471 | someone 472 | something 473 | sometime 474 | sometimes 475 | somewhat 476 | somewhere 477 | soon 478 | sorry 479 | specified 480 | specify 481 | specifying 482 | still 483 | sub 484 | such 485 | sup 486 | sure 487 | t 488 | take 489 | taken 490 | taking 491 | tell 492 | tends 493 | th 494 | than 495 | thank 496 | thanks 497 | thanx 498 | that 499 | that'll 500 | thats 501 | that's 502 | that've 503 | the 504 | their 505 | theirs 506 | them 507 | themselves 508 | then 509 | thence 510 | there 511 | thereafter 512 | thereby 513 | there'd 514 | therefore 515 | therein 516 | there'll 517 | there're 518 | theres 519 | there's 520 | thereupon 521 | there've 522 | these 523 | they 524 | they'd 525 | they'll 526 | they're 527 | they've 528 | thing 529 | things 530 | think 531 | third 532 | thirty 533 | this 534 | thorough 535 | thoroughly 536 | those 537 | though 538 | three 539 | through 540 | throughout 541 | thru 542 | thus 543 | till 544 | to 545 | together 546 | too 547 | took 548 | toward 549 | towards 550 | tried 551 | tries 552 | truly 553 | try 554 | trying 555 | t's 556 | twice 557 | two 558 | u 559 | un 560 | under 561 | underneath 562 | undoing 563 | unfortunately 564 | unless 565 | unlike 566 | unlikely 567 | until 568 | unto 569 | up 570 | upon 571 | upwards 572 | us 573 | use 574 | used 575 | useful 576 | uses 577 | using 578 | usually 579 | v 580 | value 581 | various 582 | versus 583 | very 584 | via 585 | viz 586 | vs 587 | w 588 | want 589 | wants 590 | was 591 | wasn't 592 | way 593 | we 594 | we'd 595 | welcome 596 | well 597 | we'll 598 | went 599 | were 600 | we're 601 | weren't 602 | we've 603 | what 604 | whatever 605 | what'll 606 | what's 607 | what've 608 | when 609 | whence 610 | whenever 611 | where 612 | whereafter 613 | whereas 614 | whereby 615 | wherein 616 | where's 617 | whereupon 618 | wherever 619 | whether 620 | which 621 | whichever 622 | while 623 | whilst 624 | whither 625 | who 626 | who'd 627 | whoever 628 | whole 629 | who'll 630 | whom 631 | whomever 632 | who's 633 | whose 634 | why 635 | will 636 | willing 637 | wish 638 | with 639 | within 640 | without 641 | wonder 642 | won't 643 | would 644 | wouldn't 645 | x 646 | y 647 | yes 648 | yet 649 | you 650 | you'd 651 | you'll 652 | your 653 | you're 654 | yours 655 | yourself 656 | yourselves 657 | you've 658 | z 659 | zero -------------------------------------------------------------------------------- /raw/snowball-tartarus.txt: -------------------------------------------------------------------------------- 1 | i 2 | me 3 | my 4 | myself 5 | we 6 | us 7 | our 8 | ours 9 | ourselves 10 | you 11 | your 12 | yours 13 | yourself 14 | yourselves 15 | he 16 | him 17 | his 18 | himself 19 | she 20 | her 21 | hers 22 | herself 23 | it 24 | its 25 | itself 26 | they 27 | them 28 | their 29 | theirs 30 | themselves 31 | what 32 | which 33 | who 34 | whom 35 | this 36 | that 37 | these 38 | those 39 | am 40 | is 41 | are 42 | was 43 | were 44 | be 45 | been 46 | being 47 | have 48 | has 49 | had 50 | having 51 | do 52 | does 53 | did 54 | doing 55 | will 56 | would 57 | shall 58 | should 59 | can 60 | could 61 | may 62 | might 63 | must 64 | ought 65 | i'm 66 | you're 67 | he's 68 | she's 69 | it's 70 | we're 71 | they're 72 | i've 73 | you've 74 | we've 75 | they've 76 | i'd 77 | you'd 78 | he'd 79 | she'd 80 | we'd 81 | they'd 82 | i'll 83 | you'll 84 | he'll 85 | she'll 86 | we'll 87 | they'll 88 | isn't 89 | aren't 90 | wasn't 91 | weren't 92 | hasn't 93 | haven't 94 | hadn't 95 | doesn't 96 | don't 97 | didn't 98 | won't 99 | wouldn't 100 | shan't 101 | shouldn't 102 | can't 103 | cannot 104 | couldn't 105 | mustn't 106 | let's 107 | that's 108 | who's 109 | what's 110 | here's 111 | there's 112 | when's 113 | where's 114 | why's 115 | how's 116 | daren't 117 | needn't 118 | doubtful 119 | oughtn't 120 | mightn't 121 | a 122 | an 123 | the 124 | and 125 | but 126 | if 127 | or 128 | because 129 | as 130 | until 131 | while 132 | of 133 | at 134 | by 135 | for 136 | with 137 | about 138 | against 139 | between 140 | into 141 | through 142 | during 143 | before 144 | after 145 | above 146 | below 147 | to 148 | from 149 | up 150 | down 151 | in 152 | out 153 | on 154 | off 155 | over 156 | under 157 | again 158 | further 159 | then 160 | once 161 | here 162 | there 163 | when 164 | where 165 | why 166 | how 167 | all 168 | any 169 | both 170 | each 171 | few 172 | more 173 | most 174 | other 175 | some 176 | such 177 | no 178 | nor 179 | not 180 | only 181 | own 182 | same 183 | so 184 | than 185 | too 186 | very 187 | one 188 | every 189 | least 190 | less 191 | many 192 | now 193 | ever 194 | never 195 | say 196 | says 197 | said 198 | also 199 | get 200 | go 201 | goes 202 | just 203 | made 204 | make 205 | put 206 | see 207 | seen 208 | whether 209 | like 210 | well 211 | back 212 | even 213 | still 214 | way 215 | take 216 | since 217 | another 218 | however 219 | two 220 | three 221 | four 222 | five 223 | first 224 | second 225 | new 226 | old 227 | high 228 | long -------------------------------------------------------------------------------- /raw/stop-words-english1.txt: -------------------------------------------------------------------------------- 1 | able 2 | about 3 | above 4 | abroad 5 | according 6 | accordingly 7 | across 8 | actually 9 | adj 10 | after 11 | afterwards 12 | again 13 | against 14 | ago 15 | ahead 16 | ain't 17 | all 18 | allow 19 | allows 20 | almost 21 | alone 22 | along 23 | alongside 24 | already 25 | also 26 | although 27 | always 28 | am 29 | amid 30 | amidst 31 | among 32 | amongst 33 | an 34 | and 35 | another 36 | any 37 | anybody 38 | anyhow 39 | anyone 40 | anything 41 | anyway 42 | anyways 43 | anywhere 44 | apart 45 | appear 46 | appreciate 47 | appropriate 48 | are 49 | aren't 50 | around 51 | as 52 | a's 53 | aside 54 | ask 55 | asking 56 | associated 57 | at 58 | available 59 | away 60 | awfully 61 | back 62 | backward 63 | backwards 64 | be 65 | became 66 | because 67 | become 68 | becomes 69 | becoming 70 | been 71 | before 72 | beforehand 73 | begin 74 | behind 75 | being 76 | believe 77 | below 78 | beside 79 | besides 80 | best 81 | better 82 | between 83 | beyond 84 | both 85 | brief 86 | but 87 | by 88 | came 89 | can 90 | cannot 91 | cant 92 | can't 93 | caption 94 | cause 95 | causes 96 | certain 97 | certainly 98 | changes 99 | clearly 100 | c'mon 101 | co 102 | co. 103 | com 104 | come 105 | comes 106 | concerning 107 | consequently 108 | consider 109 | considering 110 | contain 111 | containing 112 | contains 113 | corresponding 114 | could 115 | couldn't 116 | course 117 | c's 118 | currently 119 | dare 120 | daren't 121 | definitely 122 | described 123 | despite 124 | did 125 | didn't 126 | different 127 | directly 128 | do 129 | does 130 | doesn't 131 | doing 132 | done 133 | don't 134 | down 135 | downwards 136 | during 137 | each 138 | edu 139 | eg 140 | eight 141 | eighty 142 | either 143 | else 144 | elsewhere 145 | end 146 | ending 147 | enough 148 | entirely 149 | especially 150 | et 151 | etc 152 | even 153 | ever 154 | evermore 155 | every 156 | everybody 157 | everyone 158 | everything 159 | everywhere 160 | ex 161 | exactly 162 | example 163 | except 164 | fairly 165 | far 166 | farther 167 | few 168 | fewer 169 | fifth 170 | first 171 | five 172 | followed 173 | following 174 | follows 175 | for 176 | forever 177 | former 178 | formerly 179 | forth 180 | forward 181 | found 182 | four 183 | from 184 | further 185 | furthermore 186 | get 187 | gets 188 | getting 189 | given 190 | gives 191 | go 192 | goes 193 | going 194 | gone 195 | got 196 | gotten 197 | greetings 198 | had 199 | hadn't 200 | half 201 | happens 202 | hardly 203 | has 204 | hasn't 205 | have 206 | haven't 207 | having 208 | he 209 | he'd 210 | he'll 211 | hello 212 | help 213 | hence 214 | her 215 | here 216 | hereafter 217 | hereby 218 | herein 219 | here's 220 | hereupon 221 | hers 222 | herself 223 | he's 224 | hi 225 | him 226 | himself 227 | his 228 | hither 229 | hopefully 230 | how 231 | howbeit 232 | however 233 | hundred 234 | i'd 235 | ie 236 | if 237 | ignored 238 | i'll 239 | i'm 240 | immediate 241 | in 242 | inasmuch 243 | inc 244 | inc. 245 | indeed 246 | indicate 247 | indicated 248 | indicates 249 | inner 250 | inside 251 | insofar 252 | instead 253 | into 254 | inward 255 | is 256 | isn't 257 | it 258 | it'd 259 | it'll 260 | its 261 | it's 262 | itself 263 | i've 264 | just 265 | k 266 | keep 267 | keeps 268 | kept 269 | know 270 | known 271 | knows 272 | last 273 | lately 274 | later 275 | latter 276 | latterly 277 | least 278 | less 279 | lest 280 | let 281 | let's 282 | like 283 | liked 284 | likely 285 | likewise 286 | little 287 | look 288 | looking 289 | looks 290 | low 291 | lower 292 | ltd 293 | made 294 | mainly 295 | make 296 | makes 297 | many 298 | may 299 | maybe 300 | mayn't 301 | me 302 | mean 303 | meantime 304 | meanwhile 305 | merely 306 | might 307 | mightn't 308 | mine 309 | minus 310 | miss 311 | more 312 | moreover 313 | most 314 | mostly 315 | mr 316 | mrs 317 | much 318 | must 319 | mustn't 320 | my 321 | myself 322 | name 323 | namely 324 | nd 325 | near 326 | nearly 327 | necessary 328 | need 329 | needn't 330 | needs 331 | neither 332 | never 333 | neverf 334 | neverless 335 | nevertheless 336 | new 337 | next 338 | nine 339 | ninety 340 | no 341 | nobody 342 | non 343 | none 344 | nonetheless 345 | noone 346 | no-one 347 | nor 348 | normally 349 | not 350 | nothing 351 | notwithstanding 352 | novel 353 | now 354 | nowhere 355 | obviously 356 | of 357 | off 358 | often 359 | oh 360 | ok 361 | okay 362 | old 363 | on 364 | once 365 | one 366 | ones 367 | one's 368 | only 369 | onto 370 | opposite 371 | or 372 | other 373 | others 374 | otherwise 375 | ought 376 | oughtn't 377 | our 378 | ours 379 | ourselves 380 | out 381 | outside 382 | over 383 | overall 384 | own 385 | particular 386 | particularly 387 | past 388 | per 389 | perhaps 390 | placed 391 | please 392 | plus 393 | possible 394 | presumably 395 | probably 396 | provided 397 | provides 398 | que 399 | quite 400 | qv 401 | rather 402 | rd 403 | re 404 | really 405 | reasonably 406 | recent 407 | recently 408 | regarding 409 | regardless 410 | regards 411 | relatively 412 | respectively 413 | right 414 | round 415 | said 416 | same 417 | saw 418 | say 419 | saying 420 | says 421 | second 422 | secondly 423 | see 424 | seeing 425 | seem 426 | seemed 427 | seeming 428 | seems 429 | seen 430 | self 431 | selves 432 | sensible 433 | sent 434 | serious 435 | seriously 436 | seven 437 | several 438 | shall 439 | shan't 440 | she 441 | she'd 442 | she'll 443 | she's 444 | should 445 | shouldn't 446 | since 447 | six 448 | so 449 | some 450 | somebody 451 | someday 452 | somehow 453 | someone 454 | something 455 | sometime 456 | sometimes 457 | somewhat 458 | somewhere 459 | soon 460 | sorry 461 | specified 462 | specify 463 | specifying 464 | still 465 | sub 466 | such 467 | sup 468 | sure 469 | take 470 | taken 471 | taking 472 | tell 473 | tends 474 | th 475 | than 476 | thank 477 | thanks 478 | thanx 479 | that 480 | that'll 481 | thats 482 | that's 483 | that've 484 | the 485 | their 486 | theirs 487 | them 488 | themselves 489 | then 490 | thence 491 | there 492 | thereafter 493 | thereby 494 | there'd 495 | therefore 496 | therein 497 | there'll 498 | there're 499 | theres 500 | there's 501 | thereupon 502 | there've 503 | these 504 | they 505 | they'd 506 | they'll 507 | they're 508 | they've 509 | thing 510 | things 511 | think 512 | third 513 | thirty 514 | this 515 | thorough 516 | thoroughly 517 | those 518 | though 519 | three 520 | through 521 | throughout 522 | thru 523 | thus 524 | till 525 | to 526 | together 527 | too 528 | took 529 | toward 530 | towards 531 | tried 532 | tries 533 | truly 534 | try 535 | trying 536 | t's 537 | twice 538 | two 539 | un 540 | under 541 | underneath 542 | undoing 543 | unfortunately 544 | unless 545 | unlike 546 | unlikely 547 | until 548 | unto 549 | up 550 | upon 551 | upwards 552 | us 553 | use 554 | used 555 | useful 556 | uses 557 | using 558 | usually 559 | v 560 | value 561 | various 562 | versus 563 | very 564 | via 565 | viz 566 | vs 567 | want 568 | wants 569 | was 570 | wasn't 571 | way 572 | we 573 | we'd 574 | welcome 575 | well 576 | we'll 577 | went 578 | were 579 | we're 580 | weren't 581 | we've 582 | what 583 | whatever 584 | what'll 585 | what's 586 | what've 587 | when 588 | whence 589 | whenever 590 | where 591 | whereafter 592 | whereas 593 | whereby 594 | wherein 595 | where's 596 | whereupon 597 | wherever 598 | whether 599 | which 600 | whichever 601 | while 602 | whilst 603 | whither 604 | who 605 | who'd 606 | whoever 607 | whole 608 | who'll 609 | whom 610 | whomever 611 | who's 612 | whose 613 | why 614 | will 615 | willing 616 | wish 617 | with 618 | within 619 | without 620 | wonder 621 | won't 622 | would 623 | wouldn't 624 | yes 625 | yet 626 | you 627 | you'd 628 | you'll 629 | your 630 | you're 631 | yours 632 | yourself 633 | yourselves 634 | you've 635 | zero 636 | -------------------------------------------------------------------------------- /raw/stop-words-english2.txt: -------------------------------------------------------------------------------- 1 | a 2 | about 3 | above 4 | after 5 | again 6 | against 7 | all 8 | am 9 | an 10 | and 11 | any 12 | are 13 | aren't 14 | as 15 | at 16 | be 17 | because 18 | been 19 | before 20 | being 21 | below 22 | between 23 | both 24 | but 25 | by 26 | can't 27 | cannot 28 | could 29 | couldn't 30 | did 31 | didn't 32 | do 33 | does 34 | doesn't 35 | doing 36 | don't 37 | down 38 | during 39 | each 40 | few 41 | for 42 | from 43 | further 44 | had 45 | hadn't 46 | has 47 | hasn't 48 | have 49 | haven't 50 | having 51 | he 52 | he'd 53 | he'll 54 | he's 55 | her 56 | here 57 | here's 58 | hers 59 | herself 60 | him 61 | himself 62 | his 63 | how 64 | how's 65 | i 66 | i'd 67 | i'll 68 | i'm 69 | i've 70 | if 71 | in 72 | into 73 | is 74 | isn't 75 | it 76 | it's 77 | its 78 | itself 79 | let's 80 | me 81 | more 82 | most 83 | mustn't 84 | my 85 | myself 86 | no 87 | nor 88 | not 89 | of 90 | off 91 | on 92 | once 93 | only 94 | or 95 | other 96 | ought 97 | our 98 | ours 99 | ourselves 100 | out 101 | over 102 | own 103 | same 104 | shan't 105 | she 106 | she'd 107 | she'll 108 | she's 109 | should 110 | shouldn't 111 | so 112 | some 113 | such 114 | than 115 | that 116 | that's 117 | the 118 | their 119 | theirs 120 | them 121 | themselves 122 | then 123 | there 124 | there's 125 | these 126 | they 127 | they'd 128 | they'll 129 | they're 130 | they've 131 | this 132 | those 133 | through 134 | to 135 | too 136 | under 137 | until 138 | up 139 | very 140 | was 141 | wasn't 142 | we 143 | we'd 144 | we'll 145 | we're 146 | we've 147 | were 148 | weren't 149 | what 150 | what's 151 | when 152 | when's 153 | where 154 | where's 155 | which 156 | while 157 | who 158 | who's 159 | whom 160 | why 161 | why's 162 | with 163 | won't 164 | would 165 | wouldn't 166 | you 167 | you'd 168 | you'll 169 | you're 170 | you've 171 | your 172 | yours 173 | yourself 174 | yourselves 175 | -------------------------------------------------------------------------------- /raw/stop-words-english4.txt: -------------------------------------------------------------------------------- 1 | a 2 | able 3 | about 4 | above 5 | abst 6 | accordance 7 | according 8 | accordingly 9 | across 10 | act 11 | actually 12 | added 13 | adj 14 | adopted 15 | affected 16 | affecting 17 | affects 18 | after 19 | afterwards 20 | again 21 | against 22 | ah 23 | all 24 | almost 25 | alone 26 | along 27 | already 28 | also 29 | although 30 | always 31 | am 32 | among 33 | amongst 34 | an 35 | and 36 | announce 37 | another 38 | any 39 | anybody 40 | anyhow 41 | anymore 42 | anyone 43 | anything 44 | anyway 45 | anyways 46 | anywhere 47 | apparently 48 | approximately 49 | are 50 | aren 51 | arent 52 | arise 53 | around 54 | as 55 | aside 56 | ask 57 | asking 58 | at 59 | auth 60 | available 61 | away 62 | awfully 63 | b 64 | back 65 | be 66 | became 67 | because 68 | become 69 | becomes 70 | becoming 71 | been 72 | before 73 | beforehand 74 | begin 75 | beginning 76 | beginnings 77 | begins 78 | behind 79 | being 80 | believe 81 | below 82 | beside 83 | besides 84 | between 85 | beyond 86 | biol 87 | both 88 | brief 89 | briefly 90 | but 91 | by 92 | c 93 | ca 94 | came 95 | can 96 | cannot 97 | can't 98 | cause 99 | causes 100 | certain 101 | certainly 102 | co 103 | com 104 | come 105 | comes 106 | contain 107 | containing 108 | contains 109 | could 110 | couldnt 111 | d 112 | date 113 | did 114 | didn't 115 | different 116 | do 117 | does 118 | doesn't 119 | doing 120 | done 121 | don't 122 | down 123 | downwards 124 | due 125 | during 126 | e 127 | each 128 | ed 129 | edu 130 | effect 131 | eg 132 | eight 133 | eighty 134 | either 135 | else 136 | elsewhere 137 | end 138 | ending 139 | enough 140 | especially 141 | et 142 | et-al 143 | etc 144 | even 145 | ever 146 | every 147 | everybody 148 | everyone 149 | everything 150 | everywhere 151 | ex 152 | except 153 | f 154 | far 155 | few 156 | ff 157 | fifth 158 | first 159 | five 160 | fix 161 | followed 162 | following 163 | follows 164 | for 165 | former 166 | formerly 167 | forth 168 | found 169 | four 170 | from 171 | further 172 | furthermore 173 | g 174 | gave 175 | get 176 | gets 177 | getting 178 | give 179 | given 180 | gives 181 | giving 182 | go 183 | goes 184 | gone 185 | got 186 | gotten 187 | h 188 | had 189 | happens 190 | hardly 191 | has 192 | hasn't 193 | have 194 | haven't 195 | having 196 | he 197 | hed 198 | hence 199 | her 200 | here 201 | hereafter 202 | hereby 203 | herein 204 | heres 205 | hereupon 206 | hers 207 | herself 208 | hes 209 | hi 210 | hid 211 | him 212 | himself 213 | his 214 | hither 215 | home 216 | how 217 | howbeit 218 | however 219 | hundred 220 | i 221 | id 222 | ie 223 | if 224 | i'll 225 | im 226 | immediate 227 | immediately 228 | importance 229 | important 230 | in 231 | inc 232 | indeed 233 | index 234 | information 235 | instead 236 | into 237 | invention 238 | inward 239 | is 240 | isn't 241 | it 242 | itd 243 | it'll 244 | its 245 | itself 246 | i've 247 | j 248 | just 249 | k 250 | keep 251 | keeps 252 | kept 253 | keys 254 | kg 255 | km 256 | know 257 | known 258 | knows 259 | l 260 | largely 261 | last 262 | lately 263 | later 264 | latter 265 | latterly 266 | least 267 | less 268 | lest 269 | let 270 | lets 271 | like 272 | liked 273 | likely 274 | line 275 | little 276 | 'll 277 | look 278 | looking 279 | looks 280 | ltd 281 | m 282 | made 283 | mainly 284 | make 285 | makes 286 | many 287 | may 288 | maybe 289 | me 290 | mean 291 | means 292 | meantime 293 | meanwhile 294 | merely 295 | mg 296 | might 297 | million 298 | miss 299 | ml 300 | more 301 | moreover 302 | most 303 | mostly 304 | mr 305 | mrs 306 | much 307 | mug 308 | must 309 | my 310 | myself 311 | n 312 | na 313 | name 314 | namely 315 | nay 316 | nd 317 | near 318 | nearly 319 | necessarily 320 | necessary 321 | need 322 | needs 323 | neither 324 | never 325 | nevertheless 326 | new 327 | next 328 | nine 329 | ninety 330 | no 331 | nobody 332 | non 333 | none 334 | nonetheless 335 | noone 336 | nor 337 | normally 338 | nos 339 | not 340 | noted 341 | nothing 342 | now 343 | nowhere 344 | o 345 | obtain 346 | obtained 347 | obviously 348 | of 349 | off 350 | often 351 | oh 352 | ok 353 | okay 354 | old 355 | omitted 356 | on 357 | once 358 | one 359 | ones 360 | only 361 | onto 362 | or 363 | ord 364 | other 365 | others 366 | otherwise 367 | ought 368 | our 369 | ours 370 | ourselves 371 | out 372 | outside 373 | over 374 | overall 375 | owing 376 | own 377 | p 378 | page 379 | pages 380 | part 381 | particular 382 | particularly 383 | past 384 | per 385 | perhaps 386 | placed 387 | please 388 | plus 389 | poorly 390 | possible 391 | possibly 392 | potentially 393 | pp 394 | predominantly 395 | present 396 | previously 397 | primarily 398 | probably 399 | promptly 400 | proud 401 | provides 402 | put 403 | q 404 | que 405 | quickly 406 | quite 407 | qv 408 | r 409 | ran 410 | rather 411 | rd 412 | re 413 | readily 414 | really 415 | recent 416 | recently 417 | ref 418 | refs 419 | regarding 420 | regardless 421 | regards 422 | related 423 | relatively 424 | research 425 | respectively 426 | resulted 427 | resulting 428 | results 429 | right 430 | run 431 | s 432 | said 433 | same 434 | saw 435 | say 436 | saying 437 | says 438 | sec 439 | section 440 | see 441 | seeing 442 | seem 443 | seemed 444 | seeming 445 | seems 446 | seen 447 | self 448 | selves 449 | sent 450 | seven 451 | several 452 | shall 453 | she 454 | shed 455 | she'll 456 | shes 457 | should 458 | shouldn't 459 | show 460 | showed 461 | shown 462 | showns 463 | shows 464 | significant 465 | significantly 466 | similar 467 | similarly 468 | since 469 | six 470 | slightly 471 | so 472 | some 473 | somebody 474 | somehow 475 | someone 476 | somethan 477 | something 478 | sometime 479 | sometimes 480 | somewhat 481 | somewhere 482 | soon 483 | sorry 484 | specifically 485 | specified 486 | specify 487 | specifying 488 | state 489 | states 490 | still 491 | stop 492 | strongly 493 | sub 494 | substantially 495 | successfully 496 | such 497 | sufficiently 498 | suggest 499 | sup 500 | sure 501 | t 502 | take 503 | taken 504 | taking 505 | tell 506 | tends 507 | th 508 | than 509 | thank 510 | thanks 511 | thanx 512 | that 513 | that'll 514 | thats 515 | that've 516 | the 517 | their 518 | theirs 519 | them 520 | themselves 521 | then 522 | thence 523 | there 524 | thereafter 525 | thereby 526 | thered 527 | therefore 528 | therein 529 | there'll 530 | thereof 531 | therere 532 | theres 533 | thereto 534 | thereupon 535 | there've 536 | these 537 | they 538 | theyd 539 | they'll 540 | theyre 541 | they've 542 | think 543 | this 544 | those 545 | thou 546 | though 547 | thoughh 548 | thousand 549 | throug 550 | through 551 | throughout 552 | thru 553 | thus 554 | til 555 | tip 556 | to 557 | together 558 | too 559 | took 560 | toward 561 | towards 562 | tried 563 | tries 564 | truly 565 | try 566 | trying 567 | ts 568 | twice 569 | two 570 | u 571 | un 572 | under 573 | unfortunately 574 | unless 575 | unlike 576 | unlikely 577 | until 578 | unto 579 | up 580 | upon 581 | ups 582 | us 583 | use 584 | used 585 | useful 586 | usefully 587 | usefulness 588 | uses 589 | using 590 | usually 591 | v 592 | value 593 | various 594 | 've 595 | very 596 | via 597 | viz 598 | vol 599 | vols 600 | vs 601 | w 602 | want 603 | wants 604 | was 605 | wasn't 606 | way 607 | we 608 | wed 609 | welcome 610 | we'll 611 | went 612 | were 613 | weren't 614 | we've 615 | what 616 | whatever 617 | what'll 618 | whats 619 | when 620 | whence 621 | whenever 622 | where 623 | whereafter 624 | whereas 625 | whereby 626 | wherein 627 | wheres 628 | whereupon 629 | wherever 630 | whether 631 | which 632 | while 633 | whim 634 | whither 635 | who 636 | whod 637 | whoever 638 | whole 639 | who'll 640 | whom 641 | whomever 642 | whos 643 | whose 644 | why 645 | widely 646 | willing 647 | wish 648 | with 649 | within 650 | without 651 | won't 652 | words 653 | world 654 | would 655 | wouldn't 656 | www 657 | x 658 | y 659 | yes 660 | yet 661 | you 662 | youd 663 | you'll 664 | your 665 | youre 666 | yours 667 | yourself 668 | yourselves 669 | you've 670 | z 671 | zero 672 | -------------------------------------------------------------------------------- /raw/stop-words-english5.txt: -------------------------------------------------------------------------------- 1 | a 2 | about 3 | above 4 | across 5 | after 6 | afterwards 7 | again 8 | against 9 | all 10 | almost 11 | alone 12 | along 13 | already 14 | also 15 | although 16 | always 17 | am 18 | among 19 | amongst 20 | amoungst 21 | amount 22 | an 23 | and 24 | another 25 | any 26 | anyhow 27 | anyone 28 | anything 29 | anyway 30 | anywhere 31 | are 32 | around 33 | as 34 | at 35 | back 36 | be 37 | became 38 | because 39 | become 40 | becomes 41 | becoming 42 | been 43 | before 44 | beforehand 45 | behind 46 | being 47 | below 48 | beside 49 | besides 50 | between 51 | beyond 52 | bill 53 | both 54 | bottom 55 | but 56 | by 57 | call 58 | can 59 | cannot 60 | cant 61 | co 62 | computer 63 | con 64 | could 65 | couldnt 66 | cry 67 | de 68 | describe 69 | detail 70 | do 71 | done 72 | down 73 | due 74 | during 75 | each 76 | eg 77 | eight 78 | either 79 | eleven 80 | else 81 | elsewhere 82 | empty 83 | enough 84 | etc 85 | even 86 | ever 87 | every 88 | everyone 89 | everything 90 | everywhere 91 | except 92 | few 93 | fifteen 94 | fify 95 | fill 96 | find 97 | fire 98 | first 99 | five 100 | for 101 | former 102 | formerly 103 | forty 104 | found 105 | four 106 | from 107 | front 108 | full 109 | further 110 | get 111 | give 112 | go 113 | had 114 | has 115 | hasnt 116 | have 117 | he 118 | hence 119 | her 120 | here 121 | hereafter 122 | hereby 123 | herein 124 | hereupon 125 | hers 126 | herse” 127 | him 128 | himse” 129 | his 130 | how 131 | however 132 | hundred 133 | i 134 | ie 135 | if 136 | in 137 | inc 138 | indeed 139 | interest 140 | into 141 | is 142 | it 143 | its 144 | itse” 145 | keep 146 | last 147 | latter 148 | latterly 149 | least 150 | less 151 | ltd 152 | made 153 | many 154 | may 155 | me 156 | meanwhile 157 | might 158 | mill 159 | mine 160 | more 161 | moreover 162 | most 163 | mostly 164 | move 165 | much 166 | must 167 | my 168 | myse” 169 | name 170 | namely 171 | neither 172 | never 173 | nevertheless 174 | next 175 | nine 176 | no 177 | nobody 178 | none 179 | noone 180 | nor 181 | not 182 | nothing 183 | now 184 | nowhere 185 | of 186 | off 187 | often 188 | on 189 | once 190 | one 191 | only 192 | onto 193 | or 194 | other 195 | others 196 | otherwise 197 | our 198 | ours 199 | ourselves 200 | out 201 | over 202 | own 203 | part 204 | per 205 | perhaps 206 | please 207 | put 208 | rather 209 | re 210 | same 211 | see 212 | seem 213 | seemed 214 | seeming 215 | seems 216 | serious 217 | several 218 | she 219 | should 220 | show 221 | side 222 | since 223 | sincere 224 | six 225 | sixty 226 | so 227 | some 228 | somehow 229 | someone 230 | something 231 | sometime 232 | sometimes 233 | somewhere 234 | still 235 | such 236 | system 237 | take 238 | ten 239 | than 240 | that 241 | the 242 | their 243 | them 244 | themselves 245 | then 246 | thence 247 | there 248 | thereafter 249 | thereby 250 | therefore 251 | therein 252 | thereupon 253 | these 254 | they 255 | thick 256 | thin 257 | third 258 | this 259 | those 260 | though 261 | three 262 | through 263 | throughout 264 | thru 265 | thus 266 | to 267 | together 268 | too 269 | top 270 | toward 271 | towards 272 | twelve 273 | twenty 274 | two 275 | un 276 | under 277 | until 278 | up 279 | upon 280 | us 281 | very 282 | via 283 | was 284 | we 285 | well 286 | were 287 | what 288 | whatever 289 | when 290 | whence 291 | whenever 292 | where 293 | whereafter 294 | whereas 295 | whereby 296 | wherein 297 | whereupon 298 | wherever 299 | whether 300 | which 301 | while 302 | whither 303 | who 304 | whoever 305 | whole 306 | whom 307 | whose 308 | why 309 | will 310 | with 311 | within 312 | without 313 | would 314 | yet 315 | you 316 | your 317 | yours 318 | yourself 319 | yourselves 320 | -------------------------------------------------------------------------------- /raw/stopwords-brez.txt: -------------------------------------------------------------------------------- 1 | a 2 | cannot 3 | into 4 | our 5 | thus 6 | about 7 | co 8 | is 9 | ours 10 | to 11 | above 12 | could 13 | it 14 | ourselves 15 | together 16 | across 17 | down 18 | its 19 | out 20 | too 21 | after 22 | during 23 | itself 24 | over 25 | toward 26 | afterwards 27 | each 28 | last 29 | own 30 | towards 31 | again 32 | eg 33 | latter 34 | per 35 | under 36 | against 37 | either 38 | latterly 39 | perhaps 40 | until 41 | all 42 | else 43 | least 44 | rather 45 | up 46 | almost 47 | elsewhere 48 | less 49 | same 50 | upon 51 | alone 52 | enough 53 | ltd 54 | seem 55 | us 56 | along 57 | etc 58 | many 59 | seemed 60 | very 61 | already 62 | even 63 | may 64 | seeming 65 | via 66 | also 67 | ever 68 | me 69 | seems 70 | was 71 | although 72 | every 73 | meanwhile 74 | several 75 | we 76 | always 77 | everyone 78 | might 79 | she 80 | well 81 | among 82 | everything 83 | more 84 | should 85 | were 86 | amongst 87 | everywhere 88 | moreover 89 | since 90 | what 91 | an 92 | except 93 | most 94 | so 95 | whatever 96 | and 97 | few 98 | mostly 99 | some 100 | when 101 | another 102 | first 103 | much 104 | somehow 105 | whence 106 | any 107 | for 108 | must 109 | someone 110 | whenever 111 | anyhow 112 | former 113 | my 114 | something 115 | where 116 | anyone 117 | formerly 118 | myself 119 | sometime 120 | whereafter 121 | anything 122 | from 123 | namely 124 | sometimes 125 | whereas 126 | anywhere 127 | further 128 | neither 129 | somewhere 130 | whereby 131 | are 132 | had 133 | never 134 | still 135 | wherein 136 | around 137 | has 138 | nevertheless 139 | such 140 | whereupon 141 | as 142 | have 143 | next 144 | than 145 | wherever 146 | at 147 | he 148 | no 149 | that 150 | whether 151 | be 152 | hence 153 | nobody 154 | the 155 | whither 156 | became 157 | her 158 | none 159 | their 160 | which 161 | because 162 | here 163 | noone 164 | them 165 | while 166 | become 167 | hereafter 168 | nor 169 | themselves 170 | who 171 | becomes 172 | hereby 173 | not 174 | then 175 | whoever 176 | becoming 177 | herein 178 | nothing 179 | thence 180 | whole 181 | been 182 | hereupon 183 | now 184 | there 185 | whom 186 | before 187 | hers 188 | nowhere 189 | thereafter 190 | whose 191 | beforehand 192 | herself 193 | of 194 | thereby 195 | why 196 | behind 197 | him 198 | off 199 | therefore 200 | will 201 | being 202 | himself 203 | often 204 | therein 205 | with 206 | below 207 | his 208 | on 209 | thereupon 210 | within 211 | beside 212 | how 213 | once 214 | these 215 | without 216 | besides 217 | however 218 | one 219 | they 220 | would 221 | between 222 | i 223 | only 224 | this 225 | yet 226 | beyond 227 | ie 228 | onto 229 | those 230 | you 231 | both 232 | if 233 | or 234 | though 235 | your 236 | but 237 | in 238 | other 239 | through 240 | yours 241 | by 242 | inc 243 | others 244 | throughout 245 | yourself 246 | can 247 | indeed 248 | otherwise 249 | thru 250 | yourselves -------------------------------------------------------------------------------- /raw/stopwords-filter-en.txt: -------------------------------------------------------------------------------- 1 | i 2 | me 3 | my 4 | myself 5 | we 6 | our 7 | ours 8 | ourselves 9 | you 10 | your 11 | yours 12 | yourself 13 | yourselves 14 | he 15 | him 16 | his 17 | himself 18 | she 19 | her 20 | hers 21 | herself 22 | it 23 | its 24 | itself 25 | they 26 | them 27 | their 28 | theirs 29 | themselves 30 | what 31 | which 32 | who 33 | whom 34 | this 35 | that 36 | these 37 | those 38 | am 39 | is 40 | are 41 | was 42 | were 43 | be 44 | been 45 | being 46 | have 47 | has 48 | had 49 | having 50 | do 51 | does 52 | did 53 | doing 54 | would 55 | should 56 | could 57 | ought 58 | i'm 59 | you're 60 | he's 61 | she's 62 | it's 63 | we're 64 | they're 65 | i've 66 | you've 67 | we've 68 | they've 69 | i'd 70 | you'd 71 | he'd 72 | she'd 73 | we'd 74 | they'd 75 | i'll 76 | you'll 77 | he'll 78 | she'll 79 | we'll 80 | they'll 81 | isn't 82 | aren't 83 | wasn't 84 | weren't 85 | hasn't 86 | haven't 87 | hadn't 88 | doesn't 89 | don't 90 | didn't 91 | won't 92 | wouldn't 93 | shan't 94 | shouldn't 95 | can't 96 | cannot 97 | couldn't 98 | mustn't 99 | let's 100 | that's 101 | who's 102 | what's 103 | here's 104 | there's 105 | when's 106 | where's 107 | why's 108 | how's 109 | a 110 | an 111 | the 112 | and 113 | but 114 | if 115 | or 116 | because 117 | as 118 | until 119 | while 120 | of 121 | at 122 | by 123 | for 124 | with 125 | about 126 | against 127 | between 128 | into 129 | through 130 | during 131 | before 132 | after 133 | above 134 | below 135 | to 136 | from 137 | up 138 | down 139 | in 140 | out 141 | on 142 | off 143 | over 144 | under 145 | again 146 | further 147 | then 148 | once 149 | here 150 | there 151 | when 152 | where 153 | why 154 | how 155 | all 156 | any 157 | both 158 | each 159 | few 160 | more 161 | most 162 | other 163 | some 164 | such 165 | no 166 | nor 167 | not 168 | only 169 | own 170 | same 171 | so 172 | than 173 | too 174 | very -------------------------------------------------------------------------------- /raw/textfixer.txt: -------------------------------------------------------------------------------- 1 | 'tis 2 | 'twas 3 | a 4 | able 5 | about 6 | across 7 | after 8 | ain't 9 | all 10 | almost 11 | also 12 | am 13 | among 14 | an 15 | and 16 | any 17 | are 18 | aren't 19 | as 20 | at 21 | be 22 | because 23 | been 24 | but 25 | by 26 | can 27 | can't 28 | cannot 29 | could 30 | could've 31 | couldn't 32 | dear 33 | did 34 | didn't 35 | do 36 | does 37 | doesn't 38 | don't 39 | either 40 | else 41 | ever 42 | every 43 | for 44 | from 45 | get 46 | got 47 | had 48 | has 49 | hasn't 50 | have 51 | he 52 | he'd 53 | he'll 54 | he's 55 | her 56 | hers 57 | him 58 | his 59 | how 60 | how'd 61 | how'll 62 | how's 63 | however 64 | i 65 | i'd 66 | i'll 67 | i'm 68 | i've 69 | if 70 | in 71 | into 72 | is 73 | isn't 74 | it 75 | it's 76 | its 77 | just 78 | least 79 | let 80 | like 81 | likely 82 | may 83 | me 84 | might 85 | might've 86 | mightn't 87 | most 88 | must 89 | must've 90 | mustn't 91 | my 92 | neither 93 | no 94 | nor 95 | not 96 | of 97 | off 98 | often 99 | on 100 | only 101 | or 102 | other 103 | our 104 | own 105 | rather 106 | said 107 | say 108 | says 109 | shan't 110 | she 111 | she'd 112 | she'll 113 | she's 114 | should 115 | should've 116 | shouldn't 117 | since 118 | so 119 | some 120 | than 121 | that 122 | that'll 123 | that's 124 | the 125 | their 126 | them 127 | then 128 | there 129 | there's 130 | these 131 | they 132 | they'd 133 | they'll 134 | they're 135 | they've 136 | this 137 | tis 138 | to 139 | too 140 | twas 141 | us 142 | wants 143 | was 144 | wasn't 145 | we 146 | we'd 147 | we'll 148 | we're 149 | were 150 | weren't 151 | what 152 | what'd 153 | what's 154 | when 155 | when 156 | when'd 157 | when'll 158 | when's 159 | where 160 | where'd 161 | where'll 162 | where's 163 | which 164 | while 165 | who 166 | who'd 167 | who'll 168 | who's 169 | whom 170 | why 171 | why'd 172 | why'll 173 | why's 174 | will 175 | with 176 | won't 177 | would 178 | would've 179 | wouldn't 180 | yet 181 | you 182 | you'd 183 | you'll 184 | you're 185 | you've 186 | your -------------------------------------------------------------------------------- /raw/webconfs.txt: -------------------------------------------------------------------------------- 1 | able 2 | about 3 | above 4 | abroad 5 | according 6 | accordingly 7 | across 8 | actually 9 | adj 10 | after 11 | afterwards 12 | again 13 | against 14 | ago 15 | ahead 16 | ain't 17 | all 18 | allow 19 | allows 20 | almost 21 | alone 22 | along 23 | alongside 24 | already 25 | also 26 | although 27 | always 28 | am 29 | amid 30 | amidst 31 | among 32 | amongst 33 | an 34 | and 35 | another 36 | any 37 | anybody 38 | anyhow 39 | anyone 40 | anything 41 | anyway 42 | anyways 43 | anywhere 44 | apart 45 | appear 46 | appreciate 47 | appropriate 48 | are 49 | aren't 50 | around 51 | as 52 | a's 53 | aside 54 | ask 55 | asking 56 | associated 57 | at 58 | available 59 | away 60 | awfully 61 | back 62 | backward 63 | backwards 64 | be 65 | became 66 | because 67 | become 68 | becomes 69 | becoming 70 | been 71 | before 72 | beforehand 73 | begin 74 | behind 75 | being 76 | believe 77 | below 78 | beside 79 | besides 80 | best 81 | better 82 | between 83 | beyond 84 | both 85 | brief 86 | but 87 | by 88 | came 89 | can 90 | cannot 91 | cant 92 | can't 93 | caption 94 | cause 95 | causes 96 | certain 97 | certainly 98 | changes 99 | clearly 100 | c'mon 101 | co 102 | co. 103 | com 104 | come 105 | comes 106 | concerning 107 | consequently 108 | consider 109 | considering 110 | contain 111 | containing 112 | contains 113 | corresponding 114 | could 115 | couldn't 116 | course 117 | c's 118 | currently 119 | dare 120 | daren't 121 | definitely 122 | described 123 | despite 124 | did 125 | didn't 126 | different 127 | directly 128 | do 129 | does 130 | doesn't 131 | doing 132 | done 133 | don't 134 | down 135 | downwards 136 | during 137 | each 138 | edu 139 | eg 140 | eight 141 | eighty 142 | either 143 | else 144 | elsewhere 145 | end 146 | ending 147 | enough 148 | entirely 149 | especially 150 | et 151 | etc 152 | even 153 | ever 154 | evermore 155 | every 156 | everybody 157 | everyone 158 | everything 159 | everywhere 160 | ex 161 | exactly 162 | example 163 | except 164 | fairly 165 | far 166 | farther 167 | few 168 | fewer 169 | fifth 170 | first 171 | five 172 | followed 173 | following 174 | follows 175 | for 176 | forever 177 | former 178 | formerly 179 | forth 180 | forward 181 | found 182 | four 183 | from 184 | further 185 | furthermore 186 | get 187 | gets 188 | getting 189 | given 190 | gives 191 | go 192 | goes 193 | going 194 | gone 195 | got 196 | gotten 197 | greetings 198 | had 199 | hadn't 200 | half 201 | happens 202 | hardly 203 | has 204 | hasn't 205 | have 206 | haven't 207 | having 208 | he 209 | he'd 210 | he'll 211 | hello 212 | help 213 | hence 214 | her 215 | here 216 | hereafter 217 | hereby 218 | herein 219 | here's 220 | hereupon 221 | hers 222 | herself 223 | he's 224 | hi 225 | him 226 | himself 227 | his 228 | hither 229 | hopefully 230 | how 231 | howbeit 232 | however 233 | hundred 234 | i'd 235 | ie 236 | if 237 | ignored 238 | i'll 239 | i'm 240 | immediate 241 | in 242 | inasmuch 243 | inc 244 | inc. 245 | indeed 246 | indicate 247 | indicated 248 | indicates 249 | inner 250 | inside 251 | insofar 252 | instead 253 | into 254 | inward 255 | is 256 | isn't 257 | it 258 | it'd 259 | it'll 260 | its 261 | it's 262 | itself 263 | i've 264 | just 265 | k 266 | keep 267 | keeps 268 | kept 269 | know 270 | known 271 | knows 272 | last 273 | lately 274 | later 275 | latter 276 | latterly 277 | least 278 | less 279 | lest 280 | let 281 | let's 282 | like 283 | liked 284 | likely 285 | likewise 286 | little 287 | look 288 | looking 289 | looks 290 | low 291 | lower 292 | ltd 293 | made 294 | mainly 295 | make 296 | makes 297 | many 298 | may 299 | maybe 300 | mayn't 301 | me 302 | mean 303 | meantime 304 | meanwhile 305 | merely 306 | might 307 | mightn't 308 | mine 309 | minus 310 | miss 311 | more 312 | moreover 313 | most 314 | mostly 315 | mr 316 | mrs 317 | much 318 | must 319 | mustn't 320 | my 321 | myself 322 | name 323 | namely 324 | nd 325 | near 326 | nearly 327 | necessary 328 | need 329 | needn't 330 | needs 331 | neither 332 | never 333 | neverf 334 | neverless 335 | nevertheless 336 | new 337 | next 338 | nine 339 | ninety 340 | no 341 | nobody 342 | non 343 | none 344 | nonetheless 345 | noone 346 | no-one 347 | nor 348 | normally 349 | not 350 | nothing 351 | notwithstanding 352 | novel 353 | now 354 | nowhere 355 | obviously 356 | of 357 | off 358 | often 359 | oh 360 | ok 361 | okay 362 | old 363 | on 364 | once 365 | one 366 | ones 367 | one's 368 | only 369 | onto 370 | opposite 371 | or 372 | other 373 | others 374 | otherwise 375 | ought 376 | oughtn't 377 | our 378 | ours 379 | ourselves 380 | out 381 | outside 382 | over 383 | overall 384 | own 385 | particular 386 | particularly 387 | past 388 | per 389 | perhaps 390 | placed 391 | please 392 | plus 393 | possible 394 | presumably 395 | probably 396 | provided 397 | provides 398 | que 399 | quite 400 | qv 401 | rather 402 | rd 403 | re 404 | really 405 | reasonably 406 | recent 407 | recently 408 | regarding 409 | regardless 410 | regards 411 | relatively 412 | respectively 413 | right 414 | round 415 | said 416 | same 417 | saw 418 | say 419 | saying 420 | says 421 | second 422 | secondly 423 | see 424 | seeing 425 | seem 426 | seemed 427 | seeming 428 | seems 429 | seen 430 | self 431 | selves 432 | sensible 433 | sent 434 | serious 435 | seriously 436 | seven 437 | several 438 | shall 439 | shan't 440 | she 441 | she'd 442 | she'll 443 | she's 444 | should 445 | shouldn't 446 | since 447 | six 448 | so 449 | some 450 | somebody 451 | someday 452 | somehow 453 | someone 454 | something 455 | sometime 456 | sometimes 457 | somewhat 458 | somewhere 459 | soon 460 | sorry 461 | specified 462 | specify 463 | specifying 464 | still 465 | sub 466 | such 467 | sup 468 | sure 469 | take 470 | taken 471 | taking 472 | tell 473 | tends 474 | th 475 | than 476 | thank 477 | thanks 478 | thanx 479 | that 480 | that'll 481 | thats 482 | that's 483 | that've 484 | the 485 | their 486 | theirs 487 | them 488 | themselves 489 | then 490 | thence 491 | there 492 | thereafter 493 | thereby 494 | there'd 495 | therefore 496 | therein 497 | there'll 498 | there're 499 | theres 500 | there's 501 | thereupon 502 | there've 503 | these 504 | they 505 | they'd 506 | they'll 507 | they're 508 | they've 509 | thing 510 | things 511 | think 512 | third 513 | thirty 514 | this 515 | thorough 516 | thoroughly 517 | those 518 | though 519 | three 520 | through 521 | throughout 522 | thru 523 | thus 524 | till 525 | to 526 | together 527 | too 528 | took 529 | toward 530 | towards 531 | tried 532 | tries 533 | truly 534 | try 535 | trying 536 | t's 537 | twice 538 | two 539 | un 540 | under 541 | underneath 542 | undoing 543 | unfortunately 544 | unless 545 | unlike 546 | unlikely 547 | until 548 | unto 549 | up 550 | upon 551 | upwards 552 | us 553 | use 554 | used 555 | useful 556 | uses 557 | using 558 | usually 559 | v 560 | value 561 | various 562 | versus 563 | very 564 | via 565 | viz 566 | vs 567 | want 568 | wants 569 | was 570 | wasn't 571 | way 572 | we 573 | we'd 574 | welcome 575 | well 576 | we'll 577 | went 578 | were 579 | we're 580 | weren't 581 | we've 582 | what 583 | whatever 584 | what'll 585 | what's 586 | what've 587 | when 588 | whence 589 | whenever 590 | where 591 | whereafter 592 | whereas 593 | whereby 594 | wherein 595 | where's 596 | whereupon 597 | wherever 598 | whether 599 | which 600 | whichever 601 | while 602 | whilst 603 | whither 604 | who 605 | who'd 606 | whoever 607 | whole 608 | who'll 609 | whom 610 | whomever 611 | who's 612 | whose 613 | why 614 | will 615 | willing 616 | wish 617 | with 618 | within 619 | without 620 | wonder 621 | won't 622 | would 623 | wouldn't 624 | yes 625 | yet 626 | you 627 | you'd 628 | you'll 629 | your 630 | you're 631 | yours 632 | yourself 633 | yourselves 634 | you've 635 | zero -------------------------------------------------------------------------------- /stopwords-en.json: -------------------------------------------------------------------------------- 1 | ["'ll","'tis","'twas","'ve","10","39","a","a's","able","ableabout","about","above","abroad","abst","accordance","according","accordingly","across","act","actually","ad","added","adj","adopted","ae","af","affected","affecting","affects","after","afterwards","ag","again","against","ago","ah","ahead","ai","ain't","aint","al","all","allow","allows","almost","alone","along","alongside","already","also","although","always","am","amid","amidst","among","amongst","amoungst","amount","an","and","announce","another","any","anybody","anyhow","anymore","anyone","anything","anyway","anyways","anywhere","ao","apart","apparently","appear","appreciate","appropriate","approximately","aq","ar","are","area","areas","aren","aren't","arent","arise","around","arpa","as","aside","ask","asked","asking","asks","associated","at","au","auth","available","aw","away","awfully","az","b","ba","back","backed","backing","backs","backward","backwards","bb","bd","be","became","because","become","becomes","becoming","been","before","beforehand","began","begin","beginning","beginnings","begins","behind","being","beings","believe","below","beside","besides","best","better","between","beyond","bf","bg","bh","bi","big","bill","billion","biol","bj","bm","bn","bo","both","bottom","br","brief","briefly","bs","bt","but","buy","bv","bw","by","bz","c","c'mon","c's","ca","call","came","can","can't","cannot","cant","caption","case","cases","cause","causes","cc","cd","certain","certainly","cf","cg","ch","changes","ci","ck","cl","clear","clearly","click","cm","cmon","cn","co","co.","com","come","comes","computer","con","concerning","consequently","consider","considering","contain","containing","contains","copy","corresponding","could","could've","couldn","couldn't","couldnt","course","cr","cry","cs","cu","currently","cv","cx","cy","cz","d","dare","daren't","darent","date","de","dear","definitely","describe","described","despite","detail","did","didn","didn't","didnt","differ","different","differently","directly","dj","dk","dm","do","does","doesn","doesn't","doesnt","doing","don","don't","done","dont","doubtful","down","downed","downing","downs","downwards","due","during","dz","e","each","early","ec","ed","edu","ee","effect","eg","eh","eight","eighty","either","eleven","else","elsewhere","empty","end","ended","ending","ends","enough","entirely","er","es","especially","et","et-al","etc","even","evenly","ever","evermore","every","everybody","everyone","everything","everywhere","ex","exactly","example","except","f","face","faces","fact","facts","fairly","far","farther","felt","few","fewer","ff","fi","fifteen","fifth","fifty","fify","fill","find","finds","fire","first","five","fix","fj","fk","fm","fo","followed","following","follows","for","forever","former","formerly","forth","forty","forward","found","four","fr","free","from","front","full","fully","further","furthered","furthering","furthermore","furthers","fx","g","ga","gave","gb","gd","ge","general","generally","get","gets","getting","gf","gg","gh","gi","give","given","gives","giving","gl","gm","gmt","gn","go","goes","going","gone","good","goods","got","gotten","gov","gp","gq","gr","great","greater","greatest","greetings","group","grouped","grouping","groups","gs","gt","gu","gw","gy","h","had","hadn't","hadnt","half","happens","hardly","has","hasn","hasn't","hasnt","have","haven","haven't","havent","having","he","he'd","he'll","he's","hed","hell","hello","help","hence","her","here","here's","hereafter","hereby","herein","heres","hereupon","hers","herself","herse”","hes","hi","hid","high","higher","highest","him","himself","himse”","his","hither","hk","hm","hn","home","homepage","hopefully","how","how'd","how'll","how's","howbeit","however","hr","ht","htm","html","http","hu","hundred","i","i'd","i'll","i'm","i've","i.e.","id","ie","if","ignored","ii","il","ill","im","immediate","immediately","importance","important","in","inasmuch","inc","inc.","indeed","index","indicate","indicated","indicates","information","inner","inside","insofar","instead","int","interest","interested","interesting","interests","into","invention","inward","io","iq","ir","is","isn","isn't","isnt","it","it'd","it'll","it's","itd","itll","its","itself","itse”","ive","j","je","jm","jo","join","jp","just","k","ke","keep","keeps","kept","keys","kg","kh","ki","kind","km","kn","knew","know","known","knows","kp","kr","kw","ky","kz","l","la","large","largely","last","lately","later","latest","latter","latterly","lb","lc","least","length","less","lest","let","let's","lets","li","like","liked","likely","likewise","line","little","lk","ll","long","longer","longest","look","looking","looks","low","lower","lr","ls","lt","ltd","lu","lv","ly","m","ma","made","mainly","make","makes","making","man","many","may","maybe","mayn't","maynt","mc","md","me","mean","means","meantime","meanwhile","member","members","men","merely","mg","mh","microsoft","might","might've","mightn't","mightnt","mil","mill","million","mine","minus","miss","mk","ml","mm","mn","mo","more","moreover","most","mostly","move","mp","mq","mr","mrs","ms","msie","mt","mu","much","mug","must","must've","mustn't","mustnt","mv","mw","mx","my","myself","myse”","mz","n","na","name","namely","nay","nc","nd","ne","near","nearly","necessarily","necessary","need","needed","needing","needn't","neednt","needs","neither","net","netscape","never","neverf","neverless","nevertheless","new","newer","newest","next","nf","ng","ni","nine","ninety","nl","no","no-one","nobody","non","none","nonetheless","noone","nor","normally","nos","not","noted","nothing","notwithstanding","novel","now","nowhere","np","nr","nu","null","number","numbers","nz","o","obtain","obtained","obviously","of","off","often","oh","ok","okay","old","older","oldest","om","omitted","on","once","one","one's","ones","only","onto","open","opened","opening","opens","opposite","or","ord","order","ordered","ordering","orders","org","other","others","otherwise","ought","oughtn't","oughtnt","our","ours","ourselves","out","outside","over","overall","owing","own","p","pa","page","pages","part","parted","particular","particularly","parting","parts","past","pe","per","perhaps","pf","pg","ph","pk","pl","place","placed","places","please","plus","pm","pmid","pn","point","pointed","pointing","points","poorly","possible","possibly","potentially","pp","pr","predominantly","present","presented","presenting","presents","presumably","previously","primarily","probably","problem","problems","promptly","proud","provided","provides","pt","put","puts","pw","py","q","qa","que","quickly","quite","qv","r","ran","rather","rd","re","readily","really","reasonably","recent","recently","ref","refs","regarding","regardless","regards","related","relatively","research","reserved","respectively","resulted","resulting","results","right","ring","ro","room","rooms","round","ru","run","rw","s","sa","said","same","saw","say","saying","says","sb","sc","sd","se","sec","second","secondly","seconds","section","see","seeing","seem","seemed","seeming","seems","seen","sees","self","selves","sensible","sent","serious","seriously","seven","seventy","several","sg","sh","shall","shan't","shant","she","she'd","she'll","she's","shed","shell","shes","should","should've","shouldn","shouldn't","shouldnt","show","showed","showing","shown","showns","shows","si","side","sides","significant","significantly","similar","similarly","since","sincere","site","six","sixty","sj","sk","sl","slightly","sm","small","smaller","smallest","sn","so","some","somebody","someday","somehow","someone","somethan","something","sometime","sometimes","somewhat","somewhere","soon","sorry","specifically","specified","specify","specifying","sr","st","state","states","still","stop","strongly","su","sub","substantially","successfully","such","sufficiently","suggest","sup","sure","sv","sy","system","sz","t","t's","take","taken","taking","tc","td","tell","ten","tends","test","text","tf","tg","th","than","thank","thanks","thanx","that","that'll","that's","that've","thatll","thats","thatve","the","their","theirs","them","themselves","then","thence","there","there'd","there'll","there're","there's","there've","thereafter","thereby","thered","therefore","therein","therell","thereof","therere","theres","thereto","thereupon","thereve","these","they","they'd","they'll","they're","they've","theyd","theyll","theyre","theyve","thick","thin","thing","things","think","thinks","third","thirty","this","thorough","thoroughly","those","thou","though","thoughh","thought","thoughts","thousand","three","throug","through","throughout","thru","thus","til","till","tip","tis","tj","tk","tm","tn","to","today","together","too","took","top","toward","towards","tp","tr","tried","tries","trillion","truly","try","trying","ts","tt","turn","turned","turning","turns","tv","tw","twas","twelve","twenty","twice","two","tz","u","ua","ug","uk","um","un","under","underneath","undoing","unfortunately","unless","unlike","unlikely","until","unto","up","upon","ups","upwards","us","use","used","useful","usefully","usefulness","uses","using","usually","uucp","uy","uz","v","va","value","various","vc","ve","versus","very","vg","vi","via","viz","vn","vol","vols","vs","vu","w","want","wanted","wanting","wants","was","wasn","wasn't","wasnt","way","ways","we","we'd","we'll","we're","we've","web","webpage","website","wed","welcome","well","wells","went","were","weren","weren't","werent","weve","wf","what","what'd","what'll","what's","what've","whatever","whatll","whats","whatve","when","when'd","when'll","when's","whence","whenever","where","where'd","where'll","where's","whereafter","whereas","whereby","wherein","wheres","whereupon","wherever","whether","which","whichever","while","whilst","whim","whither","who","who'd","who'll","who's","whod","whoever","whole","wholl","whom","whomever","whos","whose","why","why'd","why'll","why's","widely","width","will","willing","wish","with","within","without","won","won't","wonder","wont","words","work","worked","working","works","world","would","would've","wouldn","wouldn't","wouldnt","ws","www","x","y","ye","year","years","yes","yet","you","you'd","you'll","you're","you've","youd","youll","young","younger","youngest","your","youre","yours","yourself","yourselves","youve","yt","yu","z","za","zero","zm","zr"] -------------------------------------------------------------------------------- /stopwords-en.txt: -------------------------------------------------------------------------------- 1 | 'll 2 | 'tis 3 | 'twas 4 | 've 5 | 10 6 | 39 7 | a 8 | a's 9 | able 10 | ableabout 11 | about 12 | above 13 | abroad 14 | abst 15 | accordance 16 | according 17 | accordingly 18 | across 19 | act 20 | actually 21 | ad 22 | added 23 | adj 24 | adopted 25 | ae 26 | af 27 | affected 28 | affecting 29 | affects 30 | after 31 | afterwards 32 | ag 33 | again 34 | against 35 | ago 36 | ah 37 | ahead 38 | ai 39 | ain't 40 | aint 41 | al 42 | all 43 | allow 44 | allows 45 | almost 46 | alone 47 | along 48 | alongside 49 | already 50 | also 51 | although 52 | always 53 | am 54 | amid 55 | amidst 56 | among 57 | amongst 58 | amoungst 59 | amount 60 | an 61 | and 62 | announce 63 | another 64 | any 65 | anybody 66 | anyhow 67 | anymore 68 | anyone 69 | anything 70 | anyway 71 | anyways 72 | anywhere 73 | ao 74 | apart 75 | apparently 76 | appear 77 | appreciate 78 | appropriate 79 | approximately 80 | aq 81 | ar 82 | are 83 | area 84 | areas 85 | aren 86 | aren't 87 | arent 88 | arise 89 | around 90 | arpa 91 | as 92 | aside 93 | ask 94 | asked 95 | asking 96 | asks 97 | associated 98 | at 99 | au 100 | auth 101 | available 102 | aw 103 | away 104 | awfully 105 | az 106 | b 107 | ba 108 | back 109 | backed 110 | backing 111 | backs 112 | backward 113 | backwards 114 | bb 115 | bd 116 | be 117 | became 118 | because 119 | become 120 | becomes 121 | becoming 122 | been 123 | before 124 | beforehand 125 | began 126 | begin 127 | beginning 128 | beginnings 129 | begins 130 | behind 131 | being 132 | beings 133 | believe 134 | below 135 | beside 136 | besides 137 | best 138 | better 139 | between 140 | beyond 141 | bf 142 | bg 143 | bh 144 | bi 145 | big 146 | bill 147 | billion 148 | biol 149 | bj 150 | bm 151 | bn 152 | bo 153 | both 154 | bottom 155 | br 156 | brief 157 | briefly 158 | bs 159 | bt 160 | but 161 | buy 162 | bv 163 | bw 164 | by 165 | bz 166 | c 167 | c'mon 168 | c's 169 | ca 170 | call 171 | came 172 | can 173 | can't 174 | cannot 175 | cant 176 | caption 177 | case 178 | cases 179 | cause 180 | causes 181 | cc 182 | cd 183 | certain 184 | certainly 185 | cf 186 | cg 187 | ch 188 | changes 189 | ci 190 | ck 191 | cl 192 | clear 193 | clearly 194 | click 195 | cm 196 | cmon 197 | cn 198 | co 199 | co. 200 | com 201 | come 202 | comes 203 | computer 204 | con 205 | concerning 206 | consequently 207 | consider 208 | considering 209 | contain 210 | containing 211 | contains 212 | copy 213 | corresponding 214 | could 215 | could've 216 | couldn 217 | couldn't 218 | couldnt 219 | course 220 | cr 221 | cry 222 | cs 223 | cu 224 | currently 225 | cv 226 | cx 227 | cy 228 | cz 229 | d 230 | dare 231 | daren't 232 | darent 233 | date 234 | de 235 | dear 236 | definitely 237 | describe 238 | described 239 | despite 240 | detail 241 | did 242 | didn 243 | didn't 244 | didnt 245 | differ 246 | different 247 | differently 248 | directly 249 | dj 250 | dk 251 | dm 252 | do 253 | does 254 | doesn 255 | doesn't 256 | doesnt 257 | doing 258 | don 259 | don't 260 | done 261 | dont 262 | doubtful 263 | down 264 | downed 265 | downing 266 | downs 267 | downwards 268 | due 269 | during 270 | dz 271 | e 272 | each 273 | early 274 | ec 275 | ed 276 | edu 277 | ee 278 | effect 279 | eg 280 | eh 281 | eight 282 | eighty 283 | either 284 | eleven 285 | else 286 | elsewhere 287 | empty 288 | end 289 | ended 290 | ending 291 | ends 292 | enough 293 | entirely 294 | er 295 | es 296 | especially 297 | et 298 | et-al 299 | etc 300 | even 301 | evenly 302 | ever 303 | evermore 304 | every 305 | everybody 306 | everyone 307 | everything 308 | everywhere 309 | ex 310 | exactly 311 | example 312 | except 313 | f 314 | face 315 | faces 316 | fact 317 | facts 318 | fairly 319 | far 320 | farther 321 | felt 322 | few 323 | fewer 324 | ff 325 | fi 326 | fifteen 327 | fifth 328 | fifty 329 | fify 330 | fill 331 | find 332 | finds 333 | fire 334 | first 335 | five 336 | fix 337 | fj 338 | fk 339 | fm 340 | fo 341 | followed 342 | following 343 | follows 344 | for 345 | forever 346 | former 347 | formerly 348 | forth 349 | forty 350 | forward 351 | found 352 | four 353 | fr 354 | free 355 | from 356 | front 357 | full 358 | fully 359 | further 360 | furthered 361 | furthering 362 | furthermore 363 | furthers 364 | fx 365 | g 366 | ga 367 | gave 368 | gb 369 | gd 370 | ge 371 | general 372 | generally 373 | get 374 | gets 375 | getting 376 | gf 377 | gg 378 | gh 379 | gi 380 | give 381 | given 382 | gives 383 | giving 384 | gl 385 | gm 386 | gmt 387 | gn 388 | go 389 | goes 390 | going 391 | gone 392 | good 393 | goods 394 | got 395 | gotten 396 | gov 397 | gp 398 | gq 399 | gr 400 | great 401 | greater 402 | greatest 403 | greetings 404 | group 405 | grouped 406 | grouping 407 | groups 408 | gs 409 | gt 410 | gu 411 | gw 412 | gy 413 | h 414 | had 415 | hadn't 416 | hadnt 417 | half 418 | happens 419 | hardly 420 | has 421 | hasn 422 | hasn't 423 | hasnt 424 | have 425 | haven 426 | haven't 427 | havent 428 | having 429 | he 430 | he'd 431 | he'll 432 | he's 433 | hed 434 | hell 435 | hello 436 | help 437 | hence 438 | her 439 | here 440 | here's 441 | hereafter 442 | hereby 443 | herein 444 | heres 445 | hereupon 446 | hers 447 | herself 448 | herse” 449 | hes 450 | hi 451 | hid 452 | high 453 | higher 454 | highest 455 | him 456 | himself 457 | himse” 458 | his 459 | hither 460 | hk 461 | hm 462 | hn 463 | home 464 | homepage 465 | hopefully 466 | how 467 | how'd 468 | how'll 469 | how's 470 | howbeit 471 | however 472 | hr 473 | ht 474 | htm 475 | html 476 | http 477 | hu 478 | hundred 479 | i 480 | i'd 481 | i'll 482 | i'm 483 | i've 484 | i.e. 485 | id 486 | ie 487 | if 488 | ignored 489 | ii 490 | il 491 | ill 492 | im 493 | immediate 494 | immediately 495 | importance 496 | important 497 | in 498 | inasmuch 499 | inc 500 | inc. 501 | indeed 502 | index 503 | indicate 504 | indicated 505 | indicates 506 | information 507 | inner 508 | inside 509 | insofar 510 | instead 511 | int 512 | interest 513 | interested 514 | interesting 515 | interests 516 | into 517 | invention 518 | inward 519 | io 520 | iq 521 | ir 522 | is 523 | isn 524 | isn't 525 | isnt 526 | it 527 | it'd 528 | it'll 529 | it's 530 | itd 531 | itll 532 | its 533 | itself 534 | itse” 535 | ive 536 | j 537 | je 538 | jm 539 | jo 540 | join 541 | jp 542 | just 543 | k 544 | ke 545 | keep 546 | keeps 547 | kept 548 | keys 549 | kg 550 | kh 551 | ki 552 | kind 553 | km 554 | kn 555 | knew 556 | know 557 | known 558 | knows 559 | kp 560 | kr 561 | kw 562 | ky 563 | kz 564 | l 565 | la 566 | large 567 | largely 568 | last 569 | lately 570 | later 571 | latest 572 | latter 573 | latterly 574 | lb 575 | lc 576 | least 577 | length 578 | less 579 | lest 580 | let 581 | let's 582 | lets 583 | li 584 | like 585 | liked 586 | likely 587 | likewise 588 | line 589 | little 590 | lk 591 | ll 592 | long 593 | longer 594 | longest 595 | look 596 | looking 597 | looks 598 | low 599 | lower 600 | lr 601 | ls 602 | lt 603 | ltd 604 | lu 605 | lv 606 | ly 607 | m 608 | ma 609 | made 610 | mainly 611 | make 612 | makes 613 | making 614 | man 615 | many 616 | may 617 | maybe 618 | mayn't 619 | maynt 620 | mc 621 | md 622 | me 623 | mean 624 | means 625 | meantime 626 | meanwhile 627 | member 628 | members 629 | men 630 | merely 631 | mg 632 | mh 633 | microsoft 634 | might 635 | might've 636 | mightn't 637 | mightnt 638 | mil 639 | mill 640 | million 641 | mine 642 | minus 643 | miss 644 | mk 645 | ml 646 | mm 647 | mn 648 | mo 649 | more 650 | moreover 651 | most 652 | mostly 653 | move 654 | mp 655 | mq 656 | mr 657 | mrs 658 | ms 659 | msie 660 | mt 661 | mu 662 | much 663 | mug 664 | must 665 | must've 666 | mustn't 667 | mustnt 668 | mv 669 | mw 670 | mx 671 | my 672 | myself 673 | myse” 674 | mz 675 | n 676 | na 677 | name 678 | namely 679 | nay 680 | nc 681 | nd 682 | ne 683 | near 684 | nearly 685 | necessarily 686 | necessary 687 | need 688 | needed 689 | needing 690 | needn't 691 | neednt 692 | needs 693 | neither 694 | net 695 | netscape 696 | never 697 | neverf 698 | neverless 699 | nevertheless 700 | new 701 | newer 702 | newest 703 | next 704 | nf 705 | ng 706 | ni 707 | nine 708 | ninety 709 | nl 710 | no 711 | no-one 712 | nobody 713 | non 714 | none 715 | nonetheless 716 | noone 717 | nor 718 | normally 719 | nos 720 | not 721 | noted 722 | nothing 723 | notwithstanding 724 | novel 725 | now 726 | nowhere 727 | np 728 | nr 729 | nu 730 | null 731 | number 732 | numbers 733 | nz 734 | o 735 | obtain 736 | obtained 737 | obviously 738 | of 739 | off 740 | often 741 | oh 742 | ok 743 | okay 744 | old 745 | older 746 | oldest 747 | om 748 | omitted 749 | on 750 | once 751 | one 752 | one's 753 | ones 754 | only 755 | onto 756 | open 757 | opened 758 | opening 759 | opens 760 | opposite 761 | or 762 | ord 763 | order 764 | ordered 765 | ordering 766 | orders 767 | org 768 | other 769 | others 770 | otherwise 771 | ought 772 | oughtn't 773 | oughtnt 774 | our 775 | ours 776 | ourselves 777 | out 778 | outside 779 | over 780 | overall 781 | owing 782 | own 783 | p 784 | pa 785 | page 786 | pages 787 | part 788 | parted 789 | particular 790 | particularly 791 | parting 792 | parts 793 | past 794 | pe 795 | per 796 | perhaps 797 | pf 798 | pg 799 | ph 800 | pk 801 | pl 802 | place 803 | placed 804 | places 805 | please 806 | plus 807 | pm 808 | pmid 809 | pn 810 | point 811 | pointed 812 | pointing 813 | points 814 | poorly 815 | possible 816 | possibly 817 | potentially 818 | pp 819 | pr 820 | predominantly 821 | present 822 | presented 823 | presenting 824 | presents 825 | presumably 826 | previously 827 | primarily 828 | probably 829 | problem 830 | problems 831 | promptly 832 | proud 833 | provided 834 | provides 835 | pt 836 | put 837 | puts 838 | pw 839 | py 840 | q 841 | qa 842 | que 843 | quickly 844 | quite 845 | qv 846 | r 847 | ran 848 | rather 849 | rd 850 | re 851 | readily 852 | really 853 | reasonably 854 | recent 855 | recently 856 | ref 857 | refs 858 | regarding 859 | regardless 860 | regards 861 | related 862 | relatively 863 | research 864 | reserved 865 | respectively 866 | resulted 867 | resulting 868 | results 869 | right 870 | ring 871 | ro 872 | room 873 | rooms 874 | round 875 | ru 876 | run 877 | rw 878 | s 879 | sa 880 | said 881 | same 882 | saw 883 | say 884 | saying 885 | says 886 | sb 887 | sc 888 | sd 889 | se 890 | sec 891 | second 892 | secondly 893 | seconds 894 | section 895 | see 896 | seeing 897 | seem 898 | seemed 899 | seeming 900 | seems 901 | seen 902 | sees 903 | self 904 | selves 905 | sensible 906 | sent 907 | serious 908 | seriously 909 | seven 910 | seventy 911 | several 912 | sg 913 | sh 914 | shall 915 | shan't 916 | shant 917 | she 918 | she'd 919 | she'll 920 | she's 921 | shed 922 | shell 923 | shes 924 | should 925 | should've 926 | shouldn 927 | shouldn't 928 | shouldnt 929 | show 930 | showed 931 | showing 932 | shown 933 | showns 934 | shows 935 | si 936 | side 937 | sides 938 | significant 939 | significantly 940 | similar 941 | similarly 942 | since 943 | sincere 944 | site 945 | six 946 | sixty 947 | sj 948 | sk 949 | sl 950 | slightly 951 | sm 952 | small 953 | smaller 954 | smallest 955 | sn 956 | so 957 | some 958 | somebody 959 | someday 960 | somehow 961 | someone 962 | somethan 963 | something 964 | sometime 965 | sometimes 966 | somewhat 967 | somewhere 968 | soon 969 | sorry 970 | specifically 971 | specified 972 | specify 973 | specifying 974 | sr 975 | st 976 | state 977 | states 978 | still 979 | stop 980 | strongly 981 | su 982 | sub 983 | substantially 984 | successfully 985 | such 986 | sufficiently 987 | suggest 988 | sup 989 | sure 990 | sv 991 | sy 992 | system 993 | sz 994 | t 995 | t's 996 | take 997 | taken 998 | taking 999 | tc 1000 | td 1001 | tell 1002 | ten 1003 | tends 1004 | test 1005 | text 1006 | tf 1007 | tg 1008 | th 1009 | than 1010 | thank 1011 | thanks 1012 | thanx 1013 | that 1014 | that'll 1015 | that's 1016 | that've 1017 | thatll 1018 | thats 1019 | thatve 1020 | the 1021 | their 1022 | theirs 1023 | them 1024 | themselves 1025 | then 1026 | thence 1027 | there 1028 | there'd 1029 | there'll 1030 | there're 1031 | there's 1032 | there've 1033 | thereafter 1034 | thereby 1035 | thered 1036 | therefore 1037 | therein 1038 | therell 1039 | thereof 1040 | therere 1041 | theres 1042 | thereto 1043 | thereupon 1044 | thereve 1045 | these 1046 | they 1047 | they'd 1048 | they'll 1049 | they're 1050 | they've 1051 | theyd 1052 | theyll 1053 | theyre 1054 | theyve 1055 | thick 1056 | thin 1057 | thing 1058 | things 1059 | think 1060 | thinks 1061 | third 1062 | thirty 1063 | this 1064 | thorough 1065 | thoroughly 1066 | those 1067 | thou 1068 | though 1069 | thoughh 1070 | thought 1071 | thoughts 1072 | thousand 1073 | three 1074 | throug 1075 | through 1076 | throughout 1077 | thru 1078 | thus 1079 | til 1080 | till 1081 | tip 1082 | tis 1083 | tj 1084 | tk 1085 | tm 1086 | tn 1087 | to 1088 | today 1089 | together 1090 | too 1091 | took 1092 | top 1093 | toward 1094 | towards 1095 | tp 1096 | tr 1097 | tried 1098 | tries 1099 | trillion 1100 | truly 1101 | try 1102 | trying 1103 | ts 1104 | tt 1105 | turn 1106 | turned 1107 | turning 1108 | turns 1109 | tv 1110 | tw 1111 | twas 1112 | twelve 1113 | twenty 1114 | twice 1115 | two 1116 | tz 1117 | u 1118 | ua 1119 | ug 1120 | uk 1121 | um 1122 | un 1123 | under 1124 | underneath 1125 | undoing 1126 | unfortunately 1127 | unless 1128 | unlike 1129 | unlikely 1130 | until 1131 | unto 1132 | up 1133 | upon 1134 | ups 1135 | upwards 1136 | us 1137 | use 1138 | used 1139 | useful 1140 | usefully 1141 | usefulness 1142 | uses 1143 | using 1144 | usually 1145 | uucp 1146 | uy 1147 | uz 1148 | v 1149 | va 1150 | value 1151 | various 1152 | vc 1153 | ve 1154 | versus 1155 | very 1156 | vg 1157 | vi 1158 | via 1159 | viz 1160 | vn 1161 | vol 1162 | vols 1163 | vs 1164 | vu 1165 | w 1166 | want 1167 | wanted 1168 | wanting 1169 | wants 1170 | was 1171 | wasn 1172 | wasn't 1173 | wasnt 1174 | way 1175 | ways 1176 | we 1177 | we'd 1178 | we'll 1179 | we're 1180 | we've 1181 | web 1182 | webpage 1183 | website 1184 | wed 1185 | welcome 1186 | well 1187 | wells 1188 | went 1189 | were 1190 | weren 1191 | weren't 1192 | werent 1193 | weve 1194 | wf 1195 | what 1196 | what'd 1197 | what'll 1198 | what's 1199 | what've 1200 | whatever 1201 | whatll 1202 | whats 1203 | whatve 1204 | when 1205 | when'd 1206 | when'll 1207 | when's 1208 | whence 1209 | whenever 1210 | where 1211 | where'd 1212 | where'll 1213 | where's 1214 | whereafter 1215 | whereas 1216 | whereby 1217 | wherein 1218 | wheres 1219 | whereupon 1220 | wherever 1221 | whether 1222 | which 1223 | whichever 1224 | while 1225 | whilst 1226 | whim 1227 | whither 1228 | who 1229 | who'd 1230 | who'll 1231 | who's 1232 | whod 1233 | whoever 1234 | whole 1235 | wholl 1236 | whom 1237 | whomever 1238 | whos 1239 | whose 1240 | why 1241 | why'd 1242 | why'll 1243 | why's 1244 | widely 1245 | width 1246 | will 1247 | willing 1248 | wish 1249 | with 1250 | within 1251 | without 1252 | won 1253 | won't 1254 | wonder 1255 | wont 1256 | words 1257 | work 1258 | worked 1259 | working 1260 | works 1261 | world 1262 | would 1263 | would've 1264 | wouldn 1265 | wouldn't 1266 | wouldnt 1267 | ws 1268 | www 1269 | x 1270 | y 1271 | ye 1272 | year 1273 | years 1274 | yes 1275 | yet 1276 | you 1277 | you'd 1278 | you'll 1279 | you're 1280 | you've 1281 | youd 1282 | youll 1283 | young 1284 | younger 1285 | youngest 1286 | your 1287 | youre 1288 | yours 1289 | yourself 1290 | yourselves 1291 | youve 1292 | yt 1293 | yu 1294 | z 1295 | za 1296 | zero 1297 | zm 1298 | zr --------------------------------------------------------------------------------