├── MANIFEST.in ├── .gitignore ├── censusname ├── __main__.py ├── __init__.py ├── formatters.py ├── censusname.py └── data │ ├── dist.male.first.1990.csv │ └── dist.female.first.1990.csv ├── Makefile ├── setup.py ├── readme.md └── LICENSE /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md 2 | exclude */.DS_Store 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | README.rst 2 | *.egg 3 | dist 4 | build 5 | *.egg-info/ -------------------------------------------------------------------------------- /censusname/__main__.py: -------------------------------------------------------------------------------- 1 | from __future__ import print_function 2 | from . import censusname as cn 3 | 4 | # In the absence of tests, as least make sure specifying arguments doesn't break anything: 5 | _C = cn.Censusname('{given} {surname}', cn.NAMEFILES, cn.MAX_FREQUENCIES, csv_args={'delimiter': ','}) 6 | 7 | print(_C.generate()) 8 | -------------------------------------------------------------------------------- /censusname/__init__.py: -------------------------------------------------------------------------------- 1 | __title__ = 'censusname' 2 | __version__ = '0.2.2' 3 | __author__ = 'Neil Freeman' 4 | __license__ = 'GPL' 5 | 6 | __all__ = ['censusname', 'formatters'] 7 | 8 | from .censusname import Censusname, generate, NAMEFILES, SURNAME2000, SURNAME1990, MALEFIRST1990, FEMALEFIRST1990 9 | from . import formatters 10 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | # This file is part of censusname. 2 | # https://github.com/fitnr/censusname 3 | 4 | # Licensed under the General Public License (version 3) 5 | # http://opensource.org/licenses/LGPL-3.0 6 | # Copyright (c) 2015, Neil Freeman 7 | 8 | README.rst: README.md 9 | pandoc $< -o $@ || touch $@ 10 | -------------------------------------------------------------------------------- /censusname/formatters.py: -------------------------------------------------------------------------------- 1 | import re 2 | 3 | surname_patterns = [ 4 | { 5 | 'pattern': ( 6 | r'^O(BR[IEYA]{2}N|BRYANT|GORMAN|FLANAGAN|HALLORAN|HARA|LOUGHLIN|' 7 | 'SHAUGHNESSY|CONNOR|N[EAI]+LL?|CALLAG?HAN|SHEA|ROURKE|TOOLE?|GRADY|' 8 | 'BANNON|BARR|SULLIVAN|DONOHUE|.ONN?ELL?Y?|KEEFE|DOHERTY|[KM][AE]LLE?Y|' 9 | 'DONLEY|BAUGH|R[EI]{2}LLEY|BOYLE|.ARR.LL|DELL|HARROLL|DOUGHERTY|[CD]ON[AE]Ll?)(S?)$' 10 | ), 11 | 'replace': lambda pattern: "O'" + pattern.group(1).capitalize() + pattern.group(2).lower() 12 | }, 13 | { 14 | 'pattern': r'^ST([^AEIOURY]\w+$)', 15 | 'replace': lambda pattern: "St. " + pattern.group(1).capitalize() 16 | }, 17 | { 18 | 'pattern': r'^MC(\w+)$', 19 | 'replace': lambda pattern: 'Mc' + pattern.group(1).capitalize() 20 | } 21 | ] 22 | 23 | 24 | def recapitalize_surnames(fragment): 25 | for reformat in surname_patterns: 26 | fragment = re.sub(reformat['pattern'], reformat['replace'], fragment, flags=re.IGNORECASE) 27 | return fragment 28 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | from setuptools import setup 2 | 3 | try: 4 | readme = open('README.rst').read() 5 | except IOError: 6 | try: 7 | readme = open('README.md').read() 8 | except IOError: 9 | readme = '' 10 | 11 | setup( 12 | name='censusname', 13 | 14 | version='0.2.2', 15 | 16 | description='Generate random names', 17 | 18 | long_description=readme, 19 | 20 | url='https://github.com/fitnr/censusname', 21 | 22 | author='Neil Freeman', 23 | 24 | author_email='contact@fakeisthenewreal.org', 25 | 26 | license='GPL', 27 | 28 | classifiers=[ 29 | 'Development Status :: 4 - Beta', 30 | 31 | 'Intended Audience :: Developers', 32 | 33 | 'License :: OSI Approved :: MIT License', 34 | 35 | 'Programming Language :: Python :: 2', 36 | 'Programming Language :: Python :: 2.7', 37 | 'Programming Language :: Python :: 3', 38 | ], 39 | 40 | keywords='names development random', 41 | 42 | packages=['censusname',], 43 | 44 | package_data={ 45 | 'censusname': ['data/*.csv'], 46 | }, 47 | 48 | zip_safe=True, 49 | 50 | use_2to3=True, 51 | 52 | ) 53 | -------------------------------------------------------------------------------- /censusname/censusname.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Copyright 2014-5 Neil Freeman 3 | # This program is free software: you can redistribute it and/or modify 4 | # it under the terms of the GNU General Public License as published by 5 | # the Free Software Foundation, either version 3 of the License, or 6 | # (at your option) any later version. 7 | 8 | # This program is distributed in the hope that it will be useful, 9 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 10 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 | # GNU General Public License for more details. 12 | 13 | # You should have received a copy of the GNU General Public License 14 | # along with this program. If not, see . 15 | from __future__ import print_function 16 | 17 | from pkg_resources import resource_stream, resource_exists 18 | from contextlib import closing 19 | import codecs 20 | import random 21 | import csv 22 | from . import formatters 23 | 24 | # Name files should have at least the following columns: 25 | # name (string) 26 | # cumul_frequency (float) number from 0 to 100 27 | 28 | SURNAME2000 = "data/dist.all.last.2000.csv" 29 | SURNAME1990 = "data/dist.all.last.1990.csv" 30 | MALEFIRST1990 = "data/dist.male.first.1990.csv" 31 | FEMALEFIRST1990 = "data/dist.female.first.1990.csv" 32 | 33 | # Name files don't contain every name, so hard coding the maximum frequency here. 34 | # This way we don't over-pick the least common names 35 | MAX_FREQUENCIES = { 36 | SURNAME2000: 89.75356, 37 | SURNAME1990: 90.483, 38 | MALEFIRST1990: 90.040, 39 | FEMALEFIRST1990: 90.024 40 | } 41 | 42 | GIVENNAMEFILES = { 43 | 'male': MALEFIRST1990, 44 | 'female': FEMALEFIRST1990 45 | } 46 | 47 | # 1990 is commented out because it's (a) out of date (b) not based on a random sample anyway 48 | # Feel free to use it by doing something like: 49 | # from censusname import censusname 50 | # my_surnamefiles = { '1990': censusname.SURNAME1990 } 51 | SURNAMEFILES = { 52 | '2000': SURNAME2000, 53 | # '1990': SURNAME1990 54 | } 55 | 56 | NAMEFILES = { 57 | 'given': GIVENNAMEFILES, 58 | 'surname': SURNAMEFILES 59 | } 60 | 61 | FORMATTERS = { 62 | 'surname': [formatters.recapitalize_surnames] 63 | } 64 | 65 | 66 | class Censusname(object): 67 | 68 | """Generate a random name from an arbitrary set of files""" 69 | 70 | def __init__(self, nameformat='{given} {surname}', namefiles=None, max_frequencies=None, **kwargs): 71 | self.namefiles = namefiles or NAMEFILES 72 | 73 | if self.namefiles == NAMEFILES: 74 | self.max_frequencies = MAX_FREQUENCIES 75 | 76 | # If no max frequencies given, assume they go to 100 for each file 77 | if max_frequencies is None: 78 | max_frequencies = dict((self.namefiles[k][x], 100) for k in list(self.namefiles.keys()) for x in self.namefiles[k]) 79 | 80 | self.nameformat = nameformat 81 | 82 | if 'csv_args' in kwargs: 83 | self.csv_args = kwargs['csv_args'] 84 | else: 85 | self.csv_args = {'delimiter': ','} 86 | 87 | if 'formatters' in kwargs: 88 | if type(kwargs['formatters']) is not dict: 89 | raise TypeError("Keyword argument 'formatters' for censusname() must be a dict.") 90 | 91 | self.formatters = kwargs['formatters'] 92 | else: 93 | self.formatters = FORMATTERS 94 | 95 | if 'capitalize' in kwargs: 96 | self.capitalize = kwargs['capitalize'] 97 | else: 98 | self.capitalize = True 99 | 100 | def generate(self, nameformat=None, capitalize=None, formatters=None, **kwargs): 101 | '''Pick a random name form a specified list of name parts''' 102 | 103 | nameformat = nameformat or self.nameformat 104 | capitalize = capitalize or self.capitalize 105 | formatters = formatters or {} 106 | 107 | lines = self._get_lines(kwargs) 108 | names = dict((k, v['name']) for k, v in list(lines.items())) 109 | 110 | if capitalize: 111 | names = dict((k, n.capitalize()) for k, n in list(names.items())) 112 | 113 | merged_formatters = dict() 114 | 115 | try: 116 | merged_formatters = dict( 117 | (k, self.formatters.get(k, []) + formatters.get(k, [])) for k in set(list(self.formatters.keys()) + list(formatters.keys())) 118 | ) 119 | except AttributeError: 120 | raise TypeError("keyword argument 'formatters' for Censusname.generate() must be a dict") 121 | 122 | if merged_formatters: 123 | for key, functions in list(merged_formatters.items()): 124 | # 'surname', [func_a, func_b] 125 | for func in functions: 126 | # names['surname'] = func_a(name['surname']) 127 | names[key] = func(names[key]) 128 | 129 | return nameformat.format(**names) 130 | 131 | def _get_lines(self, nametypes): 132 | datafile, frequency, lines = '', 0.0, {} 133 | 134 | # The key of each name file is its namepart, e.g. surname or given 135 | for namepart in list(self.namefiles.keys()): 136 | datafile = self._pick_file(namepart, nametypes.get(namepart, None)) 137 | frequency = random.uniform(0, self.max_frequencies[datafile]) 138 | lines[namepart] = self.pick_frequency_line(datafile, frequency) 139 | 140 | return lines 141 | 142 | def _pick_file(self, namepart, namekeys=None): 143 | result = None 144 | 145 | if type(namekeys) is not list: 146 | namekeys = [namekeys] 147 | 148 | if namekeys: 149 | key = random.choice(namekeys) 150 | result = self.namefiles[namepart].get(key) 151 | 152 | if result is None: 153 | return random.choice(list(self.namefiles[namepart].values())) 154 | else: 155 | return result 156 | 157 | def pick_frequency_line(self, filename, frequency, cumulativefield='cumulative_frequency'): 158 | '''Given a numeric frequency, pick a line from a csv with a cumulative frequency field''' 159 | if resource_exists('censusname', filename): 160 | with closing(resource_stream('censusname', filename)) as b: 161 | g = codecs.iterdecode(b, 'ascii') 162 | return self._pick_frequency_line(g, frequency, cumulativefield) 163 | else: 164 | with open(filename, encoding='ascii') as g: 165 | return self._pick_frequency_line(g, frequency, cumulativefield) 166 | 167 | def _pick_frequency_line(self, handle, frequency, cumulativefield): 168 | reader = csv.DictReader(handle, **self.csv_args) 169 | 170 | for line in reader: 171 | if float(line[cumulativefield]) >= frequency: 172 | return line 173 | 174 | 175 | # helper generate function 176 | _C = Censusname() 177 | 178 | 179 | def generate(*args, **kwargs): 180 | return _C.generate(*args, **kwargs) 181 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | Census Name 2 | ============ 3 | 4 | Generate random names based on US Census data, or files that you provide. 5 | 6 | ### Basic use 7 | 8 | The simplest way to use censusname is with the `generate` method. It generates a names based on last and first name distributions in the 2000 Census. It has a 50/50 chance of providing a first name from either the `female` or `male` lists. 9 | 10 | ````python 11 | import censusname 12 | censusname.generate() 13 | 'Jane Smith' 14 | ```` 15 | 16 | Or, on the command line, run: 17 | ```` 18 | python -m censusname 19 | ```` 20 | 21 | The simplest way to customize Censusname is with the name_format argument 22 | It takes a string with two formatting keys: 'given' and 'surname' (The format should look familiar from Python's [str.format](https://docs.python.org/2/library/stdtypes.html#str.format) builtin). 23 | 24 | ````python 25 | import censusname 26 | 27 | # Generate first names 28 | censusname.generate(nameformat='{given}') 29 | 'Linda' 30 | 31 | # Generate names in last, first format 32 | censusname.generate(nameformat='{surname}, {given') 33 | 'Nguyen, Pamela' 34 | ```` 35 | 36 | ### Methods and Objects 37 | 38 | #### `generate` 39 | 40 | Generates random names. See below for details on valid arguments. 41 | 42 | #### `Censusname` 43 | 44 | The `generate` method is called on a default instance of the `Censusname` object. `Censusname` is the meat of the module, and instances a can be created with custom formatting and custom lists of names. 45 | 46 | Keyword arguments: `nameformat`, `namefiles`, `max_frequencies`, `formatters`, `capitalize`. 47 | 48 | ````python 49 | from censusname import Censusname 50 | 51 | last_first = Censusname(nameformat='{surname}, {given}') 52 | last_first.generate() 53 | 'Lashley, Emily' 54 | ```` 55 | 56 | #### `Censusname.generate` 57 | 58 | ````python 59 | C = Censusname() 60 | C.generate() 61 | 'Michael Fox' 62 | 63 | # Add the same middle initial to all names 64 | C.generate(nameformat='{given} J. {surname}') 65 | 'Michael J. Fox' 66 | ```` 67 | 68 | Each part of the name is also a keyword argument. The default data set includes given name files broken up into male and female names. The module can be told to always use a certain file: 69 | 70 | ````python 71 | C.generate(given='female') 72 | 'Caroline Dippold' 73 | ```` 74 | 75 | Since the argument to `nameformat` is passed to Str.format, one can use any string formatting options, like padding: 76 | 77 | ````python 78 | C.generate(nameformat='{given:10}', given='male') 79 | 'Charles ' 80 | ```` 81 | 82 | The default dataset in censusname gives all names totally capitalized, and censusname changes them to title case. This can be turned off with a the capitalize argument, which works for both `Censusname` and `Censusname.generate`: 83 | 84 | ````python 85 | C.generate(capitalize=False) 86 | 'WES REAVES' 87 | 88 | # or, create your own Censusname object 89 | from censusname import Censusname 90 | C = Censusname(capitalize=False) 91 | C.generate() 92 | 'JOSE PETRIE' 93 | ```` 94 | 95 | Yes, it's a bit strange for `capitalize=False` to result in uppercase names. The false omits [str.capitalize](https://docs.python.org/2/library/stdtypes.html#str.capitalize), so the default capitalization from the raw data shines through, which happens to be all uppercase. You can customize the module arbitrary reformatting methods. Read on! 96 | 97 | ### Advanced 98 | 99 | You can pass your own names file to `Censusname` to generate names with arbitary formatting. For each section of a name, a different sets of files can be used. This could be useful if you have name data broken down by time, geography, or any other variable. By default, male and female first name data from 1990 are combined with last name data from 2000. 100 | 101 | Files must have two fields: `name` and `cumulative_frequency`. By default, the package expects comma-delimited files, buy you can pass in `csv.DictReader` arguments with the paramenter `csv_args`. 102 | 103 | The `cumulative_frequency` field should be calculated based on ascending frequency, and should be a number between from 0 to and some maximum - see the discussion of `max_frequencies` below. 104 | 105 | By default, the name generator looks at separate lists of male and female names. You can specify lists for arbitrary groupings of names. Let's say you have name distribution data for two provinces in Spain. In Spain, two surnames are used: the paternal and maternal, so you have four files total for surnames, as well as general files for male and female first names. 106 | 107 | 108 | ````python 109 | my_files = { 110 | 'given': { 111 | 'male': 'given-male.txt', 112 | 'female': 'given-female.txt' 113 | }, 114 | 'paternal': { 115 | 'sevilla': 'paternal-sevilla.txt', 116 | 'toledo': 'paternal-toledo.txt' 117 | }, 118 | 'maternal': { 119 | 'sevilla': 'maternal-sevilla.txt', 120 | 'toledo': 'maternal-toledo.txt' 121 | } 122 | } 123 | 124 | # Perhaps you want to specify arguments to csv.DictReader, which will be reading the files 125 | my_csv_args = { 126 | # Any arguments that can be passed to DictReader 127 | } 128 | ```` 129 | 130 | The US Census names files don't contain every name, only those that cover about 90% of the population. With that in mind, `random_name` can take a `max_frequencies` argument to give these maximums. We specify these maximum with a dictionary whose keys are the file names. 131 | If you give custom files but no `max_frequencies`, 100 will be used. (The max frequencies are hard coded for the default files.) 132 | 133 | ````python 134 | # These are made-up numbers. Perhaps you prefer percentages: 135 | maximums = { 136 | 'given-male.txt': 89.7, 137 | 'maternal-sevilla.txt': 90.4, 138 | # etc 139 | } 140 | 141 | # Or, you have a file where frequencies go from 0 to 1: 142 | maximums = { 143 | 'given-male.txt': 0.897, 144 | 'maternal-sevilla.txt': 0.904, 145 | # etc 146 | } 147 | ```` 148 | 149 | Also, we want to use a standard conjuction in the name: 150 | 151 | ````python 152 | my_format = '{given} {paternal} y {maternal}' 153 | ```` 154 | 155 | Generating names with these examples: 156 | 157 | ````python 158 | from censusname import Censusname 159 | 160 | espana_nombre = Censusname(nameformat=my_format, namefiles=my_files, max_frequencies=maximums, csv_args=my_csv_args) 161 | 162 | # Generate a name of the format 'Given Paternal y Maternal' 163 | espana_nombre.generate() 164 | 'Luis de Góngora y Argote' 165 | 166 | # Use a different format: 167 | espana_nombre.generate(nameformat='{given} {paternal} de {maternal}') 168 | 'Pedro López de Ayala' 169 | 170 | # Pick a name from the Sevilla files: 171 | espana_nombre.generate(maternal='sevilla', paternal='sevilla') 172 | 173 | # Pick a female name from the Toledo files: 174 | # Note that any of the keys in my_files can be used as keyword arguments. The values should be keys from the respective dictionary. 175 | espana_nombre.generate(given='female', maternal='toledo', paternal='toledo') 176 | 177 | # By default, names are capitalized (title case). 178 | # Generate a name using given capitalization in the files: 179 | espana_nombre.generate(capitalize=False) 180 | 181 | # By default, there's an equal probability of producing a name with a part from the Sevilla or Toledo lists. 182 | # You have to do a little extra to weight that probability. 183 | # Specify an 75% chance of a sevilla name, 25% chance of a toledo name: 184 | province = random.choice(['sevilla'] * 3 + ['toledo']) 185 | espana_nombre.generate(paternal=province, maternal=province) 186 | ```` 187 | 188 | ### Example: Middle Names 189 | 190 | Use the built-in data to fake middle names by randomly picking either a first or last name: 191 | 192 | ````python 193 | import censusname 194 | 195 | namefiles = censusname.NAMEFILES 196 | 197 | # Add a middle name entry to the name files 198 | namefiles['middle'] = { 199 | 'last': censusname.SURNAME2000, 200 | 'female': censusname.FEMALEFIRST1990, 201 | 'male': censusname.MALEFIRST1990 202 | } 203 | 204 | middlenames = censusname.Censusname(namefiles, censusname.MAX_FREQUENCIES, '{given} {middle} {surname}') 205 | 206 | # Generate a name in the format "given, middle, surname" 207 | # However, this might return unlikely names 208 | middlenames.generate() 209 | 'John Mary Smith' 210 | 211 | # Generated name will have a male first name and either a male given name or a surname as a middle name 212 | middlenames.generate(given='male', middle=['male', 'last']) 213 | 'Charles Michael Brescia' 214 | 215 | # Generated name will have a female first name and either a female given name or a surname as a middle name 216 | middlenames.generate(given='female', middle=['female', 'last']) 217 | 'Mildred Hoang Hutton' 218 | ```` 219 | 220 | #### Formatters 221 | 222 | You can specify arbitary reformatting methods that are run on each part of the name before they are returned. By default, the package includes a surname formatter that tries to intelligently format raw names like OHALLORAN (to O'Halloran). 223 | 224 | You can specify formatters with a dict that targets each part of a name. The formatters should be a list of methods. 225 | 226 | ````python 227 | 228 | my_formatters = { 229 | 'given': [lambda x: x[::-1]], # reverse a string 230 | 'surname': [lambda x: "De " + x], 231 | } 232 | 233 | cn = Censusname(formatters=my_formatters) 234 | cn.generate() 235 | 'ekiM De Morgan' 236 | ```` 237 | 238 | Additional formatters can be added to `Censusname.generate`, they will be run in addition to any formatters included in the object. 239 | 240 | ````python 241 | more_formatters = { 242 | 'given': [lambda x: x.replace('a', 'b')] 243 | } 244 | 245 | cn.generate(formatters=more_formatters) 246 | 'nbhtbN De Scardino' 247 | ```` 248 | 249 | Note that passing a formatters argument to `censusname` will exclude the default surname formatter. It's easy enough to keep it, though: 250 | 251 | ````python 252 | import censusname 253 | 254 | my_formatters = { 255 | 'surname': [censusname.formatters.recapitalize_surnames, custom_fuction] 256 | } 257 | ```` -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | -------------------------------------------------------------------------------- /censusname/data/dist.male.first.1990.csv: -------------------------------------------------------------------------------- 1 | name,frequency,cumulative_frequency,rank 2 | JAMES,3.318,3.318,1 3 | JOHN,3.271,6.589,2 4 | ROBERT,3.143,9.732,3 5 | MICHAEL,2.629,12.361,4 6 | WILLIAM,2.451,14.812,5 7 | DAVID,2.363,17.176,6 8 | RICHARD,1.703,18.878,7 9 | CHARLES,1.523,20.401,8 10 | JOSEPH,1.404,21.805,9 11 | THOMAS,1.380,23.185,10 12 | CHRISTOPHER,1.035,24.220,11 13 | DANIEL,0.974,25.194,12 14 | PAUL,0.948,26.142,13 15 | MARK,0.938,27.081,14 16 | DONALD,0.931,28.012,15 17 | GEORGE,0.927,28.939,16 18 | KENNETH,0.826,29.766,17 19 | STEVEN,0.780,30.546,18 20 | EDWARD,0.779,31.325,19 21 | BRIAN,0.736,32.061,20 22 | RONALD,0.725,32.787,21 23 | ANTHONY,0.721,33.508,22 24 | KEVIN,0.671,34.179,23 25 | JASON,0.660,34.839,24 26 | MATTHEW,0.657,35.496,25 27 | GARY,0.650,36.147,26 28 | TIMOTHY,0.640,36.786,27 29 | JOSE,0.613,37.399,28 30 | LARRY,0.598,37.997,29 31 | JEFFREY,0.591,38.588,30 32 | FRANK,0.581,39.169,31 33 | SCOTT,0.546,39.715,32 34 | ERIC,0.544,40.259,33 35 | STEPHEN,0.540,40.799,34 36 | ANDREW,0.537,41.335,35 37 | RAYMOND,0.488,41.824,36 38 | GREGORY,0.441,42.265,37 39 | JOSHUA,0.435,42.700,38 40 | JERRY,0.432,43.132,39 41 | DENNIS,0.415,43.547,40 42 | WALTER,0.399,43.946,41 43 | PATRICK,0.389,44.335,42 44 | PETER,0.381,44.716,43 45 | HAROLD,0.371,45.087,44 46 | DOUGLAS,0.367,45.454,45 47 | HENRY,0.365,45.819,46 48 | CARL,0.346,46.165,47 49 | ARTHUR,0.335,46.500,48 50 | RYAN,0.328,46.828,49 51 | ROGER,0.322,47.150,50 52 | JOE,0.321,47.471,51 53 | JUAN,0.316,47.786,52 54 | JACK,0.315,48.102,53 55 | ALBERT,0.314,48.415,54 56 | JONATHAN,0.313,48.729,55 57 | JUSTIN,0.311,49.040,56 58 | TERRY,0.311,49.351,57 59 | GERALD,0.309,49.660,58 60 | KEITH,0.308,49.968,59 61 | SAMUEL,0.306,50.274,60 62 | WILLIE,0.302,50.576,61 63 | RALPH,0.282,50.859,62 64 | LAWRENCE,0.282,51.141,63 65 | NICHOLAS,0.275,51.415,64 66 | ROY,0.273,51.688,65 67 | BENJAMIN,0.270,51.958,66 68 | BRUCE,0.263,52.221,67 69 | BRANDON,0.260,52.480,68 70 | ADAM,0.259,52.740,69 71 | HARRY,0.251,52.991,70 72 | FRED,0.251,53.241,71 73 | WAYNE,0.249,53.490,72 74 | BILLY,0.248,53.738,73 75 | STEVE,0.246,53.984,74 76 | LOUIS,0.243,54.227,75 77 | JEREMY,0.242,54.469,76 78 | AARON,0.240,54.710,77 79 | RANDY,0.232,54.942,78 80 | HOWARD,0.230,55.172,79 81 | EUGENE,0.230,55.402,80 82 | CARLOS,0.229,55.630,81 83 | RUSSELL,0.224,55.854,82 84 | BOBBY,0.223,56.077,83 85 | VICTOR,0.222,56.299,84 86 | MARTIN,0.216,56.515,85 87 | ERNEST,0.215,56.730,86 88 | PHILLIP,0.213,56.942,87 89 | TODD,0.213,57.155,88 90 | JESSE,0.209,57.364,89 91 | CRAIG,0.206,57.570,90 92 | ALAN,0.204,57.774,91 93 | SHAWN,0.200,57.973,92 94 | CLARENCE,0.197,58.170,93 95 | SEAN,0.197,58.368,94 96 | PHILIP,0.197,58.565,95 97 | CHRIS,0.197,58.761,96 98 | JOHNNY,0.195,58.957,97 99 | EARL,0.193,59.149,98 100 | JIMMY,0.191,59.340,99 101 | ANTONIO,0.190,59.531,100 102 | DANNY,0.190,59.720,101 103 | BRYAN,0.190,59.910,102 104 | TONY,0.190,60.100,103 105 | LUIS,0.189,60.289,104 106 | MIKE,0.189,60.478,105 107 | STANLEY,0.186,60.665,106 108 | LEONARD,0.186,60.850,107 109 | NATHAN,0.185,61.035,108 110 | DALE,0.184,61.219,109 111 | MANUEL,0.181,61.400,110 112 | RODNEY,0.180,61.581,111 113 | CURTIS,0.180,61.761,112 114 | NORMAN,0.177,61.938,113 115 | ALLEN,0.174,62.112,114 116 | MARVIN,0.171,62.283,115 117 | VINCENT,0.168,62.450,116 118 | GLENN,0.167,62.617,117 119 | JEFFERY,0.166,62.783,118 120 | TRAVIS,0.166,62.949,119 121 | JEFF,0.166,63.114,120 122 | CHAD,0.165,63.279,121 123 | JACOB,0.165,63.444,122 124 | LEE,0.162,63.606,123 125 | MELVIN,0.162,63.768,124 126 | ALFRED,0.162,63.930,125 127 | KYLE,0.160,64.090,126 128 | FRANCIS,0.160,64.250,127 129 | BRADLEY,0.159,64.409,128 130 | JESUS,0.155,64.564,129 131 | HERBERT,0.155,64.719,130 132 | FREDERICK,0.154,64.873,131 133 | RAY,0.153,65.026,132 134 | JOEL,0.152,65.177,133 135 | EDWIN,0.148,65.326,134 136 | DON,0.145,65.471,135 137 | EDDIE,0.144,65.615,136 138 | RICKY,0.141,65.756,137 139 | TROY,0.138,65.895,138 140 | RANDALL,0.138,66.032,139 141 | BARRY,0.134,66.167,140 142 | ALEXANDER,0.132,66.299,141 143 | BERNARD,0.127,66.427,142 144 | MARIO,0.125,66.552,143 145 | LEROY,0.125,66.676,144 146 | FRANCISCO,0.124,66.801,145 147 | MARCUS,0.124,66.925,146 148 | MICHEAL,0.123,67.048,147 149 | THEODORE,0.123,67.171,148 150 | CLIFFORD,0.123,67.293,149 151 | MIGUEL,0.122,67.415,150 152 | OSCAR,0.122,67.538,151 153 | JAY,0.118,67.656,152 154 | JIM,0.118,67.773,153 155 | TOM,0.117,67.890,154 156 | CALVIN,0.115,68.006,155 157 | ALEX,0.115,68.120,156 158 | JON,0.115,68.235,157 159 | RONNIE,0.113,68.348,158 160 | BILL,0.112,68.461,159 161 | LLOYD,0.112,68.573,160 162 | TOMMY,0.112,68.685,161 163 | LEON,0.112,68.797,162 164 | DEREK,0.112,68.908,163 165 | WARREN,0.110,69.018,164 166 | DARRELL,0.108,69.126,165 167 | JEROME,0.108,69.234,166 168 | FLOYD,0.107,69.340,167 169 | LEO,0.106,69.446,168 170 | ALVIN,0.105,69.551,169 171 | TIM,0.104,69.656,170 172 | WESLEY,0.104,69.760,171 173 | GORDON,0.104,69.864,172 174 | DEAN,0.104,69.968,173 175 | GREG,0.104,70.071,174 176 | JORGE,0.104,70.175,175 177 | DUSTIN,0.103,70.278,176 178 | PEDRO,0.103,70.381,177 179 | DERRICK,0.103,70.484,178 180 | DAN,0.101,70.585,179 181 | LEWIS,0.099,70.684,180 182 | ZACHARY,0.099,70.782,181 183 | COREY,0.098,70.880,182 184 | HERMAN,0.097,70.977,183 185 | MAURICE,0.097,71.074,184 186 | VERNON,0.097,71.171,185 187 | ROBERTO,0.097,71.268,186 188 | CLYDE,0.095,71.363,187 189 | GLEN,0.094,71.457,188 190 | HECTOR,0.094,71.551,189 191 | SHANE,0.093,71.645,190 192 | RICARDO,0.093,71.738,191 193 | SAM,0.092,71.830,192 194 | RICK,0.091,71.921,193 195 | LESTER,0.091,72.011,194 196 | BRENT,0.090,72.102,195 197 | RAMON,0.090,72.192,196 198 | CHARLIE,0.090,72.281,197 199 | TYLER,0.089,72.371,198 200 | GILBERT,0.089,72.460,199 201 | GENE,0.087,72.547,200 202 | MARC,0.087,72.634,201 203 | REGINALD,0.084,72.717,202 204 | RUBEN,0.082,72.800,203 205 | BRETT,0.082,72.882,204 206 | ANGEL,0.082,72.964,205 207 | NATHANIEL,0.081,73.045,206 208 | RAFAEL,0.081,73.126,207 209 | LESLIE,0.081,73.207,208 210 | EDGAR,0.080,73.287,209 211 | MILTON,0.080,73.367,210 212 | RAUL,0.079,73.446,211 213 | BEN,0.078,73.524,212 214 | CHESTER,0.078,73.602,213 215 | CECIL,0.078,73.680,214 216 | DUANE,0.077,73.757,215 217 | FRANKLIN,0.077,73.834,216 218 | ANDRE,0.076,73.910,217 219 | ELMER,0.074,73.984,218 220 | BRAD,0.073,74.057,219 221 | GABRIEL,0.073,74.130,220 222 | RON,0.072,74.202,221 223 | MITCHELL,0.072,74.274,222 224 | ROLAND,0.072,74.347,223 225 | ARNOLD,0.072,74.419,224 226 | HARVEY,0.072,74.491,225 227 | JARED,0.071,74.562,226 228 | ADRIAN,0.069,74.631,227 229 | KARL,0.069,74.699,228 230 | CORY,0.068,74.767,229 231 | CLAUDE,0.068,74.835,230 232 | ERIK,0.068,74.903,231 233 | DARRYL,0.067,74.970,232 234 | JAMIE,0.066,75.037,233 235 | NEIL,0.066,75.102,234 236 | JESSIE,0.065,75.168,235 237 | CHRISTIAN,0.065,75.233,236 238 | JAVIER,0.065,75.297,237 239 | FERNANDO,0.065,75.362,238 240 | CLINTON,0.065,75.427,239 241 | TED,0.064,75.491,240 242 | MATHEW,0.064,75.555,241 243 | TYRONE,0.064,75.619,242 244 | DARREN,0.064,75.683,243 245 | LONNIE,0.064,75.746,244 246 | LANCE,0.063,75.810,245 247 | CODY,0.063,75.873,246 248 | JULIO,0.063,75.936,247 249 | KELLY,0.063,75.998,248 250 | KURT,0.062,76.061,249 251 | ALLAN,0.061,76.122,250 252 | NELSON,0.061,76.182,251 253 | GUY,0.060,76.243,252 254 | CLAYTON,0.060,76.303,253 255 | HUGH,0.060,76.363,254 256 | MAX,0.059,76.421,255 257 | DWAYNE,0.059,76.480,256 258 | DWIGHT,0.058,76.538,257 259 | ARMANDO,0.058,76.596,258 260 | FELIX,0.058,76.654,259 261 | JIMMIE,0.058,76.711,260 262 | EVERETT,0.057,76.768,261 263 | JORDAN,0.056,76.824,262 264 | IAN,0.056,76.880,263 265 | WALLACE,0.056,76.936,264 266 | KEN,0.055,76.991,265 267 | BOB,0.055,77.047,266 268 | JAIME,0.055,77.102,267 269 | CASEY,0.054,77.156,268 270 | ALFREDO,0.054,77.210,269 271 | ALBERTO,0.053,77.263,270 272 | DAVE,0.053,77.316,271 273 | IVAN,0.053,77.369,272 274 | JOHNNIE,0.052,77.421,273 275 | SIDNEY,0.052,77.474,274 276 | BYRON,0.052,77.526,275 277 | JULIAN,0.052,77.578,276 278 | ISAAC,0.051,77.629,277 279 | MORRIS,0.051,77.680,278 280 | CLIFTON,0.050,77.730,279 281 | WILLARD,0.050,77.780,280 282 | DARYL,0.050,77.831,281 283 | ROSS,0.050,77.880,282 284 | VIRGIL,0.049,77.929,283 285 | ANDY,0.049,77.979,284 286 | MARSHALL,0.049,78.028,285 287 | SALVADOR,0.049,78.077,286 288 | PERRY,0.049,78.126,287 289 | KIRK,0.049,78.175,288 290 | SERGIO,0.049,78.224,289 291 | MARION,0.048,78.272,290 292 | TRACY,0.048,78.320,291 293 | SETH,0.048,78.368,292 294 | KENT,0.048,78.416,293 295 | TERRANCE,0.048,78.464,294 296 | RENE,0.048,78.512,295 297 | EDUARDO,0.047,78.559,296 298 | TERRENCE,0.047,78.606,297 299 | ENRIQUE,0.046,78.652,298 300 | FREDDIE,0.046,78.698,299 301 | WADE,0.045,78.743,300 302 | AUSTIN,0.044,78.786,301 303 | STUART,0.044,78.830,302 304 | FREDRICK,0.043,78.873,303 305 | ARTURO,0.043,78.917,304 306 | ALEJANDRO,0.043,78.960,305 307 | JACKIE,0.043,79.002,306 308 | JOEY,0.043,79.045,307 309 | NICK,0.043,79.088,308 310 | LUTHER,0.043,79.130,309 311 | WENDELL,0.042,79.172,310 312 | JEREMIAH,0.042,79.215,311 313 | EVAN,0.042,79.257,312 314 | JULIUS,0.042,79.298,313 315 | DANA,0.042,79.340,314 316 | DONNIE,0.041,79.381,315 317 | OTIS,0.041,79.422,316 318 | SHANNON,0.040,79.462,317 319 | TREVOR,0.040,79.503,318 320 | OLIVER,0.040,79.543,319 321 | LUKE,0.040,79.583,320 322 | HOMER,0.040,79.623,321 323 | GERARD,0.040,79.663,322 324 | DOUG,0.040,79.703,323 325 | KENNY,0.039,79.742,324 326 | HUBERT,0.039,79.782,325 327 | ANGELO,0.039,79.821,326 328 | SHAUN,0.039,79.859,327 329 | LYLE,0.038,79.898,328 330 | MATT,0.038,79.936,329 331 | LYNN,0.038,79.974,330 332 | ALFONSO,0.038,80.012,331 333 | ORLANDO,0.037,80.049,332 334 | REX,0.037,80.086,333 335 | CARLTON,0.037,80.123,334 336 | ERNESTO,0.037,80.160,335 337 | CAMERON,0.037,80.197,336 338 | NEAL,0.037,80.233,337 339 | PABLO,0.036,80.270,338 340 | LORENZO,0.036,80.306,339 341 | OMAR,0.036,80.342,340 342 | WILBUR,0.036,80.378,341 343 | BLAKE,0.036,80.414,342 344 | GRANT,0.036,80.450,343 345 | HORACE,0.036,80.486,344 346 | RODERICK,0.036,80.521,345 347 | KERRY,0.036,80.557,346 348 | ABRAHAM,0.035,80.592,347 349 | WILLIS,0.035,80.627,348 350 | RICKEY,0.035,80.662,349 351 | JEAN,0.035,80.696,350 352 | IRA,0.035,80.731,351 353 | ANDRES,0.034,80.766,352 354 | CESAR,0.034,80.800,353 355 | JOHNATHAN,0.034,80.834,354 356 | MALCOLM,0.034,80.868,355 357 | RUDOLPH,0.034,80.902,356 358 | DAMON,0.034,80.936,357 359 | KELVIN,0.034,80.970,358 360 | RUDY,0.034,81.004,359 361 | PRESTON,0.034,81.037,360 362 | ALTON,0.033,81.071,361 363 | ARCHIE,0.033,81.104,362 364 | MARCO,0.033,81.137,363 365 | WM,0.033,81.170,364 366 | PETE,0.032,81.202,365 367 | RANDOLPH,0.032,81.234,366 368 | GARRY,0.032,81.267,367 369 | GEOFFREY,0.032,81.299,368 370 | JONATHON,0.032,81.331,369 371 | FELIPE,0.032,81.363,370 372 | BENNIE,0.032,81.395,371 373 | GERARDO,0.032,81.427,372 374 | ED,0.032,81.458,373 375 | DOMINIC,0.032,81.490,374 376 | ROBIN,0.032,81.522,375 377 | LOREN,0.032,81.553,376 378 | DELBERT,0.031,81.585,377 379 | COLIN,0.031,81.616,378 380 | GUILLERMO,0.031,81.647,379 381 | EARNEST,0.031,81.678,380 382 | LUCAS,0.031,81.709,381 383 | BENNY,0.030,81.739,382 384 | NOEL,0.030,81.769,383 385 | SPENCER,0.030,81.799,384 386 | RODOLFO,0.030,81.828,385 387 | MYRON,0.030,81.858,386 388 | EDMUND,0.030,81.887,387 389 | GARRETT,0.029,81.917,388 390 | SALVATORE,0.029,81.946,389 391 | CEDRIC,0.029,81.975,390 392 | LOWELL,0.029,82.004,391 393 | GREGG,0.029,82.032,392 394 | SHERMAN,0.028,82.061,393 395 | WILSON,0.028,82.089,394 396 | DEVIN,0.028,82.117,395 397 | SYLVESTER,0.028,82.145,396 398 | KIM,0.028,82.173,397 399 | ROOSEVELT,0.028,82.201,398 400 | ISRAEL,0.028,82.229,399 401 | JERMAINE,0.028,82.257,400 402 | FORREST,0.027,82.284,401 403 | WILBERT,0.027,82.310,402 404 | LELAND,0.027,82.337,403 405 | SIMON,0.026,82.363,404 406 | GUADALUPE,0.026,82.390,405 407 | CLARK,0.026,82.416,406 408 | IRVING,0.026,82.442,407 409 | CARROLL,0.026,82.468,408 410 | BRYANT,0.026,82.494,409 411 | OWEN,0.026,82.519,410 412 | RUFUS,0.025,82.545,411 413 | WOODROW,0.025,82.570,412 414 | SAMMY,0.025,82.595,413 415 | KRISTOPHER,0.025,82.620,414 416 | MACK,0.025,82.645,415 417 | LEVI,0.025,82.670,416 418 | MARCOS,0.025,82.695,417 419 | GUSTAVO,0.025,82.720,418 420 | JAKE,0.025,82.744,419 421 | LIONEL,0.024,82.769,420 422 | MARTY,0.024,82.793,421 423 | TAYLOR,0.024,82.817,422 424 | ELLIS,0.024,82.842,423 425 | DALLAS,0.024,82.866,424 426 | GILBERTO,0.024,82.890,425 427 | CLINT,0.024,82.914,426 428 | NICOLAS,0.024,82.938,427 429 | LAURENCE,0.024,82.962,428 430 | ISMAEL,0.024,82.985,429 431 | ORVILLE,0.024,83.009,430 432 | DREW,0.024,83.033,431 433 | JODY,0.024,83.056,432 434 | ERVIN,0.023,83.080,433 435 | DEWEY,0.023,83.103,434 436 | AL,0.023,83.126,435 437 | WILFRED,0.023,83.150,436 438 | JOSH,0.023,83.173,437 439 | HUGO,0.023,83.196,438 440 | IGNACIO,0.023,83.219,439 441 | CALEB,0.023,83.241,440 442 | TOMAS,0.023,83.264,441 443 | SHELDON,0.023,83.287,442 444 | ERICK,0.023,83.310,443 445 | FRANKIE,0.023,83.332,444 446 | STEWART,0.022,83.354,445 447 | DOYLE,0.022,83.377,446 448 | DARREL,0.022,83.399,447 449 | ROGELIO,0.022,83.421,448 450 | TERENCE,0.022,83.443,449 451 | SANTIAGO,0.022,83.465,450 452 | ALONZO,0.022,83.487,451 453 | ELIAS,0.022,83.508,452 454 | BERT,0.022,83.530,453 455 | ELBERT,0.022,83.552,454 456 | RAMIRO,0.022,83.573,455 457 | CONRAD,0.022,83.595,456 458 | PAT,0.022,83.616,457 459 | NOAH,0.022,83.638,458 460 | GRADY,0.021,83.659,459 461 | PHIL,0.021,83.681,460 462 | CORNELIUS,0.021,83.702,461 463 | LAMAR,0.021,83.723,462 464 | ROLANDO,0.021,83.744,463 465 | CLAY,0.021,83.765,464 466 | PERCY,0.021,83.786,465 467 | DEXTER,0.021,83.806,466 468 | BRADFORD,0.021,83.827,467 469 | MERLE,0.021,83.848,468 470 | DARIN,0.020,83.868,469 471 | AMOS,0.020,83.888,470 472 | TERRELL,0.020,83.909,471 473 | MOSES,0.020,83.929,472 474 | IRVIN,0.020,83.949,473 475 | SAUL,0.020,83.968,474 476 | ROMAN,0.020,83.988,475 477 | DARNELL,0.020,84.008,476 478 | RANDAL,0.020,84.027,477 479 | TOMMIE,0.020,84.047,478 480 | TIMMY,0.019,84.066,479 481 | DARRIN,0.019,84.086,480 482 | WINSTON,0.019,84.105,481 483 | BRENDAN,0.019,84.124,482 484 | TOBY,0.019,84.144,483 485 | VAN,0.019,84.163,484 486 | ABEL,0.019,84.182,485 487 | DOMINICK,0.019,84.201,486 488 | BOYD,0.019,84.220,487 489 | COURTNEY,0.019,84.240,488 490 | JAN,0.019,84.259,489 491 | EMILIO,0.019,84.277,490 492 | ELIJAH,0.019,84.296,491 493 | CARY,0.019,84.315,492 494 | DOMINGO,0.019,84.334,493 495 | SANTOS,0.019,84.353,494 496 | AUBREY,0.019,84.372,495 497 | EMMETT,0.019,84.390,496 498 | MARLON,0.019,84.409,497 499 | EMANUEL,0.019,84.428,498 500 | JERALD,0.019,84.446,499 501 | EDMOND,0.019,84.465,500 502 | EMIL,0.019,84.483,501 503 | DEWAYNE,0.018,84.502,502 504 | WILL,0.018,84.520,503 505 | OTTO,0.018,84.538,504 506 | TEDDY,0.018,84.556,505 507 | REYNALDO,0.018,84.574,506 508 | BRET,0.018,84.592,507 509 | MORGAN,0.018,84.610,508 510 | JESS,0.018,84.628,509 511 | TRENT,0.018,84.646,510 512 | HUMBERTO,0.018,84.664,511 513 | EMMANUEL,0.018,84.681,512 514 | STEPHAN,0.018,84.699,513 515 | LOUIE,0.018,84.717,514 516 | VICENTE,0.017,84.734,515 517 | LAMONT,0.017,84.751,516 518 | STACY,0.017,84.769,517 519 | GARLAND,0.017,84.786,518 520 | MILES,0.017,84.803,519 521 | MICAH,0.017,84.820,520 522 | EFRAIN,0.017,84.837,521 523 | BILLIE,0.017,84.854,522 524 | LOGAN,0.017,84.871,523 525 | HEATH,0.017,84.887,524 526 | RODGER,0.017,84.904,525 527 | HARLEY,0.017,84.921,526 528 | DEMETRIUS,0.017,84.937,527 529 | ETHAN,0.017,84.954,528 530 | ELDON,0.017,84.970,529 531 | ROCKY,0.016,84.987,530 532 | PIERRE,0.016,85.003,531 533 | JUNIOR,0.016,85.020,532 534 | FREDDY,0.016,85.036,533 535 | ELI,0.016,85.052,534 536 | BRYCE,0.016,85.068,535 537 | ANTOINE,0.016,85.084,536 538 | ROBBIE,0.016,85.100,537 539 | KENDALL,0.016,85.116,538 540 | ROYCE,0.016,85.132,539 541 | STERLING,0.016,85.148,540 542 | MICKEY,0.016,85.164,541 543 | CHASE,0.016,85.180,542 544 | GROVER,0.016,85.196,543 545 | ELTON,0.016,85.212,544 546 | CLEVELAND,0.016,85.228,545 547 | DYLAN,0.016,85.243,546 548 | CHUCK,0.016,85.259,547 549 | DAMIAN,0.016,85.274,548 550 | REUBEN,0.015,85.290,549 551 | STAN,0.015,85.305,550 552 | AUGUST,0.015,85.321,551 553 | LEONARDO,0.015,85.336,552 554 | JASPER,0.015,85.351,553 555 | RUSSEL,0.015,85.367,554 556 | ERWIN,0.015,85.382,555 557 | BENITO,0.015,85.397,556 558 | HANS,0.015,85.412,557 559 | MONTE,0.015,85.427,558 560 | BLAINE,0.015,85.442,559 561 | ERNIE,0.015,85.456,560 562 | CURT,0.015,85.471,561 563 | QUENTIN,0.015,85.486,562 564 | AGUSTIN,0.015,85.500,563 565 | MURRAY,0.015,85.515,564 566 | JAMAL,0.014,85.529,565 567 | DEVON,0.014,85.544,566 568 | ADOLFO,0.014,85.558,567 569 | HARRISON,0.014,85.573,568 570 | TYSON,0.014,85.587,569 571 | BURTON,0.014,85.601,570 572 | BRADY,0.014,85.616,571 573 | ELLIOTT,0.014,85.630,572 574 | WILFREDO,0.014,85.644,573 575 | BART,0.014,85.658,574 576 | JARROD,0.014,85.672,575 577 | VANCE,0.014,85.686,576 578 | DENIS,0.014,85.700,577 579 | DAMIEN,0.014,85.714,578 580 | JOAQUIN,0.014,85.728,579 581 | HARLAN,0.014,85.742,580 582 | DESMOND,0.014,85.756,581 583 | ELLIOT,0.014,85.770,582 584 | DARWIN,0.014,85.783,583 585 | ASHLEY,0.014,85.797,584 586 | GREGORIO,0.014,85.811,585 587 | BUDDY,0.014,85.824,586 588 | XAVIER,0.013,85.838,587 589 | KERMIT,0.013,85.851,588 590 | ROSCOE,0.013,85.865,589 591 | ESTEBAN,0.013,85.878,590 592 | ANTON,0.013,85.891,591 593 | SOLOMON,0.013,85.904,592 594 | SCOTTY,0.013,85.917,593 595 | NORBERT,0.013,85.930,594 596 | ELVIN,0.013,85.943,595 597 | WILLIAMS,0.013,85.956,596 598 | NOLAN,0.013,85.969,597 599 | CAREY,0.013,85.982,598 600 | ROD,0.013,85.994,599 601 | QUINTON,0.013,86.007,600 602 | HAL,0.013,86.020,601 603 | BRAIN,0.013,86.033,602 604 | ROB,0.013,86.045,603 605 | ELWOOD,0.013,86.058,604 606 | KENDRICK,0.013,86.070,605 607 | DARIUS,0.013,86.083,606 608 | MOISES,0.013,86.096,607 609 | SON,0.012,86.108,608 610 | MARLIN,0.012,86.120,609 611 | FIDEL,0.012,86.133,610 612 | THADDEUS,0.012,86.145,611 613 | CLIFF,0.012,86.158,612 614 | MARCEL,0.012,86.170,613 615 | ALI,0.012,86.182,614 616 | JACKSON,0.012,86.195,615 617 | RAPHAEL,0.012,86.207,616 618 | BRYON,0.012,86.219,617 619 | ARMAND,0.012,86.231,618 620 | ALVARO,0.012,86.244,619 621 | JEFFRY,0.012,86.256,620 622 | DANE,0.012,86.268,621 623 | JOESPH,0.012,86.280,622 624 | THURMAN,0.012,86.292,623 625 | NED,0.012,86.304,624 626 | SAMMIE,0.012,86.316,625 627 | RUSTY,0.012,86.328,626 628 | MICHEL,0.012,86.339,627 629 | MONTY,0.012,86.351,628 630 | RORY,0.012,86.363,629 631 | FABIAN,0.012,86.374,630 632 | REGGIE,0.012,86.386,631 633 | MASON,0.012,86.397,632 634 | GRAHAM,0.012,86.409,633 635 | KRIS,0.011,86.420,634 636 | ISAIAH,0.011,86.432,635 637 | VAUGHN,0.011,86.443,636 638 | GUS,0.011,86.454,637 639 | AVERY,0.011,86.466,638 640 | LOYD,0.011,86.477,639 641 | DIEGO,0.011,86.488,640 642 | ALEXIS,0.011,86.499,641 643 | ADOLPH,0.011,86.511,642 644 | NORRIS,0.011,86.522,643 645 | MILLARD,0.011,86.533,644 646 | ROCCO,0.011,86.544,645 647 | GONZALO,0.011,86.555,646 648 | DERICK,0.011,86.566,647 649 | RODRIGO,0.011,86.577,648 650 | GERRY,0.011,86.588,649 651 | STACEY,0.011,86.599,650 652 | CARMEN,0.011,86.610,651 653 | WILEY,0.011,86.621,652 654 | RIGOBERTO,0.011,86.632,653 655 | ALPHONSO,0.011,86.643,654 656 | TY,0.011,86.654,655 657 | SHELBY,0.011,86.664,656 658 | RICKIE,0.011,86.675,657 659 | NOE,0.011,86.686,658 660 | VERN,0.010,86.696,659 661 | BOBBIE,0.010,86.707,660 662 | REED,0.010,86.717,661 663 | JEFFERSON,0.010,86.727,662 664 | ELVIS,0.010,86.738,663 665 | BERNARDO,0.010,86.748,664 666 | MAURICIO,0.010,86.758,665 667 | HIRAM,0.010,86.768,666 668 | DONOVAN,0.010,86.778,667 669 | BASIL,0.010,86.789,668 670 | RILEY,0.010,86.799,669 671 | OLLIE,0.010,86.809,670 672 | NICKOLAS,0.010,86.819,671 673 | MAYNARD,0.010,86.829,672 674 | SCOT,0.010,86.840,673 675 | VINCE,0.010,86.850,674 676 | QUINCY,0.010,86.860,675 677 | EDDY,0.010,86.870,676 678 | SEBASTIAN,0.010,86.880,677 679 | FEDERICO,0.010,86.890,678 680 | ULYSSES,0.010,86.900,679 681 | HERIBERTO,0.010,86.910,680 682 | DONNELL,0.010,86.920,681 683 | COLE,0.010,86.929,682 684 | DENNY,0.010,86.939,683 685 | DAVIS,0.010,86.949,684 686 | GAVIN,0.010,86.959,685 687 | EMERY,0.010,86.969,686 688 | WARD,0.010,86.979,687 689 | ROMEO,0.010,86.989,688 690 | JAYSON,0.010,86.998,689 691 | DION,0.010,87.008,690 692 | DANTE,0.010,87.018,691 693 | CLEMENT,0.010,87.028,692 694 | COY,0.010,87.037,693 695 | ODELL,0.010,87.047,694 696 | MAXWELL,0.010,87.057,695 697 | JARVIS,0.010,87.066,696 698 | BRUNO,0.010,87.076,697 699 | ISSAC,0.010,87.086,698 700 | MARY,0.009,87.095,699 701 | DUDLEY,0.009,87.104,700 702 | BROCK,0.009,87.114,701 703 | SANFORD,0.009,87.123,702 704 | COLBY,0.009,87.133,703 705 | CARMELO,0.009,87.142,704 706 | BARNEY,0.009,87.152,705 707 | NESTOR,0.009,87.161,706 708 | HOLLIS,0.009,87.170,707 709 | STEFAN,0.009,87.180,708 710 | DONNY,0.009,87.189,709 711 | ART,0.009,87.198,710 712 | LINWOOD,0.009,87.208,711 713 | BEAU,0.009,87.217,712 714 | WELDON,0.009,87.226,713 715 | GALEN,0.009,87.235,714 716 | ISIDRO,0.009,87.244,715 717 | TRUMAN,0.009,87.253,716 718 | DELMAR,0.009,87.262,717 719 | JOHNATHON,0.009,87.271,718 720 | SILAS,0.009,87.280,719 721 | FREDERIC,0.009,87.289,720 722 | DICK,0.009,87.298,721 723 | KIRBY,0.009,87.307,722 724 | IRWIN,0.009,87.316,723 725 | CRUZ,0.009,87.325,724 726 | MERLIN,0.009,87.334,725 727 | MERRILL,0.009,87.343,726 728 | CHARLEY,0.009,87.351,727 729 | MARCELINO,0.009,87.360,728 730 | LANE,0.009,87.369,729 731 | HARRIS,0.009,87.378,730 732 | CLEO,0.009,87.386,731 733 | CARLO,0.009,87.395,732 734 | TRENTON,0.009,87.404,733 735 | KURTIS,0.009,87.413,734 736 | HUNTER,0.009,87.421,735 737 | AURELIO,0.009,87.430,736 738 | WINFRED,0.009,87.438,737 739 | VITO,0.009,87.447,738 740 | COLLIN,0.009,87.456,739 741 | DENVER,0.009,87.464,740 742 | CARTER,0.009,87.473,741 743 | LEONEL,0.008,87.481,742 744 | EMORY,0.008,87.490,743 745 | PASQUALE,0.008,87.498,744 746 | MOHAMMAD,0.008,87.506,745 747 | MARIANO,0.008,87.514,746 748 | DANIAL,0.008,87.523,747 749 | BLAIR,0.008,87.531,748 750 | LANDON,0.008,87.539,749 751 | DIRK,0.008,87.548,750 752 | BRANDEN,0.008,87.556,751 753 | ADAN,0.008,87.564,752 754 | NUMBERS,0.008,87.572,753 755 | CLAIR,0.008,87.581,754 756 | BUFORD,0.008,87.589,755 757 | GERMAN,0.008,87.597,756 758 | BERNIE,0.008,87.605,757 759 | WILMER,0.008,87.613,758 760 | JOAN,0.008,87.621,759 761 | EMERSON,0.008,87.629,760 762 | ZACHERY,0.008,87.637,761 763 | FLETCHER,0.008,87.645,762 764 | JACQUES,0.008,87.653,763 765 | ERROL,0.008,87.661,764 766 | DALTON,0.008,87.669,765 767 | MONROE,0.008,87.676,766 768 | JOSUE,0.008,87.684,767 769 | DOMINIQUE,0.008,87.692,768 770 | EDWARDO,0.008,87.700,769 771 | BOOKER,0.008,87.708,770 772 | WILFORD,0.008,87.715,771 773 | SONNY,0.008,87.723,772 774 | SHELTON,0.008,87.731,773 775 | CARSON,0.008,87.739,774 776 | THERON,0.008,87.746,775 777 | RAYMUNDO,0.008,87.754,776 778 | DAREN,0.008,87.762,777 779 | TRISTAN,0.008,87.769,778 780 | HOUSTON,0.008,87.777,779 781 | ROBBY,0.008,87.785,780 782 | LINCOLN,0.008,87.792,781 783 | JAME,0.008,87.800,782 784 | GENARO,0.008,87.807,783 785 | GALE,0.008,87.815,784 786 | BENNETT,0.008,87.822,785 787 | OCTAVIO,0.008,87.830,786 788 | CORNELL,0.008,87.838,787 789 | LAVERNE,0.008,87.845,788 790 | HUNG,0.008,87.853,789 791 | ARRON,0.008,87.860,790 792 | ANTONY,0.008,87.868,791 793 | HERSCHEL,0.007,87.875,792 794 | ALVA,0.007,87.883,793 795 | GIOVANNI,0.007,87.890,794 796 | GARTH,0.007,87.897,795 797 | CYRUS,0.007,87.905,796 798 | CYRIL,0.007,87.912,797 799 | RONNY,0.007,87.920,798 800 | STEVIE,0.007,87.927,799 801 | LON,0.007,87.934,800 802 | FREEMAN,0.007,87.941,801 803 | ERIN,0.007,87.949,802 804 | DUNCAN,0.007,87.956,803 805 | KENNITH,0.007,87.963,804 806 | CARMINE,0.007,87.970,805 807 | AUGUSTINE,0.007,87.978,806 808 | YOUNG,0.007,87.985,807 809 | ERICH,0.007,87.992,808 810 | CHADWICK,0.007,87.999,809 811 | WILBURN,0.007,88.006,810 812 | RUSS,0.007,88.013,811 813 | REID,0.007,88.021,812 814 | MYLES,0.007,88.028,813 815 | ANDERSON,0.007,88.035,814 816 | MORTON,0.007,88.042,815 817 | JONAS,0.007,88.049,816 818 | FOREST,0.007,88.056,817 819 | MITCHEL,0.007,88.063,818 820 | MERVIN,0.007,88.070,819 821 | ZANE,0.007,88.077,820 822 | RICH,0.007,88.084,821 823 | JAMEL,0.007,88.091,822 824 | LAZARO,0.007,88.098,823 825 | ALPHONSE,0.007,88.105,824 826 | RANDELL,0.007,88.112,825 827 | MAJOR,0.007,88.119,826 828 | JOHNIE,0.007,88.126,827 829 | JARRETT,0.007,88.133,828 830 | BROOKS,0.007,88.140,829 831 | ARIEL,0.007,88.147,830 832 | ABDUL,0.007,88.154,831 833 | DUSTY,0.007,88.161,832 834 | LUCIANO,0.007,88.168,833 835 | LINDSEY,0.007,88.174,834 836 | TRACEY,0.007,88.181,835 837 | SEYMOUR,0.007,88.188,836 838 | SCOTTIE,0.007,88.195,837 839 | EUGENIO,0.007,88.202,838 840 | MOHAMMED,0.007,88.208,839 841 | SANDY,0.007,88.215,840 842 | VALENTIN,0.007,88.222,841 843 | CHANCE,0.007,88.228,842 844 | ARNULFO,0.007,88.235,843 845 | LUCIEN,0.007,88.242,844 846 | FERDINAND,0.007,88.248,845 847 | THAD,0.007,88.255,846 848 | EZRA,0.007,88.262,847 849 | SYDNEY,0.007,88.268,848 850 | ALDO,0.007,88.275,849 851 | RUBIN,0.006,88.281,850 852 | ROYAL,0.006,88.288,851 853 | MITCH,0.006,88.294,852 854 | EARLE,0.006,88.301,853 855 | ABE,0.006,88.307,854 856 | WYATT,0.006,88.314,855 857 | MARQUIS,0.006,88.320,856 858 | LANNY,0.006,88.326,857 859 | KAREEM,0.006,88.333,858 860 | JAMAR,0.006,88.339,859 861 | BORIS,0.006,88.346,860 862 | ISIAH,0.006,88.352,861 863 | EMILE,0.006,88.358,862 864 | ELMO,0.006,88.365,863 865 | ARON,0.006,88.371,864 866 | LEOPOLDO,0.006,88.377,865 867 | EVERETTE,0.006,88.384,866 868 | JOSEF,0.006,88.390,867 869 | GAIL,0.006,88.396,868 870 | ELOY,0.006,88.403,869 871 | DORIAN,0.006,88.409,870 872 | RODRICK,0.006,88.415,871 873 | REINALDO,0.006,88.421,872 874 | LUCIO,0.006,88.427,873 875 | JERROD,0.006,88.434,874 876 | WESTON,0.006,88.440,875 877 | HERSHEL,0.006,88.446,876 878 | BARTON,0.006,88.452,877 879 | PARKER,0.006,88.458,878 880 | LEMUEL,0.006,88.464,879 881 | LAVERN,0.006,88.470,880 882 | BURT,0.006,88.477,881 883 | JULES,0.006,88.483,882 884 | GIL,0.006,88.489,883 885 | ELISEO,0.006,88.495,884 886 | AHMAD,0.006,88.501,885 887 | NIGEL,0.006,88.507,886 888 | EFREN,0.006,88.513,887 889 | ANTWAN,0.006,88.519,888 890 | ALDEN,0.006,88.525,889 891 | MARGARITO,0.006,88.531,890 892 | COLEMAN,0.006,88.537,891 893 | REFUGIO,0.006,88.543,892 894 | DINO,0.006,88.549,893 895 | OSVALDO,0.006,88.555,894 896 | LES,0.006,88.560,895 897 | DEANDRE,0.006,88.566,896 898 | NORMAND,0.006,88.572,897 899 | KIETH,0.006,88.578,898 900 | IVORY,0.006,88.584,899 901 | ANDREA,0.006,88.590,900 902 | TREY,0.006,88.595,901 903 | NORBERTO,0.006,88.601,902 904 | NAPOLEON,0.006,88.607,903 905 | JEROLD,0.006,88.613,904 906 | FRITZ,0.006,88.619,905 907 | ROSENDO,0.006,88.624,906 908 | MILFORD,0.006,88.630,907 909 | SANG,0.006,88.636,908 910 | DEON,0.006,88.641,909 911 | CHRISTOPER,0.006,88.647,910 912 | ALFONZO,0.006,88.653,911 913 | LYMAN,0.006,88.658,912 914 | JOSIAH,0.006,88.664,913 915 | BRANT,0.006,88.670,914 916 | WILTON,0.006,88.675,915 917 | RICO,0.006,88.681,916 918 | JAMAAL,0.006,88.687,917 919 | DEWITT,0.006,88.692,918 920 | CAROL,0.006,88.698,919 921 | BRENTON,0.006,88.704,920 922 | YONG,0.006,88.709,921 923 | OLIN,0.006,88.715,922 924 | FOSTER,0.006,88.720,923 925 | FAUSTINO,0.006,88.726,924 926 | CLAUDIO,0.006,88.731,925 927 | JUDSON,0.006,88.737,926 928 | GINO,0.006,88.743,927 929 | EDGARDO,0.006,88.748,928 930 | BERRY,0.006,88.754,929 931 | ALEC,0.006,88.759,930 932 | TANNER,0.006,88.765,931 933 | JARRED,0.006,88.770,932 934 | DONN,0.006,88.776,933 935 | TRINIDAD,0.005,88.781,934 936 | TAD,0.005,88.787,935 937 | SHIRLEY,0.005,88.792,936 938 | PRINCE,0.005,88.798,937 939 | PORFIRIO,0.005,88.803,938 940 | ODIS,0.005,88.809,939 941 | MARIA,0.005,88.814,940 942 | LENARD,0.005,88.820,941 943 | CHAUNCEY,0.005,88.825,942 944 | CHANG,0.005,88.831,943 945 | TOD,0.005,88.836,944 946 | MEL,0.005,88.842,945 947 | MARCELO,0.005,88.847,946 948 | KORY,0.005,88.853,947 949 | AUGUSTUS,0.005,88.858,948 950 | KEVEN,0.005,88.864,949 951 | HILARIO,0.005,88.869,950 952 | BUD,0.005,88.874,951 953 | SAL,0.005,88.880,952 954 | ROSARIO,0.005,88.885,953 955 | ORVAL,0.005,88.891,954 956 | MAURO,0.005,88.896,955 957 | DANNIE,0.005,88.901,956 958 | ZACHARIAH,0.005,88.907,957 959 | OLEN,0.005,88.912,958 960 | ANIBAL,0.005,88.917,959 961 | MILO,0.005,88.923,960 962 | JED,0.005,88.928,961 963 | FRANCES,0.005,88.933,962 964 | THANH,0.005,88.939,963 965 | DILLON,0.005,88.944,964 966 | AMADO,0.005,88.949,965 967 | NEWTON,0.005,88.955,966 968 | CONNIE,0.005,88.960,967 969 | LENNY,0.005,88.965,968 970 | TORY,0.005,88.970,969 971 | RICHIE,0.005,88.975,970 972 | LUPE,0.005,88.981,971 973 | HORACIO,0.005,88.986,972 974 | BRICE,0.005,88.991,973 975 | MOHAMED,0.005,88.996,974 976 | DELMER,0.005,89.001,975 977 | DARIO,0.005,89.006,976 978 | REYES,0.005,89.012,977 979 | DEE,0.005,89.017,978 980 | MAC,0.005,89.022,979 981 | JONAH,0.005,89.027,980 982 | JERROLD,0.005,89.032,981 983 | ROBT,0.005,89.037,982 984 | HANK,0.005,89.042,983 985 | SUNG,0.005,89.047,984 986 | RUPERT,0.005,89.052,985 987 | ROLLAND,0.005,89.057,986 988 | KENTON,0.005,89.062,987 989 | DAMION,0.005,89.067,988 990 | CHI,0.005,89.072,989 991 | ANTONE,0.005,89.077,990 992 | WALDO,0.005,89.082,991 993 | FREDRIC,0.005,89.087,992 994 | BRADLY,0.005,89.092,993 995 | QUINN,0.005,89.097,994 996 | KIP,0.005,89.102,995 997 | BURL,0.005,89.107,996 998 | WALKER,0.005,89.112,997 999 | TYREE,0.005,89.117,998 1000 | JEFFEREY,0.005,89.122,999 1001 | AHMED,0.005,89.127,1000 1002 | WILLY,0.005,89.132,1001 1003 | STANFORD,0.005,89.137,1002 1004 | OREN,0.005,89.142,1003 1005 | NOBLE,0.005,89.146,1004 1006 | MOSHE,0.005,89.151,1005 1007 | MIKEL,0.005,89.156,1006 1008 | ENOCH,0.005,89.161,1007 1009 | BRENDON,0.005,89.166,1008 1010 | QUINTIN,0.005,89.171,1009 1011 | JAMISON,0.005,89.176,1010 1012 | FLORENCIO,0.005,89.181,1011 1013 | DARRICK,0.005,89.185,1012 1014 | TOBIAS,0.005,89.190,1013 1015 | MINH,0.005,89.195,1014 1016 | HASSAN,0.005,89.200,1015 1017 | GIUSEPPE,0.005,89.205,1016 1018 | DEMARCUS,0.005,89.210,1017 1019 | CLETUS,0.005,89.214,1018 1020 | TYRELL,0.005,89.219,1019 1021 | LYNDON,0.005,89.224,1020 1022 | KEENAN,0.005,89.229,1021 1023 | WERNER,0.005,89.234,1022 1024 | THEO,0.005,89.238,1023 1025 | GERALDO,0.005,89.243,1024 1026 | LOU,0.005,89.248,1025 1027 | COLUMBUS,0.005,89.253,1026 1028 | CHET,0.005,89.257,1027 1029 | BERTRAM,0.005,89.262,1028 1030 | MARKUS,0.005,89.267,1029 1031 | HUEY,0.005,89.271,1030 1032 | HILTON,0.005,89.276,1031 1033 | DWAIN,0.005,89.281,1032 1034 | DONTE,0.005,89.285,1033 1035 | TYRON,0.005,89.290,1034 1036 | OMER,0.005,89.295,1035 1037 | ISAIAS,0.005,89.299,1036 1038 | HIPOLITO,0.005,89.304,1037 1039 | FERMIN,0.005,89.309,1038 1040 | CHUNG,0.005,89.313,1039 1041 | ADALBERTO,0.005,89.318,1040 1042 | VALENTINE,0.005,89.323,1041 1043 | JAMEY,0.005,89.327,1042 1044 | BO,0.005,89.332,1043 1045 | BARRETT,0.005,89.336,1044 1046 | WHITNEY,0.005,89.341,1045 1047 | TEODORO,0.005,89.345,1046 1048 | MCKINLEY,0.005,89.350,1047 1049 | MAXIMO,0.005,89.355,1048 1050 | GARFIELD,0.005,89.359,1049 1051 | SOL,0.005,89.364,1050 1052 | RALEIGH,0.005,89.368,1051 1053 | LAWERENCE,0.005,89.373,1052 1054 | ABRAM,0.005,89.377,1053 1055 | RASHAD,0.004,89.382,1054 1056 | KING,0.004,89.386,1055 1057 | EMMITT,0.004,89.391,1056 1058 | DARON,0.004,89.395,1057 1059 | CHONG,0.004,89.400,1058 1060 | SAMUAL,0.004,89.404,1059 1061 | PARIS,0.004,89.409,1060 1062 | OTHA,0.004,89.413,1061 1063 | MIQUEL,0.004,89.418,1062 1064 | LACY,0.004,89.422,1063 1065 | EUSEBIO,0.004,89.426,1064 1066 | DONG,0.004,89.431,1065 1067 | DOMENIC,0.004,89.435,1066 1068 | DARRON,0.004,89.440,1067 1069 | BUSTER,0.004,89.444,1068 1070 | ANTONIA,0.004,89.449,1069 1071 | WILBER,0.004,89.453,1070 1072 | RENATO,0.004,89.458,1071 1073 | JC,0.004,89.462,1072 1074 | HOYT,0.004,89.466,1073 1075 | HAYWOOD,0.004,89.471,1074 1076 | EZEKIEL,0.004,89.475,1075 1077 | CHAS,0.004,89.480,1076 1078 | FLORENTINO,0.004,89.484,1077 1079 | ELROY,0.004,89.489,1078 1080 | CLEMENTE,0.004,89.493,1079 1081 | ARDEN,0.004,89.497,1080 1082 | NEVILLE,0.004,89.502,1081 1083 | KELLEY,0.004,89.506,1082 1084 | EDISON,0.004,89.510,1083 1085 | DESHAWN,0.004,89.515,1084 1086 | CARROL,0.004,89.519,1085 1087 | SHAYNE,0.004,89.523,1086 1088 | NATHANIAL,0.004,89.528,1087 1089 | JORDON,0.004,89.532,1088 1090 | DANILO,0.004,89.536,1089 1091 | CLAUD,0.004,89.541,1090 1092 | VAL,0.004,89.545,1091 1093 | SHERWOOD,0.004,89.549,1092 1094 | RAYMON,0.004,89.554,1093 1095 | RAYFORD,0.004,89.558,1094 1096 | CRISTOBAL,0.004,89.562,1095 1097 | AMBROSE,0.004,89.567,1096 1098 | TITUS,0.004,89.571,1097 1099 | HYMAN,0.004,89.575,1098 1100 | FELTON,0.004,89.579,1099 1101 | EZEQUIEL,0.004,89.584,1100 1102 | ERASMO,0.004,89.588,1101 1103 | STANTON,0.004,89.592,1102 1104 | LONNY,0.004,89.596,1103 1105 | LEN,0.004,89.601,1104 1106 | IKE,0.004,89.605,1105 1107 | MILAN,0.004,89.609,1106 1108 | LINO,0.004,89.613,1107 1109 | JAROD,0.004,89.617,1108 1110 | HERB,0.004,89.622,1109 1111 | ANDREAS,0.004,89.626,1110 1112 | WALTON,0.004,89.630,1111 1113 | RHETT,0.004,89.634,1112 1114 | PALMER,0.004,89.638,1113 1115 | JUDE,0.004,89.642,1114 1116 | DOUGLASS,0.004,89.647,1115 1117 | CORDELL,0.004,89.651,1116 1118 | OSWALDO,0.004,89.655,1117 1119 | ELLSWORTH,0.004,89.659,1118 1120 | VIRGILIO,0.004,89.663,1119 1121 | TONEY,0.004,89.667,1120 1122 | NATHANAEL,0.004,89.671,1121 1123 | DEL,0.004,89.675,1122 1124 | BRITT,0.004,89.679,1123 1125 | BENEDICT,0.004,89.684,1124 1126 | MOSE,0.004,89.688,1125 1127 | HONG,0.004,89.692,1126 1128 | LEIGH,0.004,89.696,1127 1129 | JOHNSON,0.004,89.700,1128 1130 | ISREAL,0.004,89.704,1129 1131 | GAYLE,0.004,89.708,1130 1132 | GARRET,0.004,89.712,1131 1133 | FAUSTO,0.004,89.716,1132 1134 | ASA,0.004,89.720,1133 1135 | ARLEN,0.004,89.724,1134 1136 | ZACK,0.004,89.728,1135 1137 | WARNER,0.004,89.732,1136 1138 | MODESTO,0.004,89.736,1137 1139 | FRANCESCO,0.004,89.740,1138 1140 | MANUAL,0.004,89.744,1139 1141 | JAE,0.004,89.748,1140 1142 | GAYLORD,0.004,89.752,1141 1143 | GASTON,0.004,89.756,1142 1144 | FILIBERTO,0.004,89.759,1143 1145 | DEANGELO,0.004,89.763,1144 1146 | MICHALE,0.004,89.767,1145 1147 | GRANVILLE,0.004,89.771,1146 1148 | WES,0.004,89.775,1147 1149 | MALIK,0.004,89.779,1148 1150 | ZACKARY,0.004,89.783,1149 1151 | TUAN,0.004,89.787,1150 1152 | NICKY,0.004,89.790,1151 1153 | ELDRIDGE,0.004,89.794,1152 1154 | CRISTOPHER,0.004,89.798,1153 1155 | CORTEZ,0.004,89.802,1154 1156 | ANTIONE,0.004,89.806,1155 1157 | MALCOM,0.004,89.809,1156 1158 | LONG,0.004,89.813,1157 1159 | KOREY,0.004,89.817,1158 1160 | JOSPEH,0.004,89.821,1159 1161 | COLTON,0.004,89.825,1160 1162 | WAYLON,0.004,89.828,1161 1163 | VON,0.004,89.832,1162 1164 | HOSEA,0.004,89.836,1163 1165 | SHAD,0.004,89.840,1164 1166 | SANTO,0.004,89.843,1165 1167 | RUDOLF,0.004,89.847,1166 1168 | ROLF,0.004,89.851,1167 1169 | REY,0.004,89.855,1168 1170 | RENALDO,0.004,89.858,1169 1171 | MARCELLUS,0.004,89.862,1170 1172 | LUCIUS,0.004,89.866,1171 1173 | LESLEY,0.004,89.870,1172 1174 | KRISTOFER,0.004,89.873,1173 1175 | BOYCE,0.004,89.877,1174 1176 | BENTON,0.004,89.881,1175 1177 | MAN,0.004,89.884,1176 1178 | KASEY,0.004,89.888,1177 1179 | JEWELL,0.004,89.892,1178 1180 | HAYDEN,0.004,89.895,1179 1181 | HARLAND,0.004,89.899,1180 1182 | ARNOLDO,0.004,89.903,1181 1183 | RUEBEN,0.004,89.907,1182 1184 | LEANDRO,0.004,89.910,1183 1185 | KRAIG,0.004,89.914,1184 1186 | JERRELL,0.004,89.918,1185 1187 | JEROMY,0.004,89.921,1186 1188 | HOBERT,0.004,89.925,1187 1189 | CEDRICK,0.004,89.929,1188 1190 | ARLIE,0.004,89.932,1189 1191 | WINFORD,0.004,89.936,1190 1192 | WALLY,0.004,89.939,1191 1193 | PATRICIA,0.004,89.943,1192 1194 | LUIGI,0.004,89.947,1193 1195 | KENETH,0.004,89.950,1194 1196 | JACINTO,0.004,89.954,1195 1197 | GRAIG,0.004,89.958,1196 1198 | FRANKLYN,0.004,89.961,1197 1199 | EDMUNDO,0.004,89.965,1198 1200 | SID,0.004,89.968,1199 1201 | PORTER,0.004,89.972,1200 1202 | LEIF,0.004,89.976,1201 1203 | LAUREN,0.004,89.979,1202 1204 | JERAMY,0.004,89.983,1203 1205 | ELISHA,0.004,89.986,1204 1206 | BUCK,0.004,89.990,1205 1207 | WILLIAN,0.004,89.994,1206 1208 | VINCENZO,0.004,89.997,1207 1209 | SHON,0.004,90.001,1208 1210 | MICHAL,0.004,90.004,1209 1211 | LYNWOOD,0.004,90.008,1210 1212 | LINDSAY,0.004,90.011,1211 1213 | JEWEL,0.004,90.015,1212 1214 | JERE,0.004,90.018,1213 1215 | HAI,0.004,90.022,1214 1216 | ELDEN,0.004,90.026,1215 1217 | DORSEY,0.004,90.029,1216 1218 | DARELL,0.004,90.033,1217 1219 | BRODERICK,0.004,90.036,1218 1220 | ALONSO,0.004,90.040,1219 1221 | -------------------------------------------------------------------------------- /censusname/data/dist.female.first.1990.csv: -------------------------------------------------------------------------------- 1 | name,frequency,cumulative_frequency,rank 2 | MARY,2.629,2.629,1 3 | PATRICIA,1.073,3.702,2 4 | LINDA,1.035,4.736,3 5 | BARBARA,0.980,5.716,4 6 | ELIZABETH,0.937,6.653,5 7 | JENNIFER,0.932,7.586,6 8 | MARIA,0.828,8.414,7 9 | SUSAN,0.794,9.209,8 10 | MARGARET,0.768,9.976,9 11 | DOROTHY,0.727,10.703,10 12 | LISA,0.704,11.407,11 13 | NANCY,0.669,12.075,12 14 | KAREN,0.667,12.742,13 15 | BETTY,0.666,13.408,14 16 | HELEN,0.663,14.071,15 17 | SANDRA,0.629,14.700,16 18 | DONNA,0.583,15.282,17 19 | CAROL,0.565,15.848,18 20 | RUTH,0.562,16.410,19 21 | SHARON,0.522,16.932,20 22 | MICHELLE,0.519,17.451,21 23 | LAURA,0.510,17.961,22 24 | SARAH,0.508,18.469,23 25 | KIMBERLY,0.504,18.973,24 26 | DEBORAH,0.494,19.467,25 27 | JESSICA,0.490,19.958,26 28 | SHIRLEY,0.482,20.439,27 29 | CYNTHIA,0.469,20.908,28 30 | ANGELA,0.468,21.376,29 31 | MELISSA,0.462,21.839,30 32 | BRENDA,0.455,22.293,31 33 | AMY,0.451,22.745,32 34 | ANNA,0.440,23.185,33 35 | REBECCA,0.430,23.615,34 36 | VIRGINIA,0.430,24.044,35 37 | KATHLEEN,0.424,24.468,36 38 | PAMELA,0.416,24.884,37 39 | MARTHA,0.412,25.297,38 40 | DEBRA,0.408,25.704,39 41 | AMANDA,0.404,26.108,40 42 | STEPHANIE,0.400,26.508,41 43 | CAROLYN,0.385,26.893,42 44 | CHRISTINE,0.382,27.275,43 45 | MARIE,0.379,27.655,44 46 | JANET,0.379,28.034,45 47 | CATHERINE,0.373,28.408,46 48 | FRANCES,0.370,28.777,47 49 | ANN,0.364,29.141,48 50 | JOYCE,0.364,29.505,49 51 | DIANE,0.359,29.864,50 52 | ALICE,0.357,30.221,51 53 | JULIE,0.348,30.568,52 54 | HEATHER,0.337,30.905,53 55 | TERESA,0.336,31.241,54 56 | DORIS,0.335,31.577,55 57 | GLORIA,0.335,31.912,56 58 | EVELYN,0.322,32.233,57 59 | JEAN,0.315,32.548,58 60 | CHERYL,0.315,32.863,59 61 | MILDRED,0.313,33.176,60 62 | KATHERINE,0.313,33.489,61 63 | JOAN,0.306,33.795,62 64 | ASHLEY,0.303,34.098,63 65 | JUDITH,0.297,34.395,64 66 | ROSE,0.296,34.691,65 67 | JANICE,0.285,34.975,66 68 | KELLY,0.283,35.258,67 69 | NICOLE,0.281,35.539,68 70 | JUDY,0.276,35.815,69 71 | CHRISTINA,0.275,36.090,70 72 | KATHY,0.272,36.362,71 73 | THERESA,0.271,36.633,72 74 | BEVERLY,0.267,36.900,73 75 | DENISE,0.264,37.164,74 76 | TAMMY,0.259,37.423,75 77 | IRENE,0.252,37.675,76 78 | JANE,0.250,37.925,77 79 | LORI,0.248,38.173,78 80 | RACHEL,0.242,38.415,79 81 | MARILYN,0.241,38.657,80 82 | ANDREA,0.236,38.893,81 83 | KATHRYN,0.234,39.127,82 84 | LOUISE,0.229,39.356,83 85 | SARA,0.229,39.584,84 86 | ANNE,0.228,39.812,85 87 | JACQUELINE,0.228,40.040,86 88 | WANDA,0.226,40.266,87 89 | BONNIE,0.223,40.489,88 90 | JULIA,0.223,40.711,89 91 | RUBY,0.221,40.932,90 92 | LOIS,0.220,41.153,91 93 | TINA,0.220,41.372,92 94 | PHYLLIS,0.219,41.591,93 95 | NORMA,0.218,41.809,94 96 | PAULA,0.217,42.026,95 97 | DIANA,0.216,42.242,96 98 | ANNIE,0.216,42.458,97 99 | LILLIAN,0.211,42.669,98 100 | EMILY,0.208,42.877,99 101 | ROBIN,0.208,43.085,100 102 | PEGGY,0.208,43.293,101 103 | CRYSTAL,0.207,43.500,102 104 | GLADYS,0.205,43.705,103 105 | RITA,0.204,43.908,104 106 | DAWN,0.202,44.111,105 107 | CONNIE,0.200,44.311,106 108 | FLORENCE,0.200,44.511,107 109 | TRACY,0.197,44.708,108 110 | EDNA,0.197,44.904,109 111 | TIFFANY,0.195,45.100,110 112 | CARMEN,0.195,45.295,111 113 | ROSA,0.194,45.489,112 114 | CINDY,0.192,45.681,113 115 | GRACE,0.189,45.869,114 116 | WENDY,0.185,46.055,115 117 | VICTORIA,0.180,46.235,116 118 | EDITH,0.179,46.414,117 119 | KIM,0.178,46.592,118 120 | SHERRY,0.178,46.770,119 121 | SYLVIA,0.177,46.947,120 122 | JOSEPHINE,0.177,47.123,121 123 | THELMA,0.175,47.298,122 124 | SHANNON,0.175,47.473,123 125 | SHEILA,0.175,47.648,124 126 | ETHEL,0.174,47.822,125 127 | ELLEN,0.173,47.995,126 128 | ELAINE,0.173,48.168,127 129 | MARJORIE,0.173,48.341,128 130 | CARRIE,0.171,48.512,129 131 | CHARLOTTE,0.169,48.680,130 132 | MONICA,0.166,48.847,131 133 | ESTHER,0.166,49.013,132 134 | PAULINE,0.165,49.178,133 135 | EMMA,0.165,49.342,134 136 | JUANITA,0.164,49.506,135 137 | ANITA,0.162,49.669,136 138 | RHONDA,0.162,49.830,137 139 | HAZEL,0.161,49.991,138 140 | AMBER,0.160,50.151,139 141 | EVA,0.159,50.310,140 142 | DEBBIE,0.157,50.467,141 143 | APRIL,0.154,50.621,142 144 | LESLIE,0.154,50.775,143 145 | CLARA,0.153,50.928,144 146 | LUCILLE,0.153,51.081,145 147 | JAMIE,0.153,51.235,146 148 | JOANNE,0.150,51.385,147 149 | ELEANOR,0.150,51.535,148 150 | VALERIE,0.149,51.684,149 151 | DANIELLE,0.149,51.833,150 152 | MEGAN,0.147,51.981,151 153 | ALICIA,0.146,52.126,152 154 | SUZANNE,0.145,52.272,153 155 | MICHELE,0.145,52.417,154 156 | GAIL,0.145,52.562,155 157 | BERTHA,0.143,52.704,156 158 | DARLENE,0.142,52.847,157 159 | VERONICA,0.142,52.989,158 160 | JILL,0.142,53.131,159 161 | ERIN,0.141,53.272,160 162 | GERALDINE,0.141,53.413,161 163 | LAUREN,0.137,53.550,162 164 | CATHY,0.137,53.687,163 165 | JOANN,0.136,53.823,164 166 | LORRAINE,0.135,53.958,165 167 | LYNN,0.135,54.093,166 168 | SALLY,0.135,54.228,167 169 | REGINA,0.133,54.360,168 170 | ERICA,0.130,54.490,169 171 | BEATRICE,0.130,54.620,170 172 | DOLORES,0.129,54.749,171 173 | BERNICE,0.128,54.877,172 174 | AUDREY,0.127,55.003,173 175 | YVONNE,0.126,55.129,174 176 | ANNETTE,0.125,55.255,175 177 | JUNE,0.125,55.380,176 178 | SAMANTHA,0.124,55.504,177 179 | MARION,0.122,55.626,178 180 | DANA,0.122,55.748,179 181 | STACY,0.121,55.869,180 182 | ANA,0.120,55.989,181 183 | RENEE,0.120,56.109,182 184 | IDA,0.118,56.227,183 185 | VIVIAN,0.118,56.346,184 186 | ROBERTA,0.117,56.463,185 187 | HOLLY,0.117,56.580,186 188 | BRITTANY,0.117,56.697,187 189 | MELANIE,0.116,56.813,188 190 | LORETTA,0.115,56.928,189 191 | YOLANDA,0.115,57.043,190 192 | JEANETTE,0.115,57.158,191 193 | LAURIE,0.114,57.271,192 194 | KATIE,0.113,57.385,193 195 | KRISTEN,0.111,57.496,194 196 | VANESSA,0.111,57.607,195 197 | ALMA,0.111,57.718,196 198 | SUE,0.111,57.829,197 199 | ELSIE,0.110,57.939,198 200 | BETH,0.110,58.049,199 201 | JEANNE,0.109,58.158,200 202 | VICKI,0.109,58.267,201 203 | CARLA,0.107,58.374,202 204 | TARA,0.107,58.482,203 205 | ROSEMARY,0.107,58.589,204 206 | EILEEN,0.105,58.694,205 207 | TERRI,0.105,58.799,206 208 | GERTRUDE,0.103,58.902,207 209 | LUCY,0.103,59.005,208 210 | TONYA,0.102,59.107,209 211 | ELLA,0.101,59.208,210 212 | STACEY,0.101,59.308,211 213 | WILMA,0.099,59.408,212 214 | GINA,0.099,59.506,213 215 | KRISTIN,0.099,59.605,214 216 | JESSIE,0.098,59.703,215 217 | NATALIE,0.098,59.801,216 218 | AGNES,0.098,59.899,217 219 | VERA,0.098,59.997,218 220 | WILLIE,0.097,60.094,219 221 | CHARLENE,0.097,60.191,220 222 | BESSIE,0.096,60.287,221 223 | DELORES,0.095,60.382,222 224 | MELINDA,0.094,60.477,223 225 | PEARL,0.094,60.571,224 226 | ARLENE,0.094,60.665,225 227 | MAUREEN,0.092,60.757,226 228 | COLLEEN,0.092,60.849,227 229 | ALLISON,0.092,60.941,228 230 | TAMARA,0.092,61.033,229 231 | JOY,0.091,61.124,230 232 | GEORGIA,0.091,61.215,231 233 | CONSTANCE,0.091,61.305,232 234 | LILLIE,0.090,61.396,233 235 | CLAUDIA,0.090,61.485,234 236 | JACKIE,0.090,61.575,235 237 | MARCIA,0.090,61.665,236 238 | TANYA,0.089,61.754,237 239 | NELLIE,0.089,61.843,238 240 | MINNIE,0.089,61.931,239 241 | MARLENE,0.088,62.020,240 242 | HEIDI,0.088,62.108,241 243 | GLENDA,0.088,62.195,242 244 | LYDIA,0.086,62.281,243 245 | VIOLA,0.086,62.367,244 246 | COURTNEY,0.086,62.453,245 247 | MARIAN,0.086,62.539,246 248 | STELLA,0.085,62.623,247 249 | CAROLINE,0.085,62.708,248 250 | DORA,0.084,62.792,249 251 | JO,0.083,62.875,250 252 | VICKIE,0.082,62.957,251 253 | MATTIE,0.081,63.038,252 254 | TERRY,0.080,63.118,253 255 | MAXINE,0.079,63.198,254 256 | IRMA,0.079,63.277,255 257 | MABEL,0.078,63.355,256 258 | MARSHA,0.078,63.434,257 259 | MYRTLE,0.078,63.511,258 260 | LENA,0.077,63.589,259 261 | CHRISTY,0.077,63.665,260 262 | DEANNA,0.076,63.742,261 263 | PATSY,0.076,63.818,262 264 | HILDA,0.075,63.893,263 265 | GWENDOLYN,0.074,63.967,264 266 | JENNIE,0.073,64.040,265 267 | NORA,0.073,64.113,266 268 | MARGIE,0.072,64.185,267 269 | NINA,0.072,64.257,268 270 | CASSANDRA,0.072,64.329,269 271 | LEAH,0.072,64.401,270 272 | PENNY,0.071,64.472,271 273 | KAY,0.071,64.543,272 274 | PRISCILLA,0.071,64.614,273 275 | NAOMI,0.071,64.684,274 276 | CAROLE,0.071,64.755,275 277 | BRANDY,0.070,64.825,276 278 | OLGA,0.070,64.895,277 279 | BILLIE,0.069,64.964,278 280 | DIANNE,0.069,65.033,279 281 | TRACEY,0.069,65.102,280 282 | LEONA,0.069,65.171,281 283 | JENNY,0.068,65.239,282 284 | FELICIA,0.068,65.307,283 285 | SONIA,0.068,65.374,284 286 | MIRIAM,0.066,65.440,285 287 | VELMA,0.066,65.506,286 288 | BECKY,0.066,65.572,287 289 | BOBBIE,0.065,65.637,288 290 | VIOLET,0.065,65.702,289 291 | KRISTINA,0.065,65.767,290 292 | TONI,0.064,65.831,291 293 | MISTY,0.063,65.894,292 294 | MAE,0.063,65.957,293 295 | SHELLY,0.062,66.019,294 296 | DAISY,0.062,66.081,295 297 | RAMONA,0.062,66.143,296 298 | SHERRI,0.062,66.205,297 299 | ERIKA,0.061,66.267,298 300 | KATRINA,0.061,66.328,299 301 | CLAIRE,0.061,66.388,300 302 | LINDSEY,0.060,66.448,301 303 | LINDSAY,0.060,66.507,302 304 | GENEVA,0.059,66.567,303 305 | GUADALUPE,0.059,66.626,304 306 | BELINDA,0.059,66.685,305 307 | MARGARITA,0.059,66.743,306 308 | SHERYL,0.059,66.802,307 309 | CORA,0.058,66.860,308 310 | FAYE,0.058,66.917,309 311 | ADA,0.057,66.975,310 312 | NATASHA,0.057,67.032,311 313 | SABRINA,0.057,67.089,312 314 | ISABEL,0.057,67.146,313 315 | MARGUERITE,0.056,67.202,314 316 | HATTIE,0.056,67.257,315 317 | HARRIET,0.056,67.313,316 318 | MOLLY,0.055,67.368,317 319 | CECILIA,0.055,67.424,318 320 | KRISTI,0.055,67.479,319 321 | BRANDI,0.055,67.534,320 322 | BLANCHE,0.055,67.589,321 323 | SANDY,0.055,67.644,322 324 | ROSIE,0.055,67.699,323 325 | JOANNA,0.055,67.754,324 326 | IRIS,0.055,67.808,325 327 | EUNICE,0.054,67.863,326 328 | ANGIE,0.054,67.917,327 329 | INEZ,0.053,67.970,328 330 | LYNDA,0.053,68.023,329 331 | MADELINE,0.052,68.075,330 332 | AMELIA,0.052,68.127,331 333 | ALBERTA,0.052,68.179,332 334 | GENEVIEVE,0.051,68.230,333 335 | MONIQUE,0.051,68.282,334 336 | JODI,0.051,68.333,335 337 | JANIE,0.051,68.385,336 338 | MAGGIE,0.051,68.436,337 339 | KAYLA,0.051,68.487,338 340 | SONYA,0.051,68.538,339 341 | JAN,0.051,68.589,340 342 | LEE,0.051,68.641,341 343 | KRISTINE,0.051,68.691,342 344 | CANDACE,0.051,68.742,343 345 | FANNIE,0.050,68.792,344 346 | MARYANN,0.050,68.843,345 347 | OPAL,0.050,68.893,346 348 | ALISON,0.050,68.943,347 349 | YVETTE,0.050,68.993,348 350 | MELODY,0.050,69.043,349 351 | LUZ,0.049,69.092,350 352 | SUSIE,0.049,69.142,351 353 | OLIVIA,0.049,69.191,352 354 | FLORA,0.049,69.240,353 355 | SHELLEY,0.049,69.288,354 356 | KRISTY,0.048,69.337,355 357 | MAMIE,0.048,69.385,356 358 | LULA,0.048,69.433,357 359 | LOLA,0.048,69.482,358 360 | VERNA,0.048,69.530,359 361 | BEULAH,0.048,69.577,360 362 | ANTOINETTE,0.048,69.625,361 363 | CANDICE,0.046,69.671,362 364 | JUANA,0.046,69.717,363 365 | JEANNETTE,0.046,69.763,364 366 | PAM,0.046,69.809,365 367 | KELLI,0.046,69.854,366 368 | HANNAH,0.045,69.899,367 369 | WHITNEY,0.045,69.944,368 370 | BRIDGET,0.045,69.989,369 371 | KARLA,0.044,70.034,370 372 | CELIA,0.044,70.078,371 373 | LATOYA,0.043,70.121,372 374 | PATTY,0.043,70.165,373 375 | SHELIA,0.043,70.208,374 376 | GAYLE,0.043,70.251,375 377 | DELLA,0.043,70.294,376 378 | VICKY,0.043,70.336,377 379 | LYNNE,0.043,70.379,378 380 | SHERI,0.042,70.421,379 381 | MARIANNE,0.042,70.463,380 382 | KARA,0.041,70.504,381 383 | JACQUELYN,0.041,70.544,382 384 | ERMA,0.041,70.585,383 385 | BLANCA,0.041,70.626,384 386 | MYRA,0.040,70.666,385 387 | LETICIA,0.040,70.706,386 388 | PAT,0.040,70.746,387 389 | KRISTA,0.040,70.786,388 390 | ROXANNE,0.040,70.826,389 391 | ANGELICA,0.039,70.865,390 392 | JOHNNIE,0.039,70.905,391 393 | ROBYN,0.039,70.944,392 394 | FRANCIS,0.039,70.983,393 395 | ADRIENNE,0.039,71.022,394 396 | ROSALIE,0.039,71.061,395 397 | ALEXANDRA,0.039,71.100,396 398 | BROOKE,0.039,71.139,397 399 | BETHANY,0.039,71.177,398 400 | SADIE,0.039,71.216,399 401 | BERNADETTE,0.039,71.254,400 402 | TRACI,0.038,71.293,401 403 | JODY,0.038,71.331,402 404 | KENDRA,0.038,71.369,403 405 | JASMINE,0.038,71.407,404 406 | NICHOLE,0.038,71.445,405 407 | RACHAEL,0.038,71.483,406 408 | CHELSEA,0.038,71.520,407 409 | MABLE,0.038,71.558,408 410 | ERNESTINE,0.038,71.596,409 411 | MURIEL,0.038,71.634,410 412 | MARCELLA,0.037,71.671,411 413 | ELENA,0.037,71.708,412 414 | KRYSTAL,0.037,71.745,413 415 | ANGELINA,0.037,71.781,414 416 | NADINE,0.036,71.818,415 417 | KARI,0.036,71.853,416 418 | ESTELLE,0.036,71.889,417 419 | DIANNA,0.036,71.925,418 420 | PAULETTE,0.036,71.961,419 421 | LORA,0.036,71.996,420 422 | MONA,0.035,72.032,421 423 | DOREEN,0.035,72.067,422 424 | ROSEMARIE,0.035,72.102,423 425 | ANGEL,0.035,72.137,424 426 | DESIREE,0.035,72.172,425 427 | ANTONIA,0.035,72.207,426 428 | HOPE,0.034,72.241,427 429 | GINGER,0.034,72.274,428 430 | JANIS,0.034,72.308,429 431 | BETSY,0.034,72.342,430 432 | CHRISTIE,0.034,72.375,431 433 | FREDA,0.034,72.409,432 434 | MERCEDES,0.033,72.442,433 435 | MEREDITH,0.033,72.475,434 436 | LYNETTE,0.033,72.508,435 437 | TERI,0.033,72.541,436 438 | CRISTINA,0.033,72.573,437 439 | EULA,0.033,72.606,438 440 | LEIGH,0.032,72.638,439 441 | MEGHAN,0.032,72.670,440 442 | SOPHIA,0.032,72.702,441 443 | ELOISE,0.032,72.734,442 444 | ROCHELLE,0.032,72.766,443 445 | GRETCHEN,0.032,72.798,444 446 | CECELIA,0.032,72.829,445 447 | RAQUEL,0.031,72.860,446 448 | HENRIETTA,0.031,72.891,447 449 | ALYSSA,0.031,72.922,448 450 | JANA,0.031,72.953,449 451 | KELLEY,0.031,72.983,450 452 | GWEN,0.031,73.014,451 453 | KERRY,0.031,73.044,452 454 | JENNA,0.030,73.075,453 455 | TRICIA,0.030,73.105,454 456 | LAVERNE,0.030,73.135,455 457 | OLIVE,0.030,73.165,456 458 | ALEXIS,0.030,73.195,457 459 | TASHA,0.030,73.225,458 460 | SILVIA,0.029,73.254,459 461 | ELVIRA,0.029,73.284,460 462 | CASEY,0.029,73.313,461 463 | DELIA,0.029,73.342,462 464 | SOPHIE,0.029,73.372,463 465 | KATE,0.029,73.401,464 466 | PATTI,0.029,73.430,465 467 | LORENA,0.029,73.459,466 468 | KELLIE,0.029,73.488,467 469 | SONJA,0.029,73.517,468 470 | LILA,0.029,73.546,469 471 | LANA,0.029,73.575,470 472 | DARLA,0.029,73.604,471 473 | MAY,0.029,73.633,472 474 | MINDY,0.029,73.661,473 475 | ESSIE,0.029,73.690,474 476 | MANDY,0.029,73.719,475 477 | LORENE,0.028,73.747,476 478 | ELSA,0.028,73.775,477 479 | JOSEFINA,0.028,73.804,478 480 | JEANNIE,0.028,73.832,479 481 | MIRANDA,0.028,73.860,480 482 | DIXIE,0.028,73.888,481 483 | LUCIA,0.028,73.916,482 484 | MARTA,0.028,73.944,483 485 | FAITH,0.028,73.972,484 486 | LELA,0.028,73.999,485 487 | JOHANNA,0.028,74.027,486 488 | SHARI,0.028,74.055,487 489 | CAMILLE,0.028,74.082,488 490 | TAMI,0.027,74.110,489 491 | SHAWNA,0.027,74.137,490 492 | ELISA,0.027,74.164,491 493 | EBONY,0.027,74.192,492 494 | MELBA,0.027,74.219,493 495 | ORA,0.027,74.246,494 496 | NETTIE,0.027,74.273,495 497 | TABITHA,0.027,74.300,496 498 | OLLIE,0.027,74.327,497 499 | JAIME,0.027,74.354,498 500 | WINIFRED,0.027,74.381,499 501 | KRISTIE,0.027,74.408,500 502 | MARINA,0.027,74.435,501 503 | ALISHA,0.027,74.462,502 504 | AIMEE,0.027,74.488,503 505 | RENA,0.027,74.515,504 506 | MYRNA,0.026,74.541,505 507 | MARLA,0.026,74.567,506 508 | TAMMIE,0.026,74.593,507 509 | LATASHA,0.026,74.619,508 510 | BONITA,0.026,74.645,509 511 | PATRICE,0.026,74.671,510 512 | RONDA,0.026,74.697,511 513 | SHERRIE,0.026,74.722,512 514 | ADDIE,0.026,74.748,513 515 | FRANCINE,0.025,74.773,514 516 | DELORIS,0.025,74.799,515 517 | STACIE,0.025,74.824,516 518 | ADRIANA,0.025,74.849,517 519 | CHERI,0.025,74.874,518 520 | SHELBY,0.025,74.899,519 521 | ABIGAIL,0.025,74.924,520 522 | CELESTE,0.025,74.949,521 523 | JEWEL,0.025,74.974,522 524 | CARA,0.025,74.999,523 525 | ADELE,0.025,75.024,524 526 | REBEKAH,0.025,75.048,525 527 | LUCINDA,0.025,75.073,526 528 | DORTHY,0.025,75.097,527 529 | CHRIS,0.024,75.122,528 530 | EFFIE,0.024,75.146,529 531 | TRINA,0.024,75.171,530 532 | REBA,0.024,75.195,531 533 | SHAWN,0.024,75.219,532 534 | SALLIE,0.024,75.244,533 535 | AURORA,0.024,75.268,534 536 | LENORA,0.024,75.292,535 537 | ETTA,0.024,75.317,536 538 | LOTTIE,0.024,75.341,537 539 | KERRI,0.024,75.365,538 540 | TRISHA,0.024,75.389,539 541 | NIKKI,0.024,75.413,540 542 | ESTELLA,0.024,75.438,541 543 | FRANCISCA,0.024,75.461,542 544 | JOSIE,0.024,75.485,543 545 | TRACIE,0.024,75.509,544 546 | MARISSA,0.024,75.533,545 547 | KARIN,0.024,75.557,546 548 | BRITTNEY,0.024,75.580,547 549 | JANELLE,0.024,75.604,548 550 | LOURDES,0.024,75.628,549 551 | LAUREL,0.024,75.651,550 552 | HELENE,0.024,75.675,551 553 | FERN,0.024,75.698,552 554 | ELVA,0.024,75.722,553 555 | CORINNE,0.024,75.745,554 556 | KELSEY,0.024,75.769,555 557 | INA,0.023,75.792,556 558 | BETTIE,0.023,75.816,557 559 | ELISABETH,0.023,75.839,558 560 | AIDA,0.023,75.862,559 561 | CAITLIN,0.023,75.886,560 562 | INGRID,0.023,75.909,561 563 | IVA,0.023,75.932,562 564 | EUGENIA,0.023,75.955,563 565 | CHRISTA,0.023,75.978,564 566 | GOLDIE,0.023,76.000,565 567 | CASSIE,0.023,76.023,566 568 | MAUDE,0.023,76.046,567 569 | JENIFER,0.023,76.068,568 570 | THERESE,0.022,76.091,569 571 | FRANKIE,0.022,76.113,570 572 | DENA,0.022,76.136,571 573 | LORNA,0.022,76.158,572 574 | JANETTE,0.022,76.180,573 575 | LATONYA,0.022,76.202,574 576 | CANDY,0.022,76.224,575 577 | MORGAN,0.022,76.247,576 578 | CONSUELO,0.022,76.269,577 579 | TAMIKA,0.022,76.291,578 580 | ROSETTA,0.022,76.313,579 581 | DEBORA,0.022,76.334,580 582 | CHERIE,0.022,76.356,581 583 | POLLY,0.022,76.378,582 584 | DINA,0.022,76.400,583 585 | JEWELL,0.021,76.421,584 586 | FAY,0.021,76.442,585 587 | JILLIAN,0.021,76.464,586 588 | DOROTHEA,0.021,76.485,587 589 | NELL,0.021,76.506,588 590 | TRUDY,0.021,76.527,589 591 | ESPERANZA,0.021,76.548,590 592 | PATRICA,0.021,76.570,591 593 | KIMBERLEY,0.021,76.591,592 594 | SHANNA,0.021,76.611,593 595 | HELENA,0.021,76.632,594 596 | CAROLINA,0.021,76.653,595 597 | CLEO,0.021,76.674,596 598 | STEFANIE,0.021,76.694,597 599 | ROSARIO,0.020,76.715,598 600 | OLA,0.020,76.735,599 601 | JANINE,0.020,76.756,600 602 | MOLLIE,0.020,76.776,601 603 | LUPE,0.020,76.796,602 604 | ALISA,0.020,76.816,603 605 | LOU,0.020,76.836,604 606 | MARIBEL,0.020,76.856,605 607 | SUSANNE,0.020,76.875,606 608 | BETTE,0.019,76.895,607 609 | SUSANA,0.019,76.914,608 610 | ELISE,0.019,76.933,609 611 | CECILE,0.019,76.953,610 612 | ISABELLE,0.019,76.972,611 613 | LESLEY,0.019,76.991,612 614 | JOCELYN,0.019,77.010,613 615 | PAIGE,0.019,77.030,614 616 | JONI,0.019,77.049,615 617 | RACHELLE,0.019,77.068,616 618 | LEOLA,0.019,77.087,617 619 | DAPHNE,0.019,77.106,618 620 | ALTA,0.019,77.125,619 621 | ESTER,0.019,77.144,620 622 | PETRA,0.019,77.162,621 623 | GRACIELA,0.019,77.181,622 624 | IMOGENE,0.019,77.200,623 625 | JOLENE,0.019,77.219,624 626 | KEISHA,0.019,77.237,625 627 | LACEY,0.018,77.256,626 628 | GLENNA,0.018,77.274,627 629 | GABRIELA,0.018,77.293,628 630 | KERI,0.018,77.311,629 631 | URSULA,0.018,77.329,630 632 | LIZZIE,0.018,77.347,631 633 | KIRSTEN,0.018,77.366,632 634 | SHANA,0.018,77.384,633 635 | ADELINE,0.018,77.402,634 636 | MAYRA,0.018,77.420,635 637 | JAYNE,0.018,77.438,636 638 | JACLYN,0.018,77.456,637 639 | GRACIE,0.018,77.474,638 640 | SONDRA,0.018,77.492,639 641 | CARMELA,0.018,77.509,640 642 | MARISA,0.018,77.527,641 643 | ROSALIND,0.018,77.545,642 644 | CHARITY,0.018,77.563,643 645 | TONIA,0.018,77.580,644 646 | BEATRIZ,0.018,77.598,645 647 | MARISOL,0.018,77.616,646 648 | CLARICE,0.018,77.633,647 649 | JEANINE,0.017,77.651,648 650 | SHEENA,0.017,77.668,649 651 | ANGELINE,0.017,77.685,650 652 | FRIEDA,0.017,77.703,651 653 | LILY,0.017,77.720,652 654 | ROBBIE,0.017,77.737,653 655 | SHAUNA,0.017,77.754,654 656 | MILLIE,0.017,77.771,655 657 | CLAUDETTE,0.017,77.788,656 658 | CATHLEEN,0.017,77.805,657 659 | ANGELIA,0.017,77.822,658 660 | GABRIELLE,0.017,77.839,659 661 | AUTUMN,0.017,77.856,660 662 | KATHARINE,0.017,77.873,661 663 | SUMMER,0.017,77.890,662 664 | JODIE,0.017,77.907,663 665 | STACI,0.017,77.923,664 666 | LEA,0.017,77.940,665 667 | CHRISTI,0.017,77.957,666 668 | JIMMIE,0.017,77.974,667 669 | JUSTINE,0.017,77.990,668 670 | ELMA,0.017,78.007,669 671 | LUELLA,0.017,78.023,670 672 | MARGRET,0.017,78.040,671 673 | DOMINIQUE,0.016,78.056,672 674 | SOCORRO,0.016,78.073,673 675 | RENE,0.016,78.089,674 676 | MARTINA,0.016,78.105,675 677 | MARGO,0.016,78.122,676 678 | MAVIS,0.016,78.138,677 679 | CALLIE,0.016,78.154,678 680 | BOBBI,0.016,78.170,679 681 | MARITZA,0.016,78.186,680 682 | LUCILE,0.016,78.202,681 683 | LEANNE,0.016,78.219,682 684 | JEANNINE,0.016,78.235,683 685 | DEANA,0.016,78.251,684 686 | AILEEN,0.016,78.267,685 687 | LORIE,0.016,78.282,686 688 | LADONNA,0.016,78.298,687 689 | WILLA,0.016,78.314,688 690 | MANUELA,0.016,78.330,689 691 | GALE,0.016,78.346,690 692 | SELMA,0.016,78.361,691 693 | DOLLY,0.016,78.377,692 694 | SYBIL,0.016,78.393,693 695 | ABBY,0.016,78.408,694 696 | LARA,0.016,78.424,695 697 | DALE,0.016,78.440,696 698 | IVY,0.016,78.455,697 699 | DEE,0.016,78.471,698 700 | WINNIE,0.016,78.486,699 701 | MARCY,0.016,78.502,700 702 | LUISA,0.016,78.517,701 703 | JERI,0.015,78.533,702 704 | MAGDALENA,0.015,78.548,703 705 | OFELIA,0.015,78.563,704 706 | MEAGAN,0.015,78.579,705 707 | AUDRA,0.015,78.594,706 708 | MATILDA,0.015,78.609,707 709 | LEILA,0.015,78.624,708 710 | CORNELIA,0.015,78.639,709 711 | BIANCA,0.015,78.654,710 712 | SIMONE,0.015,78.669,711 713 | BETTYE,0.015,78.684,712 714 | RANDI,0.015,78.699,713 715 | VIRGIE,0.015,78.713,714 716 | LATISHA,0.015,78.728,715 717 | BARBRA,0.015,78.743,716 718 | GEORGINA,0.015,78.758,717 719 | ELIZA,0.015,78.772,718 720 | LEANN,0.015,78.787,719 721 | BRIDGETTE,0.015,78.801,720 722 | RHODA,0.014,78.816,721 723 | HALEY,0.014,78.830,722 724 | ADELA,0.014,78.845,723 725 | NOLA,0.014,78.859,724 726 | BERNADINE,0.014,78.873,725 727 | FLOSSIE,0.014,78.887,726 728 | ILA,0.014,78.902,727 729 | GRETA,0.014,78.916,728 730 | RUTHIE,0.014,78.930,729 731 | NELDA,0.014,78.944,730 732 | MINERVA,0.014,78.958,731 733 | LILLY,0.014,78.973,732 734 | TERRIE,0.014,78.987,733 735 | LETHA,0.014,79.001,734 736 | HILARY,0.014,79.015,735 737 | ESTELA,0.014,79.029,736 738 | VALARIE,0.014,79.043,737 739 | BRIANNA,0.014,79.057,738 740 | ROSALYN,0.014,79.071,739 741 | EARLINE,0.014,79.085,740 742 | CATALINA,0.014,79.099,741 743 | AVA,0.014,79.113,742 744 | MIA,0.014,79.127,743 745 | CLARISSA,0.014,79.141,744 746 | LIDIA,0.014,79.155,745 747 | CORRINE,0.014,79.169,746 748 | ALEXANDRIA,0.014,79.183,747 749 | CONCEPCION,0.014,79.196,748 750 | TIA,0.014,79.210,749 751 | SHARRON,0.014,79.224,750 752 | RAE,0.014,79.238,751 753 | DONA,0.014,79.251,752 754 | ERICKA,0.014,79.265,753 755 | JAMI,0.014,79.278,754 756 | ELNORA,0.014,79.292,755 757 | CHANDRA,0.014,79.306,756 758 | LENORE,0.014,79.319,757 759 | NEVA,0.013,79.333,758 760 | MARYLOU,0.013,79.346,759 761 | MELISA,0.013,79.360,760 762 | TABATHA,0.013,79.373,761 763 | SERENA,0.013,79.386,762 764 | AVIS,0.013,79.400,763 765 | ALLIE,0.013,79.413,764 766 | SOFIA,0.013,79.426,765 767 | JEANIE,0.013,79.439,766 768 | ODESSA,0.013,79.453,767 769 | NANNIE,0.013,79.466,768 770 | HARRIETT,0.013,79.479,769 771 | LORAINE,0.013,79.492,770 772 | PENELOPE,0.013,79.505,771 773 | MILAGROS,0.013,79.518,772 774 | EMILIA,0.013,79.531,773 775 | BENITA,0.013,79.544,774 776 | ALLYSON,0.013,79.557,775 777 | ASHLEE,0.013,79.570,776 778 | TANIA,0.013,79.583,777 779 | TOMMIE,0.013,79.596,778 780 | ESMERALDA,0.013,79.608,779 781 | KARINA,0.013,79.621,780 782 | EVE,0.013,79.634,781 783 | PEARLIE,0.013,79.647,782 784 | ZELMA,0.013,79.659,783 785 | MALINDA,0.013,79.672,784 786 | NOREEN,0.013,79.684,785 787 | TAMEKA,0.013,79.697,786 788 | SAUNDRA,0.013,79.710,787 789 | HILLARY,0.013,79.722,788 790 | AMIE,0.013,79.735,789 791 | ALTHEA,0.012,79.747,790 792 | ROSALINDA,0.012,79.760,791 793 | JORDAN,0.012,79.772,792 794 | LILIA,0.012,79.784,793 795 | ALANA,0.012,79.797,794 796 | GAY,0.012,79.809,795 797 | CLARE,0.012,79.821,796 798 | ALEJANDRA,0.012,79.834,797 799 | ELINOR,0.012,79.846,798 800 | MICHAEL,0.012,79.858,799 801 | LORRIE,0.012,79.870,800 802 | JERRI,0.012,79.882,801 803 | DARCY,0.012,79.895,802 804 | EARNESTINE,0.012,79.907,803 805 | CARMELLA,0.012,79.919,804 806 | TAYLOR,0.012,79.931,805 807 | NOEMI,0.012,79.943,806 808 | MARCIE,0.012,79.954,807 809 | LIZA,0.012,79.966,808 810 | ANNABELLE,0.012,79.978,809 811 | LOUISA,0.012,79.990,810 812 | EARLENE,0.012,80.002,811 813 | MALLORY,0.012,80.014,812 814 | CARLENE,0.012,80.025,813 815 | NITA,0.012,80.037,814 816 | SELENA,0.012,80.049,815 817 | TANISHA,0.012,80.060,816 818 | KATY,0.012,80.072,817 819 | JULIANNE,0.012,80.083,818 820 | JOHN,0.012,80.095,819 821 | LAKISHA,0.011,80.106,820 822 | EDWINA,0.011,80.118,821 823 | MARICELA,0.011,80.129,822 824 | MARGERY,0.011,80.141,823 825 | KENYA,0.011,80.152,824 826 | DOLLIE,0.011,80.164,825 827 | ROXIE,0.011,80.175,826 828 | ROSLYN,0.011,80.187,827 829 | KATHRINE,0.011,80.198,828 830 | NANETTE,0.011,80.209,829 831 | CHARMAINE,0.011,80.221,830 832 | LAVONNE,0.011,80.232,831 833 | ILENE,0.011,80.243,832 834 | KRIS,0.011,80.255,833 835 | TAMMI,0.011,80.266,834 836 | SUZETTE,0.011,80.277,835 837 | CORINE,0.011,80.288,836 838 | KAYE,0.011,80.300,837 839 | JERRY,0.011,80.311,838 840 | MERLE,0.011,80.322,839 841 | CHRYSTAL,0.011,80.333,840 842 | LINA,0.011,80.344,841 843 | DEANNE,0.011,80.355,842 844 | LILIAN,0.011,80.366,843 845 | JULIANA,0.011,80.377,844 846 | ALINE,0.011,80.388,845 847 | LUANN,0.011,80.399,846 848 | KASEY,0.011,80.410,847 849 | MARYANNE,0.011,80.421,848 850 | EVANGELINE,0.011,80.432,849 851 | COLETTE,0.011,80.443,850 852 | MELVA,0.011,80.453,851 853 | LAWANDA,0.011,80.464,852 854 | YESENIA,0.011,80.475,853 855 | NADIA,0.011,80.486,854 856 | MADGE,0.011,80.497,855 857 | KATHIE,0.011,80.507,856 858 | EDDIE,0.011,80.518,857 859 | OPHELIA,0.011,80.529,858 860 | VALERIA,0.011,80.539,859 861 | NONA,0.011,80.550,860 862 | MITZI,0.011,80.561,861 863 | MARI,0.011,80.571,862 864 | GEORGETTE,0.011,80.582,863 865 | CLAUDINE,0.011,80.592,864 866 | FRAN,0.011,80.603,865 867 | ALISSA,0.011,80.613,866 868 | ROSEANN,0.010,80.624,867 869 | LAKEISHA,0.010,80.634,868 870 | SUSANNA,0.010,80.645,869 871 | REVA,0.010,80.655,870 872 | DEIDRE,0.010,80.665,871 873 | CHASITY,0.010,80.676,872 874 | SHEREE,0.010,80.686,873 875 | CARLY,0.010,80.697,874 876 | JAMES,0.010,80.707,875 877 | ELVIA,0.010,80.717,876 878 | ALYCE,0.010,80.728,877 879 | DEIRDRE,0.010,80.738,878 880 | GENA,0.010,80.748,879 881 | BRIANA,0.010,80.758,880 882 | ARACELI,0.010,80.769,881 883 | KATELYN,0.010,80.779,882 884 | ROSANNE,0.010,80.789,883 885 | WENDI,0.010,80.799,884 886 | TESSA,0.010,80.810,885 887 | BERTA,0.010,80.820,886 888 | MARVA,0.010,80.830,887 889 | IMELDA,0.010,80.840,888 890 | MARIETTA,0.010,80.850,889 891 | MARCI,0.010,80.860,890 892 | LEONOR,0.010,80.870,891 893 | ARLINE,0.010,80.880,892 894 | SASHA,0.010,80.890,893 895 | MADELYN,0.010,80.900,894 896 | JANNA,0.010,80.910,895 897 | JULIETTE,0.010,80.920,896 898 | DEENA,0.010,80.929,897 899 | AURELIA,0.010,80.939,898 900 | JOSEFA,0.010,80.949,899 901 | AUGUSTA,0.010,80.959,900 902 | LILIANA,0.010,80.968,901 903 | YOUNG,0.010,80.978,902 904 | CHRISTIAN,0.010,80.988,903 905 | LESSIE,0.010,80.997,904 906 | AMALIA,0.010,81.007,905 907 | SAVANNAH,0.010,81.017,906 908 | ANASTASIA,0.010,81.026,907 909 | VILMA,0.010,81.036,908 910 | NATALIA,0.010,81.045,909 911 | ROSELLA,0.010,81.055,910 912 | LYNNETTE,0.010,81.064,911 913 | CORINA,0.010,81.074,912 914 | ALFREDA,0.009,81.083,913 915 | LEANNA,0.009,81.093,914 916 | CAREY,0.009,81.102,915 917 | AMPARO,0.009,81.112,916 918 | COLEEN,0.009,81.121,917 919 | TAMRA,0.009,81.131,918 920 | AISHA,0.009,81.140,919 921 | WILDA,0.009,81.149,920 922 | KARYN,0.009,81.159,921 923 | CHERRY,0.009,81.168,922 924 | QUEEN,0.009,81.177,923 925 | MAURA,0.009,81.187,924 926 | MAI,0.009,81.196,925 927 | EVANGELINA,0.009,81.205,926 928 | ROSANNA,0.009,81.214,927 929 | HALLIE,0.009,81.224,928 930 | ERNA,0.009,81.233,929 931 | ENID,0.009,81.242,930 932 | MARIANA,0.009,81.251,931 933 | LACY,0.009,81.260,932 934 | JULIET,0.009,81.270,933 935 | JACKLYN,0.009,81.279,934 936 | FREIDA,0.009,81.288,935 937 | MADELEINE,0.009,81.297,936 938 | MARA,0.009,81.306,937 939 | HESTER,0.009,81.315,938 940 | CATHRYN,0.009,81.324,939 941 | LELIA,0.009,81.333,940 942 | CASANDRA,0.009,81.343,941 943 | BRIDGETT,0.009,81.352,942 944 | ANGELITA,0.009,81.361,943 945 | JANNIE,0.009,81.370,944 946 | DIONNE,0.009,81.379,945 947 | ANNMARIE,0.009,81.388,946 948 | KATINA,0.009,81.397,947 949 | BERYL,0.009,81.405,948 950 | PHOEBE,0.009,81.414,949 951 | MILLICENT,0.009,81.423,950 952 | KATHERYN,0.009,81.432,951 953 | DIANN,0.009,81.441,952 954 | CARISSA,0.009,81.450,953 955 | MARYELLEN,0.009,81.459,954 956 | LIZ,0.009,81.468,955 957 | LAURI,0.009,81.476,956 958 | HELGA,0.009,81.485,957 959 | GILDA,0.009,81.494,958 960 | ADRIAN,0.009,81.503,959 961 | RHEA,0.009,81.511,960 962 | MARQUITA,0.009,81.520,961 963 | HOLLIE,0.009,81.529,962 964 | TISHA,0.009,81.538,963 965 | TAMERA,0.009,81.546,964 966 | ANGELIQUE,0.009,81.555,965 967 | FRANCESCA,0.009,81.564,966 968 | BRITNEY,0.009,81.573,967 969 | KAITLIN,0.009,81.581,968 970 | LOLITA,0.009,81.590,969 971 | FLORINE,0.009,81.599,970 972 | ROWENA,0.009,81.607,971 973 | REYNA,0.009,81.616,972 974 | TWILA,0.009,81.624,973 975 | FANNY,0.009,81.633,974 976 | JANELL,0.009,81.641,975 977 | INES,0.009,81.650,976 978 | CONCETTA,0.009,81.658,977 979 | BERTIE,0.009,81.667,978 980 | ALBA,0.009,81.676,979 981 | BRIGITTE,0.009,81.684,980 982 | ALYSON,0.009,81.693,981 983 | VONDA,0.008,81.701,982 984 | PANSY,0.008,81.710,983 985 | ELBA,0.008,81.718,984 986 | NOELLE,0.008,81.726,985 987 | LETITIA,0.008,81.735,986 988 | KITTY,0.008,81.743,987 989 | DEANN,0.008,81.752,988 990 | BRANDIE,0.008,81.760,989 991 | LOUELLA,0.008,81.769,990 992 | LETA,0.008,81.777,991 993 | FELECIA,0.008,81.786,992 994 | SHARLENE,0.008,81.794,993 995 | LESA,0.008,81.802,994 996 | BEVERLEY,0.008,81.811,995 997 | ROBERT,0.008,81.819,996 998 | ISABELLA,0.008,81.827,997 999 | HERMINIA,0.008,81.836,998 1000 | TERRA,0.008,81.844,999 1001 | CELINA,0.008,81.852,1000 1002 | TORI,0.008,81.861,1001 1003 | OCTAVIA,0.008,81.869,1002 1004 | JADE,0.008,81.877,1003 1005 | DENICE,0.008,81.885,1004 1006 | GERMAINE,0.008,81.894,1005 1007 | SIERRA,0.008,81.902,1006 1008 | MICHELL,0.008,81.910,1007 1009 | CORTNEY,0.008,81.918,1008 1010 | NELLY,0.008,81.926,1009 1011 | DORETHA,0.008,81.934,1010 1012 | SYDNEY,0.008,81.943,1011 1013 | DEIDRA,0.008,81.951,1012 1014 | MONIKA,0.008,81.959,1013 1015 | LASHONDA,0.008,81.967,1014 1016 | JUDI,0.008,81.975,1015 1017 | CHELSEY,0.008,81.983,1016 1018 | ANTIONETTE,0.008,81.991,1017 1019 | MARGOT,0.008,81.999,1018 1020 | BOBBY,0.008,82.007,1019 1021 | ADELAIDE,0.008,82.015,1020 1022 | NAN,0.008,82.023,1021 1023 | LEEANN,0.008,82.030,1022 1024 | ELISHA,0.008,82.038,1023 1025 | DESSIE,0.008,82.046,1024 1026 | LIBBY,0.008,82.054,1025 1027 | KATHI,0.008,82.062,1026 1028 | GAYLA,0.008,82.070,1027 1029 | LATANYA,0.008,82.078,1028 1030 | MINA,0.008,82.086,1029 1031 | MELLISA,0.008,82.093,1030 1032 | KIMBERLEE,0.008,82.101,1031 1033 | JASMIN,0.008,82.109,1032 1034 | RENAE,0.008,82.117,1033 1035 | ZELDA,0.008,82.125,1034 1036 | ELDA,0.008,82.132,1035 1037 | MA,0.008,82.140,1036 1038 | JUSTINA,0.008,82.148,1037 1039 | GUSSIE,0.008,82.156,1038 1040 | EMILIE,0.008,82.163,1039 1041 | CAMILLA,0.008,82.171,1040 1042 | ABBIE,0.008,82.179,1041 1043 | ROCIO,0.008,82.186,1042 1044 | KAITLYN,0.008,82.194,1043 1045 | JESSE,0.008,82.202,1044 1046 | EDYTHE,0.008,82.209,1045 1047 | ASHLEIGH,0.008,82.217,1046 1048 | SELINA,0.008,82.225,1047 1049 | LAKESHA,0.008,82.232,1048 1050 | GERI,0.008,82.240,1049 1051 | ALLENE,0.008,82.248,1050 1052 | PAMALA,0.008,82.255,1051 1053 | MICHAELA,0.008,82.263,1052 1054 | DAYNA,0.008,82.270,1053 1055 | CARYN,0.008,82.278,1054 1056 | ROSALIA,0.008,82.286,1055 1057 | SUN,0.007,82.293,1056 1058 | JACQULINE,0.007,82.301,1057 1059 | REBECA,0.007,82.308,1058 1060 | MARYBETH,0.007,82.315,1059 1061 | KRYSTLE,0.007,82.323,1060 1062 | IOLA,0.007,82.330,1061 1063 | DOTTIE,0.007,82.338,1062 1064 | BENNIE,0.007,82.345,1063 1065 | BELLE,0.007,82.353,1064 1066 | AUBREY,0.007,82.360,1065 1067 | GRISELDA,0.007,82.367,1066 1068 | ERNESTINA,0.007,82.375,1067 1069 | ELIDA,0.007,82.382,1068 1070 | ADRIANNE,0.007,82.390,1069 1071 | DEMETRIA,0.007,82.397,1070 1072 | DELMA,0.007,82.404,1071 1073 | CHONG,0.007,82.412,1072 1074 | JAQUELINE,0.007,82.419,1073 1075 | DESTINY,0.007,82.427,1074 1076 | ARLEEN,0.007,82.434,1075 1077 | VIRGINA,0.007,82.441,1076 1078 | RETHA,0.007,82.448,1077 1079 | FATIMA,0.007,82.456,1078 1080 | TILLIE,0.007,82.463,1079 1081 | ELEANORE,0.007,82.470,1080 1082 | CARI,0.007,82.478,1081 1083 | TREVA,0.007,82.485,1082 1084 | BIRDIE,0.007,82.492,1083 1085 | WILHELMINA,0.007,82.499,1084 1086 | ROSALEE,0.007,82.506,1085 1087 | MAURINE,0.007,82.514,1086 1088 | LATRICE,0.007,82.521,1087 1089 | YONG,0.007,82.528,1088 1090 | JENA,0.007,82.535,1089 1091 | TARYN,0.007,82.542,1090 1092 | ELIA,0.007,82.549,1091 1093 | DEBBY,0.007,82.556,1092 1094 | MAUDIE,0.007,82.564,1093 1095 | JEANNA,0.007,82.571,1094 1096 | DELILAH,0.007,82.578,1095 1097 | CATRINA,0.007,82.585,1096 1098 | SHONDA,0.007,82.592,1097 1099 | HORTENCIA,0.007,82.599,1098 1100 | THEODORA,0.007,82.606,1099 1101 | TERESITA,0.007,82.613,1100 1102 | ROBBIN,0.007,82.620,1101 1103 | DANETTE,0.007,82.627,1102 1104 | MARYJANE,0.007,82.634,1103 1105 | FREDDIE,0.007,82.641,1104 1106 | DELPHINE,0.007,82.648,1105 1107 | BRIANNE,0.007,82.655,1106 1108 | NILDA,0.007,82.662,1107 1109 | DANNA,0.007,82.669,1108 1110 | CINDI,0.007,82.676,1109 1111 | BESS,0.007,82.683,1110 1112 | IONA,0.007,82.690,1111 1113 | HANNA,0.007,82.697,1112 1114 | ARIEL,0.007,82.704,1113 1115 | WINONA,0.007,82.711,1114 1116 | VIDA,0.007,82.718,1115 1117 | ROSITA,0.007,82.725,1116 1118 | MARIANNA,0.007,82.731,1117 1119 | WILLIAM,0.007,82.738,1118 1120 | RACHEAL,0.007,82.745,1119 1121 | GUILLERMINA,0.007,82.752,1120 1122 | ELOISA,0.007,82.759,1121 1123 | CELESTINE,0.007,82.766,1122 1124 | CAREN,0.007,82.773,1123 1125 | MALISSA,0.007,82.780,1124 1126 | LONA,0.007,82.786,1125 1127 | CHANTEL,0.007,82.793,1126 1128 | SHELLIE,0.007,82.800,1127 1129 | MARISELA,0.007,82.807,1128 1130 | LEORA,0.007,82.814,1129 1131 | AGATHA,0.007,82.820,1130 1132 | SOLEDAD,0.007,82.827,1131 1133 | MIGDALIA,0.007,82.834,1132 1134 | IVETTE,0.007,82.840,1133 1135 | CHRISTEN,0.007,82.847,1134 1136 | ATHENA,0.007,82.854,1135 1137 | JANEL,0.007,82.861,1136 1138 | CHLOE,0.007,82.867,1137 1139 | VEDA,0.007,82.874,1138 1140 | PATTIE,0.007,82.881,1139 1141 | TESSIE,0.007,82.887,1140 1142 | TERA,0.007,82.894,1141 1143 | MARILYNN,0.007,82.901,1142 1144 | LUCRETIA,0.007,82.907,1143 1145 | KARRIE,0.007,82.914,1144 1146 | DINAH,0.007,82.920,1145 1147 | DANIELA,0.007,82.927,1146 1148 | ALECIA,0.007,82.934,1147 1149 | ADELINA,0.007,82.940,1148 1150 | VERNICE,0.007,82.947,1149 1151 | SHIELA,0.007,82.953,1150 1152 | PORTIA,0.007,82.960,1151 1153 | MERRY,0.007,82.967,1152 1154 | LASHAWN,0.007,82.973,1153 1155 | DEVON,0.007,82.980,1154 1156 | DARA,0.007,82.986,1155 1157 | TAWANA,0.007,82.993,1156 1158 | OMA,0.007,82.999,1157 1159 | VERDA,0.007,83.006,1158 1160 | CHRISTIN,0.007,83.012,1159 1161 | ALENE,0.007,83.019,1160 1162 | ZELLA,0.006,83.025,1161 1163 | SANDI,0.006,83.032,1162 1164 | RAFAELA,0.006,83.038,1163 1165 | MAYA,0.006,83.045,1164 1166 | KIRA,0.006,83.051,1165 1167 | CANDIDA,0.006,83.058,1166 1168 | ALVINA,0.006,83.064,1167 1169 | SUZAN,0.006,83.071,1168 1170 | SHAYLA,0.006,83.077,1169 1171 | LYN,0.006,83.083,1170 1172 | LETTIE,0.006,83.090,1171 1173 | ALVA,0.006,83.096,1172 1174 | SAMATHA,0.006,83.103,1173 1175 | ORALIA,0.006,83.109,1174 1176 | MATILDE,0.006,83.115,1175 1177 | MADONNA,0.006,83.122,1176 1178 | LARISSA,0.006,83.128,1177 1179 | VESTA,0.006,83.134,1178 1180 | RENITA,0.006,83.141,1179 1181 | INDIA,0.006,83.147,1180 1182 | DELOIS,0.006,83.153,1181 1183 | SHANDA,0.006,83.159,1182 1184 | PHILLIS,0.006,83.166,1183 1185 | LORRI,0.006,83.172,1184 1186 | ERLINDA,0.006,83.178,1185 1187 | CRUZ,0.006,83.185,1186 1188 | CATHRINE,0.006,83.191,1187 1189 | BARB,0.006,83.197,1188 1190 | ZOE,0.006,83.203,1189 1191 | ISABELL,0.006,83.210,1190 1192 | IONE,0.006,83.216,1191 1193 | GISELA,0.006,83.222,1192 1194 | CHARLIE,0.006,83.228,1193 1195 | VALENCIA,0.006,83.235,1194 1196 | ROXANNA,0.006,83.241,1195 1197 | MAYME,0.006,83.247,1196 1198 | KISHA,0.006,83.253,1197 1199 | ELLIE,0.006,83.259,1198 1200 | MELLISSA,0.006,83.266,1199 1201 | DORRIS,0.006,83.272,1200 1202 | DALIA,0.006,83.278,1201 1203 | BELLA,0.006,83.284,1202 1204 | ANNETTA,0.006,83.290,1203 1205 | ZOILA,0.006,83.296,1204 1206 | RETA,0.006,83.302,1205 1207 | REINA,0.006,83.308,1206 1208 | LAURETTA,0.006,83.315,1207 1209 | KYLIE,0.006,83.321,1208 1210 | CHRISTAL,0.006,83.327,1209 1211 | PILAR,0.006,83.333,1210 1212 | CHARLA,0.006,83.339,1211 1213 | ELISSA,0.006,83.345,1212 1214 | TIFFANI,0.006,83.351,1213 1215 | TANA,0.006,83.357,1214 1216 | PAULINA,0.006,83.363,1215 1217 | LEOTA,0.006,83.369,1216 1218 | BREANNA,0.006,83.375,1217 1219 | JAYME,0.006,83.381,1218 1220 | CARMEL,0.006,83.387,1219 1221 | VERNELL,0.006,83.393,1220 1222 | TOMASA,0.006,83.399,1221 1223 | MANDI,0.006,83.405,1222 1224 | DOMINGA,0.006,83.411,1223 1225 | SANTA,0.006,83.417,1224 1226 | MELODIE,0.006,83.423,1225 1227 | LURA,0.006,83.429,1226 1228 | ALEXA,0.006,83.435,1227 1229 | TAMELA,0.006,83.441,1228 1230 | RYAN,0.006,83.447,1229 1231 | MIRNA,0.006,83.453,1230 1232 | KERRIE,0.006,83.458,1231 1233 | VENUS,0.006,83.464,1232 1234 | NOEL,0.006,83.470,1233 1235 | FELICITA,0.006,83.476,1234 1236 | CRISTY,0.006,83.482,1235 1237 | CARMELITA,0.006,83.488,1236 1238 | BERNIECE,0.006,83.494,1237 1239 | ANNEMARIE,0.006,83.500,1238 1240 | TIARA,0.006,83.505,1239 1241 | ROSEANNE,0.006,83.511,1240 1242 | MISSY,0.006,83.517,1241 1243 | CORI,0.006,83.523,1242 1244 | ROXANA,0.006,83.529,1243 1245 | PRICILLA,0.006,83.535,1244 1246 | KRISTAL,0.006,83.540,1245 1247 | JUNG,0.006,83.546,1246 1248 | ELYSE,0.006,83.552,1247 1249 | HAYDEE,0.006,83.558,1248 1250 | ALETHA,0.006,83.564,1249 1251 | BETTINA,0.006,83.569,1250 1252 | MARGE,0.006,83.575,1251 1253 | GILLIAN,0.006,83.581,1252 1254 | FILOMENA,0.006,83.586,1253 1255 | CHARLES,0.006,83.592,1254 1256 | ZENAIDA,0.006,83.598,1255 1257 | HARRIETTE,0.006,83.603,1256 1258 | CARIDAD,0.006,83.609,1257 1259 | VADA,0.006,83.615,1258 1260 | UNA,0.006,83.620,1259 1261 | ARETHA,0.006,83.626,1260 1262 | PEARLINE,0.006,83.632,1261 1263 | MARJORY,0.006,83.637,1262 1264 | MARCELA,0.006,83.643,1263 1265 | FLOR,0.006,83.648,1264 1266 | EVETTE,0.006,83.654,1265 1267 | ELOUISE,0.006,83.659,1266 1268 | ALINA,0.006,83.665,1267 1269 | TRINIDAD,0.006,83.671,1268 1270 | DAVID,0.006,83.676,1269 1271 | DAMARIS,0.006,83.682,1270 1272 | CATHARINE,0.006,83.687,1271 1273 | CARROLL,0.006,83.693,1272 1274 | BELVA,0.006,83.698,1273 1275 | NAKIA,0.005,83.704,1274 1276 | MARLENA,0.005,83.709,1275 1277 | LUANNE,0.005,83.715,1276 1278 | LORINE,0.005,83.720,1277 1279 | KARON,0.005,83.726,1278 1280 | DORENE,0.005,83.731,1279 1281 | DANITA,0.005,83.737,1280 1282 | BRENNA,0.005,83.742,1281 1283 | TATIANA,0.005,83.748,1282 1284 | SAMMIE,0.005,83.753,1283 1285 | LOUANN,0.005,83.759,1284 1286 | LOREN,0.005,83.764,1285 1287 | JULIANNA,0.005,83.770,1286 1288 | ANDRIA,0.005,83.775,1287 1289 | PHILOMENA,0.005,83.780,1288 1290 | LUCILA,0.005,83.786,1289 1291 | LEONORA,0.005,83.791,1290 1292 | DOVIE,0.005,83.797,1291 1293 | ROMONA,0.005,83.802,1292 1294 | MIMI,0.005,83.808,1293 1295 | JACQUELIN,0.005,83.813,1294 1296 | GAYE,0.005,83.818,1295 1297 | TONJA,0.005,83.824,1296 1298 | MISTI,0.005,83.829,1297 1299 | JOE,0.005,83.835,1298 1300 | GENE,0.005,83.840,1299 1301 | CHASTITY,0.005,83.845,1300 1302 | STACIA,0.005,83.851,1301 1303 | ROXANN,0.005,83.856,1302 1304 | MICAELA,0.005,83.861,1303 1305 | NIKITA,0.005,83.867,1304 1306 | MEI,0.005,83.872,1305 1307 | VELDA,0.005,83.877,1306 1308 | MARLYS,0.005,83.882,1307 1309 | JOHNNA,0.005,83.888,1308 1310 | AURA,0.005,83.893,1309 1311 | LAVERN,0.005,83.898,1310 1312 | IVONNE,0.005,83.903,1311 1313 | HAYLEY,0.005,83.909,1312 1314 | NICKI,0.005,83.914,1313 1315 | MAJORIE,0.005,83.919,1314 1316 | HERLINDA,0.005,83.924,1315 1317 | GEORGE,0.005,83.930,1316 1318 | ALPHA,0.005,83.935,1317 1319 | YADIRA,0.005,83.940,1318 1320 | PERLA,0.005,83.945,1319 1321 | GREGORIA,0.005,83.950,1320 1322 | DANIEL,0.005,83.955,1321 1323 | ANTONETTE,0.005,83.961,1322 1324 | SHELLI,0.005,83.966,1323 1325 | MOZELLE,0.005,83.971,1324 1326 | MARIAH,0.005,83.976,1325 1327 | JOELLE,0.005,83.981,1326 1328 | CORDELIA,0.005,83.986,1327 1329 | JOSETTE,0.005,83.992,1328 1330 | CHIQUITA,0.005,83.997,1329 1331 | TRISTA,0.005,84.002,1330 1332 | LOUIS,0.005,84.007,1331 1333 | LAQUITA,0.005,84.012,1332 1334 | GEORGIANA,0.005,84.017,1333 1335 | CANDI,0.005,84.022,1334 1336 | SHANON,0.005,84.027,1335 1337 | LONNIE,0.005,84.032,1336 1338 | HILDEGARD,0.005,84.037,1337 1339 | CECIL,0.005,84.042,1338 1340 | VALENTINA,0.005,84.047,1339 1341 | STEPHANY,0.005,84.052,1340 1342 | MAGDA,0.005,84.057,1341 1343 | KAROL,0.005,84.062,1342 1344 | GERRY,0.005,84.067,1343 1345 | GABRIELLA,0.005,84.072,1344 1346 | TIANA,0.005,84.077,1345 1347 | ROMA,0.005,84.082,1346 1348 | RICHELLE,0.005,84.087,1347 1349 | RAY,0.005,84.092,1348 1350 | PRINCESS,0.005,84.097,1349 1351 | OLETA,0.005,84.102,1350 1352 | JACQUE,0.005,84.107,1351 1353 | IDELLA,0.005,84.112,1352 1354 | ALAINA,0.005,84.117,1353 1355 | SUZANNA,0.005,84.122,1354 1356 | JOVITA,0.005,84.127,1355 1357 | BLAIR,0.005,84.132,1356 1358 | TOSHA,0.005,84.137,1357 1359 | RAVEN,0.005,84.142,1358 1360 | NEREIDA,0.005,84.147,1359 1361 | MARLYN,0.005,84.152,1360 1362 | KYLA,0.005,84.157,1361 1363 | JOSEPH,0.005,84.162,1362 1364 | DELFINA,0.005,84.167,1363 1365 | TENA,0.005,84.172,1364 1366 | STEPHENIE,0.005,84.177,1365 1367 | SABINA,0.005,84.182,1366 1368 | NATHALIE,0.005,84.186,1367 1369 | MARCELLE,0.005,84.191,1368 1370 | GERTIE,0.005,84.196,1369 1371 | DARLEEN,0.005,84.201,1370 1372 | THEA,0.005,84.206,1371 1373 | SHARONDA,0.005,84.211,1372 1374 | SHANTEL,0.005,84.216,1373 1375 | BELEN,0.005,84.221,1374 1376 | VENESSA,0.005,84.225,1375 1377 | ROSALINA,0.005,84.230,1376 1378 | ONA,0.005,84.235,1377 1379 | GENOVEVA,0.005,84.240,1378 1380 | COREY,0.005,84.245,1379 1381 | CLEMENTINE,0.005,84.250,1380 1382 | ROSALBA,0.005,84.254,1381 1383 | RENATE,0.005,84.259,1382 1384 | RENATA,0.005,84.264,1383 1385 | MI,0.005,84.269,1384 1386 | IVORY,0.005,84.274,1385 1387 | GEORGIANNA,0.005,84.278,1386 1388 | FLOY,0.005,84.283,1387 1389 | DORCAS,0.005,84.288,1388 1390 | ARIANA,0.005,84.293,1389 1391 | TYRA,0.005,84.298,1390 1392 | THEDA,0.005,84.302,1391 1393 | MARIAM,0.005,84.307,1392 1394 | JULI,0.005,84.312,1393 1395 | JESICA,0.005,84.317,1394 1396 | DONNIE,0.005,84.321,1395 1397 | VIKKI,0.005,84.326,1396 1398 | VERLA,0.005,84.331,1397 1399 | ROSELYN,0.005,84.336,1398 1400 | MELVINA,0.005,84.340,1399 1401 | JANNETTE,0.005,84.345,1400 1402 | GINNY,0.005,84.350,1401 1403 | DEBRAH,0.005,84.355,1402 1404 | CORRIE,0.005,84.359,1403 1405 | ASIA,0.005,84.364,1404 1406 | VIOLETA,0.005,84.369,1405 1407 | MYRTIS,0.005,84.374,1406 1408 | LATRICIA,0.005,84.378,1407 1409 | COLLETTE,0.005,84.383,1408 1410 | CHARLEEN,0.005,84.388,1409 1411 | ANISSA,0.005,84.392,1410 1412 | VIVIANA,0.005,84.397,1411 1413 | TWYLA,0.005,84.402,1412 1414 | PRECIOUS,0.005,84.406,1413 1415 | NEDRA,0.005,84.411,1414 1416 | LATONIA,0.005,84.416,1415 1417 | LAN,0.005,84.420,1416 1418 | HELLEN,0.005,84.425,1417 1419 | FABIOLA,0.005,84.430,1418 1420 | ANNAMARIE,0.005,84.435,1419 1421 | ADELL,0.005,84.439,1420 1422 | SHARYN,0.005,84.444,1421 1423 | CHANTAL,0.005,84.448,1422 1424 | NIKI,0.005,84.453,1423 1425 | MAUD,0.005,84.458,1424 1426 | LIZETTE,0.005,84.462,1425 1427 | LINDY,0.005,84.467,1426 1428 | KIA,0.005,84.472,1427 1429 | KESHA,0.005,84.476,1428 1430 | JEANA,0.005,84.481,1429 1431 | DANELLE,0.005,84.485,1430 1432 | CHARLINE,0.005,84.490,1431 1433 | CHANEL,0.005,84.495,1432 1434 | CARROL,0.005,84.499,1433 1435 | VALORIE,0.005,84.504,1434 1436 | LIA,0.005,84.508,1435 1437 | DORTHA,0.005,84.513,1436 1438 | CRISTAL,0.005,84.518,1437 1439 | SUNNY,0.005,84.522,1438 1440 | LEONE,0.005,84.527,1439 1441 | LEILANI,0.005,84.531,1440 1442 | GERRI,0.005,84.536,1441 1443 | DEBI,0.005,84.540,1442 1444 | ANDRA,0.005,84.545,1443 1445 | KESHIA,0.005,84.549,1444 1446 | IMA,0.005,84.554,1445 1447 | EULALIA,0.005,84.558,1446 1448 | EASTER,0.005,84.563,1447 1449 | DULCE,0.005,84.568,1448 1450 | NATIVIDAD,0.004,84.572,1449 1451 | LINNIE,0.004,84.577,1450 1452 | KAMI,0.004,84.581,1451 1453 | GEORGIE,0.004,84.586,1452 1454 | CATINA,0.004,84.590,1453 1455 | BROOK,0.004,84.594,1454 1456 | ALDA,0.004,84.599,1455 1457 | WINNIFRED,0.004,84.603,1456 1458 | SHARLA,0.004,84.608,1457 1459 | RUTHANN,0.004,84.612,1458 1460 | MEAGHAN,0.004,84.617,1459 1461 | MAGDALENE,0.004,84.621,1460 1462 | LISSETTE,0.004,84.626,1461 1463 | ADELAIDA,0.004,84.630,1462 1464 | VENITA,0.004,84.635,1463 1465 | TRENA,0.004,84.639,1464 1466 | SHIRLENE,0.004,84.643,1465 1467 | SHAMEKA,0.004,84.648,1466 1468 | ELIZEBETH,0.004,84.652,1467 1469 | DIAN,0.004,84.657,1468 1470 | SHANTA,0.004,84.661,1469 1471 | MICKEY,0.004,84.666,1470 1472 | LATOSHA,0.004,84.670,1471 1473 | CARLOTTA,0.004,84.674,1472 1474 | WINDY,0.004,84.679,1473 1475 | SOON,0.004,84.683,1474 1476 | ROSINA,0.004,84.687,1475 1477 | MARIANN,0.004,84.692,1476 1478 | LEISA,0.004,84.696,1477 1479 | JONNIE,0.004,84.701,1478 1480 | DAWNA,0.004,84.705,1479 1481 | CATHIE,0.004,84.709,1480 1482 | BILLY,0.004,84.714,1481 1483 | ASTRID,0.004,84.718,1482 1484 | SIDNEY,0.004,84.722,1483 1485 | LAUREEN,0.004,84.726,1484 1486 | JANEEN,0.004,84.731,1485 1487 | HOLLI,0.004,84.735,1486 1488 | FAWN,0.004,84.739,1487 1489 | VICKEY,0.004,84.744,1488 1490 | TERESSA,0.004,84.748,1489 1491 | SHANTE,0.004,84.752,1490 1492 | RUBYE,0.004,84.756,1491 1493 | MARCELINA,0.004,84.761,1492 1494 | CHANDA,0.004,84.765,1493 1495 | CARY,0.004,84.769,1494 1496 | TERESE,0.004,84.774,1495 1497 | SCARLETT,0.004,84.778,1496 1498 | MARTY,0.004,84.782,1497 1499 | MARNIE,0.004,84.786,1498 1500 | LULU,0.004,84.790,1499 1501 | LISETTE,0.004,84.795,1500 1502 | JENIFFER,0.004,84.799,1501 1503 | ELENOR,0.004,84.803,1502 1504 | DORINDA,0.004,84.807,1503 1505 | DONITA,0.004,84.812,1504 1506 | CARMAN,0.004,84.816,1505 1507 | BERNITA,0.004,84.820,1506 1508 | ALTAGRACIA,0.004,84.824,1507 1509 | ALETA,0.004,84.829,1508 1510 | ADRIANNA,0.004,84.833,1509 1511 | ZORAIDA,0.004,84.837,1510 1512 | RONNIE,0.004,84.841,1511 1513 | NICOLA,0.004,84.845,1512 1514 | LYNDSEY,0.004,84.850,1513 1515 | KENDALL,0.004,84.854,1514 1516 | JANINA,0.004,84.858,1515 1517 | CHRISSY,0.004,84.862,1516 1518 | AMI,0.004,84.867,1517 1519 | STARLA,0.004,84.871,1518 1520 | PHYLIS,0.004,84.875,1519 1521 | PHUONG,0.004,84.879,1520 1522 | KYRA,0.004,84.883,1521 1523 | CHARISSE,0.004,84.887,1522 1524 | BLANCH,0.004,84.892,1523 1525 | SANJUANITA,0.004,84.896,1524 1526 | RONA,0.004,84.900,1525 1527 | NANCI,0.004,84.904,1526 1528 | MARILEE,0.004,84.908,1527 1529 | MARANDA,0.004,84.912,1528 1530 | CORY,0.004,84.916,1529 1531 | BRIGETTE,0.004,84.921,1530 1532 | SANJUANA,0.004,84.925,1531 1533 | MARITA,0.004,84.929,1532 1534 | KASSANDRA,0.004,84.933,1533 1535 | JOYCELYN,0.004,84.937,1534 1536 | IRA,0.004,84.941,1535 1537 | FELIPA,0.004,84.945,1536 1538 | CHELSIE,0.004,84.949,1537 1539 | BONNY,0.004,84.954,1538 1540 | MIREYA,0.004,84.958,1539 1541 | LORENZA,0.004,84.962,1540 1542 | KYONG,0.004,84.966,1541 1543 | ILEANA,0.004,84.970,1542 1544 | CANDELARIA,0.004,84.974,1543 1545 | TONY,0.004,84.978,1544 1546 | TOBY,0.004,84.982,1545 1547 | SHERIE,0.004,84.986,1546 1548 | OK,0.004,84.990,1547 1549 | MARK,0.004,84.994,1548 1550 | LUCIE,0.004,84.998,1549 1551 | LEATRICE,0.004,85.002,1550 1552 | LAKESHIA,0.004,85.006,1551 1553 | GERDA,0.004,85.010,1552 1554 | EDIE,0.004,85.014,1553 1555 | BAMBI,0.004,85.018,1554 1556 | MARYLIN,0.004,85.023,1555 1557 | LAVON,0.004,85.027,1556 1558 | HORTENSE,0.004,85.031,1557 1559 | GARNET,0.004,85.035,1558 1560 | EVIE,0.004,85.039,1559 1561 | TRESSA,0.004,85.043,1560 1562 | SHAYNA,0.004,85.047,1561 1563 | LAVINA,0.004,85.051,1562 1564 | KYUNG,0.004,85.055,1563 1565 | JEANETTA,0.004,85.059,1564 1566 | SHERRILL,0.004,85.062,1565 1567 | SHARA,0.004,85.066,1566 1568 | PHYLISS,0.004,85.070,1567 1569 | MITTIE,0.004,85.074,1568 1570 | ANABEL,0.004,85.078,1569 1571 | ALESIA,0.004,85.082,1570 1572 | THUY,0.004,85.086,1571 1573 | TAWANDA,0.004,85.090,1572 1574 | RICHARD,0.004,85.094,1573 1575 | JOANIE,0.004,85.098,1574 1576 | TIFFANIE,0.004,85.102,1575 1577 | LASHANDA,0.004,85.106,1576 1578 | KARISSA,0.004,85.110,1577 1579 | ENRIQUETA,0.004,85.114,1578 1580 | DARIA,0.004,85.117,1579 1581 | DANIELLA,0.004,85.121,1580 1582 | CORINNA,0.004,85.125,1581 1583 | ALANNA,0.004,85.129,1582 1584 | ABBEY,0.004,85.133,1583 1585 | ROXANE,0.004,85.137,1584 1586 | ROSEANNA,0.004,85.141,1585 1587 | MAGNOLIA,0.004,85.145,1586 1588 | LIDA,0.004,85.148,1587 1589 | KYLE,0.004,85.152,1588 1590 | JOELLEN,0.004,85.156,1589 1591 | ERA,0.004,85.160,1590 1592 | CORAL,0.004,85.164,1591 1593 | CARLEEN,0.004,85.168,1592 1594 | TRESA,0.004,85.172,1593 1595 | PEGGIE,0.004,85.175,1594 1596 | NOVELLA,0.004,85.179,1595 1597 | NILA,0.004,85.183,1596 1598 | MAYBELLE,0.004,85.187,1597 1599 | JENELLE,0.004,85.191,1598 1600 | CARINA,0.004,85.195,1599 1601 | NOVA,0.004,85.198,1600 1602 | MELINA,0.004,85.202,1601 1603 | MARQUERITE,0.004,85.206,1602 1604 | MARGARETTE,0.004,85.210,1603 1605 | JOSEPHINA,0.004,85.214,1604 1606 | EVONNE,0.004,85.217,1605 1607 | DEVIN,0.004,85.221,1606 1608 | CINTHIA,0.004,85.225,1607 1609 | ALBINA,0.004,85.229,1608 1610 | TOYA,0.004,85.233,1609 1611 | TAWNYA,0.004,85.236,1610 1612 | SHERITA,0.004,85.240,1611 1613 | SANTOS,0.004,85.244,1612 1614 | MYRIAM,0.004,85.248,1613 1615 | LIZABETH,0.004,85.251,1614 1616 | LISE,0.004,85.255,1615 1617 | KEELY,0.004,85.259,1616 1618 | JENNI,0.004,85.263,1617 1619 | GISELLE,0.004,85.266,1618 1620 | CHERYLE,0.004,85.270,1619 1621 | ARDITH,0.004,85.274,1620 1622 | ARDIS,0.004,85.278,1621 1623 | ALESHA,0.004,85.282,1622 1624 | ADRIANE,0.004,85.285,1623 1625 | SHAINA,0.004,85.289,1624 1626 | LINNEA,0.004,85.293,1625 1627 | KAROLYN,0.004,85.297,1626 1628 | HONG,0.004,85.300,1627 1629 | FLORIDA,0.004,85.304,1628 1630 | FELISHA,0.004,85.308,1629 1631 | DORI,0.004,85.311,1630 1632 | DARCI,0.004,85.315,1631 1633 | ARTIE,0.004,85.319,1632 1634 | ARMIDA,0.004,85.323,1633 1635 | ZOLA,0.004,85.326,1634 1636 | XIOMARA,0.004,85.330,1635 1637 | VERGIE,0.004,85.334,1636 1638 | SHAMIKA,0.004,85.338,1637 1639 | NENA,0.004,85.341,1638 1640 | NANNETTE,0.004,85.345,1639 1641 | MAXIE,0.004,85.349,1640 1642 | LOVIE,0.004,85.352,1641 1643 | JEANE,0.004,85.356,1642 1644 | JAIMIE,0.004,85.360,1643 1645 | INGE,0.004,85.363,1644 1646 | FARRAH,0.004,85.367,1645 1647 | ELAINA,0.004,85.371,1646 1648 | CAITLYN,0.004,85.375,1647 1649 | STARR,0.004,85.378,1648 1650 | FELICITAS,0.004,85.382,1649 1651 | CHERLY,0.004,85.386,1650 1652 | CARYL,0.004,85.389,1651 1653 | YOLONDA,0.004,85.393,1652 1654 | YASMIN,0.004,85.397,1653 1655 | TEENA,0.004,85.400,1654 1656 | PRUDENCE,0.004,85.404,1655 1657 | PENNIE,0.004,85.407,1656 1658 | NYDIA,0.004,85.411,1657 1659 | MACKENZIE,0.004,85.415,1658 1660 | ORPHA,0.004,85.418,1659 1661 | MARVEL,0.004,85.422,1660 1662 | LIZBETH,0.004,85.426,1661 1663 | LAURETTE,0.004,85.429,1662 1664 | JERRIE,0.004,85.433,1663 1665 | HERMELINDA,0.004,85.436,1664 1666 | CAROLEE,0.004,85.440,1665 1667 | TIERRA,0.004,85.444,1666 1668 | MIRIAN,0.004,85.447,1667 1669 | META,0.004,85.451,1668 1670 | MELONY,0.004,85.454,1669 1671 | KORI,0.004,85.458,1670 1672 | JENNETTE,0.004,85.462,1671 1673 | JAMILA,0.004,85.465,1672 1674 | ENA,0.004,85.469,1673 1675 | ANH,0.004,85.472,1674 1676 | YOSHIKO,0.004,85.476,1675 1677 | SUSANNAH,0.004,85.479,1676 1678 | SALINA,0.004,85.483,1677 1679 | RHIANNON,0.004,85.486,1678 1680 | JOLEEN,0.004,85.490,1679 1681 | CRISTINE,0.004,85.494,1680 1682 | ASHTON,0.004,85.497,1681 1683 | ARACELY,0.004,85.501,1682 1684 | TOMEKA,0.004,85.504,1683 1685 | SHALONDA,0.004,85.508,1684 1686 | MARTI,0.004,85.511,1685 1687 | LACIE,0.004,85.515,1686 1688 | KALA,0.004,85.518,1687 1689 | JADA,0.004,85.522,1688 1690 | ILSE,0.004,85.525,1689 1691 | HAILEY,0.004,85.529,1690 1692 | BRITTANI,0.004,85.532,1691 1693 | ZONA,0.003,85.536,1692 1694 | SYBLE,0.003,85.539,1693 1695 | SHERRYL,0.003,85.543,1694 1696 | RANDY,0.003,85.546,1695 1697 | NIDIA,0.003,85.550,1696 1698 | MARLO,0.003,85.553,1697 1699 | KANDICE,0.003,85.557,1698 1700 | KANDI,0.003,85.560,1699 1701 | DEB,0.003,85.564,1700 1702 | DEAN,0.003,85.567,1701 1703 | AMERICA,0.003,85.571,1702 1704 | ALYCIA,0.003,85.574,1703 1705 | TOMMY,0.003,85.578,1704 1706 | RONNA,0.003,85.581,1705 1707 | NORENE,0.003,85.585,1706 1708 | MERCY,0.003,85.588,1707 1709 | JOSE,0.003,85.591,1708 1710 | INGEBORG,0.003,85.595,1709 1711 | GIOVANNA,0.003,85.598,1710 1712 | GEMMA,0.003,85.602,1711 1713 | CHRISTEL,0.003,85.605,1712 1714 | AUDRY,0.003,85.609,1713 1715 | ZORA,0.003,85.612,1714 1716 | VITA,0.003,85.616,1715 1717 | VAN,0.003,85.619,1716 1718 | TRISH,0.003,85.622,1717 1719 | STEPHAINE,0.003,85.626,1718 1720 | SHIRLEE,0.003,85.629,1719 1721 | SHANIKA,0.003,85.633,1720 1722 | MELONIE,0.003,85.636,1721 1723 | MAZIE,0.003,85.639,1722 1724 | JAZMIN,0.003,85.643,1723 1725 | INGA,0.003,85.646,1724 1726 | HOA,0.003,85.650,1725 1727 | HETTIE,0.003,85.653,1726 1728 | GERALYN,0.003,85.657,1727 1729 | FONDA,0.003,85.660,1728 1730 | ESTRELLA,0.003,85.663,1729 1731 | ADELLA,0.003,85.667,1730 1732 | SU,0.003,85.670,1731 1733 | SARITA,0.003,85.674,1732 1734 | RINA,0.003,85.677,1733 1735 | MILISSA,0.003,85.680,1734 1736 | MARIBETH,0.003,85.684,1735 1737 | GOLDA,0.003,85.687,1736 1738 | EVON,0.003,85.691,1737 1739 | ETHELYN,0.003,85.694,1738 1740 | ENEDINA,0.003,85.697,1739 1741 | CHERISE,0.003,85.701,1740 1742 | CHANA,0.003,85.704,1741 1743 | VELVA,0.003,85.708,1742 1744 | TAWANNA,0.003,85.711,1743 1745 | SADE,0.003,85.714,1744 1746 | MIRTA,0.003,85.718,1745 1747 | LI,0.003,85.721,1746 1748 | KARIE,0.003,85.724,1747 1749 | JACINTA,0.003,85.728,1748 1750 | ELNA,0.003,85.731,1749 1751 | DAVINA,0.003,85.734,1750 1752 | CIERRA,0.003,85.738,1751 1753 | ASHLIE,0.003,85.741,1752 1754 | ALBERTHA,0.003,85.744,1753 1755 | TANESHA,0.003,85.748,1754 1756 | STEPHANI,0.003,85.751,1755 1757 | NELLE,0.003,85.754,1756 1758 | MINDI,0.003,85.758,1757 1759 | LU,0.003,85.761,1758 1760 | LORINDA,0.003,85.764,1759 1761 | LARUE,0.003,85.768,1760 1762 | FLORENE,0.003,85.771,1761 1763 | DEMETRA,0.003,85.774,1762 1764 | DEDRA,0.003,85.778,1763 1765 | CIARA,0.003,85.781,1764 1766 | CHANTELLE,0.003,85.784,1765 1767 | ASHLY,0.003,85.788,1766 1768 | SUZY,0.003,85.791,1767 1769 | ROSALVA,0.003,85.794,1768 1770 | NOELIA,0.003,85.798,1769 1771 | LYDA,0.003,85.801,1770 1772 | LEATHA,0.003,85.804,1771 1773 | KRYSTYNA,0.003,85.808,1772 1774 | KRISTAN,0.003,85.811,1773 1775 | KARRI,0.003,85.814,1774 1776 | DARLINE,0.003,85.817,1775 1777 | DARCIE,0.003,85.821,1776 1778 | CINDA,0.003,85.824,1777 1779 | CHEYENNE,0.003,85.827,1778 1780 | CHERRIE,0.003,85.831,1779 1781 | AWILDA,0.003,85.834,1780 1782 | ALMEDA,0.003,85.837,1781 1783 | ROLANDA,0.003,85.840,1782 1784 | LANETTE,0.003,85.844,1783 1785 | JERILYN,0.003,85.847,1784 1786 | GISELE,0.003,85.850,1785 1787 | EVALYN,0.003,85.854,1786 1788 | CYNDI,0.003,85.857,1787 1789 | CLETA,0.003,85.860,1788 1790 | CARIN,0.003,85.863,1789 1791 | ZINA,0.003,85.867,1790 1792 | ZENA,0.003,85.870,1791 1793 | VELIA,0.003,85.873,1792 1794 | TANIKA,0.003,85.876,1793 1795 | PAUL,0.003,85.880,1794 1796 | CHARISSA,0.003,85.883,1795 1797 | THOMAS,0.003,85.886,1796 1798 | TALIA,0.003,85.889,1797 1799 | MARGARETE,0.003,85.892,1798 1800 | LAVONDA,0.003,85.896,1799 1801 | KAYLEE,0.003,85.899,1800 1802 | KATHLENE,0.003,85.902,1801 1803 | JONNA,0.003,85.905,1802 1804 | IRENA,0.003,85.908,1803 1805 | ILONA,0.003,85.912,1804 1806 | IDALIA,0.003,85.915,1805 1807 | CANDIS,0.003,85.918,1806 1808 | CANDANCE,0.003,85.921,1807 1809 | BRANDEE,0.003,85.924,1808 1810 | ANITRA,0.003,85.928,1809 1811 | ALIDA,0.003,85.931,1810 1812 | SIGRID,0.003,85.934,1811 1813 | NICOLETTE,0.003,85.937,1812 1814 | MARYJO,0.003,85.940,1813 1815 | LINETTE,0.003,85.944,1814 1816 | HEDWIG,0.003,85.947,1815 1817 | CHRISTIANA,0.003,85.950,1816 1818 | CASSIDY,0.003,85.953,1817 1819 | ALEXIA,0.003,85.956,1818 1820 | TRESSIE,0.003,85.959,1819 1821 | MODESTA,0.003,85.962,1820 1822 | LUPITA,0.003,85.966,1821 1823 | LITA,0.003,85.969,1822 1824 | GLADIS,0.003,85.972,1823 1825 | EVELIA,0.003,85.975,1824 1826 | DAVIDA,0.003,85.978,1825 1827 | CHERRI,0.003,85.981,1826 1828 | CECILY,0.003,85.984,1827 1829 | ASHELY,0.003,85.988,1828 1830 | ANNABEL,0.003,85.991,1829 1831 | AGUSTINA,0.003,85.994,1830 1832 | WANITA,0.003,85.997,1831 1833 | SHIRLY,0.003,86.000,1832 1834 | ROSAURA,0.003,86.003,1833 1835 | HULDA,0.003,86.006,1834 1836 | EUN,0.003,86.009,1835 1837 | BAILEY,0.003,86.013,1836 1838 | YETTA,0.003,86.016,1837 1839 | VERONA,0.003,86.019,1838 1840 | THOMASINA,0.003,86.022,1839 1841 | SIBYL,0.003,86.025,1840 1842 | SHANNAN,0.003,86.028,1841 1843 | MECHELLE,0.003,86.031,1842 1844 | LUE,0.003,86.034,1843 1845 | LEANDRA,0.003,86.037,1844 1846 | LANI,0.003,86.040,1845 1847 | KYLEE,0.003,86.043,1846 1848 | KANDY,0.003,86.046,1847 1849 | JOLYNN,0.003,86.049,1848 1850 | FERNE,0.003,86.053,1849 1851 | EBONI,0.003,86.056,1850 1852 | CORENE,0.003,86.059,1851 1853 | ALYSIA,0.003,86.062,1852 1854 | ZULA,0.003,86.065,1853 1855 | NADA,0.003,86.068,1854 1856 | MOIRA,0.003,86.071,1855 1857 | LYNDSAY,0.003,86.074,1856 1858 | LORRETTA,0.003,86.077,1857 1859 | JUAN,0.003,86.080,1858 1860 | JAMMIE,0.003,86.083,1859 1861 | HORTENSIA,0.003,86.086,1860 1862 | GAYNELL,0.003,86.089,1861 1863 | CAMERON,0.003,86.092,1862 1864 | ADRIA,0.003,86.095,1863 1865 | VINA,0.003,86.098,1864 1866 | VICENTA,0.003,86.101,1865 1867 | TANGELA,0.003,86.104,1866 1868 | STEPHINE,0.003,86.107,1867 1869 | NORINE,0.003,86.110,1868 1870 | NELLA,0.003,86.113,1869 1871 | LIANA,0.003,86.116,1870 1872 | LESLEE,0.003,86.119,1871 1873 | KIMBERELY,0.003,86.122,1872 1874 | ILIANA,0.003,86.125,1873 1875 | GLORY,0.003,86.128,1874 1876 | FELICA,0.003,86.131,1875 1877 | EMOGENE,0.003,86.134,1876 1878 | ELFRIEDE,0.003,86.137,1877 1879 | EDEN,0.003,86.140,1878 1880 | EARTHA,0.003,86.144,1879 1881 | CARMA,0.003,86.147,1880 1882 | BEA,0.003,86.150,1881 1883 | OCIE,0.003,86.153,1882 1884 | MARRY,0.003,86.156,1883 1885 | LENNIE,0.003,86.158,1884 1886 | KIARA,0.003,86.161,1885 1887 | JACALYN,0.003,86.164,1886 1888 | CARLOTA,0.003,86.167,1887 1889 | ARIELLE,0.003,86.170,1888 1890 | YU,0.003,86.173,1889 1891 | STAR,0.003,86.176,1890 1892 | OTILIA,0.003,86.179,1891 1893 | KIRSTIN,0.003,86.182,1892 1894 | KACEY,0.003,86.185,1893 1895 | JOHNETTA,0.003,86.188,1894 1896 | JOEY,0.003,86.191,1895 1897 | JOETTA,0.003,86.194,1896 1898 | JERALDINE,0.003,86.197,1897 1899 | JAUNITA,0.003,86.200,1898 1900 | ELANA,0.003,86.203,1899 1901 | DORTHEA,0.003,86.206,1900 1902 | CAMI,0.003,86.209,1901 1903 | AMADA,0.003,86.212,1902 1904 | ADELIA,0.003,86.215,1903 1905 | VERNITA,0.003,86.218,1904 1906 | TAMAR,0.003,86.221,1905 1907 | SIOBHAN,0.003,86.223,1906 1908 | RENEA,0.003,86.226,1907 1909 | RASHIDA,0.003,86.229,1908 1910 | OUIDA,0.003,86.232,1909 1911 | ODELL,0.003,86.235,1910 1912 | NILSA,0.003,86.238,1911 1913 | MERYL,0.003,86.241,1912 1914 | KRISTYN,0.003,86.244,1913 1915 | JULIETA,0.003,86.247,1914 1916 | DANICA,0.003,86.250,1915 1917 | BREANNE,0.003,86.253,1916 1918 | AUREA,0.003,86.256,1917 1919 | ANGLEA,0.003,86.259,1918 1920 | SHERRON,0.003,86.261,1919 1921 | ODETTE,0.003,86.264,1920 1922 | MALIA,0.003,86.267,1921 1923 | LORELEI,0.003,86.270,1922 1924 | LIN,0.003,86.273,1923 1925 | LEESA,0.003,86.276,1924 1926 | KENNA,0.003,86.279,1925 1927 | KATHLYN,0.003,86.282,1926 1928 | FIONA,0.003,86.285,1927 1929 | CHARLETTE,0.003,86.287,1928 1930 | SUZIE,0.003,86.290,1929 1931 | SHANTELL,0.003,86.293,1930 1932 | SABRA,0.003,86.296,1931 1933 | RACQUEL,0.003,86.299,1932 1934 | MYONG,0.003,86.302,1933 1935 | MIRA,0.003,86.305,1934 1936 | MARTINE,0.003,86.307,1935 1937 | LUCIENNE,0.003,86.310,1936 1938 | LAVADA,0.003,86.313,1937 1939 | JULIANN,0.003,86.316,1938 1940 | JOHNIE,0.003,86.319,1939 1941 | ELVERA,0.003,86.322,1940 1942 | DELPHIA,0.003,86.325,1941 1943 | CLAIR,0.003,86.327,1942 1944 | CHRISTIANE,0.003,86.330,1943 1945 | CHAROLETTE,0.003,86.333,1944 1946 | CARRI,0.003,86.336,1945 1947 | AUGUSTINE,0.003,86.339,1946 1948 | ASHA,0.003,86.342,1947 1949 | ANGELLA,0.003,86.345,1948 1950 | PAOLA,0.003,86.347,1949 1951 | NINFA,0.003,86.350,1950 1952 | LEDA,0.003,86.353,1951 1953 | LAI,0.003,86.356,1952 1954 | EDA,0.003,86.359,1953 1955 | SUNSHINE,0.003,86.361,1954 1956 | STEFANI,0.003,86.364,1955 1957 | SHANELL,0.003,86.367,1956 1958 | PALMA,0.003,86.370,1957 1959 | MACHELLE,0.003,86.373,1958 1960 | LISSA,0.003,86.375,1959 1961 | KECIA,0.003,86.378,1960 1962 | KATHRYNE,0.003,86.381,1961 1963 | KARLENE,0.003,86.384,1962 1964 | JULISSA,0.003,86.387,1963 1965 | JETTIE,0.003,86.389,1964 1966 | JENNIFFER,0.003,86.392,1965 1967 | HUI,0.003,86.395,1966 1968 | CORRINA,0.003,86.398,1967 1969 | CHRISTOPHER,0.003,86.401,1968 1970 | CAROLANN,0.003,86.403,1969 1971 | ALENA,0.003,86.406,1970 1972 | TESS,0.003,86.409,1971 1973 | ROSARIA,0.003,86.412,1972 1974 | MYRTICE,0.003,86.414,1973 1975 | MARYLEE,0.003,86.417,1974 1976 | LIANE,0.003,86.420,1975 1977 | KENYATTA,0.003,86.423,1976 1978 | JUDIE,0.003,86.426,1977 1979 | JANEY,0.003,86.428,1978 1980 | IN,0.003,86.431,1979 1981 | ELMIRA,0.003,86.434,1980 1982 | ELDORA,0.003,86.437,1981 1983 | DENNA,0.003,86.439,1982 1984 | CRISTI,0.003,86.442,1983 1985 | CATHI,0.003,86.445,1984 1986 | ZAIDA,0.003,86.448,1985 1987 | VONNIE,0.003,86.450,1986 1988 | VIVA,0.003,86.453,1987 1989 | VERNIE,0.003,86.456,1988 1990 | ROSALINE,0.003,86.459,1989 1991 | MARIELA,0.003,86.461,1990 1992 | LUCIANA,0.003,86.464,1991 1993 | LESLI,0.003,86.467,1992 1994 | KARAN,0.003,86.469,1993 1995 | FELICE,0.003,86.472,1994 1996 | DENEEN,0.003,86.475,1995 1997 | ADINA,0.003,86.478,1996 1998 | WYNONA,0.003,86.480,1997 1999 | TARSHA,0.003,86.483,1998 2000 | SHERON,0.003,86.486,1999 2001 | SHASTA,0.003,86.488,2000 2002 | SHANITA,0.003,86.491,2001 2003 | SHANI,0.003,86.494,2002 2004 | SHANDRA,0.003,86.497,2003 2005 | RANDA,0.003,86.499,2004 2006 | PINKIE,0.003,86.502,2005 2007 | PARIS,0.003,86.505,2006 2008 | NELIDA,0.003,86.507,2007 2009 | MARILOU,0.003,86.510,2008 2010 | LYLA,0.003,86.513,2009 2011 | LAURENE,0.003,86.515,2010 2012 | LACI,0.003,86.518,2011 2013 | JOI,0.003,86.521,2012 2014 | JANENE,0.003,86.524,2013 2015 | DOROTHA,0.003,86.526,2014 2016 | DANIELE,0.003,86.529,2015 2017 | DANI,0.003,86.532,2016 2018 | CAROLYNN,0.003,86.534,2017 2019 | CARLYN,0.003,86.537,2018 2020 | BERENICE,0.003,86.540,2019 2021 | AYESHA,0.003,86.542,2020 2022 | ANNELIESE,0.003,86.545,2021 2023 | ALETHEA,0.003,86.548,2022 2024 | THERSA,0.003,86.551,2023 2025 | TAMIKO,0.003,86.553,2024 2026 | RUFINA,0.003,86.556,2025 2027 | OLIVA,0.003,86.559,2026 2028 | MOZELL,0.003,86.561,2027 2029 | MARYLYN,0.003,86.564,2028 2030 | MADISON,0.003,86.567,2029 2031 | KRISTIAN,0.003,86.569,2030 2032 | KATHYRN,0.003,86.572,2031 2033 | KASANDRA,0.003,86.575,2032 2034 | KANDACE,0.003,86.577,2033 2035 | JANAE,0.003,86.580,2034 2036 | GABRIEL,0.003,86.583,2035 2037 | DOMENICA,0.003,86.585,2036 2038 | DEBBRA,0.003,86.588,2037 2039 | DANNIELLE,0.003,86.591,2038 2040 | CHUN,0.003,86.593,2039 2041 | BUFFY,0.003,86.596,2040 2042 | BARBIE,0.003,86.599,2041 2043 | ARCELIA,0.003,86.601,2042 2044 | AJA,0.003,86.604,2043 2045 | ZENOBIA,0.003,86.607,2044 2046 | SHAREN,0.003,86.609,2045 2047 | SHAREE,0.003,86.612,2046 2048 | PATRICK,0.003,86.614,2047 2049 | PAGE,0.003,86.617,2048 2050 | MY,0.003,86.620,2049 2051 | LAVINIA,0.003,86.622,2050 2052 | KUM,0.003,86.625,2051 2053 | KACIE,0.003,86.628,2052 2054 | JACKELINE,0.003,86.630,2053 2055 | HUONG,0.003,86.633,2054 2056 | FELISA,0.003,86.636,2055 2057 | EMELIA,0.003,86.638,2056 2058 | ELEANORA,0.003,86.641,2057 2059 | CYTHIA,0.003,86.644,2058 2060 | CRISTIN,0.003,86.646,2059 2061 | CLYDE,0.003,86.649,2060 2062 | CLARIBEL,0.003,86.651,2061 2063 | CARON,0.003,86.654,2062 2064 | ANASTACIA,0.003,86.657,2063 2065 | ZULMA,0.003,86.659,2064 2066 | ZANDRA,0.003,86.662,2065 2067 | YOKO,0.003,86.665,2066 2068 | TENISHA,0.003,86.667,2067 2069 | SUSANN,0.003,86.670,2068 2070 | SHERILYN,0.003,86.672,2069 2071 | SHAY,0.003,86.675,2070 2072 | SHAWANDA,0.003,86.678,2071 2073 | SABINE,0.003,86.680,2072 2074 | ROMANA,0.003,86.683,2073 2075 | MATHILDA,0.003,86.685,2074 2076 | LINSEY,0.003,86.688,2075 2077 | KEIKO,0.003,86.691,2076 2078 | JOANA,0.003,86.693,2077 2079 | ISELA,0.003,86.696,2078 2080 | GRETTA,0.003,86.698,2079 2081 | GEORGETTA,0.003,86.701,2080 2082 | EUGENIE,0.003,86.704,2081 2083 | DUSTY,0.003,86.706,2082 2084 | DESIRAE,0.003,86.709,2083 2085 | DELORA,0.003,86.711,2084 2086 | CORAZON,0.003,86.714,2085 2087 | ANTONINA,0.003,86.717,2086 2088 | ANIKA,0.003,86.719,2087 2089 | WILLENE,0.003,86.722,2088 2090 | TRACEE,0.003,86.724,2089 2091 | TAMATHA,0.003,86.727,2090 2092 | REGAN,0.003,86.730,2091 2093 | NICHELLE,0.003,86.732,2092 2094 | MICKIE,0.003,86.735,2093 2095 | MAEGAN,0.003,86.737,2094 2096 | LUANA,0.003,86.740,2095 2097 | LANITA,0.003,86.742,2096 2098 | KELSIE,0.003,86.745,2097 2099 | EDELMIRA,0.003,86.748,2098 2100 | BREE,0.003,86.750,2099 2101 | AFTON,0.003,86.753,2100 2102 | TEODORA,0.003,86.755,2101 2103 | TAMIE,0.003,86.758,2102 2104 | SHENA,0.003,86.760,2103 2105 | MEG,0.003,86.763,2104 2106 | LINH,0.003,86.765,2105 2107 | KELI,0.003,86.768,2106 2108 | KACI,0.003,86.771,2107 2109 | DANYELLE,0.003,86.773,2108 2110 | BRITT,0.003,86.776,2109 2111 | ARLETTE,0.003,86.778,2110 2112 | ALBERTINE,0.003,86.781,2111 2113 | ADELLE,0.003,86.783,2112 2114 | TIFFINY,0.003,86.786,2113 2115 | STORMY,0.003,86.788,2114 2116 | SIMONA,0.003,86.791,2115 2117 | NUMBERS,0.003,86.793,2116 2118 | NICOLASA,0.003,86.796,2117 2119 | NICHOL,0.003,86.798,2118 2120 | NIA,0.003,86.801,2119 2121 | NAKISHA,0.003,86.803,2120 2122 | MEE,0.003,86.806,2121 2123 | MAIRA,0.003,86.808,2122 2124 | LOREEN,0.003,86.811,2123 2125 | KIZZY,0.003,86.813,2124 2126 | JOHNNY,0.003,86.816,2125 2127 | JAY,0.003,86.818,2126 2128 | FALLON,0.003,86.821,2127 2129 | CHRISTENE,0.003,86.823,2128 2130 | BOBBYE,0.003,86.826,2129 2131 | ANTHONY,0.003,86.828,2130 2132 | YING,0.002,86.831,2131 2133 | VINCENZA,0.002,86.833,2132 2134 | TANJA,0.002,86.836,2133 2135 | RUBIE,0.002,86.838,2134 2136 | RONI,0.002,86.841,2135 2137 | QUEENIE,0.002,86.843,2136 2138 | MARGARETT,0.002,86.846,2137 2139 | KIMBERLI,0.002,86.848,2138 2140 | IRMGARD,0.002,86.851,2139 2141 | IDELL,0.002,86.853,2140 2142 | HILMA,0.002,86.856,2141 2143 | EVELINA,0.002,86.858,2142 2144 | ESTA,0.002,86.861,2143 2145 | EMILEE,0.002,86.863,2144 2146 | DENNISE,0.002,86.866,2145 2147 | DANIA,0.002,86.868,2146 2148 | CARL,0.002,86.871,2147 2149 | CARIE,0.002,86.873,2148 2150 | ANTONIO,0.002,86.876,2149 2151 | WAI,0.002,86.878,2150 2152 | SANG,0.002,86.881,2151 2153 | RISA,0.002,86.883,2152 2154 | RIKKI,0.002,86.885,2153 2155 | PARTICIA,0.002,86.888,2154 2156 | MUI,0.002,86.890,2155 2157 | MASAKO,0.002,86.893,2156 2158 | MARIO,0.002,86.895,2157 2159 | LUVENIA,0.002,86.898,2158 2160 | LOREE,0.002,86.900,2159 2161 | LONI,0.002,86.903,2160 2162 | LIEN,0.002,86.905,2161 2163 | KEVIN,0.002,86.907,2162 2164 | GIGI,0.002,86.910,2163 2165 | FLORENCIA,0.002,86.912,2164 2166 | DORIAN,0.002,86.915,2165 2167 | DENITA,0.002,86.917,2166 2168 | DALLAS,0.002,86.920,2167 2169 | CHI,0.002,86.922,2168 2170 | BILLYE,0.002,86.925,2169 2171 | ALEXANDER,0.002,86.927,2170 2172 | TOMIKA,0.002,86.929,2171 2173 | SHARITA,0.002,86.932,2172 2174 | RANA,0.002,86.934,2173 2175 | NIKOLE,0.002,86.937,2174 2176 | NEOMA,0.002,86.939,2175 2177 | MARGARITE,0.002,86.942,2176 2178 | MADALYN,0.002,86.944,2177 2179 | LUCINA,0.002,86.946,2178 2180 | LAILA,0.002,86.949,2179 2181 | KALI,0.002,86.951,2180 2182 | JENETTE,0.002,86.954,2181 2183 | GABRIELE,0.002,86.956,2182 2184 | EVELYNE,0.002,86.958,2183 2185 | ELENORA,0.002,86.961,2184 2186 | CLEMENTINA,0.002,86.963,2185 2187 | ALEJANDRINA,0.002,86.966,2186 2188 | ZULEMA,0.002,86.968,2187 2189 | VIOLETTE,0.002,86.971,2188 2190 | VANNESSA,0.002,86.973,2189 2191 | THRESA,0.002,86.975,2190 2192 | RETTA,0.002,86.978,2191 2193 | PIA,0.002,86.980,2192 2194 | PATIENCE,0.002,86.982,2193 2195 | NOELLA,0.002,86.985,2194 2196 | NICKIE,0.002,86.987,2195 2197 | JONELL,0.002,86.990,2196 2198 | DELTA,0.002,86.992,2197 2199 | CHUNG,0.002,86.994,2198 2200 | CHAYA,0.002,86.997,2199 2201 | CAMELIA,0.002,86.999,2200 2202 | BETHEL,0.002,87.002,2201 2203 | ANYA,0.002,87.004,2202 2204 | ANDREW,0.002,87.006,2203 2205 | THANH,0.002,87.009,2204 2206 | SUZANN,0.002,87.011,2205 2207 | SPRING,0.002,87.013,2206 2208 | SHU,0.002,87.016,2207 2209 | MILA,0.002,87.018,2208 2210 | LILLA,0.002,87.020,2209 2211 | LAVERNA,0.002,87.023,2210 2212 | KEESHA,0.002,87.025,2211 2213 | KATTIE,0.002,87.028,2212 2214 | GIA,0.002,87.030,2213 2215 | GEORGENE,0.002,87.032,2214 2216 | EVELINE,0.002,87.035,2215 2217 | ESTELL,0.002,87.037,2216 2218 | ELIZBETH,0.002,87.039,2217 2219 | VIVIENNE,0.002,87.042,2218 2220 | VALLIE,0.002,87.044,2219 2221 | TRUDIE,0.002,87.046,2220 2222 | STEPHANE,0.002,87.049,2221 2223 | MICHEL,0.002,87.051,2222 2224 | MAGALY,0.002,87.053,2223 2225 | MADIE,0.002,87.056,2224 2226 | KENYETTA,0.002,87.058,2225 2227 | KARREN,0.002,87.060,2226 2228 | JANETTA,0.002,87.063,2227 2229 | HERMINE,0.002,87.065,2228 2230 | HARMONY,0.002,87.067,2229 2231 | DRUCILLA,0.002,87.069,2230 2232 | DEBBI,0.002,87.072,2231 2233 | CELESTINA,0.002,87.074,2232 2234 | CANDIE,0.002,87.076,2233 2235 | BRITNI,0.002,87.079,2234 2236 | BECKIE,0.002,87.081,2235 2237 | AMINA,0.002,87.083,2236 2238 | ZITA,0.002,87.086,2237 2239 | YUN,0.002,87.088,2238 2240 | YOLANDE,0.002,87.090,2239 2241 | VIVIEN,0.002,87.093,2240 2242 | VERNETTA,0.002,87.095,2241 2243 | TRUDI,0.002,87.097,2242 2244 | SOMMER,0.002,87.099,2243 2245 | PEARLE,0.002,87.102,2244 2246 | PATRINA,0.002,87.104,2245 2247 | OSSIE,0.002,87.106,2246 2248 | NICOLLE,0.002,87.109,2247 2249 | LOYCE,0.002,87.111,2248 2250 | LETTY,0.002,87.113,2249 2251 | LARISA,0.002,87.116,2250 2252 | KATHARINA,0.002,87.118,2251 2253 | JOSELYN,0.002,87.120,2252 2254 | JONELLE,0.002,87.122,2253 2255 | JENELL,0.002,87.125,2254 2256 | IESHA,0.002,87.127,2255 2257 | HEIDE,0.002,87.129,2256 2258 | FLORINDA,0.002,87.132,2257 2259 | FLORENTINA,0.002,87.134,2258 2260 | FLO,0.002,87.136,2259 2261 | ELODIA,0.002,87.138,2260 2262 | DORINE,0.002,87.141,2261 2263 | BRUNILDA,0.002,87.143,2262 2264 | BRIGID,0.002,87.145,2263 2265 | ASHLI,0.002,87.148,2264 2266 | ARDELLA,0.002,87.150,2265 2267 | TWANA,0.002,87.152,2266 2268 | THU,0.002,87.154,2267 2269 | TARAH,0.002,87.157,2268 2270 | SUNG,0.002,87.159,2269 2271 | SHEA,0.002,87.161,2270 2272 | SHAVON,0.002,87.163,2271 2273 | SHANE,0.002,87.166,2272 2274 | SERINA,0.002,87.168,2273 2275 | RAYNA,0.002,87.170,2274 2276 | RAMONITA,0.002,87.173,2275 2277 | NGA,0.002,87.175,2276 2278 | MARGURITE,0.002,87.177,2277 2279 | LUCRECIA,0.002,87.179,2278 2280 | KOURTNEY,0.002,87.182,2279 2281 | KATI,0.002,87.184,2280 2282 | JESUS,0.002,87.186,2281 2283 | JESENIA,0.002,87.188,2282 2284 | DIAMOND,0.002,87.191,2283 2285 | CRISTA,0.002,87.193,2284 2286 | AYANA,0.002,87.195,2285 2287 | ALICA,0.002,87.197,2286 2288 | ALIA,0.002,87.200,2287 2289 | VINNIE,0.002,87.202,2288 2290 | SUELLEN,0.002,87.204,2289 2291 | ROMELIA,0.002,87.206,2290 2292 | RACHELL,0.002,87.209,2291 2293 | PIPER,0.002,87.211,2292 2294 | OLYMPIA,0.002,87.213,2293 2295 | MICHIKO,0.002,87.215,2294 2296 | KATHALEEN,0.002,87.217,2295 2297 | JOLIE,0.002,87.220,2296 2298 | JESSI,0.002,87.222,2297 2299 | JANESSA,0.002,87.224,2298 2300 | HANA,0.002,87.226,2299 2301 | HA,0.002,87.229,2300 2302 | ELEASE,0.002,87.231,2301 2303 | CARLETTA,0.002,87.233,2302 2304 | BRITANY,0.002,87.235,2303 2305 | SHONA,0.002,87.238,2304 2306 | SALOME,0.002,87.240,2305 2307 | ROSAMOND,0.002,87.242,2306 2308 | REGENA,0.002,87.244,2307 2309 | RAINA,0.002,87.246,2308 2310 | NGOC,0.002,87.249,2309 2311 | NELIA,0.002,87.251,2310 2312 | LOUVENIA,0.002,87.253,2311 2313 | LESIA,0.002,87.255,2312 2314 | LATRINA,0.002,87.257,2313 2315 | LATICIA,0.002,87.260,2314 2316 | LARHONDA,0.002,87.262,2315 2317 | JINA,0.002,87.264,2316 2318 | JACKI,0.002,87.266,2317 2319 | HOLLIS,0.002,87.268,2318 2320 | HOLLEY,0.002,87.271,2319 2321 | EMMY,0.002,87.273,2320 2322 | DEEANN,0.002,87.275,2321 2323 | CORETTA,0.002,87.277,2322 2324 | ARNETTA,0.002,87.279,2323 2325 | VELVET,0.002,87.281,2324 2326 | THALIA,0.002,87.284,2325 2327 | SHANICE,0.002,87.286,2326 2328 | NETA,0.002,87.288,2327 2329 | MIKKI,0.002,87.290,2328 2330 | MICKI,0.002,87.292,2329 2331 | LONNA,0.002,87.294,2330 2332 | LEANA,0.002,87.297,2331 2333 | LASHUNDA,0.002,87.299,2332 2334 | KILEY,0.002,87.301,2333 2335 | JOYE,0.002,87.303,2334 2336 | JACQULYN,0.002,87.305,2335 2337 | IGNACIA,0.002,87.307,2336 2338 | HYUN,0.002,87.310,2337 2339 | HIROKO,0.002,87.312,2338 2340 | HENRY,0.002,87.314,2339 2341 | HENRIETTE,0.002,87.316,2340 2342 | ELAYNE,0.002,87.318,2341 2343 | DELINDA,0.002,87.320,2342 2344 | DARNELL,0.002,87.323,2343 2345 | DAHLIA,0.002,87.325,2344 2346 | COREEN,0.002,87.327,2345 2347 | CONSUELA,0.002,87.329,2346 2348 | CONCHITA,0.002,87.331,2347 2349 | CELINE,0.002,87.333,2348 2350 | BABETTE,0.002,87.336,2349 2351 | AYANNA,0.002,87.338,2350 2352 | ANETTE,0.002,87.340,2351 2353 | ALBERTINA,0.002,87.342,2352 2354 | SKYE,0.002,87.344,2353 2355 | SHAWNEE,0.002,87.346,2354 2356 | SHANEKA,0.002,87.349,2355 2357 | QUIANA,0.002,87.351,2356 2358 | PAMELIA,0.002,87.353,2357 2359 | MIN,0.002,87.355,2358 2360 | MERRI,0.002,87.357,2359 2361 | MERLENE,0.002,87.359,2360 2362 | MARGIT,0.002,87.361,2361 2363 | KIESHA,0.002,87.363,2362 2364 | KIERA,0.002,87.366,2363 2365 | KAYLENE,0.002,87.368,2364 2366 | JODEE,0.002,87.370,2365 2367 | JENISE,0.002,87.372,2366 2368 | ERLENE,0.002,87.374,2367 2369 | EMMIE,0.002,87.376,2368 2370 | ELSE,0.002,87.378,2369 2371 | DARYL,0.002,87.381,2370 2372 | DALILA,0.002,87.383,2371 2373 | DAISEY,0.002,87.385,2372 2374 | CODY,0.002,87.387,2373 2375 | CASIE,0.002,87.389,2374 2376 | BELIA,0.002,87.391,2375 2377 | BABARA,0.002,87.393,2376 2378 | VERSIE,0.002,87.395,2377 2379 | VANESA,0.002,87.398,2378 2380 | SHELBA,0.002,87.400,2379 2381 | SHAWNDA,0.002,87.402,2380 2382 | SAM,0.002,87.404,2381 2383 | NORMAN,0.002,87.406,2382 2384 | NIKIA,0.002,87.408,2383 2385 | NAOMA,0.002,87.410,2384 2386 | MARNA,0.002,87.412,2385 2387 | MARGERET,0.002,87.414,2386 2388 | MADALINE,0.002,87.417,2387 2389 | LAWANA,0.002,87.419,2388 2390 | KINDRA,0.002,87.421,2389 2391 | JUTTA,0.002,87.423,2390 2392 | JAZMINE,0.002,87.425,2391 2393 | JANETT,0.002,87.427,2392 2394 | HANNELORE,0.002,87.429,2393 2395 | GLENDORA,0.002,87.431,2394 2396 | GERTRUD,0.002,87.433,2395 2397 | GARNETT,0.002,87.435,2396 2398 | FREEDA,0.002,87.438,2397 2399 | FREDERICA,0.002,87.440,2398 2400 | FLORANCE,0.002,87.442,2399 2401 | FLAVIA,0.002,87.444,2400 2402 | DENNIS,0.002,87.446,2401 2403 | CARLINE,0.002,87.448,2402 2404 | BEVERLEE,0.002,87.450,2403 2405 | ANJANETTE,0.002,87.452,2404 2406 | VALDA,0.002,87.454,2405 2407 | TRINITY,0.002,87.456,2406 2408 | TAMALA,0.002,87.459,2407 2409 | STEVIE,0.002,87.461,2408 2410 | SHONNA,0.002,87.463,2409 2411 | SHA,0.002,87.465,2410 2412 | SARINA,0.002,87.467,2411 2413 | ONEIDA,0.002,87.469,2412 2414 | MICAH,0.002,87.471,2413 2415 | MERILYN,0.002,87.473,2414 2416 | MARLEEN,0.002,87.475,2415 2417 | LURLINE,0.002,87.477,2416 2418 | LENNA,0.002,87.479,2417 2419 | KATHERIN,0.002,87.481,2418 2420 | JIN,0.002,87.483,2419 2421 | JENI,0.002,87.485,2420 2422 | HAE,0.002,87.488,2421 2423 | GRACIA,0.002,87.490,2422 2424 | GLADY,0.002,87.492,2423 2425 | FARAH,0.002,87.494,2424 2426 | ERIC,0.002,87.496,2425 2427 | ENOLA,0.002,87.498,2426 2428 | EMA,0.002,87.500,2427 2429 | DOMINQUE,0.002,87.502,2428 2430 | DEVONA,0.002,87.504,2429 2431 | DELANA,0.002,87.506,2430 2432 | CECILA,0.002,87.508,2431 2433 | CAPRICE,0.002,87.510,2432 2434 | ALYSHA,0.002,87.512,2433 2435 | ALI,0.002,87.514,2434 2436 | ALETHIA,0.002,87.517,2435 2437 | VENA,0.002,87.519,2436 2438 | THERESIA,0.002,87.521,2437 2439 | TAWNY,0.002,87.523,2438 2440 | SONG,0.002,87.525,2439 2441 | SHAKIRA,0.002,87.527,2440 2442 | SAMARA,0.002,87.529,2441 2443 | SACHIKO,0.002,87.531,2442 2444 | RACHELE,0.002,87.533,2443 2445 | PAMELLA,0.002,87.535,2444 2446 | NICKY,0.002,87.537,2445 2447 | MARNI,0.002,87.539,2446 2448 | MARIEL,0.002,87.541,2447 2449 | MAREN,0.002,87.543,2448 2450 | MALISA,0.002,87.545,2449 2451 | LIGIA,0.002,87.547,2450 2452 | LERA,0.002,87.549,2451 2453 | LATORIA,0.002,87.551,2452 2454 | LARAE,0.002,87.553,2453 2455 | KIMBER,0.002,87.555,2454 2456 | KATHERN,0.002,87.557,2455 2457 | KAREY,0.002,87.559,2456 2458 | JENNEFER,0.002,87.561,2457 2459 | JANETH,0.002,87.563,2458 2460 | HALINA,0.002,87.566,2459 2461 | FREDIA,0.002,87.568,2460 2462 | DELISA,0.002,87.570,2461 2463 | DEBROAH,0.002,87.572,2462 2464 | CIERA,0.002,87.574,2463 2465 | CHIN,0.002,87.576,2464 2466 | ANGELIKA,0.002,87.578,2465 2467 | ANDREE,0.002,87.580,2466 2468 | ALTHA,0.002,87.582,2467 2469 | YEN,0.002,87.584,2468 2470 | VIVAN,0.002,87.586,2469 2471 | TERRESA,0.002,87.588,2470 2472 | TANNA,0.002,87.590,2471 2473 | SUK,0.002,87.592,2472 2474 | SUDIE,0.002,87.594,2473 2475 | SOO,0.002,87.596,2474 2476 | SIGNE,0.002,87.598,2475 2477 | SALENA,0.002,87.600,2476 2478 | RONNI,0.002,87.602,2477 2479 | REBBECCA,0.002,87.604,2478 2480 | MYRTIE,0.002,87.606,2479 2481 | MCKENZIE,0.002,87.608,2480 2482 | MALIKA,0.002,87.610,2481 2483 | MAIDA,0.002,87.612,2482 2484 | LOAN,0.002,87.614,2483 2485 | LEONARDA,0.002,87.616,2484 2486 | KAYLEIGH,0.002,87.618,2485 2487 | FRANCE,0.002,87.620,2486 2488 | ETHYL,0.002,87.622,2487 2489 | ELLYN,0.002,87.624,2488 2490 | DAYLE,0.002,87.626,2489 2491 | CAMMIE,0.002,87.628,2490 2492 | BRITTNI,0.002,87.630,2491 2493 | BIRGIT,0.002,87.632,2492 2494 | AVELINA,0.002,87.634,2493 2495 | ASUNCION,0.002,87.636,2494 2496 | ARIANNA,0.002,87.638,2495 2497 | AKIKO,0.002,87.640,2496 2498 | VENICE,0.002,87.642,2497 2499 | TYESHA,0.002,87.644,2498 2500 | TONIE,0.002,87.646,2499 2501 | TIESHA,0.002,87.648,2500 2502 | TAKISHA,0.002,87.650,2501 2503 | STEFFANIE,0.002,87.652,2502 2504 | SINDY,0.002,87.654,2503 2505 | SANTANA,0.002,87.656,2504 2506 | MEGHANN,0.002,87.658,2505 2507 | MANDA,0.002,87.660,2506 2508 | MACIE,0.002,87.662,2507 2509 | LADY,0.002,87.664,2508 2510 | KELLYE,0.002,87.666,2509 2511 | KELLEE,0.002,87.668,2510 2512 | JOSLYN,0.002,87.670,2511 2513 | JASON,0.002,87.672,2512 2514 | INGER,0.002,87.674,2513 2515 | INDIRA,0.002,87.676,2514 2516 | GLINDA,0.002,87.678,2515 2517 | GLENNIS,0.002,87.680,2516 2518 | FERNANDA,0.002,87.682,2517 2519 | FAUSTINA,0.002,87.684,2518 2520 | ENEIDA,0.002,87.686,2519 2521 | ELICIA,0.002,87.688,2520 2522 | DOT,0.002,87.690,2521 2523 | DIGNA,0.002,87.692,2522 2524 | DELL,0.002,87.694,2523 2525 | ARLETTA,0.002,87.696,2524 2526 | ANDRE,0.002,87.698,2525 2527 | WILLIA,0.002,87.699,2526 2528 | TAMMARA,0.002,87.701,2527 2529 | TABETHA,0.002,87.703,2528 2530 | SHERRELL,0.002,87.705,2529 2531 | SARI,0.002,87.707,2530 2532 | REFUGIO,0.002,87.709,2531 2533 | REBBECA,0.002,87.711,2532 2534 | PAULETTA,0.002,87.713,2533 2535 | NIEVES,0.002,87.715,2534 2536 | NATOSHA,0.002,87.717,2535 2537 | NAKITA,0.002,87.719,2536 2538 | MAMMIE,0.002,87.721,2537 2539 | KENISHA,0.002,87.723,2538 2540 | KAZUKO,0.002,87.725,2539 2541 | KASSIE,0.002,87.727,2540 2542 | GARY,0.002,87.729,2541 2543 | EARLEAN,0.002,87.731,2542 2544 | DAPHINE,0.002,87.733,2543 2545 | CORLISS,0.002,87.735,2544 2546 | CLOTILDE,0.002,87.736,2545 2547 | CAROLYNE,0.002,87.738,2546 2548 | BERNETTA,0.002,87.740,2547 2549 | AUGUSTINA,0.002,87.742,2548 2550 | AUDREA,0.002,87.744,2549 2551 | ANNIS,0.002,87.746,2550 2552 | ANNABELL,0.002,87.748,2551 2553 | YAN,0.002,87.750,2552 2554 | TENNILLE,0.002,87.752,2553 2555 | TAMICA,0.002,87.754,2554 2556 | SELENE,0.002,87.756,2555 2557 | SEAN,0.002,87.758,2556 2558 | ROSANA,0.002,87.760,2557 2559 | REGENIA,0.002,87.762,2558 2560 | QIANA,0.002,87.763,2559 2561 | MARKITA,0.002,87.765,2560 2562 | MACY,0.002,87.767,2561 2563 | LEEANNE,0.002,87.769,2562 2564 | LAURINE,0.002,87.771,2563 2565 | KYM,0.002,87.773,2564 2566 | JESSENIA,0.002,87.775,2565 2567 | JANITA,0.002,87.777,2566 2568 | GEORGINE,0.002,87.779,2567 2569 | GENIE,0.002,87.781,2568 2570 | EMIKO,0.002,87.783,2569 2571 | ELVIE,0.002,87.785,2570 2572 | DEANDRA,0.002,87.786,2571 2573 | DAGMAR,0.002,87.788,2572 2574 | CORIE,0.002,87.790,2573 2575 | COLLEN,0.002,87.792,2574 2576 | CHERISH,0.002,87.794,2575 2577 | ROMAINE,0.002,87.796,2576 2578 | PORSHA,0.002,87.798,2577 2579 | PEARLENE,0.002,87.800,2578 2580 | MICHELINE,0.002,87.802,2579 2581 | MERNA,0.002,87.804,2580 2582 | MARGORIE,0.002,87.805,2581 2583 | MARGARETTA,0.002,87.807,2582 2584 | LORE,0.002,87.809,2583 2585 | KENNETH,0.002,87.811,2584 2586 | JENINE,0.002,87.813,2585 2587 | HERMINA,0.002,87.815,2586 2588 | FREDERICKA,0.002,87.817,2587 2589 | ELKE,0.002,87.819,2588 2590 | DRUSILLA,0.002,87.820,2589 2591 | DORATHY,0.002,87.822,2590 2592 | DIONE,0.002,87.824,2591 2593 | DESIRE,0.002,87.826,2592 2594 | CELENA,0.002,87.828,2593 2595 | BRIGIDA,0.002,87.830,2594 2596 | ANGELES,0.002,87.832,2595 2597 | ALLEGRA,0.002,87.834,2596 2598 | THEO,0.002,87.836,2597 2599 | TAMEKIA,0.002,87.837,2598 2600 | SYNTHIA,0.002,87.839,2599 2601 | STEPHEN,0.002,87.841,2600 2602 | SOOK,0.002,87.843,2601 2603 | SLYVIA,0.002,87.845,2602 2604 | ROSANN,0.002,87.847,2603 2605 | REATHA,0.002,87.849,2604 2606 | RAYE,0.002,87.850,2605 2607 | MARQUETTA,0.002,87.852,2606 2608 | MARGART,0.002,87.854,2607 2609 | LING,0.002,87.856,2608 2610 | LAYLA,0.002,87.858,2609 2611 | KYMBERLY,0.002,87.860,2610 2612 | KIANA,0.002,87.861,2611 2613 | KAYLEEN,0.002,87.863,2612 2614 | KATLYN,0.002,87.865,2613 2615 | KARMEN,0.002,87.867,2614 2616 | JOELLA,0.002,87.869,2615 2617 | IRINA,0.002,87.871,2616 2618 | EMELDA,0.002,87.873,2617 2619 | ELENI,0.002,87.874,2618 2620 | DETRA,0.002,87.876,2619 2621 | CLEMMIE,0.002,87.878,2620 2622 | CHERYLL,0.002,87.880,2621 2623 | CHANTELL,0.002,87.882,2622 2624 | CATHEY,0.002,87.884,2623 2625 | ARNITA,0.002,87.886,2624 2626 | ARLA,0.002,87.887,2625 2627 | ANGLE,0.002,87.889,2626 2628 | ANGELIC,0.002,87.891,2627 2629 | ALYSE,0.002,87.893,2628 2630 | ZOFIA,0.002,87.895,2629 2631 | THOMASINE,0.002,87.897,2630 2632 | TENNIE,0.002,87.898,2631 2633 | SON,0.002,87.900,2632 2634 | SHERLY,0.002,87.902,2633 2635 | SHERLEY,0.002,87.904,2634 2636 | SHARYL,0.002,87.906,2635 2637 | REMEDIOS,0.002,87.908,2636 2638 | PETRINA,0.002,87.909,2637 2639 | NICKOLE,0.002,87.911,2638 2640 | MYUNG,0.002,87.913,2639 2641 | MYRLE,0.002,87.915,2640 2642 | MOZELLA,0.002,87.917,2641 2643 | LOUANNE,0.002,87.918,2642 2644 | LISHA,0.002,87.920,2643 2645 | LATIA,0.002,87.922,2644 2646 | LANE,0.002,87.924,2645 2647 | KRYSTA,0.002,87.926,2646 2648 | JULIENNE,0.002,87.928,2647 2649 | JOEL,0.002,87.929,2648 2650 | JEANENE,0.002,87.931,2649 2651 | JACQUALINE,0.002,87.933,2650 2652 | ISAURA,0.002,87.935,2651 2653 | GWENDA,0.002,87.937,2652 2654 | EARLEEN,0.002,87.939,2653 2655 | DONALD,0.002,87.940,2654 2656 | CLEOPATRA,0.002,87.942,2655 2657 | CARLIE,0.002,87.944,2656 2658 | AUDIE,0.002,87.946,2657 2659 | ANTONIETTA,0.002,87.948,2658 2660 | ALISE,0.002,87.949,2659 2661 | ALEX,0.002,87.951,2660 2662 | VERDELL,0.002,87.953,2661 2663 | VAL,0.002,87.955,2662 2664 | TYLER,0.002,87.957,2663 2665 | TOMOKO,0.002,87.958,2664 2666 | THAO,0.002,87.960,2665 2667 | TALISHA,0.002,87.962,2666 2668 | STEVEN,0.002,87.964,2667 2669 | SO,0.002,87.966,2668 2670 | SHEMIKA,0.002,87.967,2669 2671 | SHAUN,0.002,87.969,2670 2672 | SCARLET,0.002,87.971,2671 2673 | SAVANNA,0.002,87.973,2672 2674 | SANTINA,0.002,87.975,2673 2675 | ROSIA,0.002,87.976,2674 2676 | RAEANN,0.002,87.978,2675 2677 | ODILIA,0.002,87.980,2676 2678 | NANA,0.002,87.982,2677 2679 | MINNA,0.002,87.983,2678 2680 | MAGAN,0.002,87.985,2679 2681 | LYNELLE,0.002,87.987,2680 2682 | LE,0.002,87.989,2681 2683 | KARMA,0.002,87.991,2682 2684 | JOEANN,0.002,87.992,2683 2685 | IVANA,0.002,87.994,2684 2686 | INELL,0.002,87.996,2685 2687 | ILANA,0.002,87.998,2686 2688 | HYE,0.002,88.000,2687 2689 | HONEY,0.002,88.001,2688 2690 | HEE,0.002,88.003,2689 2691 | GUDRUN,0.002,88.005,2690 2692 | FRANK,0.002,88.007,2691 2693 | DREAMA,0.002,88.009,2692 2694 | CRISSY,0.002,88.010,2693 2695 | CHANTE,0.002,88.012,2694 2696 | CARMELINA,0.002,88.014,2695 2697 | ARVILLA,0.002,88.016,2696 2698 | ARTHUR,0.002,88.017,2697 2699 | ANNAMAE,0.002,88.019,2698 2700 | ALVERA,0.002,88.021,2699 2701 | ALEIDA,0.002,88.023,2700 2702 | AARON,0.002,88.025,2701 2703 | YEE,0.002,88.026,2702 2704 | YANIRA,0.002,88.028,2703 2705 | VANDA,0.002,88.030,2704 2706 | TIANNA,0.002,88.032,2705 2707 | TAM,0.002,88.033,2706 2708 | STEFANIA,0.002,88.035,2707 2709 | SHIRA,0.002,88.037,2708 2710 | PERRY,0.002,88.039,2709 2711 | NICOL,0.002,88.040,2710 2712 | NANCIE,0.002,88.042,2711 2713 | MONSERRATE,0.002,88.044,2712 2714 | MINH,0.002,88.046,2713 2715 | MELYNDA,0.002,88.048,2714 2716 | MELANY,0.002,88.049,2715 2717 | MATTHEW,0.002,88.051,2716 2718 | LOVELLA,0.002,88.053,2717 2719 | LAURE,0.002,88.055,2718 2720 | KIRBY,0.002,88.056,2719 2721 | KACY,0.002,88.058,2720 2722 | JACQUELYNN,0.002,88.060,2721 2723 | HYON,0.002,88.062,2722 2724 | GERTHA,0.002,88.063,2723 2725 | FRANCISCO,0.002,88.065,2724 2726 | ELIANA,0.002,88.067,2725 2727 | CHRISTENA,0.002,88.069,2726 2728 | CHRISTEEN,0.002,88.070,2727 2729 | CHARISE,0.002,88.072,2728 2730 | CATERINA,0.002,88.074,2729 2731 | CARLEY,0.002,88.076,2730 2732 | CANDYCE,0.002,88.077,2731 2733 | ARLENA,0.002,88.079,2732 2734 | AMMIE,0.002,88.081,2733 2735 | YANG,0.002,88.083,2734 2736 | WILLETTE,0.002,88.084,2735 2737 | VANITA,0.002,88.086,2736 2738 | TUYET,0.002,88.088,2737 2739 | TINY,0.002,88.090,2738 2740 | SYREETA,0.002,88.091,2739 2741 | SILVA,0.002,88.093,2740 2742 | SCOTT,0.002,88.095,2741 2743 | RONALD,0.002,88.096,2742 2744 | PENNEY,0.002,88.098,2743 2745 | NYLA,0.002,88.100,2744 2746 | MICHAL,0.002,88.102,2745 2747 | MAURICE,0.002,88.103,2746 2748 | MARYAM,0.002,88.105,2747 2749 | MARYA,0.002,88.107,2748 2750 | MAGEN,0.002,88.109,2749 2751 | LUDIE,0.002,88.110,2750 2752 | LOMA,0.002,88.112,2751 2753 | LIVIA,0.002,88.114,2752 2754 | LANELL,0.002,88.115,2753 2755 | KIMBERLIE,0.002,88.117,2754 2756 | JULEE,0.002,88.119,2755 2757 | DONETTA,0.002,88.121,2756 2758 | DIEDRA,0.002,88.122,2757 2759 | DENISHA,0.002,88.124,2758 2760 | DEANE,0.002,88.126,2759 2761 | DAWNE,0.002,88.128,2760 2762 | CLARINE,0.002,88.129,2761 2763 | CHERRYL,0.002,88.131,2762 2764 | BRONWYN,0.002,88.133,2763 2765 | BRANDON,0.002,88.134,2764 2766 | ALLA,0.002,88.136,2765 2767 | VALERY,0.002,88.138,2766 2768 | TONDA,0.002,88.140,2767 2769 | SUEANN,0.002,88.141,2768 2770 | SORAYA,0.002,88.143,2769 2771 | SHOSHANA,0.002,88.145,2770 2772 | SHELA,0.002,88.146,2771 2773 | SHARLEEN,0.002,88.148,2772 2774 | SHANELLE,0.002,88.150,2773 2775 | NERISSA,0.002,88.151,2774 2776 | MICHEAL,0.002,88.153,2775 2777 | MERIDITH,0.002,88.155,2776 2778 | MELLIE,0.002,88.157,2777 2779 | MAYE,0.002,88.158,2778 2780 | MAPLE,0.002,88.160,2779 2781 | MAGARET,0.002,88.162,2780 2782 | LUIS,0.002,88.163,2781 2783 | LILI,0.002,88.165,2782 2784 | LEONILA,0.002,88.167,2783 2785 | LEONIE,0.002,88.168,2784 2786 | LEEANNA,0.002,88.170,2785 2787 | LAVONIA,0.002,88.172,2786 2788 | LAVERA,0.002,88.173,2787 2789 | KRISTEL,0.002,88.175,2788 2790 | KATHEY,0.002,88.177,2789 2791 | KATHE,0.002,88.179,2790 2792 | JUSTIN,0.002,88.180,2791 2793 | JULIAN,0.002,88.182,2792 2794 | JIMMY,0.002,88.184,2793 2795 | JANN,0.002,88.185,2794 2796 | ILDA,0.002,88.187,2795 2797 | HILDRED,0.002,88.189,2796 2798 | HILDEGARDE,0.002,88.190,2797 2799 | GENIA,0.002,88.192,2798 2800 | FUMIKO,0.002,88.194,2799 2801 | EVELIN,0.002,88.196,2800 2802 | ERMELINDA,0.002,88.197,2801 2803 | ELLY,0.002,88.199,2802 2804 | DUNG,0.002,88.201,2803 2805 | DOLORIS,0.002,88.202,2804 2806 | DIONNA,0.002,88.204,2805 2807 | DANAE,0.002,88.206,2806 2808 | BERNEICE,0.002,88.207,2807 2809 | ANNICE,0.002,88.209,2808 2810 | ALIX,0.002,88.211,2809 2811 | VERENA,0.002,88.212,2810 2812 | VERDIE,0.002,88.214,2811 2813 | TRISTAN,0.002,88.216,2812 2814 | SHAWNNA,0.002,88.217,2813 2815 | SHAWANA,0.002,88.219,2814 2816 | SHAUNNA,0.002,88.221,2815 2817 | ROZELLA,0.002,88.222,2816 2818 | RANDEE,0.002,88.224,2817 2819 | RANAE,0.002,88.226,2818 2820 | MILAGRO,0.002,88.227,2819 2821 | LYNELL,0.002,88.229,2820 2822 | LUISE,0.002,88.231,2821 2823 | LOUIE,0.002,88.232,2822 2824 | LOIDA,0.002,88.234,2823 2825 | LISBETH,0.002,88.236,2824 2826 | KARLEEN,0.002,88.237,2825 2827 | JUNITA,0.002,88.239,2826 2828 | JONA,0.002,88.241,2827 2829 | ISIS,0.002,88.242,2828 2830 | HYACINTH,0.002,88.244,2829 2831 | HEDY,0.002,88.246,2830 2832 | GWENN,0.002,88.247,2831 2833 | ETHELENE,0.002,88.249,2832 2834 | ERLINE,0.002,88.251,2833 2835 | EDWARD,0.002,88.252,2834 2836 | DONYA,0.002,88.254,2835 2837 | DOMONIQUE,0.002,88.256,2836 2838 | DELICIA,0.002,88.257,2837 2839 | DANNETTE,0.002,88.259,2838 2840 | CICELY,0.002,88.261,2839 2841 | BRANDA,0.002,88.262,2840 2842 | BLYTHE,0.002,88.264,2841 2843 | BETHANN,0.002,88.266,2842 2844 | ASHLYN,0.002,88.267,2843 2845 | ANNALEE,0.002,88.269,2844 2846 | ALLINE,0.002,88.271,2845 2847 | YUKO,0.002,88.272,2846 2848 | VELLA,0.002,88.274,2847 2849 | TRANG,0.002,88.276,2848 2850 | TOWANDA,0.002,88.277,2849 2851 | TESHA,0.002,88.279,2850 2852 | SHERLYN,0.002,88.281,2851 2853 | NARCISA,0.002,88.282,2852 2854 | MIGUELINA,0.002,88.284,2853 2855 | MERI,0.002,88.285,2854 2856 | MAYBELL,0.002,88.287,2855 2857 | MARLANA,0.002,88.289,2856 2858 | MARGUERITA,0.002,88.290,2857 2859 | MADLYN,0.002,88.292,2858 2860 | LUNA,0.002,88.294,2859 2861 | LORY,0.002,88.295,2860 2862 | LORIANN,0.002,88.297,2861 2863 | LIBERTY,0.002,88.298,2862 2864 | LEONORE,0.002,88.300,2863 2865 | LEIGHANN,0.002,88.302,2864 2866 | LAURICE,0.002,88.303,2865 2867 | LATESHA,0.002,88.305,2866 2868 | LARONDA,0.002,88.307,2867 2869 | KATRICE,0.002,88.308,2868 2870 | KASIE,0.002,88.310,2869 2871 | KARL,0.002,88.312,2870 2872 | KALEY,0.002,88.313,2871 2873 | JADWIGA,0.002,88.315,2872 2874 | GLENNIE,0.002,88.316,2873 2875 | GEARLDINE,0.002,88.318,2874 2876 | FRANCINA,0.002,88.320,2875 2877 | EPIFANIA,0.002,88.321,2876 2878 | DYAN,0.002,88.323,2877 2879 | DORIE,0.002,88.325,2878 2880 | DIEDRE,0.002,88.326,2879 2881 | DENESE,0.002,88.328,2880 2882 | DEMETRICE,0.002,88.330,2881 2883 | DELENA,0.002,88.331,2882 2884 | DARBY,0.002,88.333,2883 2885 | CRISTIE,0.002,88.334,2884 2886 | CLEORA,0.002,88.336,2885 2887 | CATARINA,0.002,88.338,2886 2888 | CARISA,0.002,88.339,2887 2889 | BERNIE,0.002,88.341,2888 2890 | BARBERA,0.002,88.343,2889 2891 | ALMETA,0.002,88.344,2890 2892 | TRULA,0.002,88.346,2891 2893 | TEREASA,0.002,88.347,2892 2894 | SOLANGE,0.002,88.349,2893 2895 | SHEILAH,0.002,88.351,2894 2896 | SHAVONNE,0.002,88.352,2895 2897 | SANORA,0.002,88.354,2896 2898 | ROCHELL,0.002,88.355,2897 2899 | MATHILDE,0.002,88.357,2898 2900 | MARGARETA,0.002,88.359,2899 2901 | MAIA,0.002,88.360,2900 2902 | LYNSEY,0.002,88.362,2901 2903 | LAWANNA,0.002,88.363,2902 2904 | LAUNA,0.002,88.365,2903 2905 | KENA,0.002,88.367,2904 2906 | KEENA,0.002,88.368,2905 2907 | KATIA,0.002,88.370,2906 2908 | JAMEY,0.002,88.371,2907 2909 | GLYNDA,0.002,88.373,2908 2910 | GAYLENE,0.002,88.375,2909 2911 | ELVINA,0.002,88.376,2910 2912 | ELANOR,0.002,88.378,2911 2913 | DANUTA,0.002,88.379,2912 2914 | DANIKA,0.002,88.381,2913 2915 | CRISTEN,0.002,88.383,2914 2916 | CORDIE,0.002,88.384,2915 2917 | COLETTA,0.002,88.386,2916 2918 | CLARITA,0.002,88.387,2917 2919 | CARMON,0.002,88.389,2918 2920 | BRYNN,0.002,88.391,2919 2921 | AZUCENA,0.002,88.392,2920 2922 | AUNDREA,0.002,88.394,2921 2923 | ANGELE,0.002,88.395,2922 2924 | YI,0.002,88.397,2923 2925 | WALTER,0.002,88.399,2924 2926 | VERLIE,0.002,88.400,2925 2927 | VERLENE,0.002,88.402,2926 2928 | TAMESHA,0.002,88.403,2927 2929 | SILVANA,0.002,88.405,2928 2930 | SEBRINA,0.002,88.406,2929 2931 | SAMIRA,0.002,88.408,2930 2932 | REDA,0.002,88.410,2931 2933 | RAYLENE,0.002,88.411,2932 2934 | PENNI,0.002,88.413,2933 2935 | PANDORA,0.002,88.414,2934 2936 | NORAH,0.002,88.416,2935 2937 | NOMA,0.002,88.417,2936 2938 | MIREILLE,0.002,88.419,2937 2939 | MELISSIA,0.002,88.421,2938 2940 | MARYALICE,0.002,88.422,2939 2941 | LARAINE,0.002,88.424,2940 2942 | KIMBERY,0.002,88.425,2941 2943 | KARYL,0.002,88.427,2942 2944 | KARINE,0.002,88.428,2943 2945 | KAM,0.002,88.430,2944 2946 | JOLANDA,0.002,88.432,2945 2947 | JOHANA,0.002,88.433,2946 2948 | JESUSA,0.002,88.435,2947 2949 | JALEESA,0.002,88.436,2948 2950 | JAE,0.002,88.438,2949 2951 | JACQUELYNE,0.002,88.439,2950 2952 | IRISH,0.002,88.441,2951 2953 | ILUMINADA,0.002,88.443,2952 2954 | HILARIA,0.002,88.444,2953 2955 | HANH,0.002,88.446,2954 2956 | GENNIE,0.002,88.447,2955 2957 | FRANCIE,0.002,88.449,2956 2958 | FLORETTA,0.002,88.450,2957 2959 | EXIE,0.002,88.452,2958 2960 | EDDA,0.002,88.454,2959 2961 | DREMA,0.002,88.455,2960 2962 | DELPHA,0.002,88.457,2961 2963 | BEV,0.002,88.458,2962 2964 | BARBAR,0.002,88.460,2963 2965 | ASSUNTA,0.002,88.461,2964 2966 | ARDELL,0.002,88.463,2965 2967 | ANNALISA,0.002,88.465,2966 2968 | ALISIA,0.002,88.466,2967 2969 | YUKIKO,0.002,88.468,2968 2970 | YOLANDO,0.002,88.469,2969 2971 | WONDA,0.002,88.471,2970 2972 | WEI,0.002,88.472,2971 2973 | WALTRAUD,0.002,88.474,2972 2974 | VETA,0.002,88.475,2973 2975 | TEQUILA,0.002,88.477,2974 2976 | TEMEKA,0.002,88.478,2975 2977 | TAMEIKA,0.002,88.480,2976 2978 | SHIRLEEN,0.002,88.481,2977 2979 | SHENITA,0.002,88.483,2978 2980 | PIEDAD,0.002,88.485,2979 2981 | OZELLA,0.002,88.486,2980 2982 | MIRTHA,0.002,88.488,2981 2983 | MARILU,0.002,88.489,2982 2984 | KIMIKO,0.002,88.491,2983 2985 | JULIANE,0.002,88.492,2984 2986 | JENICE,0.002,88.494,2985 2987 | JEN,0.002,88.495,2986 2988 | JANAY,0.002,88.497,2987 2989 | JACQUILINE,0.002,88.498,2988 2990 | HILDE,0.002,88.500,2989 2991 | FE,0.002,88.502,2990 2992 | FAE,0.002,88.503,2991 2993 | EVAN,0.002,88.505,2992 2994 | EUGENE,0.002,88.506,2993 2995 | ELOIS,0.002,88.508,2994 2996 | ECHO,0.002,88.509,2995 2997 | DEVORAH,0.002,88.511,2996 2998 | CHAU,0.002,88.512,2997 2999 | BRINDA,0.002,88.514,2998 3000 | BETSEY,0.002,88.515,2999 3001 | ARMINDA,0.002,88.517,3000 3002 | ARACELIS,0.002,88.518,3001 3003 | APRYL,0.002,88.520,3002 3004 | ANNETT,0.002,88.522,3003 3005 | ALISHIA,0.002,88.523,3004 3006 | VEOLA,0.002,88.525,3005 3007 | USHA,0.002,88.526,3006 3008 | TOSHIKO,0.002,88.528,3007 3009 | THEOLA,0.002,88.529,3008 3010 | TASHIA,0.002,88.531,3009 3011 | TALITHA,0.002,88.532,3010 3012 | SHERY,0.002,88.534,3011 3013 | RUDY,0.002,88.535,3012 3014 | RENETTA,0.002,88.537,3013 3015 | REIKO,0.002,88.538,3014 3016 | RASHEEDA,0.002,88.540,3015 3017 | OMEGA,0.002,88.541,3016 3018 | OBDULIA,0.002,88.543,3017 3019 | MIKA,0.002,88.544,3018 3020 | MELAINE,0.002,88.546,3019 3021 | MEGGAN,0.002,88.547,3020 3022 | MARTIN,0.002,88.549,3021 3023 | MARLEN,0.002,88.550,3022 3024 | MARGET,0.002,88.552,3023 3025 | MARCELINE,0.002,88.553,3024 3026 | MANA,0.002,88.555,3025 3027 | MAGDALEN,0.002,88.556,3026 3028 | LIBRADA,0.002,88.558,3027 3029 | LEZLIE,0.002,88.559,3028 3030 | LEXIE,0.002,88.561,3029 3031 | LATASHIA,0.002,88.562,3030 3032 | LASANDRA,0.002,88.564,3031 3033 | KELLE,0.002,88.565,3032 3034 | ISIDRA,0.002,88.567,3033 3035 | ISA,0.002,88.568,3034 3036 | INOCENCIA,0.002,88.570,3035 3037 | GWYN,0.002,88.571,3036 3038 | FRANCOISE,0.002,88.573,3037 3039 | ERMINIA,0.002,88.574,3038 3040 | ERINN,0.002,88.576,3039 3041 | DIMPLE,0.002,88.577,3040 3042 | DEVORA,0.002,88.579,3041 3043 | CRISELDA,0.002,88.580,3042 3044 | ARMANDA,0.002,88.582,3043 3045 | ARIE,0.002,88.583,3044 3046 | ARIANE,0.002,88.585,3045 3047 | ANGELO,0.002,88.586,3046 3048 | ANGELENA,0.002,88.588,3047 3049 | ALLEN,0.002,88.589,3048 3050 | ALIZA,0.002,88.591,3049 3051 | ADRIENE,0.002,88.592,3050 3052 | ADALINE,0.002,88.594,3051 3053 | XOCHITL,0.001,88.595,3052 3054 | TWANNA,0.001,88.597,3053 3055 | TRAN,0.001,88.598,3054 3056 | TOMIKO,0.001,88.600,3055 3057 | TAMISHA,0.001,88.601,3056 3058 | TAISHA,0.001,88.603,3057 3059 | SUSY,0.001,88.604,3058 3060 | SIU,0.001,88.606,3059 3061 | RUTHA,0.001,88.607,3060 3062 | ROXY,0.001,88.609,3061 3063 | RHONA,0.001,88.610,3062 3064 | RAYMOND,0.001,88.612,3063 3065 | OTHA,0.001,88.613,3064 3066 | NORIKO,0.001,88.615,3065 3067 | NATASHIA,0.001,88.616,3066 3068 | MERRIE,0.001,88.618,3067 3069 | MELVIN,0.001,88.619,3068 3070 | MARINDA,0.001,88.620,3069 3071 | MARIKO,0.001,88.622,3070 3072 | MARGERT,0.001,88.623,3071 3073 | LORIS,0.001,88.625,3072 3074 | LIZZETTE,0.001,88.626,3073 3075 | LEISHA,0.001,88.628,3074 3076 | KAILA,0.001,88.629,3075 3077 | KA,0.001,88.631,3076 3078 | JOANNIE,0.001,88.632,3077 3079 | JERRICA,0.001,88.634,3078 3080 | JENE,0.001,88.635,3079 3081 | JANNET,0.001,88.637,3080 3082 | JANEE,0.001,88.638,3081 3083 | JACINDA,0.001,88.640,3082 3084 | HERTA,0.001,88.641,3083 3085 | ELENORE,0.001,88.643,3084 3086 | DORETTA,0.001,88.644,3085 3087 | DELAINE,0.001,88.646,3086 3088 | DANIELL,0.001,88.647,3087 3089 | CLAUDIE,0.001,88.649,3088 3090 | CHINA,0.001,88.650,3089 3091 | BRITTA,0.001,88.651,3090 3092 | APOLONIA,0.001,88.653,3091 3093 | AMBERLY,0.001,88.654,3092 3094 | ALEASE,0.001,88.656,3093 3095 | YURI,0.001,88.657,3094 3096 | YUK,0.001,88.659,3095 3097 | WEN,0.001,88.660,3096 3098 | WANETA,0.001,88.662,3097 3099 | UTE,0.001,88.663,3098 3100 | TOMI,0.001,88.665,3099 3101 | SHARRI,0.001,88.666,3100 3102 | SANDIE,0.001,88.667,3101 3103 | ROSELLE,0.001,88.669,3102 3104 | REYNALDA,0.001,88.670,3103 3105 | RAGUEL,0.001,88.672,3104 3106 | PHYLICIA,0.001,88.673,3105 3107 | PATRIA,0.001,88.675,3106 3108 | OLIMPIA,0.001,88.676,3107 3109 | ODELIA,0.001,88.678,3108 3110 | MITZIE,0.001,88.679,3109 3111 | MITCHELL,0.001,88.680,3110 3112 | MISS,0.001,88.682,3111 3113 | MINDA,0.001,88.683,3112 3114 | MIGNON,0.001,88.685,3113 3115 | MICA,0.001,88.686,3114 3116 | MENDY,0.001,88.688,3115 3117 | MARIVEL,0.001,88.689,3116 3118 | MAILE,0.001,88.691,3117 3119 | LYNETTA,0.001,88.692,3118 3120 | LAVETTE,0.001,88.693,3119 3121 | LAURYN,0.001,88.695,3120 3122 | LATRISHA,0.001,88.696,3121 3123 | LAKIESHA,0.001,88.698,3122 3124 | KIERSTEN,0.001,88.699,3123 3125 | KARY,0.001,88.701,3124 3126 | JOSPHINE,0.001,88.702,3125 3127 | JOLYN,0.001,88.704,3126 3128 | JETTA,0.001,88.705,3127 3129 | JANISE,0.001,88.706,3128 3130 | JACQUIE,0.001,88.708,3129 3131 | IVELISSE,0.001,88.709,3130 3132 | GLYNIS,0.001,88.711,3131 3133 | GIANNA,0.001,88.712,3132 3134 | GAYNELLE,0.001,88.714,3133 3135 | EMERALD,0.001,88.715,3134 3136 | DEMETRIUS,0.001,88.717,3135 3137 | DANYELL,0.001,88.718,3136 3138 | DANILLE,0.001,88.719,3137 3139 | DACIA,0.001,88.721,3138 3140 | CORALEE,0.001,88.722,3139 3141 | CHER,0.001,88.724,3140 3142 | CEOLA,0.001,88.725,3141 3143 | BRETT,0.001,88.727,3142 3144 | BELL,0.001,88.728,3143 3145 | ARIANNE,0.001,88.730,3144 3146 | ALESHIA,0.001,88.731,3145 3147 | YUNG,0.001,88.732,3146 3148 | WILLIEMAE,0.001,88.734,3147 3149 | TROY,0.001,88.735,3148 3150 | TRINH,0.001,88.737,3149 3151 | THORA,0.001,88.738,3150 3152 | TAI,0.001,88.739,3151 3153 | SVETLANA,0.001,88.741,3152 3154 | SHERIKA,0.001,88.742,3153 3155 | SHEMEKA,0.001,88.744,3154 3156 | SHAUNDA,0.001,88.745,3155 3157 | ROSELINE,0.001,88.747,3156 3158 | RICKI,0.001,88.748,3157 3159 | MELDA,0.001,88.749,3158 3160 | MALLIE,0.001,88.751,3159 3161 | LAVONNA,0.001,88.752,3160 3162 | LATINA,0.001,88.754,3161 3163 | LARRY,0.001,88.755,3162 3164 | LAQUANDA,0.001,88.756,3163 3165 | LALA,0.001,88.758,3164 3166 | LACHELLE,0.001,88.759,3165 3167 | KLARA,0.001,88.761,3166 3168 | KANDIS,0.001,88.762,3167 3169 | JOHNA,0.001,88.763,3168 3170 | JEANMARIE,0.001,88.765,3169 3171 | JAYE,0.001,88.766,3170 3172 | HANG,0.001,88.768,3171 3173 | GRAYCE,0.001,88.769,3172 3174 | GERTUDE,0.001,88.771,3173 3175 | EMERITA,0.001,88.772,3174 3176 | EBONIE,0.001,88.773,3175 3177 | CLORINDA,0.001,88.775,3176 3178 | CHING,0.001,88.776,3177 3179 | CHERY,0.001,88.778,3178 3180 | CAROLA,0.001,88.779,3179 3181 | BREANN,0.001,88.780,3180 3182 | BLOSSOM,0.001,88.782,3181 3183 | BERNARDINE,0.001,88.783,3182 3184 | BECKI,0.001,88.785,3183 3185 | ARLETHA,0.001,88.786,3184 3186 | ARGELIA,0.001,88.788,3185 3187 | ARA,0.001,88.789,3186 3188 | ALITA,0.001,88.790,3187 3189 | YULANDA,0.001,88.792,3188 3190 | YON,0.001,88.793,3189 3191 | YESSENIA,0.001,88.794,3190 3192 | TOBI,0.001,88.796,3191 3193 | TASIA,0.001,88.797,3192 3194 | SYLVIE,0.001,88.799,3193 3195 | SHIRL,0.001,88.800,3194 3196 | SHIRELY,0.001,88.801,3195 3197 | SHERIDAN,0.001,88.803,3196 3198 | SHELLA,0.001,88.804,3197 3199 | SHANTELLE,0.001,88.806,3198 3200 | SACHA,0.001,88.807,3199 3201 | ROYCE,0.001,88.808,3200 3202 | REBECKA,0.001,88.810,3201 3203 | REAGAN,0.001,88.811,3202 3204 | PROVIDENCIA,0.001,88.812,3203 3205 | PAULENE,0.001,88.814,3204 3206 | MISHA,0.001,88.815,3205 3207 | MIKI,0.001,88.817,3206 3208 | MARLINE,0.001,88.818,3207 3209 | MARICA,0.001,88.819,3208 3210 | LORITA,0.001,88.821,3209 3211 | LATOYIA,0.001,88.822,3210 3212 | LASONYA,0.001,88.824,3211 3213 | KERSTIN,0.001,88.825,3212 3214 | KENDA,0.001,88.826,3213 3215 | KEITHA,0.001,88.828,3214 3216 | KATHRIN,0.001,88.829,3215 3217 | JAYMIE,0.001,88.830,3216 3218 | JACK,0.001,88.832,3217 3219 | GRICELDA,0.001,88.833,3218 3220 | GINETTE,0.001,88.835,3219 3221 | ERYN,0.001,88.836,3220 3222 | ELINA,0.001,88.837,3221 3223 | ELFRIEDA,0.001,88.839,3222 3224 | DANYEL,0.001,88.840,3223 3225 | CHEREE,0.001,88.841,3224 3226 | CHANELLE,0.001,88.843,3225 3227 | BARRIE,0.001,88.844,3226 3228 | AVERY,0.001,88.846,3227 3229 | AURORE,0.001,88.847,3228 3230 | ANNAMARIA,0.001,88.848,3229 3231 | ALLEEN,0.001,88.850,3230 3232 | AILENE,0.001,88.851,3231 3233 | AIDE,0.001,88.853,3232 3234 | YASMINE,0.001,88.854,3233 3235 | VASHTI,0.001,88.855,3234 3236 | VALENTINE,0.001,88.857,3235 3237 | TREASA,0.001,88.858,3236 3238 | TORY,0.001,88.859,3237 3239 | TIFFANEY,0.001,88.861,3238 3240 | SHERYLL,0.001,88.862,3239 3241 | SHARIE,0.001,88.863,3240 3242 | SHANAE,0.001,88.865,3241 3243 | SAU,0.001,88.866,3242 3244 | RAISA,0.001,88.867,3243 3245 | PA,0.001,88.869,3244 3246 | NEDA,0.001,88.870,3245 3247 | MITSUKO,0.001,88.871,3246 3248 | MIRELLA,0.001,88.873,3247 3249 | MILDA,0.001,88.874,3248 3250 | MARYANNA,0.001,88.875,3249 3251 | MARAGRET,0.001,88.877,3250 3252 | MABELLE,0.001,88.878,3251 3253 | LUETTA,0.001,88.880,3252 3254 | LORINA,0.001,88.881,3253 3255 | LETISHA,0.001,88.882,3254 3256 | LATARSHA,0.001,88.884,3255 3257 | LANELLE,0.001,88.885,3256 3258 | LAJUANA,0.001,88.886,3257 3259 | KRISSY,0.001,88.888,3258 3260 | KARLY,0.001,88.889,3259 3261 | KARENA,0.001,88.890,3260 3262 | JON,0.001,88.892,3261 3263 | JESSIKA,0.001,88.893,3262 3264 | JERICA,0.001,88.894,3263 3265 | JEANELLE,0.001,88.896,3264 3266 | JANUARY,0.001,88.897,3265 3267 | JALISA,0.001,88.898,3266 3268 | JACELYN,0.001,88.900,3267 3269 | IZOLA,0.001,88.901,3268 3270 | IVEY,0.001,88.902,3269 3271 | GREGORY,0.001,88.904,3270 3272 | EUNA,0.001,88.905,3271 3273 | ETHA,0.001,88.907,3272 3274 | DREW,0.001,88.908,3273 3275 | DOMITILA,0.001,88.909,3274 3276 | DOMINICA,0.001,88.911,3275 3277 | DAINA,0.001,88.912,3276 3278 | CREOLA,0.001,88.913,3277 3279 | CARLI,0.001,88.915,3278 3280 | CAMIE,0.001,88.916,3279 3281 | BUNNY,0.001,88.917,3280 3282 | BRITTNY,0.001,88.919,3281 3283 | ASHANTI,0.001,88.920,3282 3284 | ANISHA,0.001,88.921,3283 3285 | ALEEN,0.001,88.923,3284 3286 | ADAH,0.001,88.924,3285 3287 | YASUKO,0.001,88.925,3286 3288 | WINTER,0.001,88.927,3287 3289 | VIKI,0.001,88.928,3288 3290 | VALRIE,0.001,88.929,3289 3291 | TONA,0.001,88.931,3290 3292 | TINISHA,0.001,88.932,3291 3293 | THI,0.001,88.933,3292 3294 | TERISA,0.001,88.935,3293 3295 | TATUM,0.001,88.936,3294 3296 | TANEKA,0.001,88.937,3295 3297 | SIMONNE,0.001,88.939,3296 3298 | SHALANDA,0.001,88.940,3297 3299 | SERITA,0.001,88.941,3298 3300 | RESSIE,0.001,88.943,3299 3301 | REFUGIA,0.001,88.944,3300 3302 | PAZ,0.001,88.945,3301 3303 | OLENE,0.001,88.947,3302 3304 | NA,0.001,88.948,3303 3305 | MERRILL,0.001,88.949,3304 3306 | MARGHERITA,0.001,88.950,3305 3307 | MANDIE,0.001,88.952,3306 3308 | MAN,0.001,88.953,3307 3309 | MAIRE,0.001,88.954,3308 3310 | LYNDIA,0.001,88.956,3309 3311 | LUCI,0.001,88.957,3310 3312 | LORRIANE,0.001,88.958,3311 3313 | LORETA,0.001,88.960,3312 3314 | LEONIA,0.001,88.961,3313 3315 | LAVONA,0.001,88.962,3314 3316 | LASHAWNDA,0.001,88.964,3315 3317 | LAKIA,0.001,88.965,3316 3318 | KYOKO,0.001,88.966,3317 3319 | KRYSTINA,0.001,88.968,3318 3320 | KRYSTEN,0.001,88.969,3319 3321 | KENIA,0.001,88.970,3320 3322 | KELSI,0.001,88.972,3321 3323 | JUDE,0.001,88.973,3322 3324 | JEANICE,0.001,88.974,3323 3325 | ISOBEL,0.001,88.976,3324 3326 | GEORGIANN,0.001,88.977,3325 3327 | GENNY,0.001,88.978,3326 3328 | FELICIDAD,0.001,88.979,3327 3329 | EILENE,0.001,88.981,3328 3330 | DEON,0.001,88.982,3329 3331 | DELOISE,0.001,88.983,3330 3332 | DEEDEE,0.001,88.985,3331 3333 | DANNIE,0.001,88.986,3332 3334 | CONCEPTION,0.001,88.987,3333 3335 | CLORA,0.001,88.989,3334 3336 | CHERILYN,0.001,88.990,3335 3337 | CHANG,0.001,88.991,3336 3338 | CALANDRA,0.001,88.993,3337 3339 | BERRY,0.001,88.994,3338 3340 | ARMANDINA,0.001,88.995,3339 3341 | ANISA,0.001,88.997,3340 3342 | ULA,0.001,88.998,3341 3343 | TIMOTHY,0.001,88.999,3342 3344 | TIERA,0.001,89.000,3343 3345 | THERESSA,0.001,89.002,3344 3346 | STEPHANIA,0.001,89.003,3345 3347 | SIMA,0.001,89.004,3346 3348 | SHYLA,0.001,89.006,3347 3349 | SHONTA,0.001,89.007,3348 3350 | SHERA,0.001,89.008,3349 3351 | SHAQUITA,0.001,89.010,3350 3352 | SHALA,0.001,89.011,3351 3353 | SAMMY,0.001,89.012,3352 3354 | ROSSANA,0.001,89.013,3353 3355 | NOHEMI,0.001,89.015,3354 3356 | NERY,0.001,89.016,3355 3357 | MORIAH,0.001,89.017,3356 3358 | MELITA,0.001,89.019,3357 3359 | MELIDA,0.001,89.020,3358 3360 | MELANI,0.001,89.021,3359 3361 | MARYLYNN,0.001,89.022,3360 3362 | MARISHA,0.001,89.024,3361 3363 | MARIETTE,0.001,89.025,3362 3364 | MALORIE,0.001,89.026,3363 3365 | MADELENE,0.001,89.028,3364 3366 | LUDIVINA,0.001,89.029,3365 3367 | LORIA,0.001,89.030,3366 3368 | LORETTE,0.001,89.031,3367 3369 | LORALEE,0.001,89.033,3368 3370 | LIANNE,0.001,89.034,3369 3371 | LEON,0.001,89.035,3370 3372 | LAVENIA,0.001,89.037,3371 3373 | LAURINDA,0.001,89.038,3372 3374 | LASHON,0.001,89.039,3373 3375 | KIT,0.001,89.040,3374 3376 | KIMI,0.001,89.042,3375 3377 | KEILA,0.001,89.043,3376 3378 | KATELYNN,0.001,89.044,3377 3379 | KAI,0.001,89.046,3378 3380 | JONE,0.001,89.047,3379 3381 | JOANE,0.001,89.048,3380 3382 | JI,0.001,89.049,3381 3383 | JAYNA,0.001,89.051,3382 3384 | JANELLA,0.001,89.052,3383 3385 | JA,0.001,89.053,3384 3386 | HUE,0.001,89.055,3385 3387 | HERTHA,0.001,89.056,3386 3388 | FRANCENE,0.001,89.057,3387 3389 | ELINORE,0.001,89.058,3388 3390 | DESPINA,0.001,89.060,3389 3391 | DELSIE,0.001,89.061,3390 3392 | DEEDRA,0.001,89.062,3391 3393 | CLEMENCIA,0.001,89.064,3392 3394 | CARRY,0.001,89.065,3393 3395 | CAROLIN,0.001,89.066,3394 3396 | CARLOS,0.001,89.067,3395 3397 | BULAH,0.001,89.069,3396 3398 | BRITTANIE,0.001,89.070,3397 3399 | BOK,0.001,89.071,3398 3400 | BLONDELL,0.001,89.073,3399 3401 | BIBI,0.001,89.074,3400 3402 | BEAULAH,0.001,89.075,3401 3403 | BEATA,0.001,89.076,3402 3404 | ANNITA,0.001,89.078,3403 3405 | AGRIPINA,0.001,89.079,3404 3406 | VIRGEN,0.001,89.080,3405 3407 | VALENE,0.001,89.082,3406 3408 | UN,0.001,89.083,3407 3409 | TWANDA,0.001,89.084,3408 3410 | TOMMYE,0.001,89.085,3409 3411 | TOI,0.001,89.087,3410 3412 | TARRA,0.001,89.088,3411 3413 | TARI,0.001,89.089,3412 3414 | TAMMERA,0.001,89.090,3413 3415 | SHAKIA,0.001,89.092,3414 3416 | SADYE,0.001,89.093,3415 3417 | RUTHANNE,0.001,89.094,3416 3418 | ROCHEL,0.001,89.095,3417 3419 | RIVKA,0.001,89.097,3418 3420 | PURA,0.001,89.098,3419 3421 | NENITA,0.001,89.099,3420 3422 | NATISHA,0.001,89.100,3421 3423 | MING,0.001,89.102,3422 3424 | MERRILEE,0.001,89.103,3423 3425 | MELODEE,0.001,89.104,3424 3426 | MARVIS,0.001,89.105,3425 3427 | LUCILLA,0.001,89.107,3426 3428 | LEENA,0.001,89.108,3427 3429 | LAVETA,0.001,89.109,3428 3430 | LARITA,0.001,89.110,3429 3431 | LANIE,0.001,89.112,3430 3432 | KEREN,0.001,89.113,3431 3433 | ILEEN,0.001,89.114,3432 3434 | GEORGEANN,0.001,89.115,3433 3435 | GENNA,0.001,89.117,3434 3436 | GENESIS,0.001,89.118,3435 3437 | FRIDA,0.001,89.119,3436 3438 | EWA,0.001,89.120,3437 3439 | EUFEMIA,0.001,89.122,3438 3440 | EMELY,0.001,89.123,3439 3441 | ELA,0.001,89.124,3440 3442 | EDYTH,0.001,89.126,3441 3443 | DEONNA,0.001,89.127,3442 3444 | DEADRA,0.001,89.128,3443 3445 | DARLENA,0.001,89.129,3444 3446 | CHANELL,0.001,89.131,3445 3447 | CHAN,0.001,89.132,3446 3448 | CATHERN,0.001,89.133,3447 3449 | CASSONDRA,0.001,89.134,3448 3450 | CASSAUNDRA,0.001,89.136,3449 3451 | BERNARDA,0.001,89.137,3450 3452 | BERNA,0.001,89.138,3451 3453 | ARLINDA,0.001,89.139,3452 3454 | ANAMARIA,0.001,89.141,3453 3455 | ALBERT,0.001,89.142,3454 3456 | WESLEY,0.001,89.143,3455 3457 | VERTIE,0.001,89.144,3456 3458 | VALERI,0.001,89.146,3457 3459 | TORRI,0.001,89.147,3458 3460 | TATYANA,0.001,89.148,3459 3461 | STASIA,0.001,89.149,3460 3462 | SHERISE,0.001,89.150,3461 3463 | SHERILL,0.001,89.152,3462 3464 | SEASON,0.001,89.153,3463 3465 | SCOTTIE,0.001,89.154,3464 3466 | SANDA,0.001,89.155,3465 3467 | RUTHE,0.001,89.157,3466 3468 | ROSY,0.001,89.158,3467 3469 | ROBERTO,0.001,89.159,3468 3470 | ROBBI,0.001,89.160,3469 3471 | RANEE,0.001,89.161,3470 3472 | QUYEN,0.001,89.163,3471 3473 | PEARLY,0.001,89.164,3472 3474 | PALMIRA,0.001,89.165,3473 3475 | ONITA,0.001,89.166,3474 3476 | NISHA,0.001,89.168,3475 3477 | NIESHA,0.001,89.169,3476 3478 | NIDA,0.001,89.170,3477 3479 | NEVADA,0.001,89.171,3478 3480 | NAM,0.001,89.172,3479 3481 | MERLYN,0.001,89.174,3480 3482 | MAYOLA,0.001,89.175,3481 3483 | MARYLOUISE,0.001,89.176,3482 3484 | MARYLAND,0.001,89.177,3483 3485 | MARX,0.001,89.179,3484 3486 | MARTH,0.001,89.180,3485 3487 | MARGENE,0.001,89.181,3486 3488 | MADELAINE,0.001,89.182,3487 3489 | LONDA,0.001,89.183,3488 3490 | LEONTINE,0.001,89.185,3489 3491 | LEOMA,0.001,89.186,3490 3492 | LEIA,0.001,89.187,3491 3493 | LAWRENCE,0.001,89.188,3492 3494 | LAURALEE,0.001,89.190,3493 3495 | LANORA,0.001,89.191,3494 3496 | LAKITA,0.001,89.192,3495 3497 | KIYOKO,0.001,89.193,3496 3498 | KETURAH,0.001,89.195,3497 3499 | KATELIN,0.001,89.196,3498 3500 | KAREEN,0.001,89.197,3499 3501 | JONIE,0.001,89.198,3500 3502 | JOHNETTE,0.001,89.199,3501 3503 | JENEE,0.001,89.201,3502 3504 | JEANETT,0.001,89.202,3503 3505 | IZETTA,0.001,89.203,3504 3506 | HIEDI,0.001,89.204,3505 3507 | HEIKE,0.001,89.206,3506 3508 | HASSIE,0.001,89.207,3507 3509 | HAROLD,0.001,89.208,3508 3510 | GIUSEPPINA,0.001,89.209,3509 3511 | GEORGANN,0.001,89.210,3510 3512 | FIDELA,0.001,89.212,3511 3513 | FERNANDE,0.001,89.213,3512 3514 | ELWANDA,0.001,89.214,3513 3515 | ELLAMAE,0.001,89.215,3514 3516 | ELIZ,0.001,89.217,3515 3517 | DUSTI,0.001,89.218,3516 3518 | DOTTY,0.001,89.219,3517 3519 | CYNDY,0.001,89.220,3518 3520 | CORALIE,0.001,89.221,3519 3521 | CELESTA,0.001,89.223,3520 3522 | ARGENTINA,0.001,89.224,3521 3523 | ALVERTA,0.001,89.225,3522 3524 | XENIA,0.001,89.226,3523 3525 | WAVA,0.001,89.228,3524 3526 | VANETTA,0.001,89.229,3525 3527 | TORRIE,0.001,89.230,3526 3528 | TASHINA,0.001,89.231,3527 3529 | TANDY,0.001,89.232,3528 3530 | TAMBRA,0.001,89.233,3529 3531 | TAMA,0.001,89.235,3530 3532 | STEPANIE,0.001,89.236,3531 3533 | SHILA,0.001,89.237,3532 3534 | SHAUNTA,0.001,89.238,3533 3535 | SHARAN,0.001,89.239,3534 3536 | SHANIQUA,0.001,89.241,3535 3537 | SHAE,0.001,89.242,3536 3538 | SETSUKO,0.001,89.243,3537 3539 | SERAFINA,0.001,89.244,3538 3540 | SANDEE,0.001,89.245,3539 3541 | ROSAMARIA,0.001,89.247,3540 3542 | PRISCILA,0.001,89.248,3541 3543 | OLINDA,0.001,89.249,3542 3544 | NADENE,0.001,89.250,3543 3545 | MUOI,0.001,89.251,3544 3546 | MICHELINA,0.001,89.253,3545 3547 | MERCEDEZ,0.001,89.254,3546 3548 | MARYROSE,0.001,89.255,3547 3549 | MARIN,0.001,89.256,3548 3550 | MARCENE,0.001,89.257,3549 3551 | MAO,0.001,89.259,3550 3552 | MAGALI,0.001,89.260,3551 3553 | MAFALDA,0.001,89.261,3552 3554 | LOGAN,0.001,89.262,3553 3555 | LINN,0.001,89.263,3554 3556 | LANNIE,0.001,89.265,3555 3557 | KAYCE,0.001,89.266,3556 3558 | KAROLINE,0.001,89.267,3557 3559 | KAMILAH,0.001,89.268,3558 3560 | KAMALA,0.001,89.269,3559 3561 | JUSTA,0.001,89.270,3560 3562 | JOLINE,0.001,89.272,3561 3563 | JENNINE,0.001,89.273,3562 3564 | JACQUETTA,0.001,89.274,3563 3565 | IRAIDA,0.001,89.275,3564 3566 | GERALD,0.001,89.276,3565 3567 | GEORGEANNA,0.001,89.278,3566 3568 | FRANCHESCA,0.001,89.279,3567 3569 | FAIRY,0.001,89.280,3568 3570 | EMELINE,0.001,89.281,3569 3571 | ELANE,0.001,89.282,3570 3572 | EHTEL,0.001,89.284,3571 3573 | EARLIE,0.001,89.285,3572 3574 | DULCIE,0.001,89.286,3573 3575 | DALENE,0.001,89.287,3574 3576 | CRIS,0.001,89.288,3575 3577 | CLASSIE,0.001,89.290,3576 3578 | CHERE,0.001,89.291,3577 3579 | CHARIS,0.001,89.292,3578 3580 | CAROYLN,0.001,89.293,3579 3581 | CARMINA,0.001,89.294,3580 3582 | CARITA,0.001,89.296,3581 3583 | BRIAN,0.001,89.297,3582 3584 | BETHANIE,0.001,89.298,3583 3585 | AYAKO,0.001,89.299,3584 3586 | ARICA,0.001,89.300,3585 3587 | AN,0.001,89.301,3586 3588 | ALYSA,0.001,89.303,3587 3589 | ALESSANDRA,0.001,89.304,3588 3590 | AKILAH,0.001,89.305,3589 3591 | ADRIEN,0.001,89.306,3590 3592 | ZETTA,0.001,89.307,3591 3593 | YOULANDA,0.001,89.309,3592 3594 | YELENA,0.001,89.310,3593 3595 | YAHAIRA,0.001,89.311,3594 3596 | XUAN,0.001,89.312,3595 3597 | WENDOLYN,0.001,89.313,3596 3598 | VICTOR,0.001,89.314,3597 3599 | TIJUANA,0.001,89.316,3598 3600 | TERRELL,0.001,89.317,3599 3601 | TERINA,0.001,89.318,3600 3602 | TERESIA,0.001,89.319,3601 3603 | SUZI,0.001,89.320,3602 3604 | SUNDAY,0.001,89.321,3603 3605 | SHERELL,0.001,89.323,3604 3606 | SHAVONDA,0.001,89.324,3605 3607 | SHAUNTE,0.001,89.325,3606 3608 | SHARDA,0.001,89.326,3607 3609 | SHAKITA,0.001,89.327,3608 3610 | SENA,0.001,89.328,3609 3611 | RYANN,0.001,89.330,3610 3612 | RUBI,0.001,89.331,3611 3613 | RIVA,0.001,89.332,3612 3614 | REGINIA,0.001,89.333,3613 3615 | REA,0.001,89.334,3614 3616 | RACHAL,0.001,89.335,3615 3617 | PARTHENIA,0.001,89.336,3616 3618 | PAMULA,0.001,89.338,3617 3619 | MONNIE,0.001,89.339,3618 3620 | MONET,0.001,89.340,3619 3621 | MICHAELE,0.001,89.341,3620 3622 | MELIA,0.001,89.342,3621 3623 | MARINE,0.001,89.343,3622 3624 | MALKA,0.001,89.345,3623 3625 | MAISHA,0.001,89.346,3624 3626 | LISANDRA,0.001,89.347,3625 3627 | LEO,0.001,89.348,3626 3628 | LEKISHA,0.001,89.349,3627 3629 | LEAN,0.001,89.350,3628 3630 | LAURENCE,0.001,89.352,3629 3631 | LAKENDRA,0.001,89.353,3630 3632 | KRYSTIN,0.001,89.354,3631 3633 | KORTNEY,0.001,89.355,3632 3634 | KIZZIE,0.001,89.356,3633 3635 | KITTIE,0.001,89.357,3634 3636 | KERA,0.001,89.359,3635 3637 | KENDAL,0.001,89.360,3636 3638 | KEMBERLY,0.001,89.361,3637 3639 | KANISHA,0.001,89.362,3638 3640 | JULENE,0.001,89.363,3639 3641 | JULE,0.001,89.364,3640 3642 | JOSHUA,0.001,89.366,3641 3643 | JOHANNE,0.001,89.367,3642 3644 | JEFFREY,0.001,89.368,3643 3645 | JAMEE,0.001,89.369,3644 3646 | HAN,0.001,89.370,3645 3647 | HALLEY,0.001,89.371,3646 3648 | GIDGET,0.001,89.373,3647 3649 | GALINA,0.001,89.374,3648 3650 | FREDRICKA,0.001,89.375,3649 3651 | FLETA,0.001,89.376,3650 3652 | FATIMAH,0.001,89.377,3651 3653 | EUSEBIA,0.001,89.378,3652 3654 | ELZA,0.001,89.379,3653 3655 | ELEONORE,0.001,89.381,3654 3656 | DORTHEY,0.001,89.382,3655 3657 | DORIA,0.001,89.383,3656 3658 | DONELLA,0.001,89.384,3657 3659 | DINORAH,0.001,89.385,3658 3660 | DELORSE,0.001,89.386,3659 3661 | CLARETHA,0.001,89.388,3660 3662 | CHRISTINIA,0.001,89.389,3661 3663 | CHARLYN,0.001,89.390,3662 3664 | BONG,0.001,89.391,3663 3665 | BELKIS,0.001,89.392,3664 3666 | AZZIE,0.001,89.393,3665 3667 | ANDERA,0.001,89.395,3666 3668 | AIKO,0.001,89.396,3667 3669 | ADENA,0.001,89.397,3668 3670 | YER,0.001,89.398,3669 3671 | YAJAIRA,0.001,89.399,3670 3672 | WAN,0.001,89.400,3671 3673 | VANIA,0.001,89.401,3672 3674 | ULRIKE,0.001,89.403,3673 3675 | TOSHIA,0.001,89.404,3674 3676 | TIFANY,0.001,89.405,3675 3677 | STEFANY,0.001,89.406,3676 3678 | SHIZUE,0.001,89.407,3677 3679 | SHENIKA,0.001,89.408,3678 3680 | SHAWANNA,0.001,89.409,3679 3681 | SHAROLYN,0.001,89.410,3680 3682 | SHARILYN,0.001,89.412,3681 3683 | SHAQUANA,0.001,89.413,3682 3684 | SHANTAY,0.001,89.414,3683 3685 | SEE,0.001,89.415,3684 3686 | ROZANNE,0.001,89.416,3685 3687 | ROSELEE,0.001,89.417,3686 3688 | RICKIE,0.001,89.418,3687 3689 | REMONA,0.001,89.420,3688 3690 | REANNA,0.001,89.421,3689 3691 | RAELENE,0.001,89.422,3690 3692 | QUINN,0.001,89.423,3691 3693 | PHUNG,0.001,89.424,3692 3694 | PETRONILA,0.001,89.425,3693 3695 | NATACHA,0.001,89.426,3694 3696 | NANCEY,0.001,89.427,3695 3697 | MYRL,0.001,89.429,3696 3698 | MIYOKO,0.001,89.430,3697 3699 | MIESHA,0.001,89.431,3698 3700 | MERIDETH,0.001,89.432,3699 3701 | MARVELLA,0.001,89.433,3700 3702 | MARQUITTA,0.001,89.434,3701 3703 | MARHTA,0.001,89.435,3702 3704 | MARCHELLE,0.001,89.436,3703 3705 | LIZETH,0.001,89.438,3704 3706 | LIBBIE,0.001,89.439,3705 3707 | LAHOMA,0.001,89.440,3706 3708 | LADAWN,0.001,89.441,3707 3709 | KINA,0.001,89.442,3708 3710 | KATHELEEN,0.001,89.443,3709 3711 | KATHARYN,0.001,89.444,3710 3712 | KARISA,0.001,89.446,3711 3713 | KALEIGH,0.001,89.447,3712 3714 | JUNIE,0.001,89.448,3713 3715 | JULIEANN,0.001,89.449,3714 3716 | JOHNSIE,0.001,89.450,3715 3717 | JANEAN,0.001,89.451,3716 3718 | JAIMEE,0.001,89.452,3717 3719 | JACKQUELINE,0.001,89.453,3718 3720 | HISAKO,0.001,89.455,3719 3721 | HERMA,0.001,89.456,3720 3722 | HELAINE,0.001,89.457,3721 3723 | GWYNETH,0.001,89.458,3722 3724 | GLENN,0.001,89.459,3723 3725 | GITA,0.001,89.460,3724 3726 | EUSTOLIA,0.001,89.461,3725 3727 | EMELINA,0.001,89.462,3726 3728 | ELIN,0.001,89.464,3727 3729 | EDRIS,0.001,89.465,3728 3730 | DONNETTE,0.001,89.466,3729 3731 | DONNETTA,0.001,89.467,3730 3732 | DIERDRE,0.001,89.468,3731 3733 | DENAE,0.001,89.469,3732 3734 | DARCEL,0.001,89.470,3733 3735 | CLAUDE,0.001,89.472,3734 3736 | CLARISA,0.001,89.473,3735 3737 | CINDERELLA,0.001,89.474,3736 3738 | CHIA,0.001,89.475,3737 3739 | CHARLESETTA,0.001,89.476,3738 3740 | CHARITA,0.001,89.477,3739 3741 | CELSA,0.001,89.478,3740 3742 | CASSY,0.001,89.479,3741 3743 | CASSI,0.001,89.481,3742 3744 | CARLEE,0.001,89.482,3743 3745 | BRUNA,0.001,89.483,3744 3746 | BRITTANEY,0.001,89.484,3745 3747 | BRANDE,0.001,89.485,3746 3748 | BILLI,0.001,89.486,3747 3749 | BAO,0.001,89.487,3748 3750 | ANTONETTA,0.001,89.488,3749 3751 | ANGLA,0.001,89.490,3750 3752 | ANGELYN,0.001,89.491,3751 3753 | ANALISA,0.001,89.492,3752 3754 | ALANE,0.001,89.493,3753 3755 | WENONA,0.001,89.494,3754 3756 | WENDIE,0.001,89.495,3755 3757 | VERONIQUE,0.001,89.496,3756 3758 | VANNESA,0.001,89.497,3757 3759 | TOBIE,0.001,89.498,3758 3760 | TEMPIE,0.001,89.500,3759 3761 | SUMIKO,0.001,89.501,3760 3762 | SULEMA,0.001,89.502,3761 3763 | SPARKLE,0.001,89.503,3762 3764 | SOMER,0.001,89.504,3763 3765 | SHEBA,0.001,89.505,3764 3766 | SHAYNE,0.001,89.506,3765 3767 | SHARICE,0.001,89.507,3766 3768 | SHANEL,0.001,89.508,3767 3769 | SHALON,0.001,89.509,3768 3770 | SAGE,0.001,89.511,3769 3771 | ROY,0.001,89.512,3770 3772 | ROSIO,0.001,89.513,3771 3773 | ROSELIA,0.001,89.514,3772 3774 | RENAY,0.001,89.515,3773 3775 | REMA,0.001,89.516,3774 3776 | REENA,0.001,89.517,3775 3777 | PORSCHE,0.001,89.518,3776 3778 | PING,0.001,89.519,3777 3779 | PEG,0.001,89.520,3778 3780 | OZIE,0.001,89.522,3779 3781 | ORETHA,0.001,89.523,3780 3782 | ORALEE,0.001,89.524,3781 3783 | ODA,0.001,89.525,3782 3784 | NU,0.001,89.526,3783 3785 | NGAN,0.001,89.527,3784 3786 | NAKESHA,0.001,89.528,3785 3787 | MILLY,0.001,89.529,3786 3788 | MARYBELLE,0.001,89.530,3787 3789 | MARLIN,0.001,89.531,3788 3790 | MARIS,0.001,89.533,3789 3791 | MARGRETT,0.001,89.534,3790 3792 | MARAGARET,0.001,89.535,3791 3793 | MANIE,0.001,89.536,3792 3794 | LURLENE,0.001,89.537,3793 3795 | LILLIA,0.001,89.538,3794 3796 | LIESELOTTE,0.001,89.539,3795 3797 | LAVELLE,0.001,89.540,3796 3798 | LASHAUNDA,0.001,89.541,3797 3799 | LAKEESHA,0.001,89.542,3798 3800 | KEITH,0.001,89.544,3799 3801 | KAYCEE,0.001,89.545,3800 3802 | KALYN,0.001,89.546,3801 3803 | JOYA,0.001,89.547,3802 3804 | JOETTE,0.001,89.548,3803 3805 | JENAE,0.001,89.549,3804 3806 | JANIECE,0.001,89.550,3805 3807 | ILLA,0.001,89.551,3806 3808 | GRISEL,0.001,89.552,3807 3809 | GLAYDS,0.001,89.553,3808 3810 | GENEVIE,0.001,89.555,3809 3811 | GALA,0.001,89.556,3810 3812 | FREDDA,0.001,89.557,3811 3813 | FRED,0.001,89.558,3812 3814 | ELMER,0.001,89.559,3813 3815 | ELEONOR,0.001,89.560,3814 3816 | DEBERA,0.001,89.561,3815 3817 | DEANDREA,0.001,89.562,3816 3818 | DAN,0.001,89.563,3817 3819 | CORRINNE,0.001,89.564,3818 3820 | CORDIA,0.001,89.566,3819 3821 | CONTESSA,0.001,89.567,3820 3822 | COLENE,0.001,89.568,3821 3823 | CLEOTILDE,0.001,89.569,3822 3824 | CHARLOTT,0.001,89.570,3823 3825 | CHANTAY,0.001,89.571,3824 3826 | CECILLE,0.001,89.572,3825 3827 | BEATRIS,0.001,89.573,3826 3828 | AZALEE,0.001,89.574,3827 3829 | ARLEAN,0.001,89.575,3828 3830 | ARDATH,0.001,89.577,3829 3831 | ANJELICA,0.001,89.578,3830 3832 | ANJA,0.001,89.579,3831 3833 | ALFREDIA,0.001,89.580,3832 3834 | ALEISHA,0.001,89.581,3833 3835 | ADAM,0.001,89.582,3834 3836 | ZADA,0.001,89.583,3835 3837 | YUONNE,0.001,89.584,3836 3838 | XIAO,0.001,89.585,3837 3839 | WILLODEAN,0.001,89.586,3838 3840 | WHITLEY,0.001,89.587,3839 3841 | VENNIE,0.001,89.588,3840 3842 | VANNA,0.001,89.589,3841 3843 | TYISHA,0.001,89.591,3842 3844 | TOVA,0.001,89.592,3843 3845 | TORIE,0.001,89.593,3844 3846 | TONISHA,0.001,89.594,3845 3847 | TILDA,0.001,89.595,3846 3848 | TIEN,0.001,89.596,3847 3849 | TEMPLE,0.001,89.597,3848 3850 | SIRENA,0.001,89.598,3849 3851 | SHERRIL,0.001,89.599,3850 3852 | SHANTI,0.001,89.600,3851 3853 | SHAN,0.001,89.601,3852 3854 | SENAIDA,0.001,89.602,3853 3855 | SAMELLA,0.001,89.603,3854 3856 | ROBBYN,0.001,89.604,3855 3857 | RENDA,0.001,89.606,3856 3858 | REITA,0.001,89.607,3857 3859 | PHEBE,0.001,89.608,3858 3860 | PAULITA,0.001,89.609,3859 3861 | NOBUKO,0.001,89.610,3860 3862 | NGUYET,0.001,89.611,3861 3863 | NEOMI,0.001,89.612,3862 3864 | MOON,0.001,89.613,3863 3865 | MIKAELA,0.001,89.614,3864 3866 | MELANIA,0.001,89.615,3865 3867 | MAXIMINA,0.001,89.616,3866 3868 | MARG,0.001,89.617,3867 3869 | MAISIE,0.001,89.618,3868 3870 | LYNNA,0.001,89.619,3869 3871 | LILLI,0.001,89.620,3870 3872 | LAYNE,0.001,89.622,3871 3873 | LASHAUN,0.001,89.623,3872 3874 | LAKENYA,0.001,89.624,3873 3875 | LAEL,0.001,89.625,3874 3876 | KIRSTIE,0.001,89.626,3875 3877 | KATHLINE,0.001,89.627,3876 3878 | KASHA,0.001,89.628,3877 3879 | KARLYN,0.001,89.629,3878 3880 | KARIMA,0.001,89.630,3879 3881 | JOVAN,0.001,89.631,3880 3882 | JOSEFINE,0.001,89.632,3881 3883 | JENNELL,0.001,89.633,3882 3884 | JACQUI,0.001,89.634,3883 3885 | JACKELYN,0.001,89.635,3884 3886 | HYO,0.001,89.636,3885 3887 | HIEN,0.001,89.638,3886 3888 | GRAZYNA,0.001,89.639,3887 3889 | FLORRIE,0.001,89.640,3888 3890 | FLORIA,0.001,89.641,3889 3891 | ELEONORA,0.001,89.642,3890 3892 | DWANA,0.001,89.643,3891 3893 | DORLA,0.001,89.644,3892 3894 | DONG,0.001,89.645,3893 3895 | DELMY,0.001,89.646,3894 3896 | DEJA,0.001,89.647,3895 3897 | DEDE,0.001,89.648,3896 3898 | DANN,0.001,89.649,3897 3899 | CRYSTA,0.001,89.650,3898 3900 | CLELIA,0.001,89.651,3899 3901 | CLARIS,0.001,89.652,3900 3902 | CLARENCE,0.001,89.654,3901 3903 | CHIEKO,0.001,89.655,3902 3904 | CHERLYN,0.001,89.656,3903 3905 | CHERELLE,0.001,89.657,3904 3906 | CHARMAIN,0.001,89.658,3905 3907 | CHARA,0.001,89.659,3906 3908 | CAMMY,0.001,89.660,3907 3909 | BEE,0.001,89.661,3908 3910 | ARNETTE,0.001,89.662,3909 3911 | ARDELLE,0.001,89.663,3910 3912 | ANNIKA,0.001,89.664,3911 3913 | AMIEE,0.001,89.665,3912 3914 | AMEE,0.001,89.666,3913 3915 | ALLENA,0.001,89.667,3914 3916 | YVONE,0.001,89.668,3915 3917 | YUKI,0.001,89.670,3916 3918 | YOSHIE,0.001,89.671,3917 3919 | YEVETTE,0.001,89.672,3918 3920 | YAEL,0.001,89.673,3919 3921 | WILLETTA,0.001,89.674,3920 3922 | VONCILE,0.001,89.675,3921 3923 | VENETTA,0.001,89.676,3922 3924 | TULA,0.001,89.677,3923 3925 | TONETTE,0.001,89.678,3924 3926 | TIMIKA,0.001,89.679,3925 3927 | TEMIKA,0.001,89.680,3926 3928 | TELMA,0.001,89.681,3927 3929 | TEISHA,0.001,89.682,3928 3930 | TAREN,0.001,89.683,3929 3931 | TA,0.001,89.684,3930 3932 | STACEE,0.001,89.685,3931 3933 | SHIN,0.001,89.686,3932 3934 | SHAWNTA,0.001,89.687,3933 3935 | SATURNINA,0.001,89.688,3934 3936 | RICARDA,0.001,89.689,3935 3937 | POK,0.001,89.690,3936 3938 | PASTY,0.001,89.691,3937 3939 | ONIE,0.001,89.692,3938 3940 | NUBIA,0.001,89.693,3939 3941 | MORA,0.001,89.694,3940 3942 | MIKE,0.001,89.695,3941 3943 | MARIELLE,0.001,89.696,3942 3944 | MARIELLA,0.001,89.697,3943 3945 | MARIANELA,0.001,89.699,3944 3946 | MARDELL,0.001,89.700,3945 3947 | MANY,0.001,89.701,3946 3948 | LUANNA,0.001,89.702,3947 3949 | LOISE,0.001,89.703,3948 3950 | LISABETH,0.001,89.704,3949 3951 | LINDSY,0.001,89.705,3950 3952 | LILLIANA,0.001,89.706,3951 3953 | LILLIAM,0.001,89.707,3952 3954 | LELAH,0.001,89.708,3953 3955 | LEIGHA,0.001,89.709,3954 3956 | LEANORA,0.001,89.710,3955 3957 | LANG,0.001,89.711,3956 3958 | KRISTEEN,0.001,89.712,3957 3959 | KHALILAH,0.001,89.713,3958 3960 | KEELEY,0.001,89.714,3959 3961 | KANDRA,0.001,89.715,3960 3962 | JUNKO,0.001,89.716,3961 3963 | JOAQUINA,0.001,89.717,3962 3964 | JERLENE,0.001,89.718,3963 3965 | JANI,0.001,89.719,3964 3966 | JAMIKA,0.001,89.720,3965 3967 | JAME,0.001,89.721,3966 3968 | HSIU,0.001,89.722,3967 3969 | HERMILA,0.001,89.723,3968 3970 | GOLDEN,0.001,89.724,3969 3971 | GENEVIVE,0.001,89.725,3970 3972 | EVIA,0.001,89.727,3971 3973 | EUGENA,0.001,89.728,3972 3974 | EMMALINE,0.001,89.729,3973 3975 | ELFREDA,0.001,89.730,3974 3976 | ELENE,0.001,89.731,3975 3977 | DONETTE,0.001,89.732,3976 3978 | DELCIE,0.001,89.733,3977 3979 | DEEANNA,0.001,89.734,3978 3980 | DARCEY,0.001,89.735,3979 3981 | CUC,0.001,89.736,3980 3982 | CLARINDA,0.001,89.737,3981 3983 | CIRA,0.001,89.738,3982 3984 | CHAE,0.001,89.739,3983 3985 | CELINDA,0.001,89.740,3984 3986 | CATHERYN,0.001,89.741,3985 3987 | CATHERIN,0.001,89.742,3986 3988 | CASIMIRA,0.001,89.743,3987 3989 | CARMELIA,0.001,89.744,3988 3990 | CAMELLIA,0.001,89.745,3989 3991 | BREANA,0.001,89.746,3990 3992 | BOBETTE,0.001,89.747,3991 3993 | BERNARDINA,0.001,89.748,3992 3994 | BEBE,0.001,89.749,3993 3995 | BASILIA,0.001,89.750,3994 3996 | ARLYNE,0.001,89.751,3995 3997 | AMAL,0.001,89.752,3996 3998 | ALAYNA,0.001,89.753,3997 3999 | ZONIA,0.001,89.754,3998 4000 | ZENIA,0.001,89.755,3999 4001 | YURIKO,0.001,89.756,4000 4002 | YAEKO,0.001,89.757,4001 4003 | WYNELL,0.001,89.758,4002 4004 | WILLOW,0.001,89.759,4003 4005 | WILLENA,0.001,89.760,4004 4006 | VERNIA,0.001,89.761,4005 4007 | TU,0.001,89.762,4006 4008 | TRAVIS,0.001,89.764,4007 4009 | TORA,0.001,89.765,4008 4010 | TERRILYN,0.001,89.766,4009 4011 | TERICA,0.001,89.767,4010 4012 | TENESHA,0.001,89.768,4011 4013 | TAWNA,0.001,89.769,4012 4014 | TAJUANA,0.001,89.770,4013 4015 | TAINA,0.001,89.771,4014 4016 | STEPHNIE,0.001,89.772,4015 4017 | SONA,0.001,89.773,4016 4018 | SOL,0.001,89.774,4017 4019 | SINA,0.001,89.775,4018 4020 | SHONDRA,0.001,89.776,4019 4021 | SHIZUKO,0.001,89.777,4020 4022 | SHERLENE,0.001,89.778,4021 4023 | SHERICE,0.001,89.779,4022 4024 | SHARIKA,0.001,89.780,4023 4025 | ROSSIE,0.001,89.781,4024 4026 | ROSENA,0.001,89.782,4025 4027 | RORY,0.001,89.783,4026 4028 | RIMA,0.001,89.784,4027 4029 | RIA,0.001,89.785,4028 4030 | RHEBA,0.001,89.786,4029 4031 | RENNA,0.001,89.787,4030 4032 | PETER,0.001,89.788,4031 4033 | NATALYA,0.001,89.789,4032 4034 | NANCEE,0.001,89.790,4033 4035 | MELODI,0.001,89.791,4034 4036 | MEDA,0.001,89.792,4035 4037 | MAXIMA,0.001,89.793,4036 4038 | MATHA,0.001,89.794,4037 4039 | MARKETTA,0.001,89.795,4038 4040 | MARICRUZ,0.001,89.796,4039 4041 | MARCELENE,0.001,89.797,4040 4042 | MALVINA,0.001,89.798,4041 4043 | LUBA,0.001,89.799,4042 4044 | LOUETTA,0.001,89.800,4043 4045 | LEIDA,0.001,89.801,4044 4046 | LECIA,0.001,89.802,4045 4047 | LAURAN,0.001,89.803,4046 4048 | LASHAWNA,0.001,89.804,4047 4049 | LAINE,0.001,89.805,4048 4050 | KHADIJAH,0.001,89.806,4049 4051 | KATERINE,0.001,89.807,4050 4052 | KASI,0.001,89.808,4051 4053 | KALLIE,0.001,89.809,4052 4054 | JULIETTA,0.001,89.810,4053 4055 | JESUSITA,0.001,89.811,4054 4056 | JESTINE,0.001,89.812,4055 4057 | JESSIA,0.001,89.813,4056 4058 | JEREMY,0.001,89.814,4057 4059 | JEFFIE,0.001,89.815,4058 4060 | JANYCE,0.001,89.816,4059 4061 | ISADORA,0.001,89.817,4060 4062 | GEORGIANNE,0.001,89.818,4061 4063 | FIDELIA,0.001,89.819,4062 4064 | EVITA,0.001,89.820,4063 4065 | EURA,0.001,89.821,4064 4066 | EULAH,0.001,89.822,4065 4067 | ESTEFANA,0.001,89.823,4066 4068 | ELSY,0.001,89.824,4067 4069 | ELIZABET,0.001,89.825,4068 4070 | ELADIA,0.001,89.826,4069 4071 | DODIE,0.001,89.827,4070 4072 | DION,0.001,89.828,4071 4073 | DIA,0.001,89.829,4072 4074 | DENISSE,0.001,89.830,4073 4075 | DELORAS,0.001,89.831,4074 4076 | DELILA,0.001,89.832,4075 4077 | DAYSI,0.001,89.833,4076 4078 | DAKOTA,0.001,89.834,4077 4079 | CURTIS,0.001,89.835,4078 4080 | CRYSTLE,0.001,89.836,4079 4081 | CONCHA,0.001,89.837,4080 4082 | COLBY,0.001,89.838,4081 4083 | CLARETTA,0.001,89.839,4082 4084 | CHU,0.001,89.840,4083 4085 | CHRISTIA,0.001,89.841,4084 4086 | CHARLSIE,0.001,89.842,4085 4087 | CHARLENA,0.001,89.843,4086 4088 | CARYLON,0.001,89.844,4087 4089 | BETTYANN,0.001,89.845,4088 4090 | ASLEY,0.001,89.846,4089 4091 | ASHLEA,0.001,89.847,4090 4092 | AMIRA,0.001,89.848,4091 4093 | AI,0.001,89.849,4092 4094 | AGUEDA,0.001,89.850,4093 4095 | AGNUS,0.001,89.851,4094 4096 | YUETTE,0.001,89.852,4095 4097 | VINITA,0.001,89.853,4096 4098 | VICTORINA,0.001,89.854,4097 4099 | TYNISHA,0.001,89.855,4098 4100 | TREENA,0.001,89.856,4099 4101 | TOCCARA,0.001,89.857,4100 4102 | TISH,0.001,89.858,4101 4103 | THOMASENA,0.001,89.859,4102 4104 | TEGAN,0.001,89.860,4103 4105 | SOILA,0.001,89.861,4104 4106 | SHILOH,0.001,89.862,4105 4107 | SHENNA,0.001,89.863,4106 4108 | SHARMAINE,0.001,89.864,4107 4109 | SHANTAE,0.001,89.865,4108 4110 | SHANDI,0.001,89.866,4109 4111 | SEPTEMBER,0.001,89.867,4110 4112 | SARAN,0.001,89.867,4111 4113 | SARAI,0.001,89.868,4112 4114 | SANA,0.001,89.869,4113 4115 | SAMUEL,0.001,89.870,4114 4116 | SALLEY,0.001,89.871,4115 4117 | ROSETTE,0.001,89.872,4116 4118 | ROLANDE,0.001,89.873,4117 4119 | REGINE,0.001,89.874,4118 4120 | OTELIA,0.001,89.875,4119 4121 | OSCAR,0.001,89.876,4120 4122 | OLEVIA,0.001,89.877,4121 4123 | NICHOLLE,0.001,89.878,4122 4124 | NECOLE,0.001,89.879,4123 4125 | NAIDA,0.001,89.880,4124 4126 | MYRTA,0.001,89.881,4125 4127 | MYESHA,0.001,89.882,4126 4128 | MITSUE,0.001,89.883,4127 4129 | MINTA,0.001,89.884,4128 4130 | MERTIE,0.001,89.885,4129 4131 | MARGY,0.001,89.886,4130 4132 | MAHALIA,0.001,89.887,4131 4133 | MADALENE,0.001,89.888,4132 4134 | LOVE,0.001,89.889,4133 4135 | LOURA,0.001,89.890,4134 4136 | LOREAN,0.001,89.891,4135 4137 | LEWIS,0.001,89.892,4136 4138 | LESHA,0.001,89.893,4137 4139 | LEONIDA,0.001,89.894,4138 4140 | LENITA,0.001,89.895,4139 4141 | LAVONE,0.001,89.896,4140 4142 | LASHELL,0.001,89.897,4141 4143 | LASHANDRA,0.001,89.898,4142 4144 | LAMONICA,0.001,89.899,4143 4145 | KIMBRA,0.001,89.900,4144 4146 | KATHERINA,0.001,89.901,4145 4147 | KARRY,0.001,89.902,4146 4148 | KANESHA,0.001,89.903,4147 4149 | JULIO,0.001,89.903,4148 4150 | JONG,0.001,89.904,4149 4151 | JENEVA,0.001,89.905,4150 4152 | JAQUELYN,0.001,89.906,4151 4153 | HWA,0.001,89.907,4152 4154 | GILMA,0.001,89.908,4153 4155 | GHISLAINE,0.001,89.909,4154 4156 | GERTRUDIS,0.001,89.910,4155 4157 | FRANSISCA,0.001,89.911,4156 4158 | FERMINA,0.001,89.912,4157 4159 | ETTIE,0.001,89.913,4158 4160 | ETSUKO,0.001,89.914,4159 4161 | ELLIS,0.001,89.915,4160 4162 | ELLAN,0.001,89.916,4161 4163 | ELIDIA,0.001,89.917,4162 4164 | EDRA,0.001,89.918,4163 4165 | DORETHEA,0.001,89.919,4164 4166 | DOREATHA,0.001,89.920,4165 4167 | DENYSE,0.001,89.921,4166 4168 | DENNY,0.001,89.922,4167 4169 | DEETTA,0.001,89.923,4168 4170 | DAINE,0.001,89.924,4169 4171 | CYRSTAL,0.001,89.925,4170 4172 | CORRIN,0.001,89.926,4171 4173 | CAYLA,0.001,89.927,4172 4174 | CARLITA,0.001,89.928,4173 4175 | CAMILA,0.001,89.929,4174 4176 | BURMA,0.001,89.930,4175 4177 | BULA,0.001,89.931,4176 4178 | BUENA,0.001,89.932,4177 4179 | BLAKE,0.001,89.933,4178 4180 | BARABARA,0.001,89.934,4179 4181 | AVRIL,0.001,89.935,4180 4182 | AUSTIN,0.001,89.936,4181 4183 | ALAINE,0.001,89.937,4182 4184 | ZANA,0.001,89.938,4183 4185 | WILHEMINA,0.001,89.938,4184 4186 | WANETTA,0.001,89.939,4185 4187 | VIRGIL,0.001,89.940,4186 4188 | VI,0.001,89.941,4187 4189 | VERONIKA,0.001,89.942,4188 4190 | VERNON,0.001,89.943,4189 4191 | VERLINE,0.001,89.944,4190 4192 | VASILIKI,0.001,89.945,4191 4193 | TONITA,0.001,89.946,4192 4194 | TISA,0.001,89.947,4193 4195 | TEOFILA,0.001,89.948,4194 4196 | TAYNA,0.001,89.949,4195 4197 | TAUNYA,0.001,89.950,4196 4198 | TANDRA,0.001,89.951,4197 4199 | TAKAKO,0.001,89.952,4198 4200 | SUNNI,0.001,89.953,4199 4201 | SUANNE,0.001,89.954,4200 4202 | SIXTA,0.001,89.954,4201 4203 | SHARELL,0.001,89.955,4202 4204 | SEEMA,0.001,89.956,4203 4205 | RUSSELL,0.001,89.957,4204 4206 | ROSENDA,0.001,89.958,4205 4207 | ROBENA,0.001,89.959,4206 4208 | RAYMONDE,0.001,89.960,4207 4209 | PEI,0.001,89.961,4208 4210 | PAMILA,0.001,89.962,4209 4211 | OZELL,0.001,89.963,4210 4212 | NEIDA,0.001,89.964,4211 4213 | NEELY,0.001,89.965,4212 4214 | MISTIE,0.001,89.966,4213 4215 | MICHA,0.001,89.967,4214 4216 | MERISSA,0.001,89.968,4215 4217 | MAURITA,0.001,89.969,4216 4218 | MARYLN,0.001,89.970,4217 4219 | MARYETTA,0.001,89.971,4218 4220 | MARSHALL,0.001,89.971,4219 4221 | MARCELL,0.001,89.972,4220 4222 | MALENA,0.001,89.973,4221 4223 | MAKEDA,0.001,89.974,4222 4224 | MADDIE,0.001,89.975,4223 4225 | LOVETTA,0.001,89.976,4224 4226 | LOURIE,0.001,89.977,4225 4227 | LORRINE,0.001,89.978,4226 4228 | LORILEE,0.001,89.979,4227 4229 | LESTER,0.001,89.980,4228 4230 | LAURENA,0.001,89.981,4229 4231 | LASHAY,0.001,89.982,4230 4232 | LARRAINE,0.001,89.983,4231 4233 | LAREE,0.001,89.984,4232 4234 | LACRESHA,0.001,89.985,4233 4235 | KRISTLE,0.001,89.986,4234 4236 | KRISHNA,0.001,89.987,4235 4237 | KEVA,0.001,89.987,4236 4238 | KEIRA,0.001,89.988,4237 4239 | KAROLE,0.001,89.989,4238 4240 | JOIE,0.001,89.990,4239 4241 | JINNY,0.001,89.991,4240 4242 | JEANNETTA,0.001,89.992,4241 4243 | JAMA,0.001,89.993,4242 4244 | HEIDY,0.001,89.994,4243 4245 | GILBERTE,0.001,89.995,4244 4246 | GEMA,0.001,89.996,4245 4247 | FAVIOLA,0.001,89.997,4246 4248 | EVELYNN,0.001,89.998,4247 4249 | ENDA,0.001,89.999,4248 4250 | ELLI,0.001,90.000,4249 4251 | ELLENA,0.001,90.001,4250 4252 | DIVINA,0.001,90.002,4251 4253 | DAGNY,0.001,90.003,4252 4254 | COLLENE,0.001,90.003,4253 4255 | CODI,0.001,90.004,4254 4256 | CINDIE,0.001,90.005,4255 4257 | CHASSIDY,0.001,90.006,4256 4258 | CHASIDY,0.001,90.007,4257 4259 | CATRICE,0.001,90.008,4258 4260 | CATHERINA,0.001,90.009,4259 4261 | CASSEY,0.001,90.010,4260 4262 | CAROLL,0.001,90.011,4261 4263 | CARLENA,0.001,90.012,4262 4264 | CANDRA,0.001,90.013,4263 4265 | CALISTA,0.001,90.014,4264 4266 | BRYANNA,0.001,90.015,4265 4267 | BRITTENY,0.001,90.016,4266 4268 | BEULA,0.001,90.017,4267 4269 | BARI,0.001,90.018,4268 4270 | AUDRIE,0.001,90.019,4269 4271 | AUDRIA,0.001,90.019,4270 4272 | ARDELIA,0.001,90.020,4271 4273 | ANNELLE,0.001,90.021,4272 4274 | ANGILA,0.001,90.022,4273 4275 | ALONA,0.001,90.023,4274 4276 | ALLYN,0.001,90.024,4275 4277 | --------------------------------------------------------------------------------