From 556c556808837ac175f220b49522a399ab0f3cdc Mon Sep 17 00:00:00 2001 From: Bassel Cheaib Date: Sun, 9 Feb 2020 11:46:04 +0200 Subject: [PATCH] Apply pub.dev health suggestions to improve score Remove unnecessary const keywords Remove unnecessary new keywords Prefer single quotes where they won't require escape sequences The function main should have a return type Omit type annotations for local variables Reformat code and optimize imports --- example/faker.dart | 2 +- lib/src/address.dart | 18 +- lib/src/company.dart | 8 +- lib/src/conference.dart | 2 +- lib/src/currency.dart | 2 +- lib/src/data/address/city_suffixes.dart | 2 +- lib/src/data/address/continents.dart | 4 +- lib/src/data/address/countries.dart | 494 +- lib/src/data/address/country_codes.dart | 2 +- lib/src/data/address/neighborhoods.dart | 2 +- lib/src/data/address/street_suffixes.dart | 2 +- lib/src/data/conference/conference_names.dart | 2 +- lib/src/data/currency/currency_codes.dart | 2 +- lib/src/data/currency/currency_names.dart | 338 +- lib/src/data/food/cuisines.dart | 2 +- lib/src/data/food/dishes.dart | 200 +- lib/src/data/food/restaurants.dart | 140 +- lib/src/data/job/job_adj.dart | 2 +- lib/src/data/job/job_noun.dart | 2 +- lib/src/data/job/job_prefix.dart | 2 +- lib/src/data/lorem/sentences.dart | 2 +- lib/src/data/person/firstnames.dart | 6016 ++++++++--------- lib/src/data/person/lastnames.dart | 938 +-- lib/src/data/sport/sport_names.dart | 2 +- lib/src/date.dart | 46 +- lib/src/faker.dart | 2 +- lib/src/internet.dart | 8 +- lib/src/lorem.dart | 6 +- lib/src/person.dart | 4 +- lib/src/random_generator.dart | 8 +- test/runner.dart | 2 +- test/specs/address.dart | 24 +- test/specs/company.dart | 6 +- test/specs/conference.dart | 6 +- test/specs/currency.dart | 6 +- test/specs/date.dart | 18 +- test/specs/food.dart | 10 +- test/specs/guid.dart | 6 +- test/specs/internet.dart | 26 +- test/specs/job.dart | 6 +- test/specs/lorem.dart | 6 +- test/specs/person.dart | 12 +- test/specs/random_generator.dart | 26 +- test/specs/sport.dart | 4 +- 44 files changed, 4212 insertions(+), 4206 deletions(-) diff --git a/example/faker.dart b/example/faker.dart index 9a09b77..be81f03 100644 --- a/example/faker.dart +++ b/example/faker.dart @@ -2,7 +2,7 @@ library faker.example; import 'package:faker/faker.dart'; -main() { +void main() { // Generate some different types of data. print(faker.address.country()); print(faker.company.name()); diff --git a/lib/src/address.dart b/lib/src/address.dart index e1af8eb..ce020c8 100644 --- a/lib/src/address.dart +++ b/lib/src/address.dart @@ -1,15 +1,15 @@ -import 'random_generator.dart'; -import 'faker.dart'; -import 'data/address/street_suffixes.dart'; import 'data/address/city_suffixes.dart'; -import 'data/address/neighborhoods.dart'; +import 'data/address/continents.dart'; import 'data/address/countries.dart'; import 'data/address/country_codes.dart'; -import 'data/address/continents.dart'; +import 'data/address/neighborhoods.dart'; +import 'data/address/street_suffixes.dart'; +import 'faker.dart'; +import 'random_generator.dart'; class Address { - static const compassDirections = const ['North', 'East', 'West', 'South']; - static const cityPrefixes = const ['New', 'Lake', 'Port']; + static const compassDirections = ['North', 'East', 'West', 'South']; + static const cityPrefixes = ['New', 'Lake', 'Port']; const Address(); @@ -68,8 +68,8 @@ class Address { /// faker.address.streetName(); /// ``` String streetName() => random.integer(2) == 0 - ? '${new Faker().person.lastName()} ${streetSuffix()}' - : '${new Faker().person.firstName()} ${streetSuffix()}'; + ? '${Faker().person.lastName()} ${streetSuffix()}' + : '${Faker().person.firstName()} ${streetSuffix()}'; /// Generates a street address. /// diff --git a/lib/src/company.dart b/lib/src/company.dart index 26361c6..9f74759 100644 --- a/lib/src/company.dart +++ b/lib/src/company.dart @@ -2,21 +2,21 @@ import 'faker.dart'; import 'random_generator.dart'; class Company { - static const _companySuffixes = const ['Inc', 'and Sons', 'LLC', 'Group']; - static const _positionPrefixes = const [ + static const _companySuffixes = ['Inc', 'and Sons', 'LLC', 'Group']; + static const _positionPrefixes = [ 'Executive', 'Assistant', 'General', 'Associate' ]; - static const _positions = const [ + static const _positions = [ 'President', 'Manager', 'Director', 'Secretary', 'Consultant' ]; - static const _positionAreas = const [ + static const _positionAreas = [ 'Finance', 'IT', 'Operations', diff --git a/lib/src/conference.dart b/lib/src/conference.dart index 5fd9bbf..d58e713 100644 --- a/lib/src/conference.dart +++ b/lib/src/conference.dart @@ -1,5 +1,5 @@ -import 'random_generator.dart'; import 'data/conference/conference_names.dart'; +import 'random_generator.dart'; class Conference { const Conference(); diff --git a/lib/src/currency.dart b/lib/src/currency.dart index 47d49bf..1c6385c 100644 --- a/lib/src/currency.dart +++ b/lib/src/currency.dart @@ -1,6 +1,6 @@ -import 'random_generator.dart'; import 'data/currency/currency_codes.dart'; import 'data/currency/currency_names.dart'; +import 'random_generator.dart'; class Currency { const Currency(); diff --git a/lib/src/data/address/city_suffixes.dart b/lib/src/data/address/city_suffixes.dart index c09c022..26ec178 100644 --- a/lib/src/data/address/city_suffixes.dart +++ b/lib/src/data/address/city_suffixes.dart @@ -1,4 +1,4 @@ -const citySuffixes = const [ +const citySuffixes = [ 'town', 'ton', 'land', diff --git a/lib/src/data/address/continents.dart b/lib/src/data/address/continents.dart index 8f4a6fc..29eefb4 100644 --- a/lib/src/data/address/continents.dart +++ b/lib/src/data/address/continents.dart @@ -1,10 +1,10 @@ -const continents = const [ +const continents = [ 'Africa', 'Antarctica', 'Asia', 'Europe', 'North America', - + // Some people use austrailia, whilst others use oceania. 'Oceania', diff --git a/lib/src/data/address/countries.dart b/lib/src/data/address/countries.dart index dfcea09..559110a 100644 --- a/lib/src/data/address/countries.dart +++ b/lib/src/data/address/countries.dart @@ -1,251 +1,251 @@ -const countries = const [ - "Afghanistan", - "Åland Islands", - "Albania", - "Algeria", - "American Samoa", - "Andorra", - "Angola", - "Anguilla", - "Antarctica", - "Antigua and Barbuda", - "Argentina", - "Armenia", - "Aruba", - "Australia", - "Austria", - "Azerbaijan", - "Bahamas", - "Bahrain", - "Bangladesh", - "Barbados", - "Belarus", - "Belgium", - "Belize", - "Benin", - "Bermuda", - "Bhutan", - "Bolivia, Plurinational State of", - "Bonaire, Sint Eustatius and Saba", - "Bosnia and Herzegovina", - "Botswana", - "Bouvet Island", - "Brazil", - "British Indian Ocean Territory", - "Brunei Darussalam", - "Bulgaria", - "Burkina Faso", - "Burundi", - "Cambodia", - "Cameroon", - "Canada", - "Cape Verde", - "Cayman Islands", - "Central African Republic", - "Chad", - "Chile", - "China", - "Christmas Island", - "Cocos (Keeling) Islands", - "Colombia", - "Comoros", - "Congo", - "Congo, The Democratic Republic of The", - "Cook Islands", - "Costa Rica", +const countries = [ + 'Afghanistan', + 'Åland Islands', + 'Albania', + 'Algeria', + 'American Samoa', + 'Andorra', + 'Angola', + 'Anguilla', + 'Antarctica', + 'Antigua and Barbuda', + 'Argentina', + 'Armenia', + 'Aruba', + 'Australia', + 'Austria', + 'Azerbaijan', + 'Bahamas', + 'Bahrain', + 'Bangladesh', + 'Barbados', + 'Belarus', + 'Belgium', + 'Belize', + 'Benin', + 'Bermuda', + 'Bhutan', + 'Bolivia, Plurinational State of', + 'Bonaire, Sint Eustatius and Saba', + 'Bosnia and Herzegovina', + 'Botswana', + 'Bouvet Island', + 'Brazil', + 'British Indian Ocean Territory', + 'Brunei Darussalam', + 'Bulgaria', + 'Burkina Faso', + 'Burundi', + 'Cambodia', + 'Cameroon', + 'Canada', + 'Cape Verde', + 'Cayman Islands', + 'Central African Republic', + 'Chad', + 'Chile', + 'China', + 'Christmas Island', + 'Cocos (Keeling) Islands', + 'Colombia', + 'Comoros', + 'Congo', + 'Congo, The Democratic Republic of The', + 'Cook Islands', + 'Costa Rica', "Côte d'Ivoire", - "Croatia", - "Cuba", - "CuraÇao", - "Cyprus", - "Czech Republic", - "Denmark", - "Djibouti", - "Dominica", - "Dominican Republic", - "Ecuador", - "Egypt", - "El Salvador", - "Equatorial Guinea", - "Eritrea", - "Estonia", - "Ethiopia", - "Falkland Islands (Malvinas)", - "Faroe Islands", - "Fiji", - "Finland", - "France", - "French Guiana", - "French Polynesia", - "French Southern Territories", - "Gabon", - "Gambia", - "Georgia", - "Germany", - "Ghana", - "Gibraltar", - "Greece", - "Greenland", - "Grenada", - "Guadeloupe", - "Guam", - "Guatemala", - "Guernsey", - "Guinea", - "Guinea-Bissau", - "Guyana", - "Haiti", - "Heard Island and Mcdonald Islands", - "Holy See (Vatican City State)", - "Honduras", - "Hong Kong", - "Hungary", - "Iceland", - "India", - "Indonesia", - "Iran, Islamic Republic of", - "Iraq", - "Ireland", - "Isle of Man", - "Israel", - "Italy", - "Jamaica", - "Japan", - "Jersey", - "Jordan", - "Kazakhstan", - "Kenya", - "Kiribati", + 'Croatia', + 'Cuba', + 'CuraÇao', + 'Cyprus', + 'Czech Republic', + 'Denmark', + 'Djibouti', + 'Dominica', + 'Dominican Republic', + 'Ecuador', + 'Egypt', + 'El Salvador', + 'Equatorial Guinea', + 'Eritrea', + 'Estonia', + 'Ethiopia', + 'Falkland Islands (Malvinas)', + 'Faroe Islands', + 'Fiji', + 'Finland', + 'France', + 'French Guiana', + 'French Polynesia', + 'French Southern Territories', + 'Gabon', + 'Gambia', + 'Georgia', + 'Germany', + 'Ghana', + 'Gibraltar', + 'Greece', + 'Greenland', + 'Grenada', + 'Guadeloupe', + 'Guam', + 'Guatemala', + 'Guernsey', + 'Guinea', + 'Guinea-Bissau', + 'Guyana', + 'Haiti', + 'Heard Island and Mcdonald Islands', + 'Holy See (Vatican City State)', + 'Honduras', + 'Hong Kong', + 'Hungary', + 'Iceland', + 'India', + 'Indonesia', + 'Iran, Islamic Republic of', + 'Iraq', + 'Ireland', + 'Isle of Man', + 'Israel', + 'Italy', + 'Jamaica', + 'Japan', + 'Jersey', + 'Jordan', + 'Kazakhstan', + 'Kenya', + 'Kiribati', "Korea, Democratic People's Republic of", - "Korea, Republic of", - "Kuwait", - "Kyrgyzstan", + 'Korea, Republic of', + 'Kuwait', + 'Kyrgyzstan', "Lao People's Democratic Republic", - "Latvia", - "Lebanon", - "Lesotho", - "Liberia", - "Libya", - "Liechtenstein", - "Lithuania", - "Luxembourg", - "Macao", - "Macedonia, The Former Yugoslav Republic of", - "Madagascar", - "Malawi", - "Malaysia", - "Maldives", - "Mali", - "Malta", - "Marshall Islands", - "Martinique", - "Mauritania", - "Mauritius", - "Mayotte", - "Mexico", - "Micronesia, Federated States of", - "Moldova, Republic of", - "Monaco", - "Mongolia", - "Montenegro", - "Montserrat", - "Morocco", - "Mozambique", - "Myanmar", - "Namibia", - "Nauru", - "Nepal", - "Netherlands", - "New Caledonia", - "New Zealand", - "Nicaragua", - "Niger", - "Nigeria", - "Niue", - "Norfolk Island", - "Northern Mariana Islands", - "Norway", - "Oman", - "Pakistan", - "Palau", - "Palestine, State of", - "Panama", - "Papua New Guinea", - "Paraguay", - "Peru", - "Philippines", - "Pitcairn", - "Poland", - "Portugal", - "Puerto Rico", - "Qatar", - "Réunion", - "Romania", - "Russian Federation", - "Rwanda", - "Saint Barthélemy", - "Saint Helena, Ascension and Tristan Da Cunha", - "Saint Kitts and Nevis", - "Saint Lucia", - "Saint Martin (french Part)", - "Saint Pierre and Miquelon", - "Saint Vincent and The Grenadines", - "Samoa", - "San Marino", - "Sao Tome and Principe", - "Saudi Arabia", - "Senegal", - "Serbia", - "Seychelles", - "Sierra Leone", - "Singapore", - "Sint Maarten (dutch Part)", - "Slovakia", - "Slovenia", - "Solomon Islands", - "Somalia", - "South Africa", - "South Georgia and The South Sandwich Islands", - "South Sudan", - "Spain", - "Sri Lanka", - "Sudan", - "Suriname", - "Svalbard and Jan Mayen", - "Swaziland", - "Sweden", - "Switzerland", - "Syrian Arab Republic", - "Taiwan, Province of China", - "Tajikistan", - "Tanzania, United Republic of", - "Thailand", - "Timor-leste", - "Togo", - "Tokelau", - "Tonga", - "Trinidad and Tobago", - "Tunisia", - "Turkey", - "Turkmenistan", - "Turks and Caicos Islands", - "Tuvalu", - "Uganda", - "Ukraine", - "United Arab Emirates", - "United Kingdom", - "United States", - "United States Minor Outlying Islands", - "Uruguay", - "Uzbekistan", - "Vanuatu", - "Venezuela, Bolivarian Republic of", - "Viet Nam", - "Virgin Islands, British", - "Virgin Islands, U.S.", - "Wallis and Futuna", - "Western Sahara", - "Yemen", - "Zambia", - "Zimbabwe", + 'Latvia', + 'Lebanon', + 'Lesotho', + 'Liberia', + 'Libya', + 'Liechtenstein', + 'Lithuania', + 'Luxembourg', + 'Macao', + 'Macedonia, The Former Yugoslav Republic of', + 'Madagascar', + 'Malawi', + 'Malaysia', + 'Maldives', + 'Mali', + 'Malta', + 'Marshall Islands', + 'Martinique', + 'Mauritania', + 'Mauritius', + 'Mayotte', + 'Mexico', + 'Micronesia, Federated States of', + 'Moldova, Republic of', + 'Monaco', + 'Mongolia', + 'Montenegro', + 'Montserrat', + 'Morocco', + 'Mozambique', + 'Myanmar', + 'Namibia', + 'Nauru', + 'Nepal', + 'Netherlands', + 'New Caledonia', + 'New Zealand', + 'Nicaragua', + 'Niger', + 'Nigeria', + 'Niue', + 'Norfolk Island', + 'Northern Mariana Islands', + 'Norway', + 'Oman', + 'Pakistan', + 'Palau', + 'Palestine, State of', + 'Panama', + 'Papua New Guinea', + 'Paraguay', + 'Peru', + 'Philippines', + 'Pitcairn', + 'Poland', + 'Portugal', + 'Puerto Rico', + 'Qatar', + 'Réunion', + 'Romania', + 'Russian Federation', + 'Rwanda', + 'Saint Barthélemy', + 'Saint Helena, Ascension and Tristan Da Cunha', + 'Saint Kitts and Nevis', + 'Saint Lucia', + 'Saint Martin (french Part)', + 'Saint Pierre and Miquelon', + 'Saint Vincent and The Grenadines', + 'Samoa', + 'San Marino', + 'Sao Tome and Principe', + 'Saudi Arabia', + 'Senegal', + 'Serbia', + 'Seychelles', + 'Sierra Leone', + 'Singapore', + 'Sint Maarten (dutch Part)', + 'Slovakia', + 'Slovenia', + 'Solomon Islands', + 'Somalia', + 'South Africa', + 'South Georgia and The South Sandwich Islands', + 'South Sudan', + 'Spain', + 'Sri Lanka', + 'Sudan', + 'Suriname', + 'Svalbard and Jan Mayen', + 'Swaziland', + 'Sweden', + 'Switzerland', + 'Syrian Arab Republic', + 'Taiwan, Province of China', + 'Tajikistan', + 'Tanzania, United Republic of', + 'Thailand', + 'Timor-leste', + 'Togo', + 'Tokelau', + 'Tonga', + 'Trinidad and Tobago', + 'Tunisia', + 'Turkey', + 'Turkmenistan', + 'Turks and Caicos Islands', + 'Tuvalu', + 'Uganda', + 'Ukraine', + 'United Arab Emirates', + 'United Kingdom', + 'United States', + 'United States Minor Outlying Islands', + 'Uruguay', + 'Uzbekistan', + 'Vanuatu', + 'Venezuela, Bolivarian Republic of', + 'Viet Nam', + 'Virgin Islands, British', + 'Virgin Islands, U.S.', + 'Wallis and Futuna', + 'Western Sahara', + 'Yemen', + 'Zambia', + 'Zimbabwe', ]; diff --git a/lib/src/data/address/country_codes.dart b/lib/src/data/address/country_codes.dart index 2272f4d..03b9596 100644 --- a/lib/src/data/address/country_codes.dart +++ b/lib/src/data/address/country_codes.dart @@ -1,4 +1,4 @@ -const countryCodes = const [ +const countryCodes = [ 'AF', 'AX', 'AL', diff --git a/lib/src/data/address/neighborhoods.dart b/lib/src/data/address/neighborhoods.dart index 1eeffa7..7ad0d86 100644 --- a/lib/src/data/address/neighborhoods.dart +++ b/lib/src/data/address/neighborhoods.dart @@ -1,4 +1,4 @@ -const neighborhoods = const [ +const neighborhoods = [ 'East of Telegraph Road', 'North Norridge', 'Northwest Midlothian/Midlothian Country Club', diff --git a/lib/src/data/address/street_suffixes.dart b/lib/src/data/address/street_suffixes.dart index 239d39e..9c0e96d 100644 --- a/lib/src/data/address/street_suffixes.dart +++ b/lib/src/data/address/street_suffixes.dart @@ -1,4 +1,4 @@ -const streetSuffixes = const [ +const streetSuffixes = [ 'Alley', 'Avenue', 'Branch', diff --git a/lib/src/data/conference/conference_names.dart b/lib/src/data/conference/conference_names.dart index 08ee3fb..9ca3ceb 100644 --- a/lib/src/data/conference/conference_names.dart +++ b/lib/src/data/conference/conference_names.dart @@ -1,4 +1,4 @@ -const conferenceNames = const [ +const conferenceNames = [ 'Social Mobile Payments Americas', 'LatAm HSE in Oil, Gas and Petrochemicals', 'LatAm Pipeline Integrity Management Summit', diff --git a/lib/src/data/currency/currency_codes.dart b/lib/src/data/currency/currency_codes.dart index 031657a..0d187a8 100644 --- a/lib/src/data/currency/currency_codes.dart +++ b/lib/src/data/currency/currency_codes.dart @@ -1,4 +1,4 @@ -const currencyCodes = const [ +const currencyCodes = [ 'AED', 'AFN', 'ALL', diff --git a/lib/src/data/currency/currency_names.dart b/lib/src/data/currency/currency_names.dart index b74bd88..19785b1 100644 --- a/lib/src/data/currency/currency_names.dart +++ b/lib/src/data/currency/currency_names.dart @@ -1,171 +1,171 @@ -const currencyNames = const [ - "UAE Dirham", - "Afghani", - "Lek", - "Armenian Dram", - "Netherlands Antillian Guilder", - "Kwanza", - "Argentine Peso", - "Australian Dollar", - "Aruban Guilder", - "Azerbaijanian Manat", - "Convertible Marks", - "Barbados Dollar", - "Taka", - "Bulgarian Lev", - "Bahraini Dinar", - "Burundi Franc", - "Bermudian Dollar (customarily known as Bermuda Dollar)", - "Brunei Dollar", - "Boliviano Mvdol", - "Brazilian Real", - "Bahamian Dollar", - "Pula", - "Belarussian Ruble", - "Belize Dollar", - "Canadian Dollar", - "Congolese Franc", - "Swiss Franc", - "Chilean Peso Unidades de fomento", - "Yuan Renminbi", - "Colombian Peso Unidad de Valor Real", - "Costa Rican Colon", - "Cuban Peso Peso Convertible", - "Cape Verde Escudo", - "Czech Koruna", - "Djibouti Franc", - "Danish Krone", - "Dominican Peso", - "Algerian Dinar", - "Kroon", - "Egyptian Pound", - "Nakfa", - "Ethiopian Birr", - "Euro", - "Fiji Dollar", - "Falkland Islands Pound", - "Pound Sterling", - "Lari", - "Cedi", - "Gibraltar Pound", - "Dalasi", - "Guinea Franc", - "Quetzal", - "Guyana Dollar", - "Hong Kong Dollar", - "Lempira", - "Croatian Kuna", - "Gourde US Dollar", - "Forint", - "Rupiah", - "New Israeli Sheqel", - "Indian Rupee", - "Indian Rupee Ngultrum", - "Iraqi Dinar", - "Iranian Rial", - "Iceland Krona", - "Jamaican Dollar", - "Jordanian Dinar", - "Yen", - "Kenyan Shilling", - "Som", - "Riel", - "Comoro Franc", - "North Korean Won", - "Won", - "Kuwaiti Dinar", - "Cayman Islands Dollar", - "Tenge", - "Kip", - "Lebanese Pound", - "Sri Lanka Rupee", - "Liberian Dollar", - "Lithuanian Litas", - "Latvian Lats", - "Libyan Dinar", - "Moroccan Dirham", - "Moldovan Leu", - "Malagasy Ariary", - "Denar", - "Kyat", - "Tugrik", - "Pataca", - "Ouguiya", - "Mauritius Rupee", - "Rufiyaa", - "Kwacha", - "Mexican Peso Mexican Unidad de Inversion (UDI)", - "Malaysian Ringgit", - "Metical", - "Naira", - "Cordoba Oro", - "Norwegian Krone", - "Nepalese Rupee", - "New Zealand Dollar", - "Rial Omani", - "Balboa US Dollar", - "Nuevo Sol", - "Kina", - "Philippine Peso", - "Pakistan Rupee", - "Zloty", - "Guarani", - "Qatari Rial", - "New Leu", - "Serbian Dinar", - "Russian Ruble", - "Rwanda Franc", - "Saudi Riyal", - "Solomon Islands Dollar", - "Seychelles Rupee", - "Sudanese Pound", - "Swedish Krona", - "Singapore Dollar", - "Saint Helena Pound", - "Leone", - "Somali Shilling", - "Surinam Dollar", - "Dobra", - "El Salvador Colon US Dollar", - "Syrian Pound", - "Lilangeni", - "Baht", - "Somoni", - "Manat", - "Tunisian Dinar", +const currencyNames = [ + 'UAE Dirham', + 'Afghani', + 'Lek', + 'Armenian Dram', + 'Netherlands Antillian Guilder', + 'Kwanza', + 'Argentine Peso', + 'Australian Dollar', + 'Aruban Guilder', + 'Azerbaijanian Manat', + 'Convertible Marks', + 'Barbados Dollar', + 'Taka', + 'Bulgarian Lev', + 'Bahraini Dinar', + 'Burundi Franc', + 'Bermudian Dollar (customarily known as Bermuda Dollar)', + 'Brunei Dollar', + 'Boliviano Mvdol', + 'Brazilian Real', + 'Bahamian Dollar', + 'Pula', + 'Belarussian Ruble', + 'Belize Dollar', + 'Canadian Dollar', + 'Congolese Franc', + 'Swiss Franc', + 'Chilean Peso Unidades de fomento', + 'Yuan Renminbi', + 'Colombian Peso Unidad de Valor Real', + 'Costa Rican Colon', + 'Cuban Peso Peso Convertible', + 'Cape Verde Escudo', + 'Czech Koruna', + 'Djibouti Franc', + 'Danish Krone', + 'Dominican Peso', + 'Algerian Dinar', + 'Kroon', + 'Egyptian Pound', + 'Nakfa', + 'Ethiopian Birr', + 'Euro', + 'Fiji Dollar', + 'Falkland Islands Pound', + 'Pound Sterling', + 'Lari', + 'Cedi', + 'Gibraltar Pound', + 'Dalasi', + 'Guinea Franc', + 'Quetzal', + 'Guyana Dollar', + 'Hong Kong Dollar', + 'Lempira', + 'Croatian Kuna', + 'Gourde US Dollar', + 'Forint', + 'Rupiah', + 'New Israeli Sheqel', + 'Indian Rupee', + 'Indian Rupee Ngultrum', + 'Iraqi Dinar', + 'Iranian Rial', + 'Iceland Krona', + 'Jamaican Dollar', + 'Jordanian Dinar', + 'Yen', + 'Kenyan Shilling', + 'Som', + 'Riel', + 'Comoro Franc', + 'North Korean Won', + 'Won', + 'Kuwaiti Dinar', + 'Cayman Islands Dollar', + 'Tenge', + 'Kip', + 'Lebanese Pound', + 'Sri Lanka Rupee', + 'Liberian Dollar', + 'Lithuanian Litas', + 'Latvian Lats', + 'Libyan Dinar', + 'Moroccan Dirham', + 'Moldovan Leu', + 'Malagasy Ariary', + 'Denar', + 'Kyat', + 'Tugrik', + 'Pataca', + 'Ouguiya', + 'Mauritius Rupee', + 'Rufiyaa', + 'Kwacha', + 'Mexican Peso Mexican Unidad de Inversion (UDI)', + 'Malaysian Ringgit', + 'Metical', + 'Naira', + 'Cordoba Oro', + 'Norwegian Krone', + 'Nepalese Rupee', + 'New Zealand Dollar', + 'Rial Omani', + 'Balboa US Dollar', + 'Nuevo Sol', + 'Kina', + 'Philippine Peso', + 'Pakistan Rupee', + 'Zloty', + 'Guarani', + 'Qatari Rial', + 'New Leu', + 'Serbian Dinar', + 'Russian Ruble', + 'Rwanda Franc', + 'Saudi Riyal', + 'Solomon Islands Dollar', + 'Seychelles Rupee', + 'Sudanese Pound', + 'Swedish Krona', + 'Singapore Dollar', + 'Saint Helena Pound', + 'Leone', + 'Somali Shilling', + 'Surinam Dollar', + 'Dobra', + 'El Salvador Colon US Dollar', + 'Syrian Pound', + 'Lilangeni', + 'Baht', + 'Somoni', + 'Manat', + 'Tunisian Dinar', "Pa'anga", - "Turkish Lira", - "Trinidad and Tobago Dollar", - "New Taiwan Dollar", - "Tanzanian Shilling", - "Hryvnia", - "Uganda Shilling", - "US Dollar", - "Peso Uruguayo Uruguay Peso en Unidades Indexadas", - "Uzbekistan Sum", - "Bolivar Fuerte", - "Dong", - "Vatu", - "Tala", - "CFA Franc BEAC", - "Silver", - "Gold", - "Bond Markets Units European Composite Unit (EURCO)", - "European Monetary Unit (E.M.U.-6)", - "European Unit of Account 9(E.U.A.-9)", - "European Unit of Account 17(E.U.A.-17)", - "East Caribbean Dollar", - "SDR", - "UIC-Franc", - "CFA Franc BCEAO", - "Palladium", - "CFP Franc", - "Platinum", - "Codes specifically reserved for testing purposes", - "Yemeni Rial", - "Rand", - "Rand Loti", - "Rand Namibia Dollar", - "Zambian Kwacha", - "Zimbabwe Dollar", + 'Turkish Lira', + 'Trinidad and Tobago Dollar', + 'New Taiwan Dollar', + 'Tanzanian Shilling', + 'Hryvnia', + 'Uganda Shilling', + 'US Dollar', + 'Peso Uruguayo Uruguay Peso en Unidades Indexadas', + 'Uzbekistan Sum', + 'Bolivar Fuerte', + 'Dong', + 'Vatu', + 'Tala', + 'CFA Franc BEAC', + 'Silver', + 'Gold', + 'Bond Markets Units European Composite Unit (EURCO)', + 'European Monetary Unit (E.M.U.-6)', + 'European Unit of Account 9(E.U.A.-9)', + 'European Unit of Account 17(E.U.A.-17)', + 'East Caribbean Dollar', + 'SDR', + 'UIC-Franc', + 'CFA Franc BCEAO', + 'Palladium', + 'CFP Franc', + 'Platinum', + 'Codes specifically reserved for testing purposes', + 'Yemeni Rial', + 'Rand', + 'Rand Loti', + 'Rand Namibia Dollar', + 'Zambian Kwacha', + 'Zimbabwe Dollar', ]; diff --git a/lib/src/data/food/cuisines.dart b/lib/src/data/food/cuisines.dart index 3b30f66..67486ac 100644 --- a/lib/src/data/food/cuisines.dart +++ b/lib/src/data/food/cuisines.dart @@ -1,4 +1,4 @@ -const cuisines = const [ +const cuisines = [ 'American Chinese', 'Argentinian food', 'Chinese Islamic', diff --git a/lib/src/data/food/dishes.dart b/lib/src/data/food/dishes.dart index a33bba4..b03898b 100644 --- a/lib/src/data/food/dishes.dart +++ b/lib/src/data/food/dishes.dart @@ -1,102 +1,102 @@ -const dishes = const [ - "Minestrone", - "Baked Alaska", +const dishes = [ + 'Minestrone', + 'Baked Alaska', "General Tso's chicken", - "Chicken soup", - "Laksa", - "Hot and sour soup", - "Sundae", - "Apple pie", - "Trifle", - "Peach Melba", - "Steak tartare", - "Beef Wellington", - "Steak and kidney pie", - "Bacon and egg pie", - "Corned beef pie", - "Kalakukko", - "Meat and potato pie", - "Pasty", - "Pork pie", - "Pot pie", - "Quiche", - "Scotch pie", - "Cottage pie", - "Stargazy pie", - "Steak pie", - "Sweet potato pie", - "Banoffee pie", - "Banana cream pie", - "Blackberry pie", - "Blueberry pie", - "Boston cream pie", - "Buko pie", - "Cheesecake", - "Cherry pie", - "Chess pie", - "Cream pie", - "Custard pie", - "Dutch apple pie", - "Key lime pie", - "Lemon meringue pie", - "Mince pie", - "Pecan pie", - "Pumpkin pie", - "Rhubarb pie", - "Strawberry pie", - "Sugar pie", - "Mie goreng", - "Nasi goreng", - "Dal", - "Irish stew", - "Cochinita pibil", - "Torta", - "Gordita", - "Burrito", - "Hamburger", - "Chocolate brownie", - "Sinseollo", - "Pad Thai", - "Kow Pad Gai", - "Rat na", - "Phat si-io", - "Drunken noodles", - "Khao soi", - "Tom yum", - "Phat khing", - "Tom kha kai", - "Red curry", - "Green curry", - "Massaman curry", - "Biryani", - "Pilaf", - "Risotto", - "Wedding soup", - "Green papaya salad", - "Larb", - "Kai yang", - "Lemang", - "Sushi", - "Sashimi", - "Okonomiyaki", - "Bulgogi", - "Galbi", - "Jokbal", - "Samgyeopsal", - "Hoe", - "Sannakji", - "Makchang gui", - "Gopchang", - "Gujeolpan", - "Vindaloo", - "Baked ziti", - "Tandoori chicken", - "Butter chicken", - "Palak paneer", - "Mixed grill", - "Eggs Benedict", - "Scrambled eggs", - "Tabbouleh", - "Caesar salad", - "Waldorf salad", + 'Chicken soup', + 'Laksa', + 'Hot and sour soup', + 'Sundae', + 'Apple pie', + 'Trifle', + 'Peach Melba', + 'Steak tartare', + 'Beef Wellington', + 'Steak and kidney pie', + 'Bacon and egg pie', + 'Corned beef pie', + 'Kalakukko', + 'Meat and potato pie', + 'Pasty', + 'Pork pie', + 'Pot pie', + 'Quiche', + 'Scotch pie', + 'Cottage pie', + 'Stargazy pie', + 'Steak pie', + 'Sweet potato pie', + 'Banoffee pie', + 'Banana cream pie', + 'Blackberry pie', + 'Blueberry pie', + 'Boston cream pie', + 'Buko pie', + 'Cheesecake', + 'Cherry pie', + 'Chess pie', + 'Cream pie', + 'Custard pie', + 'Dutch apple pie', + 'Key lime pie', + 'Lemon meringue pie', + 'Mince pie', + 'Pecan pie', + 'Pumpkin pie', + 'Rhubarb pie', + 'Strawberry pie', + 'Sugar pie', + 'Mie goreng', + 'Nasi goreng', + 'Dal', + 'Irish stew', + 'Cochinita pibil', + 'Torta', + 'Gordita', + 'Burrito', + 'Hamburger', + 'Chocolate brownie', + 'Sinseollo', + 'Pad Thai', + 'Kow Pad Gai', + 'Rat na', + 'Phat si-io', + 'Drunken noodles', + 'Khao soi', + 'Tom yum', + 'Phat khing', + 'Tom kha kai', + 'Red curry', + 'Green curry', + 'Massaman curry', + 'Biryani', + 'Pilaf', + 'Risotto', + 'Wedding soup', + 'Green papaya salad', + 'Larb', + 'Kai yang', + 'Lemang', + 'Sushi', + 'Sashimi', + 'Okonomiyaki', + 'Bulgogi', + 'Galbi', + 'Jokbal', + 'Samgyeopsal', + 'Hoe', + 'Sannakji', + 'Makchang gui', + 'Gopchang', + 'Gujeolpan', + 'Vindaloo', + 'Baked ziti', + 'Tandoori chicken', + 'Butter chicken', + 'Palak paneer', + 'Mixed grill', + 'Eggs Benedict', + 'Scrambled eggs', + 'Tabbouleh', + 'Caesar salad', + 'Waldorf salad', ]; diff --git a/lib/src/data/food/restaurants.dart b/lib/src/data/food/restaurants.dart index ff1c184..e598198 100644 --- a/lib/src/data/food/restaurants.dart +++ b/lib/src/data/food/restaurants.dart @@ -1,102 +1,102 @@ -const restaurants = const [ - "21 Club", - "241 Pizza", - "A&W Restaurants", - "Al Baik", +const restaurants = [ + '21 Club', + '241 Pizza', + 'A&W Restaurants', + 'Al Baik', "Al's Breakfast", "Albert's Real Jamaican Foods", - "Amber", - "Amigos/Kings Classic", + 'Amber', + 'Amigos/Kings Classic', "Amy's on Second", - "Anchor Bar", + 'Anchor Bar', "Anna Miller's", "Anna's Taqueria", "Anthony's", "Antoine's", "Antonio's Pizza", - "Applebee’s International, Inc.", + 'Applebee’s International, Inc.', "Arby's", - "Arcadian Court", - "Arctic Circle Restaurants", + 'Arcadian Court', + 'Arctic Circle Restaurants', "Arnold's Drive-In", "Arthur Bryant's", "Arthur Treacher's", - "Arzak", - "Atlanta Bread Company", - "Au Bon Pain", - "Auerbachs Keller", + 'Arzak', + 'Atlanta Bread Company', + 'Au Bon Pain', + 'Auerbachs Keller', "Auntie Anne's", - "Australian Homemade", - "BOOF", - "Back 40 Junction", - "Back Yard Burgers", - "Bagel Bin & Deli", - "Bahama Breeze", - "Baja Fresh", + 'Australian Homemade', + 'BOOF', + 'Back 40 Junction', + 'Back Yard Burgers', + 'Bagel Bin & Deli', + 'Bahama Breeze', + 'Baja Fresh', "Baker's Drive-Thru", - "Bakers Square", - "Baldwin House", - "Balls Brothers", - "Bar mleczny", - "Barista Lavazza", + 'Bakers Square', + 'Baldwin House', + 'Balls Brothers', + 'Bar mleczny', + 'Barista Lavazza', "Barney's Beanery", - "Baskin-Robbins", - "Baton Rouge", - "Baxters", + 'Baskin-Robbins', + 'Baton Rouge', + 'Baxters', "BD's Mongolian Grill", - "Biggby Coffee", - "Beardslee Castle", - "Beau Rivage", + 'Biggby Coffee', + 'Beardslee Castle', + 'Beau Rivage', "Becky's Diner", - "Bembos", + 'Bembos', "Ben's Chili Bowl", - "Bens De Luxe Delicatessen & Restaurant", - "Benihana", + 'Bens De Luxe Delicatessen & Restaurant', + 'Benihana', "Bennigan's", "Bern's Steak House", - "Berni Inn", - "Berowra Waters Inn", + 'Berni Inn', + 'Berowra Waters Inn', "Bertucci's", "Beryt's", "Beth's Cafe", - "Beurger King Muslim", + 'Beurger King Muslim', "Bickford's", - "Big Boy Restaurants", + 'Big Boy Restaurants', "Big Ten's", - "Bill Miller Bar-B-Q Enterprises", - "Billy Goat Tavern", - "Bimbo Deluxe", - "Bistro 990", - "Black Bear Diner", - "Black-eyed Pea", + 'Bill Miller Bar-B-Q Enterprises', + 'Billy Goat Tavern', + 'Bimbo Deluxe', + 'Bistro 990', + 'Black Bear Diner', + 'Black-eyed Pea', "Blake's Lotaburger", - "Blimpie", - "blindekuh", - "Blue Bayou Restaurant", - "Blue Boar Cafeterias", - "Blueberry Hill", - "Boardwalk Hotel and Casino", - "Bob Evans Restaurants", + 'Blimpie', + 'blindekuh', + 'Blue Bayou Restaurant', + 'Blue Boar Cafeterias', + 'Blueberry Hill', + 'Boardwalk Hotel and Casino', + 'Bob Evans Restaurants', "Bob's", - "Bobcat Bite", - "Bobo Lobo", - "Boca Grande Taqueria", + 'Bobcat Bite', + 'Bobo Lobo', + 'Boca Grande Taqueria', "Bojangles' Famous Chicken 'n Biscuits", - "Boll Weevil", - "Boloco", - "Boma", - "Booches", - "Boost Juice", - "Boston Market", - "Boston Pizza", - "Boudin Bakery", - "Brasserie Les Halles", - "Bratwurst Glöckl", + 'Boll Weevil', + 'Boloco', + 'Boma', + 'Booches', + 'Boost Juice', + 'Boston Market', + 'Boston Pizza', + 'Boudin Bakery', + 'Brasserie Les Halles', + 'Bratwurst Glöckl', "Braum's", "Breitbach's Country Dining", - "Brennan Family Restaurants", - "Brewers Fayre", - "Briazz", + 'Brennan Family Restaurants', + 'Brewers Fayre', + 'Briazz', "Brigham's Ice Cream", - "Brinker International", + 'Brinker International', ]; diff --git a/lib/src/data/job/job_adj.dart b/lib/src/data/job/job_adj.dart index 961f97c..14e629f 100644 --- a/lib/src/data/job/job_adj.dart +++ b/lib/src/data/job/job_adj.dart @@ -1,4 +1,4 @@ -const jobAdj = const [ +const jobAdj = [ 'Solutions', 'Program', 'Brand', diff --git a/lib/src/data/job/job_noun.dart b/lib/src/data/job/job_noun.dart index 1826b50..7b52695 100644 --- a/lib/src/data/job/job_noun.dart +++ b/lib/src/data/job/job_noun.dart @@ -1,4 +1,4 @@ -const jobNoun = const [ +const jobNoun = [ 'Supervisor', 'Associate', 'Executive', diff --git a/lib/src/data/job/job_prefix.dart b/lib/src/data/job/job_prefix.dart index 34c0a5d..b46f51f 100644 --- a/lib/src/data/job/job_prefix.dart +++ b/lib/src/data/job/job_prefix.dart @@ -1,4 +1,4 @@ -const jobPrefix = const [ +const jobPrefix = [ 'Lead', 'Senior', 'Direct', diff --git a/lib/src/data/lorem/sentences.dart b/lib/src/data/lorem/sentences.dart index 89a01b0..28adef4 100644 --- a/lib/src/data/lorem/sentences.dart +++ b/lib/src/data/lorem/sentences.dart @@ -855,4 +855,4 @@ const sentences = [ 'Vulputate mi sit amet mauris commodo quis.', 'Vulputate odio ut enim blandit.', 'Vulputate ut pharetra sit amet aliquam id diam maecenas ultricies.', -]; \ No newline at end of file +]; diff --git a/lib/src/data/person/firstnames.dart b/lib/src/data/person/firstnames.dart index c451cec..be6c51f 100644 --- a/lib/src/data/person/firstnames.dart +++ b/lib/src/data/person/firstnames.dart @@ -1,3010 +1,3010 @@ -const firstnames = const [ - "Aaliyah", - "Aaron", - "Abagail", - "Abbey", - "Abbie", - "Abbigail", - "Abby", - "Abdiel", - "Abdul", - "Abdullah", - "Abe", - "Abel", - "Abelardo", - "Abigail", - "Abigale", - "Abigayle", - "Abner", - "Abraham", - "Ada", - "Adah", - "Adalberto", - "Adaline", - "Adam", - "Adan", - "Addie", - "Addison", - "Adela", - "Adelbert", - "Adele", - "Adelia", - "Adeline", - "Adell", - "Adella", - "Adelle", - "Aditya", - "Adolf", - "Adolfo", - "Adolph", - "Adolphus", - "Adonis", - "Adrain", - "Adrian", - "Adriana", - "Adrianna", - "Adriel", - "Adrien", - "Adrienne", - "Afton", - "Aglae", - "Agnes", - "Agustin", - "Agustina", - "Ahmad", - "Ahmed", - "Aida", - "Aidan", - "Aiden", - "Aileen", - "Aimee", - "Aisha", - "Aiyana", - "Akeem", - "Al", - "Alaina", - "Alan", - "Alana", - "Alanis", - "Alanna", - "Alayna", - "Alba", - "Albert", - "Alberta", - "Albertha", - "Alberto", - "Albin", - "Albina", - "Alda", - "Alden", - "Alec", - "Aleen", - "Alejandra", - "Alejandrin", - "Alek", - "Alena", - "Alene", - "Alessandra", - "Alessandro", - "Alessia", - "Aletha", - "Alex", - "Alexa", - "Alexander", - "Alexandra", - "Alexandre", - "Alexandrea", - "Alexandria", - "Alexandrine", - "Alexandro", - "Alexane", - "Alexanne", - "Alexie", - "Alexis", - "Alexys", - "Alexzander", - "Alf", - "Alfonso", - "Alfonzo", - "Alford", - "Alfred", - "Alfreda", - "Alfredo", - "Ali", - "Alia", - "Alice", - "Alicia", - "Alisa", - "Alisha", - "Alison", - "Alivia", - "Aliya", - "Aliyah", - "Aliza", - "Alize", - "Allan", - "Allen", - "Allene", - "Allie", - "Allison", - "Ally", - "Alphonso", - "Alta", - "Althea", - "Alva", - "Alvah", - "Alvena", - "Alvera", - "Alverta", - "Alvina", - "Alvis", - "Alyce", - "Alycia", - "Alysa", - "Alysha", - "Alyson", - "Alysson", - "Amalia", - "Amanda", - "Amani", - "Amara", - "Amari", - "Amaya", - "Amber", - "Ambrose", - "Amelia", - "Amelie", - "Amely", - "America", - "Americo", - "Amie", - "Amina", - "Amir", - "Amira", - "Amiya", - "Amos", - "Amparo", - "Amy", - "Amya", - "Ana", - "Anabel", - "Anabelle", - "Anahi", - "Anais", - "Anastacio", - "Anastasia", - "Anderson", - "Andre", - "Andreane", - "Andreanne", - "Andres", - "Andrew", - "Andy", - "Angel", - "Angela", - "Angelica", - "Angelina", - "Angeline", - "Angelita", - "Angelo", - "Angie", - "Angus", - "Anibal", - "Anika", - "Anissa", - "Anita", - "Aniya", - "Aniyah", - "Anjali", - "Anna", - "Annabel", - "Annabell", - "Annabelle", - "Annalise", - "Annamae", - "Annamarie", - "Anne", - "Annetta", - "Annette", - "Annie", - "Ansel", - "Ansley", - "Anthony", - "Antoinette", - "Antone", - "Antonetta", - "Antonette", - "Antonia", - "Antonietta", - "Antonina", - "Antonio", - "Antwan", - "Antwon", - "Anya", - "April", - "Ara", - "Araceli", - "Aracely", - "Arch", - "Archibald", - "Ardella", - "Arden", - "Ardith", - "Arely", - "Ari", - "Ariane", - "Arianna", - "Aric", - "Ariel", - "Arielle", - "Arjun", - "Arlene", - "Arlie", - "Arlo", - "Armand", - "Armando", - "Armani", - "Arnaldo", - "Arne", - "Arno", - "Arnold", - "Arnoldo", - "Arnulfo", - "Aron", - "Art", - "Arthur", - "Arturo", - "Arvel", - "Arvid", - "Arvilla", - "Aryanna", - "Asa", - "Asha", - "Ashlee", - "Ashleigh", - "Ashley", - "Ashly", - "Ashlynn", - "Ashton", - "Ashtyn", - "Asia", - "Assunta", - "Astrid", - "Athena", - "Aubree", - "Aubrey", - "Audie", - "Audra", - "Audreanne", - "Audrey", - "August", - "Augusta", - "Augustine", - "Augustus", - "Aurelia", - "Aurelie", - "Aurelio", - "Aurore", - "Austen", - "Austin", - "Austyn", - "Autumn", - "Ava", - "Avery", - "Avis", - "Axel", - "Ayana", - "Ayden", - "Ayla", - "Aylin", - "Baby", - "Bailee", - "Bailey", - "Barbara", - "Barney", - "Baron", - "Barrett", - "Barry", - "Bart", - "Bartholome", - "Barton", - "Baylee", - "Beatrice", - "Beau", - "Beaulah", - "Bell", - "Bella", - "Belle", - "Ben", - "Benedict", - "Benjamin", - "Bennett", - "Bennie", - "Benny", - "Benton", - "Berenice", - "Bernadette", - "Bernadine", - "Bernard", - "Bernardo", - "Berneice", - "Bernhard", - "Bernice", - "Bernie", - "Berniece", - "Bernita", - "Berry", - "Bert", - "Berta", - "Bertha", - "Bertram", - "Bertrand", - "Beryl", - "Bessie", - "Beth", - "Bethany", - "Bethel", - "Betsy", - "Bette", - "Bettie", - "Betty", - "Bettye", - "Beulah", - "Beverly", - "Bianka", - "Bill", - "Billie", - "Billy", - "Birdie", - "Blair", - "Blaise", - "Blake", - "Blanca", - "Blanche", - "Blaze", - "Bo", - "Bobbie", - "Bobby", - "Bonita", - "Bonnie", - "Boris", - "Boyd", - "Brad", - "Braden", - "Bradford", - "Bradley", - "Bradly", - "Brady", - "Braeden", - "Brain", - "Brandi", - "Brando", - "Brandon", - "Brandt", - "Brandy", - "Brandyn", - "Brannon", - "Branson", - "Brant", - "Braulio", - "Braxton", - "Brayan", - "Breana", - "Breanna", - "Breanne", - "Brenda", - "Brendan", - "Brenden", - "Brendon", - "Brenna", - "Brennan", - "Brennon", - "Brent", - "Bret", - "Brett", - "Bria", - "Brian", - "Briana", - "Brianne", - "Brice", - "Bridget", - "Bridgette", - "Bridie", - "Brielle", - "Brigitte", - "Brionna", - "Brisa", - "Britney", - "Brittany", - "Brock", - "Broderick", - "Brody", - "Brook", - "Brooke", - "Brooklyn", - "Brooks", - "Brown", - "Bruce", - "Bryana", - "Bryce", - "Brycen", - "Bryon", - "Buck", - "Bud", - "Buddy", - "Buford", - "Bulah", - "Burdette", - "Burley", - "Burnice", - "Buster", - "Cade", - "Caden", - "Caesar", - "Caitlyn", - "Cale", - "Caleb", - "Caleigh", - "Cali", - "Calista", - "Callie", - "Camden", - "Cameron", - "Camila", - "Camilla", - "Camille", - "Camren", - "Camron", - "Camryn", - "Camylle", - "Candace", - "Candelario", - "Candice", - "Candida", - "Candido", - "Cara", - "Carey", - "Carissa", - "Carlee", - "Carleton", - "Carley", - "Carli", - "Carlie", - "Carlo", - "Carlos", - "Carlotta", - "Carmel", - "Carmela", - "Carmella", - "Carmelo", - "Carmen", - "Carmine", - "Carol", - "Carolanne", - "Carole", - "Carolina", - "Caroline", - "Carolyn", - "Carolyne", - "Carrie", - "Carroll", - "Carson", - "Carter", - "Cary", - "Casandra", - "Casey", - "Casimer", - "Casimir", - "Casper", - "Cassandra", - "Cassandre", - "Cassidy", - "Cassie", - "Catalina", - "Caterina", - "Catharine", - "Catherine", - "Cathrine", - "Cathryn", - "Cathy", - "Cayla", - "Ceasar", - "Cecelia", - "Cecil", - "Cecile", - "Cecilia", - "Cedrick", - "Celestine", - "Celestino", - "Celia", - "Celine", - "Cesar", - "Chad", - "Chadd", - "Chadrick", - "Chaim", - "Chance", - "Chandler", - "Chanel", - "Chanelle", - "Charity", - "Charlene", - "Charles", - "Charley", - "Charlie", - "Charlotte", - "Chase", - "Chasity", - "Chauncey", - "Chaya", - "Chaz", - "Chelsea", - "Chelsey", - "Chelsie", - "Chesley", - "Chester", - "Chet", - "Cheyanne", - "Cheyenne", - "Chloe", - "Chris", - "Christ", - "Christa", - "Christelle", - "Christian", - "Christiana", - "Christina", - "Christine", - "Christop", - "Christophe", - "Christopher", - "Christy", - "Chyna", - "Ciara", - "Cicero", - "Cielo", - "Cierra", - "Cindy", - "Citlalli", - "Clair", - "Claire", - "Clara", - "Clarabelle", - "Clare", - "Clarissa", - "Clark", - "Claud", - "Claude", - "Claudia", - "Claudie", - "Claudine", - "Clay", - "Clemens", - "Clement", - "Clementina", - "Clementine", - "Clemmie", - "Cleo", - "Cleora", - "Cleta", - "Cletus", - "Cleve", - "Cleveland", - "Clifford", - "Clifton", - "Clint", - "Clinton", - "Clotilde", - "Clovis", - "Cloyd", - "Clyde", - "Coby", - "Cody", - "Colby", - "Cole", - "Coleman", - "Colin", - "Colleen", - "Collin", - "Colt", - "Colten", - "Colton", - "Columbus", - "Concepcion", - "Conner", - "Connie", - "Connor", - "Conor", - "Conrad", - "Constance", - "Constantin", - "Consuelo", - "Cooper", - "Cora", - "Coralie", - "Corbin", - "Cordelia", - "Cordell", - "Cordia", - "Cordie", - "Corene", - "Corine", - "Cornelius", - "Cornell", - "Corrine", - "Cortez", - "Cortney", - "Cory", - "Coty", - "Courtney", - "Coy", - "Craig", - "Crawford", - "Creola", - "Cristal", - "Cristian", - "Cristina", - "Cristobal", - "Cristopher", - "Cruz", - "Crystal", - "Crystel", - "Cullen", - "Curt", - "Curtis", - "Cydney", - "Cynthia", - "Cyril", - "Cyrus", - "Dagmar", - "Dahlia", - "Daija", - "Daisha", - "Daisy", - "Dakota", - "Dale", - "Dallas", - "Dallin", - "Dalton", - "Damaris", - "Dameon", - "Damian", - "Damien", - "Damion", - "Damon", - "Dan", - "Dana", - "Dandre", - "Dane", +const firstnames = [ + 'Aaliyah', + 'Aaron', + 'Abagail', + 'Abbey', + 'Abbie', + 'Abbigail', + 'Abby', + 'Abdiel', + 'Abdul', + 'Abdullah', + 'Abe', + 'Abel', + 'Abelardo', + 'Abigail', + 'Abigale', + 'Abigayle', + 'Abner', + 'Abraham', + 'Ada', + 'Adah', + 'Adalberto', + 'Adaline', + 'Adam', + 'Adan', + 'Addie', + 'Addison', + 'Adela', + 'Adelbert', + 'Adele', + 'Adelia', + 'Adeline', + 'Adell', + 'Adella', + 'Adelle', + 'Aditya', + 'Adolf', + 'Adolfo', + 'Adolph', + 'Adolphus', + 'Adonis', + 'Adrain', + 'Adrian', + 'Adriana', + 'Adrianna', + 'Adriel', + 'Adrien', + 'Adrienne', + 'Afton', + 'Aglae', + 'Agnes', + 'Agustin', + 'Agustina', + 'Ahmad', + 'Ahmed', + 'Aida', + 'Aidan', + 'Aiden', + 'Aileen', + 'Aimee', + 'Aisha', + 'Aiyana', + 'Akeem', + 'Al', + 'Alaina', + 'Alan', + 'Alana', + 'Alanis', + 'Alanna', + 'Alayna', + 'Alba', + 'Albert', + 'Alberta', + 'Albertha', + 'Alberto', + 'Albin', + 'Albina', + 'Alda', + 'Alden', + 'Alec', + 'Aleen', + 'Alejandra', + 'Alejandrin', + 'Alek', + 'Alena', + 'Alene', + 'Alessandra', + 'Alessandro', + 'Alessia', + 'Aletha', + 'Alex', + 'Alexa', + 'Alexander', + 'Alexandra', + 'Alexandre', + 'Alexandrea', + 'Alexandria', + 'Alexandrine', + 'Alexandro', + 'Alexane', + 'Alexanne', + 'Alexie', + 'Alexis', + 'Alexys', + 'Alexzander', + 'Alf', + 'Alfonso', + 'Alfonzo', + 'Alford', + 'Alfred', + 'Alfreda', + 'Alfredo', + 'Ali', + 'Alia', + 'Alice', + 'Alicia', + 'Alisa', + 'Alisha', + 'Alison', + 'Alivia', + 'Aliya', + 'Aliyah', + 'Aliza', + 'Alize', + 'Allan', + 'Allen', + 'Allene', + 'Allie', + 'Allison', + 'Ally', + 'Alphonso', + 'Alta', + 'Althea', + 'Alva', + 'Alvah', + 'Alvena', + 'Alvera', + 'Alverta', + 'Alvina', + 'Alvis', + 'Alyce', + 'Alycia', + 'Alysa', + 'Alysha', + 'Alyson', + 'Alysson', + 'Amalia', + 'Amanda', + 'Amani', + 'Amara', + 'Amari', + 'Amaya', + 'Amber', + 'Ambrose', + 'Amelia', + 'Amelie', + 'Amely', + 'America', + 'Americo', + 'Amie', + 'Amina', + 'Amir', + 'Amira', + 'Amiya', + 'Amos', + 'Amparo', + 'Amy', + 'Amya', + 'Ana', + 'Anabel', + 'Anabelle', + 'Anahi', + 'Anais', + 'Anastacio', + 'Anastasia', + 'Anderson', + 'Andre', + 'Andreane', + 'Andreanne', + 'Andres', + 'Andrew', + 'Andy', + 'Angel', + 'Angela', + 'Angelica', + 'Angelina', + 'Angeline', + 'Angelita', + 'Angelo', + 'Angie', + 'Angus', + 'Anibal', + 'Anika', + 'Anissa', + 'Anita', + 'Aniya', + 'Aniyah', + 'Anjali', + 'Anna', + 'Annabel', + 'Annabell', + 'Annabelle', + 'Annalise', + 'Annamae', + 'Annamarie', + 'Anne', + 'Annetta', + 'Annette', + 'Annie', + 'Ansel', + 'Ansley', + 'Anthony', + 'Antoinette', + 'Antone', + 'Antonetta', + 'Antonette', + 'Antonia', + 'Antonietta', + 'Antonina', + 'Antonio', + 'Antwan', + 'Antwon', + 'Anya', + 'April', + 'Ara', + 'Araceli', + 'Aracely', + 'Arch', + 'Archibald', + 'Ardella', + 'Arden', + 'Ardith', + 'Arely', + 'Ari', + 'Ariane', + 'Arianna', + 'Aric', + 'Ariel', + 'Arielle', + 'Arjun', + 'Arlene', + 'Arlie', + 'Arlo', + 'Armand', + 'Armando', + 'Armani', + 'Arnaldo', + 'Arne', + 'Arno', + 'Arnold', + 'Arnoldo', + 'Arnulfo', + 'Aron', + 'Art', + 'Arthur', + 'Arturo', + 'Arvel', + 'Arvid', + 'Arvilla', + 'Aryanna', + 'Asa', + 'Asha', + 'Ashlee', + 'Ashleigh', + 'Ashley', + 'Ashly', + 'Ashlynn', + 'Ashton', + 'Ashtyn', + 'Asia', + 'Assunta', + 'Astrid', + 'Athena', + 'Aubree', + 'Aubrey', + 'Audie', + 'Audra', + 'Audreanne', + 'Audrey', + 'August', + 'Augusta', + 'Augustine', + 'Augustus', + 'Aurelia', + 'Aurelie', + 'Aurelio', + 'Aurore', + 'Austen', + 'Austin', + 'Austyn', + 'Autumn', + 'Ava', + 'Avery', + 'Avis', + 'Axel', + 'Ayana', + 'Ayden', + 'Ayla', + 'Aylin', + 'Baby', + 'Bailee', + 'Bailey', + 'Barbara', + 'Barney', + 'Baron', + 'Barrett', + 'Barry', + 'Bart', + 'Bartholome', + 'Barton', + 'Baylee', + 'Beatrice', + 'Beau', + 'Beaulah', + 'Bell', + 'Bella', + 'Belle', + 'Ben', + 'Benedict', + 'Benjamin', + 'Bennett', + 'Bennie', + 'Benny', + 'Benton', + 'Berenice', + 'Bernadette', + 'Bernadine', + 'Bernard', + 'Bernardo', + 'Berneice', + 'Bernhard', + 'Bernice', + 'Bernie', + 'Berniece', + 'Bernita', + 'Berry', + 'Bert', + 'Berta', + 'Bertha', + 'Bertram', + 'Bertrand', + 'Beryl', + 'Bessie', + 'Beth', + 'Bethany', + 'Bethel', + 'Betsy', + 'Bette', + 'Bettie', + 'Betty', + 'Bettye', + 'Beulah', + 'Beverly', + 'Bianka', + 'Bill', + 'Billie', + 'Billy', + 'Birdie', + 'Blair', + 'Blaise', + 'Blake', + 'Blanca', + 'Blanche', + 'Blaze', + 'Bo', + 'Bobbie', + 'Bobby', + 'Bonita', + 'Bonnie', + 'Boris', + 'Boyd', + 'Brad', + 'Braden', + 'Bradford', + 'Bradley', + 'Bradly', + 'Brady', + 'Braeden', + 'Brain', + 'Brandi', + 'Brando', + 'Brandon', + 'Brandt', + 'Brandy', + 'Brandyn', + 'Brannon', + 'Branson', + 'Brant', + 'Braulio', + 'Braxton', + 'Brayan', + 'Breana', + 'Breanna', + 'Breanne', + 'Brenda', + 'Brendan', + 'Brenden', + 'Brendon', + 'Brenna', + 'Brennan', + 'Brennon', + 'Brent', + 'Bret', + 'Brett', + 'Bria', + 'Brian', + 'Briana', + 'Brianne', + 'Brice', + 'Bridget', + 'Bridgette', + 'Bridie', + 'Brielle', + 'Brigitte', + 'Brionna', + 'Brisa', + 'Britney', + 'Brittany', + 'Brock', + 'Broderick', + 'Brody', + 'Brook', + 'Brooke', + 'Brooklyn', + 'Brooks', + 'Brown', + 'Bruce', + 'Bryana', + 'Bryce', + 'Brycen', + 'Bryon', + 'Buck', + 'Bud', + 'Buddy', + 'Buford', + 'Bulah', + 'Burdette', + 'Burley', + 'Burnice', + 'Buster', + 'Cade', + 'Caden', + 'Caesar', + 'Caitlyn', + 'Cale', + 'Caleb', + 'Caleigh', + 'Cali', + 'Calista', + 'Callie', + 'Camden', + 'Cameron', + 'Camila', + 'Camilla', + 'Camille', + 'Camren', + 'Camron', + 'Camryn', + 'Camylle', + 'Candace', + 'Candelario', + 'Candice', + 'Candida', + 'Candido', + 'Cara', + 'Carey', + 'Carissa', + 'Carlee', + 'Carleton', + 'Carley', + 'Carli', + 'Carlie', + 'Carlo', + 'Carlos', + 'Carlotta', + 'Carmel', + 'Carmela', + 'Carmella', + 'Carmelo', + 'Carmen', + 'Carmine', + 'Carol', + 'Carolanne', + 'Carole', + 'Carolina', + 'Caroline', + 'Carolyn', + 'Carolyne', + 'Carrie', + 'Carroll', + 'Carson', + 'Carter', + 'Cary', + 'Casandra', + 'Casey', + 'Casimer', + 'Casimir', + 'Casper', + 'Cassandra', + 'Cassandre', + 'Cassidy', + 'Cassie', + 'Catalina', + 'Caterina', + 'Catharine', + 'Catherine', + 'Cathrine', + 'Cathryn', + 'Cathy', + 'Cayla', + 'Ceasar', + 'Cecelia', + 'Cecil', + 'Cecile', + 'Cecilia', + 'Cedrick', + 'Celestine', + 'Celestino', + 'Celia', + 'Celine', + 'Cesar', + 'Chad', + 'Chadd', + 'Chadrick', + 'Chaim', + 'Chance', + 'Chandler', + 'Chanel', + 'Chanelle', + 'Charity', + 'Charlene', + 'Charles', + 'Charley', + 'Charlie', + 'Charlotte', + 'Chase', + 'Chasity', + 'Chauncey', + 'Chaya', + 'Chaz', + 'Chelsea', + 'Chelsey', + 'Chelsie', + 'Chesley', + 'Chester', + 'Chet', + 'Cheyanne', + 'Cheyenne', + 'Chloe', + 'Chris', + 'Christ', + 'Christa', + 'Christelle', + 'Christian', + 'Christiana', + 'Christina', + 'Christine', + 'Christop', + 'Christophe', + 'Christopher', + 'Christy', + 'Chyna', + 'Ciara', + 'Cicero', + 'Cielo', + 'Cierra', + 'Cindy', + 'Citlalli', + 'Clair', + 'Claire', + 'Clara', + 'Clarabelle', + 'Clare', + 'Clarissa', + 'Clark', + 'Claud', + 'Claude', + 'Claudia', + 'Claudie', + 'Claudine', + 'Clay', + 'Clemens', + 'Clement', + 'Clementina', + 'Clementine', + 'Clemmie', + 'Cleo', + 'Cleora', + 'Cleta', + 'Cletus', + 'Cleve', + 'Cleveland', + 'Clifford', + 'Clifton', + 'Clint', + 'Clinton', + 'Clotilde', + 'Clovis', + 'Cloyd', + 'Clyde', + 'Coby', + 'Cody', + 'Colby', + 'Cole', + 'Coleman', + 'Colin', + 'Colleen', + 'Collin', + 'Colt', + 'Colten', + 'Colton', + 'Columbus', + 'Concepcion', + 'Conner', + 'Connie', + 'Connor', + 'Conor', + 'Conrad', + 'Constance', + 'Constantin', + 'Consuelo', + 'Cooper', + 'Cora', + 'Coralie', + 'Corbin', + 'Cordelia', + 'Cordell', + 'Cordia', + 'Cordie', + 'Corene', + 'Corine', + 'Cornelius', + 'Cornell', + 'Corrine', + 'Cortez', + 'Cortney', + 'Cory', + 'Coty', + 'Courtney', + 'Coy', + 'Craig', + 'Crawford', + 'Creola', + 'Cristal', + 'Cristian', + 'Cristina', + 'Cristobal', + 'Cristopher', + 'Cruz', + 'Crystal', + 'Crystel', + 'Cullen', + 'Curt', + 'Curtis', + 'Cydney', + 'Cynthia', + 'Cyril', + 'Cyrus', + 'Dagmar', + 'Dahlia', + 'Daija', + 'Daisha', + 'Daisy', + 'Dakota', + 'Dale', + 'Dallas', + 'Dallin', + 'Dalton', + 'Damaris', + 'Dameon', + 'Damian', + 'Damien', + 'Damion', + 'Damon', + 'Dan', + 'Dana', + 'Dandre', + 'Dane', "D'angelo", - "Dangelo", - "Danial", - "Daniela", - "Daniella", - "Danielle", - "Danika", - "Dannie", - "Danny", - "Dante", - "Danyka", - "Daphne", - "Daphnee", - "Daphney", - "Darby", - "Daren", - "Darian", - "Dariana", - "Darien", - "Dario", - "Darion", - "Darius", - "Darlene", - "Daron", - "Darrel", - "Darrell", - "Darren", - "Darrick", - "Darrin", - "Darrion", - "Darron", - "Darryl", - "Darwin", - "Daryl", - "Dashawn", - "Dasia", - "Dave", - "David", - "Davin", - "Davion", - "Davon", - "Davonte", - "Dawn", - "Dawson", - "Dax", - "Dayana", - "Dayna", - "Dayne", - "Dayton", - "Dean", - "Deangelo", - "Deanna", - "Deborah", - "Declan", - "Dedric", - "Dedrick", - "Dee", - "Deion", - "Deja", - "Dejah", - "Dejon", - "Dejuan", - "Delaney", - "Delbert", - "Delfina", - "Delia", - "Delilah", - "Dell", - "Della", - "Delmer", - "Delores", - "Delpha", - "Delphia", - "Delphine", - "Delta", - "Demarco", - "Demarcus", - "Demario", - "Demetris", - "Demetrius", - "Demond", - "Dena", - "Denis", - "Dennis", - "Deon", - "Deondre", - "Deontae", - "Deonte", - "Dereck", - "Derek", - "Derick", - "Deron", - "Derrick", - "Deshaun", - "Deshawn", - "Desiree", - "Desmond", - "Dessie", - "Destany", - "Destin", - "Destinee", - "Destiney", - "Destini", - "Destiny", - "Devan", - "Devante", - "Deven", - "Devin", - "Devon", - "Devonte", - "Devyn", - "Dewayne", - "Dewitt", - "Dexter", - "Diamond", - "Diana", - "Dianna", - "Diego", - "Dillan", - "Dillon", - "Dimitri", - "Dina", - "Dino", - "Dion", - "Dixie", - "Dock", - "Dolly", - "Dolores", - "Domenic", - "Domenica", - "Domenick", - "Domenico", - "Domingo", - "Dominic", - "Dominique", - "Don", - "Donald", - "Donato", - "Donavon", - "Donna", - "Donnell", - "Donnie", - "Donny", - "Dora", - "Dorcas", - "Dorian", - "Doris", - "Dorothea", - "Dorothy", - "Dorris", - "Dortha", - "Dorthy", - "Doug", - "Douglas", - "Dovie", - "Doyle", - "Drake", - "Drew", - "Duane", - "Dudley", - "Dulce", - "Duncan", - "Durward", - "Dustin", - "Dusty", - "Dwight", - "Dylan", - "Earl", - "Earlene", - "Earline", - "Earnest", - "Earnestine", - "Easter", - "Easton", - "Ebba", - "Ebony", - "Ed", - "Eda", - "Edd", - "Eddie", - "Eden", - "Edgar", - "Edgardo", - "Edison", - "Edmond", - "Edmund", - "Edna", - "Eduardo", - "Edward", - "Edwardo", - "Edwin", - "Edwina", - "Edyth", - "Edythe", - "Effie", - "Efrain", - "Efren", - "Eileen", - "Einar", - "Eino", - "Eladio", - "Elaina", - "Elbert", - "Elda", - "Eldon", - "Eldora", - "Eldred", - "Eldridge", - "Eleanora", - "Eleanore", - "Eleazar", - "Electa", - "Elena", - "Elenor", - "Elenora", - "Eleonore", - "Elfrieda", - "Eli", - "Elian", - "Eliane", - "Elias", - "Eliezer", - "Elijah", - "Elinor", - "Elinore", - "Elisa", - "Elisabeth", - "Elise", - "Eliseo", - "Elisha", - "Elissa", - "Eliza", - "Elizabeth", - "Ella", - "Ellen", - "Ellie", - "Elliot", - "Elliott", - "Ellis", - "Ellsworth", - "Elmer", - "Elmira", - "Elmo", - "Elmore", - "Elna", - "Elnora", - "Elody", - "Eloisa", - "Eloise", - "Elouise", - "Eloy", - "Elroy", - "Elsa", - "Else", - "Elsie", - "Elta", - "Elton", - "Elva", - "Elvera", - "Elvie", - "Elvis", - "Elwin", - "Elwyn", - "Elyse", - "Elyssa", - "Elza", - "Emanuel", - "Emelia", - "Emelie", - "Emely", - "Emerald", - "Emerson", - "Emery", - "Emie", - "Emil", - "Emile", - "Emilia", - "Emiliano", - "Emilie", - "Emilio", - "Emily", - "Emma", - "Emmalee", - "Emmanuel", - "Emmanuelle", - "Emmet", - "Emmett", - "Emmie", - "Emmitt", - "Emmy", - "Emory", - "Ena", - "Enid", - "Enoch", - "Enola", - "Enos", - "Enrico", - "Enrique", - "Ephraim", - "Era", - "Eriberto", - "Eric", - "Erica", - "Erich", - "Erick", - "Ericka", - "Erik", - "Erika", - "Erin", - "Erling", - "Erna", - "Ernest", - "Ernestina", - "Ernestine", - "Ernesto", - "Ernie", - "Ervin", - "Erwin", - "Eryn", - "Esmeralda", - "Esperanza", - "Esta", - "Esteban", - "Estefania", - "Estel", - "Estell", - "Estella", - "Estelle", - "Estevan", - "Esther", - "Estrella", - "Etha", - "Ethan", - "Ethel", - "Ethelyn", - "Ethyl", - "Ettie", - "Eudora", - "Eugene", - "Eugenia", - "Eula", - "Eulah", - "Eulalia", - "Euna", - "Eunice", - "Eusebio", - "Eva", - "Evalyn", - "Evan", - "Evangeline", - "Evans", - "Eve", - "Eveline", - "Evelyn", - "Everardo", - "Everett", - "Everette", - "Evert", - "Evie", - "Ewald", - "Ewell", - "Ezekiel", - "Ezequiel", - "Ezra", - "Fabian", - "Fabiola", - "Fae", - "Fannie", - "Fanny", - "Fatima", - "Faustino", - "Fausto", - "Favian", - "Fay", - "Faye", - "Federico", - "Felicia", - "Felicita", - "Felicity", - "Felipa", - "Felipe", - "Felix", - "Felton", - "Fermin", - "Fern", - "Fernando", - "Ferne", - "Fidel", - "Filiberto", - "Filomena", - "Finn", - "Fiona", - "Flavie", - "Flavio", - "Fleta", - "Fletcher", - "Flo", - "Florence", - "Florencio", - "Florian", - "Florida", - "Florine", - "Flossie", - "Floy", - "Floyd", - "Ford", - "Forest", - "Forrest", - "Foster", - "Frances", - "Francesca", - "Francesco", - "Francis", - "Francisca", - "Francisco", - "Franco", - "Frank", - "Frankie", - "Franz", - "Fred", - "Freda", - "Freddie", - "Freddy", - "Frederic", - "Frederick", - "Frederik", - "Frederique", - "Fredrick", - "Fredy", - "Freeda", - "Freeman", - "Freida", - "Frida", - "Frieda", - "Friedrich", - "Fritz", - "Furman", - "Gabe", - "Gabriel", - "Gabriella", - "Gabrielle", - "Gaetano", - "Gage", - "Gail", - "Gardner", - "Garett", - "Garfield", - "Garland", - "Garnet", - "Garnett", - "Garret", - "Garrett", - "Garrick", - "Garrison", - "Garry", - "Garth", - "Gaston", - "Gavin", - "Gay", - "Gayle", - "Gaylord", - "Gene", - "General", - "Genesis", - "Genevieve", - "Gennaro", - "Genoveva", - "Geo", - "Geoffrey", - "George", - "Georgette", - "Georgiana", - "Georgianna", - "Geovanni", - "Geovanny", - "Geovany", - "Gerald", - "Geraldine", - "Gerard", - "Gerardo", - "Gerda", - "Gerhard", - "Germaine", - "German", - "Gerry", - "Gerson", - "Gertrude", - "Gia", - "Gianni", - "Gideon", - "Gilbert", - "Gilberto", - "Gilda", - "Giles", - "Gillian", - "Gina", - "Gino", - "Giovani", - "Giovanna", - "Giovanni", - "Giovanny", - "Gisselle", - "Giuseppe", - "Gladyce", - "Gladys", - "Glen", - "Glenda", - "Glenna", - "Glennie", - "Gloria", - "Godfrey", - "Golda", - "Golden", - "Gonzalo", - "Gordon", - "Grace", - "Gracie", - "Graciela", - "Grady", - "Graham", - "Grant", - "Granville", - "Grayce", - "Grayson", - "Green", - "Greg", - "Gregg", - "Gregoria", - "Gregorio", - "Gregory", - "Greta", - "Gretchen", - "Greyson", - "Griffin", - "Grover", - "Guadalupe", - "Gudrun", - "Guido", - "Guillermo", - "Guiseppe", - "Gunnar", - "Gunner", - "Gus", - "Gussie", - "Gust", - "Gustavo", - "Gustave", - "Guy", - "Gwen", - "Gwendolyn", - "Hadley", - "Hailee", - "Hailey", - "Hailie", - "Hal", - "Haleigh", - "Haley", - "Halie", - "Halle", - "Hallie", - "Hank", - "Hanna", - "Hannah", - "Hans", - "Hardy", - "Harley", - "Harmon", - "Harmony", - "Harold", - "Harrison", - "Harry", - "Harvey", - "Haskell", - "Hassan", - "Hassie", - "Hattie", - "Haven", - "Hayden", - "Haylee", - "Hayley", - "Haylie", - "Hazel", - "Hazle", - "Heath", - "Heather", - "Heaven", - "Heber", - "Hector", - "Heidi", - "Helen", - "Helena", - "Helene", - "Helga", - "Hellen", - "Helmer", - "Heloise", - "Henderson", - "Henri", - "Henriette", - "Henry", - "Herbert", - "Herman", - "Hermann", - "Hermina", - "Herminia", - "Herminio", - "Hershel", - "Herta", - "Hertha", - "Hester", - "Hettie", - "Hilario", - "Hilbert", - "Hilda", - "Hildegard", - "Hillard", - "Hillary", - "Hilma", - "Hilton", - "Hipolito", - "Hiram", - "Hobart", - "Holden", - "Hollie", - "Hollis", - "Holly", - "Hope", - "Horace", - "Horacio", - "Hortense", - "Hosea", - "Houston", - "Howard", - "Howell", - "Hoyt", - "Hubert", - "Hudson", - "Hugh", - "Hulda", - "Humberto", - "Hunter", - "Hyman", - "Ian", - "Ibrahim", - "Icie", - "Ida", - "Idell", - "Idella", - "Ignacio", - "Ignatius", - "Ike", - "Ila", - "Ilene", - "Iliana", - "Ima", - "Imani", - "Imelda", - "Immanuel", - "Imogene", - "Ines", - "Irma", - "Irving", - "Irwin", - "Isaac", - "Isabel", - "Isabell", - "Isabella", - "Isabelle", - "Isac", - "Isadore", - "Isai", - "Isaiah", - "Isaias", - "Isidro", - "Ismael", - "Isobel", - "Isom", - "Israel", - "Issac", - "Itzel", - "Iva", - "Ivah", - "Ivory", - "Ivy", - "Izabella", - "Izaiah", - "Jabari", - "Jace", - "Jacey", - "Jacinthe", - "Jacinto", - "Jack", - "Jackeline", - "Jackie", - "Jacklyn", - "Jackson", - "Jacky", - "Jaclyn", - "Jacquelyn", - "Jacques", - "Jacynthe", - "Jada", - "Jade", - "Jaden", - "Jadon", - "Jadyn", - "Jaeden", - "Jaida", - "Jaiden", - "Jailyn", - "Jaime", - "Jairo", - "Jakayla", - "Jake", - "Jakob", - "Jaleel", - "Jalen", - "Jalon", - "Jalyn", - "Jamaal", - "Jamal", - "Jamar", - "Jamarcus", - "Jamel", - "Jameson", - "Jamey", - "Jamie", - "Jamil", - "Jamir", - "Jamison", - "Jammie", - "Jan", - "Jana", - "Janae", - "Jane", - "Janelle", - "Janessa", - "Janet", - "Janice", - "Janick", - "Janie", - "Janis", - "Janiya", - "Jannie", - "Jany", - "Jaquan", - "Jaquelin", - "Jaqueline", - "Jared", - "Jaren", - "Jarod", - "Jaron", - "Jarred", - "Jarrell", - "Jarret", - "Jarrett", - "Jarrod", - "Jarvis", - "Jasen", - "Jasmin", - "Jason", - "Jasper", - "Jaunita", - "Javier", - "Javon", - "Javonte", - "Jay", - "Jayce", - "Jaycee", - "Jayda", - "Jayde", - "Jayden", - "Jaydon", - "Jaylan", - "Jaylen", - "Jaylin", - "Jaylon", - "Jayme", - "Jayne", - "Jayson", - "Jazlyn", - "Jazmin", - "Jazmyn", - "Jazmyne", - "Jean", - "Jeanette", - "Jeanie", - "Jeanne", - "Jed", - "Jedediah", - "Jedidiah", - "Jeff", - "Jefferey", - "Jeffery", - "Jeffrey", - "Jeffry", - "Jena", - "Jenifer", - "Jennie", - "Jennifer", - "Jennings", - "Jennyfer", - "Jensen", - "Jerad", - "Jerald", - "Jeramie", - "Jeramy", - "Jerel", - "Jeremie", - "Jeremy", - "Jermain", - "Jermaine", - "Jermey", - "Jerod", - "Jerome", - "Jeromy", - "Jerrell", - "Jerrod", - "Jerrold", - "Jerry", - "Jess", - "Jesse", - "Jessica", - "Jessie", - "Jessika", - "Jessy", - "Jessyca", - "Jesus", - "Jett", - "Jettie", - "Jevon", - "Jewel", - "Jewell", - "Jillian", - "Jimmie", - "Jimmy", - "Jo", - "Joan", - "Joana", - "Joanie", - "Joanne", - "Joannie", - "Joanny", - "Joany", - "Joaquin", - "Jocelyn", - "Jodie", - "Jody", - "Joe", - "Joel", - "Joelle", - "Joesph", - "Joey", - "Johan", - "Johann", - "Johanna", - "Johathan", - "John", - "Johnathan", - "Johnathon", - "Johnnie", - "Johnny", - "Johnpaul", - "Johnson", - "Jolie", - "Jon", - "Jonas", - "Jonatan", - "Jonathan", - "Jonathon", - "Jordan", - "Jordane", - "Jordi", - "Jordon", - "Jordy", - "Jordyn", - "Jorge", - "Jose", - "Josefa", - "Josefina", - "Joseph", - "Josephine", - "Josh", - "Joshua", - "Joshuah", - "Josiah", - "Josiane", - "Josianne", - "Josie", - "Josue", - "Jovan", - "Jovani", - "Jovanny", - "Jovany", - "Joy", - "Joyce", - "Juana", - "Juanita", - "Judah", - "Judd", - "Jude", - "Judge", - "Judson", - "Judy", - "Jules", - "Julia", - "Julian", - "Juliana", - "Julianne", - "Julie", - "Julien", - "Juliet", - "Julio", - "Julius", - "June", - "Junior", - "Junius", - "Justen", - "Justice", - "Justina", - "Justine", - "Juston", - "Justus", - "Justyn", - "Juvenal", - "Juwan", - "Kacey", - "Kaci", - "Kacie", - "Kade", - "Kaden", - "Kadin", - "Kaela", - "Kaelyn", - "Kaia", - "Kailee", - "Kailey", - "Kailyn", - "Kaitlin", - "Kaitlyn", - "Kale", - "Kaleb", - "Kaleigh", - "Kaley", - "Kali", - "Kallie", - "Kameron", - "Kamille", - "Kamren", - "Kamron", - "Kamryn", - "Kane", - "Kara", - "Kareem", - "Karelle", - "Karen", - "Kari", - "Kariane", - "Karianne", - "Karina", - "Karine", - "Karl", - "Karlee", - "Karley", - "Karli", - "Karlie", - "Karolann", - "Karson", - "Kasandra", - "Kasey", - "Kassandra", - "Katarina", - "Katelin", - "Katelyn", - "Katelynn", - "Katharina", - "Katherine", - "Katheryn", - "Kathleen", - "Kathlyn", - "Kathryn", - "Kathryne", - "Katlyn", - "Katlynn", - "Katrina", - "Katrine", - "Kattie", - "Kavon", - "Kay", - "Kaya", - "Kaycee", - "Kayden", - "Kayla", - "Kaylah", - "Kaylee", - "Kayleigh", - "Kayley", - "Kayli", - "Kaylie", - "Kaylin", - "Keagan", - "Keanu", - "Keara", - "Keaton", - "Keegan", - "Keeley", - "Keely", - "Keenan", - "Keira", - "Keith", - "Kellen", - "Kelley", - "Kelli", - "Kellie", - "Kelly", - "Kelsi", - "Kelsie", - "Kelton", - "Kelvin", - "Ken", - "Kendall", - "Kendra", - "Kendrick", - "Kenna", - "Kennedi", - "Kennedy", - "Kenneth", - "Kennith", - "Kenny", - "Kenton", - "Kenya", - "Kenyatta", - "Kenyon", - "Keon", - "Keshaun", - "Keshawn", - "Keven", - "Kevin", - "Kevon", - "Keyon", - "Keyshawn", - "Khalid", - "Khalil", - "Kian", - "Kiana", - "Kianna", - "Kiara", - "Kiarra", - "Kiel", - "Kiera", - "Kieran", - "Kiley", - "Kim", - "Kimberly", - "King", - "Kip", - "Kira", - "Kirk", - "Kirsten", - "Kirstin", - "Kitty", - "Kobe", - "Koby", - "Kody", - "Kolby", - "Kole", - "Korbin", - "Korey", - "Kory", - "Kraig", - "Kris", - "Krista", - "Kristian", - "Kristin", - "Kristina", - "Kristofer", - "Kristoffer", - "Kristopher", - "Kristy", - "Krystal", - "Krystel", - "Krystina", - "Kurt", - "Kurtis", - "Kyla", - "Kyle", - "Kylee", - "Kyleigh", - "Kyler", - "Kylie", - "Kyra", - "Lacey", - "Lacy", - "Ladarius", - "Lafayette", - "Laila", - "Laisha", - "Lamar", - "Lambert", - "Lamont", - "Lance", - "Landen", - "Lane", - "Laney", - "Larissa", - "Laron", - "Larry", - "Larue", - "Laura", - "Laurel", - "Lauren", - "Laurence", - "Lauretta", - "Lauriane", - "Laurianne", - "Laurie", - "Laurine", - "Laury", - "Lauryn", - "Lavada", - "Lavern", - "Laverna", - "Laverne", - "Lavina", - "Lavinia", - "Lavon", - "Lavonne", - "Lawrence", - "Lawson", - "Layla", - "Layne", - "Lazaro", - "Lea", - "Leann", - "Leanna", - "Leanne", - "Leatha", - "Leda", - "Lee", - "Leif", - "Leila", - "Leilani", - "Lela", - "Lelah", - "Leland", - "Lelia", - "Lempi", - "Lemuel", - "Lenna", - "Lennie", - "Lenny", - "Lenora", - "Lenore", - "Leo", - "Leola", - "Leon", - "Leonard", - "Leonardo", - "Leone", - "Leonel", - "Leonie", - "Leonor", - "Leonora", - "Leopold", - "Leopoldo", - "Leora", - "Lera", - "Lesley", - "Leslie", - "Lesly", - "Lessie", - "Lester", - "Leta", - "Letha", - "Letitia", - "Levi", - "Lew", - "Lewis", - "Lexi", - "Lexie", - "Lexus", - "Lia", - "Liam", - "Liana", - "Libbie", - "Libby", - "Lila", - "Lilian", - "Liliana", - "Liliane", - "Lilla", - "Lillian", - "Lilliana", - "Lillie", - "Lilly", - "Lily", - "Lilyan", - "Lina", - "Lincoln", - "Linda", - "Lindsay", - "Lindsey", - "Linnea", - "Linnie", - "Linwood", - "Lionel", - "Lisa", - "Lisandro", - "Lisette", - "Litzy", - "Liza", - "Lizeth", - "Lizzie", - "Llewellyn", - "Lloyd", - "Logan", - "Lois", - "Lola", - "Lolita", - "Loma", - "Lon", - "London", - "Lonie", - "Lonnie", - "Lonny", - "Lonzo", - "Lora", - "Loraine", - "Loren", - "Lorena", - "Lorenz", - "Lorenza", - "Lorenzo", - "Lori", - "Lorine", - "Lorna", - "Lottie", - "Lou", - "Louie", - "Louisa", - "Lourdes", - "Louvenia", - "Lowell", - "Loy", - "Loyal", - "Loyce", - "Lucas", - "Luciano", - "Lucie", - "Lucienne", - "Lucile", - "Lucinda", - "Lucio", - "Lucious", - "Lucius", - "Lucy", - "Ludie", - "Ludwig", - "Lue", - "Luella", - "Luigi", - "Luis", - "Luisa", - "Lukas", - "Lula", - "Lulu", - "Luna", - "Lupe", - "Lura", - "Lurline", - "Luther", - "Luz", - "Lyda", - "Lydia", - "Lyla", - "Lynn", - "Lyric", - "Lysanne", - "Mabel", - "Mabelle", - "Mable", - "Mac", - "Macey", - "Maci", - "Macie", - "Mack", - "Mackenzie", - "Macy", - "Madaline", - "Madalyn", - "Maddison", - "Madeline", - "Madelyn", - "Madelynn", - "Madge", - "Madie", - "Madilyn", - "Madisen", - "Madison", - "Madisyn", - "Madonna", - "Madyson", - "Mae", - "Maegan", - "Maeve", - "Mafalda", - "Magali", - "Magdalen", - "Magdalena", - "Maggie", - "Magnolia", - "Magnus", - "Maia", - "Maida", - "Maiya", - "Major", - "Makayla", - "Makenna", - "Makenzie", - "Malachi", - "Malcolm", - "Malika", - "Malinda", - "Mallie", - "Mallory", - "Malvina", - "Mandy", - "Manley", - "Manuel", - "Manuela", - "Mara", - "Marc", - "Marcel", - "Marcelina", - "Marcelino", - "Marcella", - "Marcelle", - "Marcellus", - "Marcelo", - "Marcia", - "Marco", - "Marcos", - "Marcus", - "Margaret", - "Margarete", - "Margarett", - "Margaretta", - "Margarette", - "Margarita", - "Marge", - "Margie", - "Margot", - "Margret", - "Marguerite", - "Maria", - "Mariah", - "Mariam", - "Marian", - "Mariana", - "Mariane", - "Marianna", - "Marianne", - "Mariano", - "Maribel", - "Marie", - "Mariela", - "Marielle", - "Marietta", - "Marilie", - "Marilou", - "Marilyne", - "Marina", - "Mario", - "Marion", - "Marisa", - "Marisol", - "Maritza", - "Marjolaine", - "Marjorie", - "Marjory", - "Mark", - "Markus", - "Marlee", - "Marlen", - "Marlene", - "Marley", - "Marlin", - "Marlon", - "Marques", - "Marquis", - "Marquise", - "Marshall", - "Marta", - "Martin", - "Martina", - "Martine", - "Marty", - "Marvin", - "Mary", - "Maryam", - "Maryjane", - "Maryse", - "Mason", - "Mateo", - "Mathew", - "Mathias", - "Mathilde", - "Matilda", - "Matilde", - "Matt", - "Matteo", - "Mattie", - "Maud", - "Maude", - "Maudie", - "Maureen", - "Maurice", - "Mauricio", - "Maurine", - "Maverick", - "Mavis", - "Max", - "Maxie", - "Maxime", - "Maximilian", - "Maximillia", - "Maximillian", - "Maximo", - "Maximus", - "Maxine", - "Maxwell", - "May", - "Maya", - "Maybell", - "Maybelle", - "Maye", - "Maymie", - "Maynard", - "Mayra", - "Mazie", - "Mckayla", - "Mckenna", - "Mckenzie", - "Meagan", - "Meaghan", - "Meda", - "Megane", - "Meggie", - "Meghan", - "Mekhi", - "Melany", - "Melba", - "Melisa", - "Melissa", - "Mellie", - "Melody", - "Melvin", - "Melvina", - "Melyna", - "Melyssa", - "Mercedes", - "Meredith", - "Merl", - "Merle", - "Merlin", - "Merritt", - "Mertie", - "Mervin", - "Meta", - "Mia", - "Micaela", - "Micah", - "Michael", - "Michaela", - "Michale", - "Micheal", - "Michel", - "Michele", - "Michelle", - "Miguel", - "Mikayla", - "Mike", - "Mikel", - "Milan", - "Miles", - "Milford", - "Miller", - "Millie", - "Milo", - "Milton", - "Mina", - "Minerva", - "Minnie", - "Miracle", - "Mireille", - "Mireya", - "Misael", - "Missouri", - "Misty", - "Mitchel", - "Mitchell", - "Mittie", - "Modesta", - "Modesto", - "Mohamed", - "Mohammad", - "Mohammed", - "Moises", - "Mollie", - "Molly", - "Mona", - "Monica", - "Monique", - "Monroe", - "Monserrat", - "Monserrate", - "Montana", - "Monte", - "Monty", - "Morgan", - "Moriah", - "Morris", - "Mortimer", - "Morton", - "Mose", - "Moses", - "Moshe", - "Mossie", - "Mozell", - "Mozelle", - "Muhammad", - "Muriel", - "Murl", - "Murphy", - "Murray", - "Mustafa", - "Mya", - "Myah", - "Mylene", - "Myles", - "Myra", - "Myriam", - "Myrl", - "Myrna", - "Myron", - "Myrtice", - "Myrtie", - "Myrtis", - "Myrtle", - "Nadia", - "Nakia", - "Name", - "Nannie", - "Naomi", - "Naomie", - "Napoleon", - "Narciso", - "Nash", - "Nasir", - "Nat", - "Natalia", - "Natalie", - "Natasha", - "Nathan", - "Nathanael", - "Nathanial", - "Nathaniel", - "Nathen", - "Nayeli", - "Neal", - "Ned", - "Nedra", - "Neha", - "Neil", - "Nelda", - "Nella", - "Nelle", - "Nellie", - "Nels", - "Nelson", - "Neoma", - "Nestor", - "Nettie", - "Neva", - "Newell", - "Newton", - "Nia", - "Nicholas", - "Nicholaus", - "Nichole", - "Nick", - "Nicklaus", - "Nickolas", - "Nico", - "Nicola", - "Nicolas", - "Nicole", - "Nicolette", - "Nigel", - "Nikita", - "Nikki", - "Nikko", - "Niko", - "Nikolas", - "Nils", - "Nina", - "Noah", - "Noble", - "Noe", - "Noel", - "Noelia", - "Noemi", - "Noemie", - "Noemy", - "Nola", - "Nolan", - "Nona", - "Nora", - "Norbert", - "Norberto", - "Norene", - "Norma", - "Norris", - "Norval", - "Norwood", - "Nova", - "Novella", - "Nya", - "Nyah", - "Nyasia", - "Obie", - "Oceane", - "Ocie", - "Octavia", - "Oda", - "Odell", - "Odessa", - "Odie", - "Ofelia", - "Okey", - "Ola", - "Olaf", - "Ole", - "Olen", - "Oleta", - "Olga", - "Olin", - "Oliver", - "Ollie", - "Oma", - "Omari", - "Omer", - "Ona", - "Onie", - "Opal", - "Ophelia", - "Ora", - "Oral", - "Oran", - "Oren", - "Orie", - "Orin", - "Orion", - "Orland", - "Orlando", - "Orlo", - "Orpha", - "Orrin", - "Orval", - "Orville", - "Osbaldo", - "Osborne", - "Oscar", - "Osvaldo", - "Oswald", - "Oswaldo", - "Otha", - "Otho", - "Otilia", - "Otis", - "Ottilie", - "Ottis", - "Otto", - "Ova", - "Owen", - "Ozella", - "Pablo", - "Paige", - "Palma", - "Pamela", - "Pansy", - "Paolo", - "Paris", - "Parker", - "Pascale", - "Pasquale", - "Pat", - "Patience", - "Patricia", - "Patrick", - "Patsy", - "Pattie", - "Paul", - "Paula", - "Pauline", - "Paxton", - "Payton", - "Pearl", - "Pearlie", - "Pearline", - "Pedro", - "Peggie", - "Penelope", - "Percival", - "Percy", - "Perry", - "Pete", - "Peter", - "Petra", - "Peyton", - "Philip", - "Phoebe", - "Phyllis", - "Pierce", - "Pierre", - "Pietro", - "Pink", - "Pinkie", - "Piper", - "Polly", - "Porter", - "Precious", - "Presley", - "Preston", - "Price", - "Prince", - "Princess", - "Priscilla", - "Providenci", - "Prudence", - "Queen", - "Queenie", - "Quentin", - "Quincy", - "Quinn", - "Quinten", - "Quinton", - "Rachael", - "Rachel", - "Rachelle", - "Rae", - "Raegan", - "Rafael", - "Rafaela", - "Raheem", - "Rahsaan", - "Rahul", - "Raina", - "Raleigh", - "Ralph", - "Ramiro", - "Ramon", - "Ramona", - "Randal", - "Randall", - "Randi", - "Randy", - "Ransom", - "Raoul", - "Raphael", - "Raphaelle", - "Raquel", - "Rashad", - "Rashawn", - "Rasheed", - "Raul", - "Raven", - "Ray", - "Raymond", - "Raymundo", - "Reagan", - "Reanna", - "Reba", - "Rebeca", - "Rebecca", - "Rebeka", - "Rebekah", - "Reece", - "Reed", - "Reese", - "Regan", - "Reggie", - "Reginald", - "Reid", - "Reilly", - "Reina", - "Reinhold", - "Remington", - "Rene", - "Renee", - "Ressie", - "Reta", - "Retha", - "Retta", - "Reuben", - "Reva", - "Rex", - "Rey", - "Reyes", - "Reymundo", - "Reyna", - "Reynold", - "Rhea", - "Rhett", - "Rhianna", - "Rhiannon", - "Rhoda", - "Ricardo", - "Richard", - "Richie", - "Richmond", - "Rick", - "Rickey", - "Rickie", - "Ricky", - "Rico", - "Rigoberto", - "Riley", - "Rita", - "River", - "Robb", - "Robbie", - "Robert", - "Roberta", - "Roberto", - "Robin", - "Robyn", - "Rocio", - "Rocky", - "Rod", - "Roderick", - "Rodger", - "Rodolfo", - "Rodrick", - "Rodrigo", - "Roel", - "Rogelio", - "Roger", - "Rogers", - "Rolando", - "Rollin", - "Roma", - "Romaine", - "Roman", - "Ron", - "Ronaldo", - "Ronny", - "Roosevelt", - "Rory", - "Rosa", - "Rosalee", - "Rosalia", - "Rosalind", - "Rosalinda", - "Rosalyn", - "Rosamond", - "Rosanna", - "Rosario", - "Roscoe", - "Rose", - "Rosella", - "Roselyn", - "Rosemarie", - "Rosemary", - "Rosendo", - "Rosetta", - "Rosie", - "Rosina", - "Roslyn", - "Ross", - "Rossie", - "Rowan", - "Rowena", - "Rowland", - "Roxane", - "Roxanne", - "Roy", - "Royal", - "Royce", - "Rozella", - "Ruben", - "Rubie", - "Ruby", - "Rubye", - "Rudolph", - "Rudy", - "Rupert", - "Russ", - "Russel", - "Russell", - "Rusty", - "Ruth", - "Ruthe", - "Ruthie", - "Ryan", - "Ryann", - "Ryder", - "Rylan", - "Rylee", - "Ryleigh", - "Ryley", - "Sabina", - "Sabrina", - "Sabryna", - "Sadie", - "Sadye", - "Sage", - "Saige", - "Sallie", - "Sally", - "Salma", - "Salvador", - "Salvatore", - "Sam", - "Samanta", - "Samantha", - "Samara", - "Samir", - "Sammie", - "Sammy", - "Samson", - "Sandra", - "Sandrine", - "Sandy", - "Sanford", - "Santa", - "Santiago", - "Santina", - "Santino", - "Santos", - "Sarah", - "Sarai", - "Sarina", - "Sasha", - "Saul", - "Savanah", - "Savanna", - "Savannah", - "Savion", - "Scarlett", - "Schuyler", - "Scot", - "Scottie", - "Scotty", - "Seamus", - "Sean", - "Sebastian", - "Sedrick", - "Selena", - "Selina", - "Selmer", - "Serena", - "Serenity", - "Seth", - "Shad", - "Shaina", - "Shakira", - "Shana", - "Shane", - "Shanel", - "Shanelle", - "Shania", - "Shanie", - "Shaniya", - "Shanna", - "Shannon", - "Shanny", - "Shanon", - "Shany", - "Sharon", - "Shaun", - "Shawn", - "Shawna", - "Shaylee", - "Shayna", - "Shayne", - "Shea", - "Sheila", - "Sheldon", - "Shemar", - "Sheridan", - "Sherman", - "Sherwood", - "Shirley", - "Shyann", - "Shyanne", - "Sibyl", - "Sid", - "Sidney", - "Sienna", - "Sierra", - "Sigmund", - "Sigrid", - "Sigurd", - "Silas", - "Sim", - "Simeon", - "Simone", - "Sincere", - "Sister", - "Skye", - "Skyla", - "Skylar", - "Sofia", - "Soledad", - "Solon", - "Sonia", - "Sonny", - "Sonya", - "Sophia", - "Sophie", - "Spencer", - "Stacey", - "Stacy", - "Stan", - "Stanford", - "Stanley", - "Stanton", - "Stefan", - "Stefanie", - "Stella", - "Stephan", - "Stephania", - "Stephanie", - "Stephany", - "Stephen", - "Stephon", - "Sterling", - "Steve", - "Stevie", - "Stewart", - "Stone", - "Stuart", - "Summer", - "Sunny", - "Susan", - "Susana", - "Susanna", - "Susie", - "Suzanne", - "Sven", - "Syble", - "Sydnee", - "Sydney", - "Sydni", - "Sydnie", - "Sylvan", - "Sylvester", - "Sylvia", - "Tabitha", - "Tad", - "Talia", - "Talon", - "Tamara", - "Tamia", - "Tania", - "Tanner", - "Tanya", - "Tara", - "Taryn", - "Tate", - "Tatum", - "Tatyana", - "Taurean", - "Tavares", - "Taya", - "Taylor", - "Teagan", - "Ted", - "Telly", - "Terence", - "Teresa", - "Terrance", - "Terrell", - "Terrence", - "Terrill", - "Terry", - "Tess", - "Tessie", - "Tevin", - "Thad", - "Thaddeus", - "Thalia", - "Thea", - "Thelma", - "Theo", - "Theodora", - "Theodore", - "Theresa", - "Therese", - "Theresia", - "Theron", - "Thomas", - "Thora", - "Thurman", - "Tia", - "Tiana", - "Tianna", - "Tiara", - "Tierra", - "Tiffany", - "Tillman", - "Timmothy", - "Timmy", - "Timothy", - "Tina", - "Tito", - "Titus", - "Tobin", - "Toby", - "Tod", - "Tom", - "Tomas", - "Tomasa", - "Tommie", - "Toney", - "Toni", - "Tony", - "Torey", - "Torrance", - "Torrey", - "Toy", - "Trace", - "Tracey", - "Tracy", - "Travis", - "Travon", - "Tre", - "Tremaine", - "Tremayne", - "Trent", - "Trenton", - "Tressa", - "Tressie", - "Treva", - "Trever", - "Trevion", - "Trevor", - "Trey", - "Trinity", - "Trisha", - "Tristian", - "Tristin", - "Triston", - "Troy", - "Trudie", - "Trycia", - "Trystan", - "Turner", - "Twila", - "Tyler", - "Tyra", - "Tyree", - "Tyreek", - "Tyrel", - "Tyrell", - "Tyrese", - "Tyrique", - "Tyshawn", - "Tyson", - "Ubaldo", - "Ulices", - "Ulises", - "Una", - "Unique", - "Urban", - "Uriah", - "Uriel", - "Ursula", - "Vada", - "Valentin", - "Valentina", - "Valentine", - "Valerie", - "Vallie", - "Van", - "Vance", - "Vanessa", - "Vaughn", - "Veda", - "Velda", - "Vella", - "Velma", - "Velva", - "Vena", - "Verda", - "Verdie", - "Vergie", - "Verla", - "Verlie", - "Vern", - "Verna", - "Verner", - "Vernice", - "Vernie", - "Vernon", - "Verona", - "Veronica", - "Vesta", - "Vicenta", - "Vicente", - "Vickie", - "Vicky", - "Victor", - "Victoria", - "Vida", - "Vidal", - "Vilma", - "Vince", - "Vincent", - "Vincenza", - "Vincenzo", - "Vinnie", - "Viola", - "Violet", - "Violette", - "Virgie", - "Virgil", - "Virginia", - "Virginie", - "Vita", - "Vito", - "Viva", - "Vivian", - "Viviane", - "Vivianne", - "Vivien", - "Vivienne", - "Vladimir", - "Wade", - "Waino", - "Waldo", - "Walker", - "Wallace", - "Walter", - "Walton", - "Wanda", - "Ward", - "Warren", - "Watson", - "Wava", - "Waylon", - "Wayne", - "Webster", - "Weldon", - "Wellington", - "Wendell", - "Wendy", - "Werner", - "Westley", - "Weston", - "Whitney", - "Wilber", - "Wilbert", - "Wilburn", - "Wiley", - "Wilford", - "Wilfred", - "Wilfredo", - "Wilfrid", - "Wilhelm", - "Wilhelmine", - "Will", - "Willa", - "Willard", - "William", - "Willie", - "Willis", - "Willow", - "Willy", - "Wilma", - "Wilmer", - "Wilson", - "Wilton", - "Winfield", - "Winifred", - "Winnifred", - "Winona", - "Winston", - "Woodrow", - "Wyatt", - "Wyman", - "Xander", - "Xavier", - "Xzavier", - "Yadira", - "Yasmeen", - "Yasmin", - "Yasmine", - "Yazmin", - "Yesenia", - "Yessenia", - "Yolanda", - "Yoshiko", - "Yvette", - "Yvonne", - "Zachariah", - "Zachary", - "Zachery", - "Zack", - "Zackary", - "Zackery", - "Zakary", - "Zander", - "Zane", - "Zaria", - "Zechariah", - "Zelda", - "Zella", - "Zelma", - "Zena", - "Zetta", - "Zion", - "Zita", - "Zoe", - "Zoey", - "Zoie", - "Zoila", - "Zola", - "Zora", - "Zula" + 'Dangelo', + 'Danial', + 'Daniela', + 'Daniella', + 'Danielle', + 'Danika', + 'Dannie', + 'Danny', + 'Dante', + 'Danyka', + 'Daphne', + 'Daphnee', + 'Daphney', + 'Darby', + 'Daren', + 'Darian', + 'Dariana', + 'Darien', + 'Dario', + 'Darion', + 'Darius', + 'Darlene', + 'Daron', + 'Darrel', + 'Darrell', + 'Darren', + 'Darrick', + 'Darrin', + 'Darrion', + 'Darron', + 'Darryl', + 'Darwin', + 'Daryl', + 'Dashawn', + 'Dasia', + 'Dave', + 'David', + 'Davin', + 'Davion', + 'Davon', + 'Davonte', + 'Dawn', + 'Dawson', + 'Dax', + 'Dayana', + 'Dayna', + 'Dayne', + 'Dayton', + 'Dean', + 'Deangelo', + 'Deanna', + 'Deborah', + 'Declan', + 'Dedric', + 'Dedrick', + 'Dee', + 'Deion', + 'Deja', + 'Dejah', + 'Dejon', + 'Dejuan', + 'Delaney', + 'Delbert', + 'Delfina', + 'Delia', + 'Delilah', + 'Dell', + 'Della', + 'Delmer', + 'Delores', + 'Delpha', + 'Delphia', + 'Delphine', + 'Delta', + 'Demarco', + 'Demarcus', + 'Demario', + 'Demetris', + 'Demetrius', + 'Demond', + 'Dena', + 'Denis', + 'Dennis', + 'Deon', + 'Deondre', + 'Deontae', + 'Deonte', + 'Dereck', + 'Derek', + 'Derick', + 'Deron', + 'Derrick', + 'Deshaun', + 'Deshawn', + 'Desiree', + 'Desmond', + 'Dessie', + 'Destany', + 'Destin', + 'Destinee', + 'Destiney', + 'Destini', + 'Destiny', + 'Devan', + 'Devante', + 'Deven', + 'Devin', + 'Devon', + 'Devonte', + 'Devyn', + 'Dewayne', + 'Dewitt', + 'Dexter', + 'Diamond', + 'Diana', + 'Dianna', + 'Diego', + 'Dillan', + 'Dillon', + 'Dimitri', + 'Dina', + 'Dino', + 'Dion', + 'Dixie', + 'Dock', + 'Dolly', + 'Dolores', + 'Domenic', + 'Domenica', + 'Domenick', + 'Domenico', + 'Domingo', + 'Dominic', + 'Dominique', + 'Don', + 'Donald', + 'Donato', + 'Donavon', + 'Donna', + 'Donnell', + 'Donnie', + 'Donny', + 'Dora', + 'Dorcas', + 'Dorian', + 'Doris', + 'Dorothea', + 'Dorothy', + 'Dorris', + 'Dortha', + 'Dorthy', + 'Doug', + 'Douglas', + 'Dovie', + 'Doyle', + 'Drake', + 'Drew', + 'Duane', + 'Dudley', + 'Dulce', + 'Duncan', + 'Durward', + 'Dustin', + 'Dusty', + 'Dwight', + 'Dylan', + 'Earl', + 'Earlene', + 'Earline', + 'Earnest', + 'Earnestine', + 'Easter', + 'Easton', + 'Ebba', + 'Ebony', + 'Ed', + 'Eda', + 'Edd', + 'Eddie', + 'Eden', + 'Edgar', + 'Edgardo', + 'Edison', + 'Edmond', + 'Edmund', + 'Edna', + 'Eduardo', + 'Edward', + 'Edwardo', + 'Edwin', + 'Edwina', + 'Edyth', + 'Edythe', + 'Effie', + 'Efrain', + 'Efren', + 'Eileen', + 'Einar', + 'Eino', + 'Eladio', + 'Elaina', + 'Elbert', + 'Elda', + 'Eldon', + 'Eldora', + 'Eldred', + 'Eldridge', + 'Eleanora', + 'Eleanore', + 'Eleazar', + 'Electa', + 'Elena', + 'Elenor', + 'Elenora', + 'Eleonore', + 'Elfrieda', + 'Eli', + 'Elian', + 'Eliane', + 'Elias', + 'Eliezer', + 'Elijah', + 'Elinor', + 'Elinore', + 'Elisa', + 'Elisabeth', + 'Elise', + 'Eliseo', + 'Elisha', + 'Elissa', + 'Eliza', + 'Elizabeth', + 'Ella', + 'Ellen', + 'Ellie', + 'Elliot', + 'Elliott', + 'Ellis', + 'Ellsworth', + 'Elmer', + 'Elmira', + 'Elmo', + 'Elmore', + 'Elna', + 'Elnora', + 'Elody', + 'Eloisa', + 'Eloise', + 'Elouise', + 'Eloy', + 'Elroy', + 'Elsa', + 'Else', + 'Elsie', + 'Elta', + 'Elton', + 'Elva', + 'Elvera', + 'Elvie', + 'Elvis', + 'Elwin', + 'Elwyn', + 'Elyse', + 'Elyssa', + 'Elza', + 'Emanuel', + 'Emelia', + 'Emelie', + 'Emely', + 'Emerald', + 'Emerson', + 'Emery', + 'Emie', + 'Emil', + 'Emile', + 'Emilia', + 'Emiliano', + 'Emilie', + 'Emilio', + 'Emily', + 'Emma', + 'Emmalee', + 'Emmanuel', + 'Emmanuelle', + 'Emmet', + 'Emmett', + 'Emmie', + 'Emmitt', + 'Emmy', + 'Emory', + 'Ena', + 'Enid', + 'Enoch', + 'Enola', + 'Enos', + 'Enrico', + 'Enrique', + 'Ephraim', + 'Era', + 'Eriberto', + 'Eric', + 'Erica', + 'Erich', + 'Erick', + 'Ericka', + 'Erik', + 'Erika', + 'Erin', + 'Erling', + 'Erna', + 'Ernest', + 'Ernestina', + 'Ernestine', + 'Ernesto', + 'Ernie', + 'Ervin', + 'Erwin', + 'Eryn', + 'Esmeralda', + 'Esperanza', + 'Esta', + 'Esteban', + 'Estefania', + 'Estel', + 'Estell', + 'Estella', + 'Estelle', + 'Estevan', + 'Esther', + 'Estrella', + 'Etha', + 'Ethan', + 'Ethel', + 'Ethelyn', + 'Ethyl', + 'Ettie', + 'Eudora', + 'Eugene', + 'Eugenia', + 'Eula', + 'Eulah', + 'Eulalia', + 'Euna', + 'Eunice', + 'Eusebio', + 'Eva', + 'Evalyn', + 'Evan', + 'Evangeline', + 'Evans', + 'Eve', + 'Eveline', + 'Evelyn', + 'Everardo', + 'Everett', + 'Everette', + 'Evert', + 'Evie', + 'Ewald', + 'Ewell', + 'Ezekiel', + 'Ezequiel', + 'Ezra', + 'Fabian', + 'Fabiola', + 'Fae', + 'Fannie', + 'Fanny', + 'Fatima', + 'Faustino', + 'Fausto', + 'Favian', + 'Fay', + 'Faye', + 'Federico', + 'Felicia', + 'Felicita', + 'Felicity', + 'Felipa', + 'Felipe', + 'Felix', + 'Felton', + 'Fermin', + 'Fern', + 'Fernando', + 'Ferne', + 'Fidel', + 'Filiberto', + 'Filomena', + 'Finn', + 'Fiona', + 'Flavie', + 'Flavio', + 'Fleta', + 'Fletcher', + 'Flo', + 'Florence', + 'Florencio', + 'Florian', + 'Florida', + 'Florine', + 'Flossie', + 'Floy', + 'Floyd', + 'Ford', + 'Forest', + 'Forrest', + 'Foster', + 'Frances', + 'Francesca', + 'Francesco', + 'Francis', + 'Francisca', + 'Francisco', + 'Franco', + 'Frank', + 'Frankie', + 'Franz', + 'Fred', + 'Freda', + 'Freddie', + 'Freddy', + 'Frederic', + 'Frederick', + 'Frederik', + 'Frederique', + 'Fredrick', + 'Fredy', + 'Freeda', + 'Freeman', + 'Freida', + 'Frida', + 'Frieda', + 'Friedrich', + 'Fritz', + 'Furman', + 'Gabe', + 'Gabriel', + 'Gabriella', + 'Gabrielle', + 'Gaetano', + 'Gage', + 'Gail', + 'Gardner', + 'Garett', + 'Garfield', + 'Garland', + 'Garnet', + 'Garnett', + 'Garret', + 'Garrett', + 'Garrick', + 'Garrison', + 'Garry', + 'Garth', + 'Gaston', + 'Gavin', + 'Gay', + 'Gayle', + 'Gaylord', + 'Gene', + 'General', + 'Genesis', + 'Genevieve', + 'Gennaro', + 'Genoveva', + 'Geo', + 'Geoffrey', + 'George', + 'Georgette', + 'Georgiana', + 'Georgianna', + 'Geovanni', + 'Geovanny', + 'Geovany', + 'Gerald', + 'Geraldine', + 'Gerard', + 'Gerardo', + 'Gerda', + 'Gerhard', + 'Germaine', + 'German', + 'Gerry', + 'Gerson', + 'Gertrude', + 'Gia', + 'Gianni', + 'Gideon', + 'Gilbert', + 'Gilberto', + 'Gilda', + 'Giles', + 'Gillian', + 'Gina', + 'Gino', + 'Giovani', + 'Giovanna', + 'Giovanni', + 'Giovanny', + 'Gisselle', + 'Giuseppe', + 'Gladyce', + 'Gladys', + 'Glen', + 'Glenda', + 'Glenna', + 'Glennie', + 'Gloria', + 'Godfrey', + 'Golda', + 'Golden', + 'Gonzalo', + 'Gordon', + 'Grace', + 'Gracie', + 'Graciela', + 'Grady', + 'Graham', + 'Grant', + 'Granville', + 'Grayce', + 'Grayson', + 'Green', + 'Greg', + 'Gregg', + 'Gregoria', + 'Gregorio', + 'Gregory', + 'Greta', + 'Gretchen', + 'Greyson', + 'Griffin', + 'Grover', + 'Guadalupe', + 'Gudrun', + 'Guido', + 'Guillermo', + 'Guiseppe', + 'Gunnar', + 'Gunner', + 'Gus', + 'Gussie', + 'Gust', + 'Gustavo', + 'Gustave', + 'Guy', + 'Gwen', + 'Gwendolyn', + 'Hadley', + 'Hailee', + 'Hailey', + 'Hailie', + 'Hal', + 'Haleigh', + 'Haley', + 'Halie', + 'Halle', + 'Hallie', + 'Hank', + 'Hanna', + 'Hannah', + 'Hans', + 'Hardy', + 'Harley', + 'Harmon', + 'Harmony', + 'Harold', + 'Harrison', + 'Harry', + 'Harvey', + 'Haskell', + 'Hassan', + 'Hassie', + 'Hattie', + 'Haven', + 'Hayden', + 'Haylee', + 'Hayley', + 'Haylie', + 'Hazel', + 'Hazle', + 'Heath', + 'Heather', + 'Heaven', + 'Heber', + 'Hector', + 'Heidi', + 'Helen', + 'Helena', + 'Helene', + 'Helga', + 'Hellen', + 'Helmer', + 'Heloise', + 'Henderson', + 'Henri', + 'Henriette', + 'Henry', + 'Herbert', + 'Herman', + 'Hermann', + 'Hermina', + 'Herminia', + 'Herminio', + 'Hershel', + 'Herta', + 'Hertha', + 'Hester', + 'Hettie', + 'Hilario', + 'Hilbert', + 'Hilda', + 'Hildegard', + 'Hillard', + 'Hillary', + 'Hilma', + 'Hilton', + 'Hipolito', + 'Hiram', + 'Hobart', + 'Holden', + 'Hollie', + 'Hollis', + 'Holly', + 'Hope', + 'Horace', + 'Horacio', + 'Hortense', + 'Hosea', + 'Houston', + 'Howard', + 'Howell', + 'Hoyt', + 'Hubert', + 'Hudson', + 'Hugh', + 'Hulda', + 'Humberto', + 'Hunter', + 'Hyman', + 'Ian', + 'Ibrahim', + 'Icie', + 'Ida', + 'Idell', + 'Idella', + 'Ignacio', + 'Ignatius', + 'Ike', + 'Ila', + 'Ilene', + 'Iliana', + 'Ima', + 'Imani', + 'Imelda', + 'Immanuel', + 'Imogene', + 'Ines', + 'Irma', + 'Irving', + 'Irwin', + 'Isaac', + 'Isabel', + 'Isabell', + 'Isabella', + 'Isabelle', + 'Isac', + 'Isadore', + 'Isai', + 'Isaiah', + 'Isaias', + 'Isidro', + 'Ismael', + 'Isobel', + 'Isom', + 'Israel', + 'Issac', + 'Itzel', + 'Iva', + 'Ivah', + 'Ivory', + 'Ivy', + 'Izabella', + 'Izaiah', + 'Jabari', + 'Jace', + 'Jacey', + 'Jacinthe', + 'Jacinto', + 'Jack', + 'Jackeline', + 'Jackie', + 'Jacklyn', + 'Jackson', + 'Jacky', + 'Jaclyn', + 'Jacquelyn', + 'Jacques', + 'Jacynthe', + 'Jada', + 'Jade', + 'Jaden', + 'Jadon', + 'Jadyn', + 'Jaeden', + 'Jaida', + 'Jaiden', + 'Jailyn', + 'Jaime', + 'Jairo', + 'Jakayla', + 'Jake', + 'Jakob', + 'Jaleel', + 'Jalen', + 'Jalon', + 'Jalyn', + 'Jamaal', + 'Jamal', + 'Jamar', + 'Jamarcus', + 'Jamel', + 'Jameson', + 'Jamey', + 'Jamie', + 'Jamil', + 'Jamir', + 'Jamison', + 'Jammie', + 'Jan', + 'Jana', + 'Janae', + 'Jane', + 'Janelle', + 'Janessa', + 'Janet', + 'Janice', + 'Janick', + 'Janie', + 'Janis', + 'Janiya', + 'Jannie', + 'Jany', + 'Jaquan', + 'Jaquelin', + 'Jaqueline', + 'Jared', + 'Jaren', + 'Jarod', + 'Jaron', + 'Jarred', + 'Jarrell', + 'Jarret', + 'Jarrett', + 'Jarrod', + 'Jarvis', + 'Jasen', + 'Jasmin', + 'Jason', + 'Jasper', + 'Jaunita', + 'Javier', + 'Javon', + 'Javonte', + 'Jay', + 'Jayce', + 'Jaycee', + 'Jayda', + 'Jayde', + 'Jayden', + 'Jaydon', + 'Jaylan', + 'Jaylen', + 'Jaylin', + 'Jaylon', + 'Jayme', + 'Jayne', + 'Jayson', + 'Jazlyn', + 'Jazmin', + 'Jazmyn', + 'Jazmyne', + 'Jean', + 'Jeanette', + 'Jeanie', + 'Jeanne', + 'Jed', + 'Jedediah', + 'Jedidiah', + 'Jeff', + 'Jefferey', + 'Jeffery', + 'Jeffrey', + 'Jeffry', + 'Jena', + 'Jenifer', + 'Jennie', + 'Jennifer', + 'Jennings', + 'Jennyfer', + 'Jensen', + 'Jerad', + 'Jerald', + 'Jeramie', + 'Jeramy', + 'Jerel', + 'Jeremie', + 'Jeremy', + 'Jermain', + 'Jermaine', + 'Jermey', + 'Jerod', + 'Jerome', + 'Jeromy', + 'Jerrell', + 'Jerrod', + 'Jerrold', + 'Jerry', + 'Jess', + 'Jesse', + 'Jessica', + 'Jessie', + 'Jessika', + 'Jessy', + 'Jessyca', + 'Jesus', + 'Jett', + 'Jettie', + 'Jevon', + 'Jewel', + 'Jewell', + 'Jillian', + 'Jimmie', + 'Jimmy', + 'Jo', + 'Joan', + 'Joana', + 'Joanie', + 'Joanne', + 'Joannie', + 'Joanny', + 'Joany', + 'Joaquin', + 'Jocelyn', + 'Jodie', + 'Jody', + 'Joe', + 'Joel', + 'Joelle', + 'Joesph', + 'Joey', + 'Johan', + 'Johann', + 'Johanna', + 'Johathan', + 'John', + 'Johnathan', + 'Johnathon', + 'Johnnie', + 'Johnny', + 'Johnpaul', + 'Johnson', + 'Jolie', + 'Jon', + 'Jonas', + 'Jonatan', + 'Jonathan', + 'Jonathon', + 'Jordan', + 'Jordane', + 'Jordi', + 'Jordon', + 'Jordy', + 'Jordyn', + 'Jorge', + 'Jose', + 'Josefa', + 'Josefina', + 'Joseph', + 'Josephine', + 'Josh', + 'Joshua', + 'Joshuah', + 'Josiah', + 'Josiane', + 'Josianne', + 'Josie', + 'Josue', + 'Jovan', + 'Jovani', + 'Jovanny', + 'Jovany', + 'Joy', + 'Joyce', + 'Juana', + 'Juanita', + 'Judah', + 'Judd', + 'Jude', + 'Judge', + 'Judson', + 'Judy', + 'Jules', + 'Julia', + 'Julian', + 'Juliana', + 'Julianne', + 'Julie', + 'Julien', + 'Juliet', + 'Julio', + 'Julius', + 'June', + 'Junior', + 'Junius', + 'Justen', + 'Justice', + 'Justina', + 'Justine', + 'Juston', + 'Justus', + 'Justyn', + 'Juvenal', + 'Juwan', + 'Kacey', + 'Kaci', + 'Kacie', + 'Kade', + 'Kaden', + 'Kadin', + 'Kaela', + 'Kaelyn', + 'Kaia', + 'Kailee', + 'Kailey', + 'Kailyn', + 'Kaitlin', + 'Kaitlyn', + 'Kale', + 'Kaleb', + 'Kaleigh', + 'Kaley', + 'Kali', + 'Kallie', + 'Kameron', + 'Kamille', + 'Kamren', + 'Kamron', + 'Kamryn', + 'Kane', + 'Kara', + 'Kareem', + 'Karelle', + 'Karen', + 'Kari', + 'Kariane', + 'Karianne', + 'Karina', + 'Karine', + 'Karl', + 'Karlee', + 'Karley', + 'Karli', + 'Karlie', + 'Karolann', + 'Karson', + 'Kasandra', + 'Kasey', + 'Kassandra', + 'Katarina', + 'Katelin', + 'Katelyn', + 'Katelynn', + 'Katharina', + 'Katherine', + 'Katheryn', + 'Kathleen', + 'Kathlyn', + 'Kathryn', + 'Kathryne', + 'Katlyn', + 'Katlynn', + 'Katrina', + 'Katrine', + 'Kattie', + 'Kavon', + 'Kay', + 'Kaya', + 'Kaycee', + 'Kayden', + 'Kayla', + 'Kaylah', + 'Kaylee', + 'Kayleigh', + 'Kayley', + 'Kayli', + 'Kaylie', + 'Kaylin', + 'Keagan', + 'Keanu', + 'Keara', + 'Keaton', + 'Keegan', + 'Keeley', + 'Keely', + 'Keenan', + 'Keira', + 'Keith', + 'Kellen', + 'Kelley', + 'Kelli', + 'Kellie', + 'Kelly', + 'Kelsi', + 'Kelsie', + 'Kelton', + 'Kelvin', + 'Ken', + 'Kendall', + 'Kendra', + 'Kendrick', + 'Kenna', + 'Kennedi', + 'Kennedy', + 'Kenneth', + 'Kennith', + 'Kenny', + 'Kenton', + 'Kenya', + 'Kenyatta', + 'Kenyon', + 'Keon', + 'Keshaun', + 'Keshawn', + 'Keven', + 'Kevin', + 'Kevon', + 'Keyon', + 'Keyshawn', + 'Khalid', + 'Khalil', + 'Kian', + 'Kiana', + 'Kianna', + 'Kiara', + 'Kiarra', + 'Kiel', + 'Kiera', + 'Kieran', + 'Kiley', + 'Kim', + 'Kimberly', + 'King', + 'Kip', + 'Kira', + 'Kirk', + 'Kirsten', + 'Kirstin', + 'Kitty', + 'Kobe', + 'Koby', + 'Kody', + 'Kolby', + 'Kole', + 'Korbin', + 'Korey', + 'Kory', + 'Kraig', + 'Kris', + 'Krista', + 'Kristian', + 'Kristin', + 'Kristina', + 'Kristofer', + 'Kristoffer', + 'Kristopher', + 'Kristy', + 'Krystal', + 'Krystel', + 'Krystina', + 'Kurt', + 'Kurtis', + 'Kyla', + 'Kyle', + 'Kylee', + 'Kyleigh', + 'Kyler', + 'Kylie', + 'Kyra', + 'Lacey', + 'Lacy', + 'Ladarius', + 'Lafayette', + 'Laila', + 'Laisha', + 'Lamar', + 'Lambert', + 'Lamont', + 'Lance', + 'Landen', + 'Lane', + 'Laney', + 'Larissa', + 'Laron', + 'Larry', + 'Larue', + 'Laura', + 'Laurel', + 'Lauren', + 'Laurence', + 'Lauretta', + 'Lauriane', + 'Laurianne', + 'Laurie', + 'Laurine', + 'Laury', + 'Lauryn', + 'Lavada', + 'Lavern', + 'Laverna', + 'Laverne', + 'Lavina', + 'Lavinia', + 'Lavon', + 'Lavonne', + 'Lawrence', + 'Lawson', + 'Layla', + 'Layne', + 'Lazaro', + 'Lea', + 'Leann', + 'Leanna', + 'Leanne', + 'Leatha', + 'Leda', + 'Lee', + 'Leif', + 'Leila', + 'Leilani', + 'Lela', + 'Lelah', + 'Leland', + 'Lelia', + 'Lempi', + 'Lemuel', + 'Lenna', + 'Lennie', + 'Lenny', + 'Lenora', + 'Lenore', + 'Leo', + 'Leola', + 'Leon', + 'Leonard', + 'Leonardo', + 'Leone', + 'Leonel', + 'Leonie', + 'Leonor', + 'Leonora', + 'Leopold', + 'Leopoldo', + 'Leora', + 'Lera', + 'Lesley', + 'Leslie', + 'Lesly', + 'Lessie', + 'Lester', + 'Leta', + 'Letha', + 'Letitia', + 'Levi', + 'Lew', + 'Lewis', + 'Lexi', + 'Lexie', + 'Lexus', + 'Lia', + 'Liam', + 'Liana', + 'Libbie', + 'Libby', + 'Lila', + 'Lilian', + 'Liliana', + 'Liliane', + 'Lilla', + 'Lillian', + 'Lilliana', + 'Lillie', + 'Lilly', + 'Lily', + 'Lilyan', + 'Lina', + 'Lincoln', + 'Linda', + 'Lindsay', + 'Lindsey', + 'Linnea', + 'Linnie', + 'Linwood', + 'Lionel', + 'Lisa', + 'Lisandro', + 'Lisette', + 'Litzy', + 'Liza', + 'Lizeth', + 'Lizzie', + 'Llewellyn', + 'Lloyd', + 'Logan', + 'Lois', + 'Lola', + 'Lolita', + 'Loma', + 'Lon', + 'London', + 'Lonie', + 'Lonnie', + 'Lonny', + 'Lonzo', + 'Lora', + 'Loraine', + 'Loren', + 'Lorena', + 'Lorenz', + 'Lorenza', + 'Lorenzo', + 'Lori', + 'Lorine', + 'Lorna', + 'Lottie', + 'Lou', + 'Louie', + 'Louisa', + 'Lourdes', + 'Louvenia', + 'Lowell', + 'Loy', + 'Loyal', + 'Loyce', + 'Lucas', + 'Luciano', + 'Lucie', + 'Lucienne', + 'Lucile', + 'Lucinda', + 'Lucio', + 'Lucious', + 'Lucius', + 'Lucy', + 'Ludie', + 'Ludwig', + 'Lue', + 'Luella', + 'Luigi', + 'Luis', + 'Luisa', + 'Lukas', + 'Lula', + 'Lulu', + 'Luna', + 'Lupe', + 'Lura', + 'Lurline', + 'Luther', + 'Luz', + 'Lyda', + 'Lydia', + 'Lyla', + 'Lynn', + 'Lyric', + 'Lysanne', + 'Mabel', + 'Mabelle', + 'Mable', + 'Mac', + 'Macey', + 'Maci', + 'Macie', + 'Mack', + 'Mackenzie', + 'Macy', + 'Madaline', + 'Madalyn', + 'Maddison', + 'Madeline', + 'Madelyn', + 'Madelynn', + 'Madge', + 'Madie', + 'Madilyn', + 'Madisen', + 'Madison', + 'Madisyn', + 'Madonna', + 'Madyson', + 'Mae', + 'Maegan', + 'Maeve', + 'Mafalda', + 'Magali', + 'Magdalen', + 'Magdalena', + 'Maggie', + 'Magnolia', + 'Magnus', + 'Maia', + 'Maida', + 'Maiya', + 'Major', + 'Makayla', + 'Makenna', + 'Makenzie', + 'Malachi', + 'Malcolm', + 'Malika', + 'Malinda', + 'Mallie', + 'Mallory', + 'Malvina', + 'Mandy', + 'Manley', + 'Manuel', + 'Manuela', + 'Mara', + 'Marc', + 'Marcel', + 'Marcelina', + 'Marcelino', + 'Marcella', + 'Marcelle', + 'Marcellus', + 'Marcelo', + 'Marcia', + 'Marco', + 'Marcos', + 'Marcus', + 'Margaret', + 'Margarete', + 'Margarett', + 'Margaretta', + 'Margarette', + 'Margarita', + 'Marge', + 'Margie', + 'Margot', + 'Margret', + 'Marguerite', + 'Maria', + 'Mariah', + 'Mariam', + 'Marian', + 'Mariana', + 'Mariane', + 'Marianna', + 'Marianne', + 'Mariano', + 'Maribel', + 'Marie', + 'Mariela', + 'Marielle', + 'Marietta', + 'Marilie', + 'Marilou', + 'Marilyne', + 'Marina', + 'Mario', + 'Marion', + 'Marisa', + 'Marisol', + 'Maritza', + 'Marjolaine', + 'Marjorie', + 'Marjory', + 'Mark', + 'Markus', + 'Marlee', + 'Marlen', + 'Marlene', + 'Marley', + 'Marlin', + 'Marlon', + 'Marques', + 'Marquis', + 'Marquise', + 'Marshall', + 'Marta', + 'Martin', + 'Martina', + 'Martine', + 'Marty', + 'Marvin', + 'Mary', + 'Maryam', + 'Maryjane', + 'Maryse', + 'Mason', + 'Mateo', + 'Mathew', + 'Mathias', + 'Mathilde', + 'Matilda', + 'Matilde', + 'Matt', + 'Matteo', + 'Mattie', + 'Maud', + 'Maude', + 'Maudie', + 'Maureen', + 'Maurice', + 'Mauricio', + 'Maurine', + 'Maverick', + 'Mavis', + 'Max', + 'Maxie', + 'Maxime', + 'Maximilian', + 'Maximillia', + 'Maximillian', + 'Maximo', + 'Maximus', + 'Maxine', + 'Maxwell', + 'May', + 'Maya', + 'Maybell', + 'Maybelle', + 'Maye', + 'Maymie', + 'Maynard', + 'Mayra', + 'Mazie', + 'Mckayla', + 'Mckenna', + 'Mckenzie', + 'Meagan', + 'Meaghan', + 'Meda', + 'Megane', + 'Meggie', + 'Meghan', + 'Mekhi', + 'Melany', + 'Melba', + 'Melisa', + 'Melissa', + 'Mellie', + 'Melody', + 'Melvin', + 'Melvina', + 'Melyna', + 'Melyssa', + 'Mercedes', + 'Meredith', + 'Merl', + 'Merle', + 'Merlin', + 'Merritt', + 'Mertie', + 'Mervin', + 'Meta', + 'Mia', + 'Micaela', + 'Micah', + 'Michael', + 'Michaela', + 'Michale', + 'Micheal', + 'Michel', + 'Michele', + 'Michelle', + 'Miguel', + 'Mikayla', + 'Mike', + 'Mikel', + 'Milan', + 'Miles', + 'Milford', + 'Miller', + 'Millie', + 'Milo', + 'Milton', + 'Mina', + 'Minerva', + 'Minnie', + 'Miracle', + 'Mireille', + 'Mireya', + 'Misael', + 'Missouri', + 'Misty', + 'Mitchel', + 'Mitchell', + 'Mittie', + 'Modesta', + 'Modesto', + 'Mohamed', + 'Mohammad', + 'Mohammed', + 'Moises', + 'Mollie', + 'Molly', + 'Mona', + 'Monica', + 'Monique', + 'Monroe', + 'Monserrat', + 'Monserrate', + 'Montana', + 'Monte', + 'Monty', + 'Morgan', + 'Moriah', + 'Morris', + 'Mortimer', + 'Morton', + 'Mose', + 'Moses', + 'Moshe', + 'Mossie', + 'Mozell', + 'Mozelle', + 'Muhammad', + 'Muriel', + 'Murl', + 'Murphy', + 'Murray', + 'Mustafa', + 'Mya', + 'Myah', + 'Mylene', + 'Myles', + 'Myra', + 'Myriam', + 'Myrl', + 'Myrna', + 'Myron', + 'Myrtice', + 'Myrtie', + 'Myrtis', + 'Myrtle', + 'Nadia', + 'Nakia', + 'Name', + 'Nannie', + 'Naomi', + 'Naomie', + 'Napoleon', + 'Narciso', + 'Nash', + 'Nasir', + 'Nat', + 'Natalia', + 'Natalie', + 'Natasha', + 'Nathan', + 'Nathanael', + 'Nathanial', + 'Nathaniel', + 'Nathen', + 'Nayeli', + 'Neal', + 'Ned', + 'Nedra', + 'Neha', + 'Neil', + 'Nelda', + 'Nella', + 'Nelle', + 'Nellie', + 'Nels', + 'Nelson', + 'Neoma', + 'Nestor', + 'Nettie', + 'Neva', + 'Newell', + 'Newton', + 'Nia', + 'Nicholas', + 'Nicholaus', + 'Nichole', + 'Nick', + 'Nicklaus', + 'Nickolas', + 'Nico', + 'Nicola', + 'Nicolas', + 'Nicole', + 'Nicolette', + 'Nigel', + 'Nikita', + 'Nikki', + 'Nikko', + 'Niko', + 'Nikolas', + 'Nils', + 'Nina', + 'Noah', + 'Noble', + 'Noe', + 'Noel', + 'Noelia', + 'Noemi', + 'Noemie', + 'Noemy', + 'Nola', + 'Nolan', + 'Nona', + 'Nora', + 'Norbert', + 'Norberto', + 'Norene', + 'Norma', + 'Norris', + 'Norval', + 'Norwood', + 'Nova', + 'Novella', + 'Nya', + 'Nyah', + 'Nyasia', + 'Obie', + 'Oceane', + 'Ocie', + 'Octavia', + 'Oda', + 'Odell', + 'Odessa', + 'Odie', + 'Ofelia', + 'Okey', + 'Ola', + 'Olaf', + 'Ole', + 'Olen', + 'Oleta', + 'Olga', + 'Olin', + 'Oliver', + 'Ollie', + 'Oma', + 'Omari', + 'Omer', + 'Ona', + 'Onie', + 'Opal', + 'Ophelia', + 'Ora', + 'Oral', + 'Oran', + 'Oren', + 'Orie', + 'Orin', + 'Orion', + 'Orland', + 'Orlando', + 'Orlo', + 'Orpha', + 'Orrin', + 'Orval', + 'Orville', + 'Osbaldo', + 'Osborne', + 'Oscar', + 'Osvaldo', + 'Oswald', + 'Oswaldo', + 'Otha', + 'Otho', + 'Otilia', + 'Otis', + 'Ottilie', + 'Ottis', + 'Otto', + 'Ova', + 'Owen', + 'Ozella', + 'Pablo', + 'Paige', + 'Palma', + 'Pamela', + 'Pansy', + 'Paolo', + 'Paris', + 'Parker', + 'Pascale', + 'Pasquale', + 'Pat', + 'Patience', + 'Patricia', + 'Patrick', + 'Patsy', + 'Pattie', + 'Paul', + 'Paula', + 'Pauline', + 'Paxton', + 'Payton', + 'Pearl', + 'Pearlie', + 'Pearline', + 'Pedro', + 'Peggie', + 'Penelope', + 'Percival', + 'Percy', + 'Perry', + 'Pete', + 'Peter', + 'Petra', + 'Peyton', + 'Philip', + 'Phoebe', + 'Phyllis', + 'Pierce', + 'Pierre', + 'Pietro', + 'Pink', + 'Pinkie', + 'Piper', + 'Polly', + 'Porter', + 'Precious', + 'Presley', + 'Preston', + 'Price', + 'Prince', + 'Princess', + 'Priscilla', + 'Providenci', + 'Prudence', + 'Queen', + 'Queenie', + 'Quentin', + 'Quincy', + 'Quinn', + 'Quinten', + 'Quinton', + 'Rachael', + 'Rachel', + 'Rachelle', + 'Rae', + 'Raegan', + 'Rafael', + 'Rafaela', + 'Raheem', + 'Rahsaan', + 'Rahul', + 'Raina', + 'Raleigh', + 'Ralph', + 'Ramiro', + 'Ramon', + 'Ramona', + 'Randal', + 'Randall', + 'Randi', + 'Randy', + 'Ransom', + 'Raoul', + 'Raphael', + 'Raphaelle', + 'Raquel', + 'Rashad', + 'Rashawn', + 'Rasheed', + 'Raul', + 'Raven', + 'Ray', + 'Raymond', + 'Raymundo', + 'Reagan', + 'Reanna', + 'Reba', + 'Rebeca', + 'Rebecca', + 'Rebeka', + 'Rebekah', + 'Reece', + 'Reed', + 'Reese', + 'Regan', + 'Reggie', + 'Reginald', + 'Reid', + 'Reilly', + 'Reina', + 'Reinhold', + 'Remington', + 'Rene', + 'Renee', + 'Ressie', + 'Reta', + 'Retha', + 'Retta', + 'Reuben', + 'Reva', + 'Rex', + 'Rey', + 'Reyes', + 'Reymundo', + 'Reyna', + 'Reynold', + 'Rhea', + 'Rhett', + 'Rhianna', + 'Rhiannon', + 'Rhoda', + 'Ricardo', + 'Richard', + 'Richie', + 'Richmond', + 'Rick', + 'Rickey', + 'Rickie', + 'Ricky', + 'Rico', + 'Rigoberto', + 'Riley', + 'Rita', + 'River', + 'Robb', + 'Robbie', + 'Robert', + 'Roberta', + 'Roberto', + 'Robin', + 'Robyn', + 'Rocio', + 'Rocky', + 'Rod', + 'Roderick', + 'Rodger', + 'Rodolfo', + 'Rodrick', + 'Rodrigo', + 'Roel', + 'Rogelio', + 'Roger', + 'Rogers', + 'Rolando', + 'Rollin', + 'Roma', + 'Romaine', + 'Roman', + 'Ron', + 'Ronaldo', + 'Ronny', + 'Roosevelt', + 'Rory', + 'Rosa', + 'Rosalee', + 'Rosalia', + 'Rosalind', + 'Rosalinda', + 'Rosalyn', + 'Rosamond', + 'Rosanna', + 'Rosario', + 'Roscoe', + 'Rose', + 'Rosella', + 'Roselyn', + 'Rosemarie', + 'Rosemary', + 'Rosendo', + 'Rosetta', + 'Rosie', + 'Rosina', + 'Roslyn', + 'Ross', + 'Rossie', + 'Rowan', + 'Rowena', + 'Rowland', + 'Roxane', + 'Roxanne', + 'Roy', + 'Royal', + 'Royce', + 'Rozella', + 'Ruben', + 'Rubie', + 'Ruby', + 'Rubye', + 'Rudolph', + 'Rudy', + 'Rupert', + 'Russ', + 'Russel', + 'Russell', + 'Rusty', + 'Ruth', + 'Ruthe', + 'Ruthie', + 'Ryan', + 'Ryann', + 'Ryder', + 'Rylan', + 'Rylee', + 'Ryleigh', + 'Ryley', + 'Sabina', + 'Sabrina', + 'Sabryna', + 'Sadie', + 'Sadye', + 'Sage', + 'Saige', + 'Sallie', + 'Sally', + 'Salma', + 'Salvador', + 'Salvatore', + 'Sam', + 'Samanta', + 'Samantha', + 'Samara', + 'Samir', + 'Sammie', + 'Sammy', + 'Samson', + 'Sandra', + 'Sandrine', + 'Sandy', + 'Sanford', + 'Santa', + 'Santiago', + 'Santina', + 'Santino', + 'Santos', + 'Sarah', + 'Sarai', + 'Sarina', + 'Sasha', + 'Saul', + 'Savanah', + 'Savanna', + 'Savannah', + 'Savion', + 'Scarlett', + 'Schuyler', + 'Scot', + 'Scottie', + 'Scotty', + 'Seamus', + 'Sean', + 'Sebastian', + 'Sedrick', + 'Selena', + 'Selina', + 'Selmer', + 'Serena', + 'Serenity', + 'Seth', + 'Shad', + 'Shaina', + 'Shakira', + 'Shana', + 'Shane', + 'Shanel', + 'Shanelle', + 'Shania', + 'Shanie', + 'Shaniya', + 'Shanna', + 'Shannon', + 'Shanny', + 'Shanon', + 'Shany', + 'Sharon', + 'Shaun', + 'Shawn', + 'Shawna', + 'Shaylee', + 'Shayna', + 'Shayne', + 'Shea', + 'Sheila', + 'Sheldon', + 'Shemar', + 'Sheridan', + 'Sherman', + 'Sherwood', + 'Shirley', + 'Shyann', + 'Shyanne', + 'Sibyl', + 'Sid', + 'Sidney', + 'Sienna', + 'Sierra', + 'Sigmund', + 'Sigrid', + 'Sigurd', + 'Silas', + 'Sim', + 'Simeon', + 'Simone', + 'Sincere', + 'Sister', + 'Skye', + 'Skyla', + 'Skylar', + 'Sofia', + 'Soledad', + 'Solon', + 'Sonia', + 'Sonny', + 'Sonya', + 'Sophia', + 'Sophie', + 'Spencer', + 'Stacey', + 'Stacy', + 'Stan', + 'Stanford', + 'Stanley', + 'Stanton', + 'Stefan', + 'Stefanie', + 'Stella', + 'Stephan', + 'Stephania', + 'Stephanie', + 'Stephany', + 'Stephen', + 'Stephon', + 'Sterling', + 'Steve', + 'Stevie', + 'Stewart', + 'Stone', + 'Stuart', + 'Summer', + 'Sunny', + 'Susan', + 'Susana', + 'Susanna', + 'Susie', + 'Suzanne', + 'Sven', + 'Syble', + 'Sydnee', + 'Sydney', + 'Sydni', + 'Sydnie', + 'Sylvan', + 'Sylvester', + 'Sylvia', + 'Tabitha', + 'Tad', + 'Talia', + 'Talon', + 'Tamara', + 'Tamia', + 'Tania', + 'Tanner', + 'Tanya', + 'Tara', + 'Taryn', + 'Tate', + 'Tatum', + 'Tatyana', + 'Taurean', + 'Tavares', + 'Taya', + 'Taylor', + 'Teagan', + 'Ted', + 'Telly', + 'Terence', + 'Teresa', + 'Terrance', + 'Terrell', + 'Terrence', + 'Terrill', + 'Terry', + 'Tess', + 'Tessie', + 'Tevin', + 'Thad', + 'Thaddeus', + 'Thalia', + 'Thea', + 'Thelma', + 'Theo', + 'Theodora', + 'Theodore', + 'Theresa', + 'Therese', + 'Theresia', + 'Theron', + 'Thomas', + 'Thora', + 'Thurman', + 'Tia', + 'Tiana', + 'Tianna', + 'Tiara', + 'Tierra', + 'Tiffany', + 'Tillman', + 'Timmothy', + 'Timmy', + 'Timothy', + 'Tina', + 'Tito', + 'Titus', + 'Tobin', + 'Toby', + 'Tod', + 'Tom', + 'Tomas', + 'Tomasa', + 'Tommie', + 'Toney', + 'Toni', + 'Tony', + 'Torey', + 'Torrance', + 'Torrey', + 'Toy', + 'Trace', + 'Tracey', + 'Tracy', + 'Travis', + 'Travon', + 'Tre', + 'Tremaine', + 'Tremayne', + 'Trent', + 'Trenton', + 'Tressa', + 'Tressie', + 'Treva', + 'Trever', + 'Trevion', + 'Trevor', + 'Trey', + 'Trinity', + 'Trisha', + 'Tristian', + 'Tristin', + 'Triston', + 'Troy', + 'Trudie', + 'Trycia', + 'Trystan', + 'Turner', + 'Twila', + 'Tyler', + 'Tyra', + 'Tyree', + 'Tyreek', + 'Tyrel', + 'Tyrell', + 'Tyrese', + 'Tyrique', + 'Tyshawn', + 'Tyson', + 'Ubaldo', + 'Ulices', + 'Ulises', + 'Una', + 'Unique', + 'Urban', + 'Uriah', + 'Uriel', + 'Ursula', + 'Vada', + 'Valentin', + 'Valentina', + 'Valentine', + 'Valerie', + 'Vallie', + 'Van', + 'Vance', + 'Vanessa', + 'Vaughn', + 'Veda', + 'Velda', + 'Vella', + 'Velma', + 'Velva', + 'Vena', + 'Verda', + 'Verdie', + 'Vergie', + 'Verla', + 'Verlie', + 'Vern', + 'Verna', + 'Verner', + 'Vernice', + 'Vernie', + 'Vernon', + 'Verona', + 'Veronica', + 'Vesta', + 'Vicenta', + 'Vicente', + 'Vickie', + 'Vicky', + 'Victor', + 'Victoria', + 'Vida', + 'Vidal', + 'Vilma', + 'Vince', + 'Vincent', + 'Vincenza', + 'Vincenzo', + 'Vinnie', + 'Viola', + 'Violet', + 'Violette', + 'Virgie', + 'Virgil', + 'Virginia', + 'Virginie', + 'Vita', + 'Vito', + 'Viva', + 'Vivian', + 'Viviane', + 'Vivianne', + 'Vivien', + 'Vivienne', + 'Vladimir', + 'Wade', + 'Waino', + 'Waldo', + 'Walker', + 'Wallace', + 'Walter', + 'Walton', + 'Wanda', + 'Ward', + 'Warren', + 'Watson', + 'Wava', + 'Waylon', + 'Wayne', + 'Webster', + 'Weldon', + 'Wellington', + 'Wendell', + 'Wendy', + 'Werner', + 'Westley', + 'Weston', + 'Whitney', + 'Wilber', + 'Wilbert', + 'Wilburn', + 'Wiley', + 'Wilford', + 'Wilfred', + 'Wilfredo', + 'Wilfrid', + 'Wilhelm', + 'Wilhelmine', + 'Will', + 'Willa', + 'Willard', + 'William', + 'Willie', + 'Willis', + 'Willow', + 'Willy', + 'Wilma', + 'Wilmer', + 'Wilson', + 'Wilton', + 'Winfield', + 'Winifred', + 'Winnifred', + 'Winona', + 'Winston', + 'Woodrow', + 'Wyatt', + 'Wyman', + 'Xander', + 'Xavier', + 'Xzavier', + 'Yadira', + 'Yasmeen', + 'Yasmin', + 'Yasmine', + 'Yazmin', + 'Yesenia', + 'Yessenia', + 'Yolanda', + 'Yoshiko', + 'Yvette', + 'Yvonne', + 'Zachariah', + 'Zachary', + 'Zachery', + 'Zack', + 'Zackary', + 'Zackery', + 'Zakary', + 'Zander', + 'Zane', + 'Zaria', + 'Zechariah', + 'Zelda', + 'Zella', + 'Zelma', + 'Zena', + 'Zetta', + 'Zion', + 'Zita', + 'Zoe', + 'Zoey', + 'Zoie', + 'Zoila', + 'Zola', + 'Zora', + 'Zula' ]; diff --git a/lib/src/data/person/lastnames.dart b/lib/src/data/person/lastnames.dart index 06a8e34..b83fe04 100644 --- a/lib/src/data/person/lastnames.dart +++ b/lib/src/data/person/lastnames.dart @@ -1,477 +1,477 @@ -const lastnames = const [ - "Abbott", - "Abernathy", - "Abshire", - "Adams", - "Altenwerth", - "Anderson", - "Ankunding", - "Armstrong", - "Auer", - "Aufderhar", - "Bahringer", - "Bailey", - "Balistreri", - "Barrows", - "Bartell", - "Bartoletti", - "Barton", - "Bashirian", - "Batz", - "Bauch", - "Baumbach", - "Bayer", - "Beahan", - "Beatty", - "Bechtelar", - "Becker", - "Bednar", - "Beer", - "Beier", - "Berge", - "Bergnaum", - "Bergstrom", - "Bernhard", - "Bernier", - "Bins", - "Blanda", - "Blick", - "Block", - "Bode", - "Boehm", - "Bogan", - "Bogisich", - "Borer", - "Bosco", - "Botsford", - "Boyer", - "Boyle", - "Bradtke", - "Brakus", - "Braun", - "Breitenberg", - "Brekke", - "Brown", - "Bruen", - "Buckridge", - "Carroll", - "Carter", - "Cartwright", - "Casper", - "Cassin", - "Champlin", - "Christiansen", - "Cole", - "Collier", - "Collins", - "Conn", - "Connelly", - "Conroy", - "Considine", - "Corkery", - "Cormier", - "Corwin", - "Cremin", - "Crist", - "Crona", - "Cronin", - "Crooks", - "Cruickshank", - "Cummerata", - "Cummings", - "Dach", +const lastnames = [ + 'Abbott', + 'Abernathy', + 'Abshire', + 'Adams', + 'Altenwerth', + 'Anderson', + 'Ankunding', + 'Armstrong', + 'Auer', + 'Aufderhar', + 'Bahringer', + 'Bailey', + 'Balistreri', + 'Barrows', + 'Bartell', + 'Bartoletti', + 'Barton', + 'Bashirian', + 'Batz', + 'Bauch', + 'Baumbach', + 'Bayer', + 'Beahan', + 'Beatty', + 'Bechtelar', + 'Becker', + 'Bednar', + 'Beer', + 'Beier', + 'Berge', + 'Bergnaum', + 'Bergstrom', + 'Bernhard', + 'Bernier', + 'Bins', + 'Blanda', + 'Blick', + 'Block', + 'Bode', + 'Boehm', + 'Bogan', + 'Bogisich', + 'Borer', + 'Bosco', + 'Botsford', + 'Boyer', + 'Boyle', + 'Bradtke', + 'Brakus', + 'Braun', + 'Breitenberg', + 'Brekke', + 'Brown', + 'Bruen', + 'Buckridge', + 'Carroll', + 'Carter', + 'Cartwright', + 'Casper', + 'Cassin', + 'Champlin', + 'Christiansen', + 'Cole', + 'Collier', + 'Collins', + 'Conn', + 'Connelly', + 'Conroy', + 'Considine', + 'Corkery', + 'Cormier', + 'Corwin', + 'Cremin', + 'Crist', + 'Crona', + 'Cronin', + 'Crooks', + 'Cruickshank', + 'Cummerata', + 'Cummings', + 'Dach', "D'Amore", - "Daniel", - "Dare", - "Daugherty", - "Davis", - "Deckow", - "Denesik", - "Dibbert", - "Dickens", - "Dicki", - "Dickinson", - "Dietrich", - "Donnelly", - "Dooley", - "Douglas", - "Doyle", - "DuBuque", - "Durgan", - "Ebert", - "Effertz", - "Eichmann", - "Emard", - "Emmerich", - "Erdman", - "Ernser", - "Fadel", - "Fahey", - "Farrell", - "Fay", - "Feeney", - "Feest", - "Feil", - "Ferry", - "Fisher", - "Flatley", - "Frami", - "Franecki", - "Friesen", - "Fritsch", - "Funk", - "Gaylord", - "Gerhold", - "Gerlach", - "Gibson", - "Gislason", - "Gleason", - "Gleichner", - "Glover", - "Goldner", - "Goodwin", - "Gorczany", - "Gottlieb", - "Goyette", - "Grady", - "Graham", - "Grant", - "Green", - "Greenfelder", - "Greenholt", - "Grimes", - "Gulgowski", - "Gusikowski", - "Gutkowski", - "Gutmann", - "Haag", - "Hackett", - "Hagenes", - "Hahn", - "Haley", - "Halvorson", - "Hamill", - "Hammes", - "Hand", - "Hane", - "Hansen", - "Harber", - "Harris", - "Hartmann", - "Harvey", - "Hauck", - "Hayes", - "Heaney", - "Heathcote", - "Hegmann", - "Heidenreich", - "Heller", - "Herman", - "Hermann", - "Hermiston", - "Herzog", - "Hessel", - "Hettinger", - "Hickle", - "Hilll", - "Hills", - "Hilpert", - "Hintz", - "Hirthe", - "Hodkiewicz", - "Hoeger", - "Homenick", - "Hoppe", - "Howe", - "Howell", - "Hudson", - "Huel", - "Huels", - "Hyatt", - "Jacobi", - "Jacobs", - "Jacobson", - "Jakubowski", - "Jaskolski", - "Jast", - "Jenkins", - "Jerde", - "Jewess", - "Johns", - "Johnson", - "Johnston", - "Jones", - "Kassulke", - "Kautzer", - "Keebler", - "Keeling", - "Kemmer", - "Kerluke", - "Kertzmann", - "Kessler", - "Kiehn", - "Kihn", - "Kilback", - "King", - "Kirlin", - "Klein", - "Kling", - "Klocko", - "Koch", - "Koelpin", - "Koepp", - "Kohler", - "Konopelski", - "Koss", - "Kovacek", - "Kozey", - "Krajcik", - "Kreiger", - "Kris", - "Kshlerin", - "Kub", - "Kuhic", - "Kuhlman", - "Kuhn", - "Kulas", - "Kunde", - "Kunze", - "Kuphal", - "Kutch", - "Kuvalis", - "Labadie", - "Lakin", - "Lang", - "Langosh", - "Langworth", - "Larkin", - "Larson", - "Leannon", - "Lebsack", - "Ledner", - "Leffler", - "Legros", - "Lehner", - "Lemke", - "Lesch", - "Leuschke", - "Lind", - "Lindgren", - "Littel", - "Little", - "Lockman", - "Lowe", - "Lubowitz", - "Lueilwitz", - "Luettgen", - "Lynch", - "Macejkovic", - "Maggio", - "Mann", - "Mante", - "Marks", - "Marquardt", - "Marvin", - "Mayer", - "Mayert", - "McClure", - "McCullough", - "McDermott", - "McGlynn", - "McKenzie", - "McLaughlin", - "Medhurst", - "Mertz", - "Metz", - "Miller", - "Mills", - "Mitchell", - "Moen", - "Mohr", - "Monahan", - "Moore", - "Morar", - "Morissette", - "Mosciski", - "Mraz", - "Mueller", - "Muller", - "Murazik", - "Murphy", - "Murray", - "Nader", - "Nicolas", - "Nienow", - "Nikolaus", - "Nitzsche", - "Nolan", - "Oberbrunner", + 'Daniel', + 'Dare', + 'Daugherty', + 'Davis', + 'Deckow', + 'Denesik', + 'Dibbert', + 'Dickens', + 'Dicki', + 'Dickinson', + 'Dietrich', + 'Donnelly', + 'Dooley', + 'Douglas', + 'Doyle', + 'DuBuque', + 'Durgan', + 'Ebert', + 'Effertz', + 'Eichmann', + 'Emard', + 'Emmerich', + 'Erdman', + 'Ernser', + 'Fadel', + 'Fahey', + 'Farrell', + 'Fay', + 'Feeney', + 'Feest', + 'Feil', + 'Ferry', + 'Fisher', + 'Flatley', + 'Frami', + 'Franecki', + 'Friesen', + 'Fritsch', + 'Funk', + 'Gaylord', + 'Gerhold', + 'Gerlach', + 'Gibson', + 'Gislason', + 'Gleason', + 'Gleichner', + 'Glover', + 'Goldner', + 'Goodwin', + 'Gorczany', + 'Gottlieb', + 'Goyette', + 'Grady', + 'Graham', + 'Grant', + 'Green', + 'Greenfelder', + 'Greenholt', + 'Grimes', + 'Gulgowski', + 'Gusikowski', + 'Gutkowski', + 'Gutmann', + 'Haag', + 'Hackett', + 'Hagenes', + 'Hahn', + 'Haley', + 'Halvorson', + 'Hamill', + 'Hammes', + 'Hand', + 'Hane', + 'Hansen', + 'Harber', + 'Harris', + 'Hartmann', + 'Harvey', + 'Hauck', + 'Hayes', + 'Heaney', + 'Heathcote', + 'Hegmann', + 'Heidenreich', + 'Heller', + 'Herman', + 'Hermann', + 'Hermiston', + 'Herzog', + 'Hessel', + 'Hettinger', + 'Hickle', + 'Hilll', + 'Hills', + 'Hilpert', + 'Hintz', + 'Hirthe', + 'Hodkiewicz', + 'Hoeger', + 'Homenick', + 'Hoppe', + 'Howe', + 'Howell', + 'Hudson', + 'Huel', + 'Huels', + 'Hyatt', + 'Jacobi', + 'Jacobs', + 'Jacobson', + 'Jakubowski', + 'Jaskolski', + 'Jast', + 'Jenkins', + 'Jerde', + 'Jewess', + 'Johns', + 'Johnson', + 'Johnston', + 'Jones', + 'Kassulke', + 'Kautzer', + 'Keebler', + 'Keeling', + 'Kemmer', + 'Kerluke', + 'Kertzmann', + 'Kessler', + 'Kiehn', + 'Kihn', + 'Kilback', + 'King', + 'Kirlin', + 'Klein', + 'Kling', + 'Klocko', + 'Koch', + 'Koelpin', + 'Koepp', + 'Kohler', + 'Konopelski', + 'Koss', + 'Kovacek', + 'Kozey', + 'Krajcik', + 'Kreiger', + 'Kris', + 'Kshlerin', + 'Kub', + 'Kuhic', + 'Kuhlman', + 'Kuhn', + 'Kulas', + 'Kunde', + 'Kunze', + 'Kuphal', + 'Kutch', + 'Kuvalis', + 'Labadie', + 'Lakin', + 'Lang', + 'Langosh', + 'Langworth', + 'Larkin', + 'Larson', + 'Leannon', + 'Lebsack', + 'Ledner', + 'Leffler', + 'Legros', + 'Lehner', + 'Lemke', + 'Lesch', + 'Leuschke', + 'Lind', + 'Lindgren', + 'Littel', + 'Little', + 'Lockman', + 'Lowe', + 'Lubowitz', + 'Lueilwitz', + 'Luettgen', + 'Lynch', + 'Macejkovic', + 'Maggio', + 'Mann', + 'Mante', + 'Marks', + 'Marquardt', + 'Marvin', + 'Mayer', + 'Mayert', + 'McClure', + 'McCullough', + 'McDermott', + 'McGlynn', + 'McKenzie', + 'McLaughlin', + 'Medhurst', + 'Mertz', + 'Metz', + 'Miller', + 'Mills', + 'Mitchell', + 'Moen', + 'Mohr', + 'Monahan', + 'Moore', + 'Morar', + 'Morissette', + 'Mosciski', + 'Mraz', + 'Mueller', + 'Muller', + 'Murazik', + 'Murphy', + 'Murray', + 'Nader', + 'Nicolas', + 'Nienow', + 'Nikolaus', + 'Nitzsche', + 'Nolan', + 'Oberbrunner', "O'Connell", "O'Conner", "O'Hara", "O'Keefe", "O'Kon", - "Oga", - "Okuneva", - "Olson", - "Ondricka", + 'Oga', + 'Okuneva', + 'Olson', + 'Ondricka', "O'Reilly", - "Orn", - "Ortiz", - "Osinski", - "Pacocha", - "Padberg", - "Pagac", - "Parisian", - "Parker", - "Paucek", - "Pfannerstill", - "Pfeffer", - "Pollich", - "Pouros", - "Powlowski", - "Predovic", - "Price", - "Prohaska", - "Prosacco", - "Purdy", - "Quigley", - "Quitzon", - "Rath", - "Ratke", - "Rau", - "Raynor", - "Reichel", - "Reichert", - "Reilly", - "Reinger", - "Rempel", - "Renner", - "Reynolds", - "Rice", - "Rippin", - "Ritchie", - "Robel", - "Roberts", - "Rodriguez", - "Rogahn", - "Rohan", - "Rolfson", - "Romaguera", - "Roob", - "Rosenbaum", - "Rowe", - "Ruecker", - "Runolfsdottir", - "Runolfsson", - "Runte", - "Russel", - "Rutherford", - "Ryan", - "Sanford", - "Satterfield", - "Sauer", - "Sawayn", - "Schaden", - "Schaefer", - "Schamberger", - "Schiller", - "Schimmel", - "Schinner", - "Schmeler", - "Schmidt", - "Schmitt", - "Schneider", - "Schoen", - "Schowalter", - "Schroeder", - "Schulist", - "Schultz", - "Schumm", - "Schuppe", - "Schuster", - "Senger", - "Shanahan", - "Shields", - "Simonis", - "Sipes", - "Skiles", - "Smith", - "Smitham", - "Spencer", - "Spinka", - "Sporer", - "Stamm", - "Stanton", - "Stark", - "Stehr", - "Steuber", - "Stiedemann", - "Stokes", - "Stoltenberg", - "Stracke", - "Streich", - "Stroman", - "Strosin", - "Swaniawski", - "Swift", - "Terry", - "Thiel", - "Thompson", - "Tillman", - "Torp", - "Torphy", - "Towne", - "Toy", - "Trantow", - "Tremblay", - "Treutel", - "Tromp", - "Turcotte", - "Turner", - "Ullrich", - "Upton", - "Vandervort", - "Veum", - "Volkman", - "Von", - "VonRueden", - "Waelchi", - "Walker", - "Walsh", - "Walter", - "Ward", - "Waters", - "Watsica", - "Weber", - "Wehner", - "Weimann", - "Weissnat", - "Welch", - "West", - "White", - "Wiegand", - "Wilderman", - "Wilkinson", - "Will", - "Williamson", - "Willms", - "Windler", - "Wintheiser", - "Wisoky", - "Wisozk", - "Witting", - "Wiza", - "Wolf", - "Wolff", - "Wuckert", - "Wunsch", - "Wyman", - "Yost", - "Yundt", - "Zboncak", - "Zemlak", - "Ziemann", - "Zieme", - "Zulauf" + 'Orn', + 'Ortiz', + 'Osinski', + 'Pacocha', + 'Padberg', + 'Pagac', + 'Parisian', + 'Parker', + 'Paucek', + 'Pfannerstill', + 'Pfeffer', + 'Pollich', + 'Pouros', + 'Powlowski', + 'Predovic', + 'Price', + 'Prohaska', + 'Prosacco', + 'Purdy', + 'Quigley', + 'Quitzon', + 'Rath', + 'Ratke', + 'Rau', + 'Raynor', + 'Reichel', + 'Reichert', + 'Reilly', + 'Reinger', + 'Rempel', + 'Renner', + 'Reynolds', + 'Rice', + 'Rippin', + 'Ritchie', + 'Robel', + 'Roberts', + 'Rodriguez', + 'Rogahn', + 'Rohan', + 'Rolfson', + 'Romaguera', + 'Roob', + 'Rosenbaum', + 'Rowe', + 'Ruecker', + 'Runolfsdottir', + 'Runolfsson', + 'Runte', + 'Russel', + 'Rutherford', + 'Ryan', + 'Sanford', + 'Satterfield', + 'Sauer', + 'Sawayn', + 'Schaden', + 'Schaefer', + 'Schamberger', + 'Schiller', + 'Schimmel', + 'Schinner', + 'Schmeler', + 'Schmidt', + 'Schmitt', + 'Schneider', + 'Schoen', + 'Schowalter', + 'Schroeder', + 'Schulist', + 'Schultz', + 'Schumm', + 'Schuppe', + 'Schuster', + 'Senger', + 'Shanahan', + 'Shields', + 'Simonis', + 'Sipes', + 'Skiles', + 'Smith', + 'Smitham', + 'Spencer', + 'Spinka', + 'Sporer', + 'Stamm', + 'Stanton', + 'Stark', + 'Stehr', + 'Steuber', + 'Stiedemann', + 'Stokes', + 'Stoltenberg', + 'Stracke', + 'Streich', + 'Stroman', + 'Strosin', + 'Swaniawski', + 'Swift', + 'Terry', + 'Thiel', + 'Thompson', + 'Tillman', + 'Torp', + 'Torphy', + 'Towne', + 'Toy', + 'Trantow', + 'Tremblay', + 'Treutel', + 'Tromp', + 'Turcotte', + 'Turner', + 'Ullrich', + 'Upton', + 'Vandervort', + 'Veum', + 'Volkman', + 'Von', + 'VonRueden', + 'Waelchi', + 'Walker', + 'Walsh', + 'Walter', + 'Ward', + 'Waters', + 'Watsica', + 'Weber', + 'Wehner', + 'Weimann', + 'Weissnat', + 'Welch', + 'West', + 'White', + 'Wiegand', + 'Wilderman', + 'Wilkinson', + 'Will', + 'Williamson', + 'Willms', + 'Windler', + 'Wintheiser', + 'Wisoky', + 'Wisozk', + 'Witting', + 'Wiza', + 'Wolf', + 'Wolff', + 'Wuckert', + 'Wunsch', + 'Wyman', + 'Yost', + 'Yundt', + 'Zboncak', + 'Zemlak', + 'Ziemann', + 'Zieme', + 'Zulauf' ]; diff --git a/lib/src/data/sport/sport_names.dart b/lib/src/data/sport/sport_names.dart index a8cd757..248e136 100644 --- a/lib/src/data/sport/sport_names.dart +++ b/lib/src/data/sport/sport_names.dart @@ -1,4 +1,4 @@ -const sportNames = const [ +const sportNames = [ 'Surfing', 'Bodyboarding', 'Wakeboarding', diff --git a/lib/src/date.dart b/lib/src/date.dart index 07ed419..b3b981a 100644 --- a/lib/src/date.dart +++ b/lib/src/date.dart @@ -5,34 +5,34 @@ class Date { const Date(); static final _yearSuffixes = [ - "BC", - "AD", + 'BC', + 'AD', ]; static final _timeSuffixes = [ - "AM", - "PM", + 'AM', + 'PM', ]; static final _months = [ - "January", - "February", - "March", - "April", - "May", - "June", - "July", - "August", - "September", - "October", - "November", - "December" + 'January', + 'February', + 'March', + 'April', + 'May', + 'June', + 'July', + 'August', + 'September', + 'October', + 'November', + 'December' ]; /// Generates a random [DateTime] /// By default the range of the years will be between 0 and 10000. But that can /// be adjusted with the minYear and maxYear args - /// + /// /// Example: /// ```dart /// faker.date.dateTime(); @@ -70,7 +70,7 @@ class Date { /// faker.date.year(); /// ``` String year({int minYear = 0, int maxYear = 10000}) { - DateTime date = dateTime(minYear: minYear, maxYear: maxYear); + final date = dateTime(minYear: minYear, maxYear: maxYear); // Just year if (random.boolean()) { @@ -90,14 +90,14 @@ class Date { /// faker.date.time() /// ``` String time() { - DateTime date = dateTime(); + final date = dateTime(); - String timeSuffix = ""; + var timeSuffix = ''; if (random.boolean()) { - timeSuffix = random.element(_timeSuffixes) + " "; + timeSuffix = random.element(_timeSuffixes) + ' '; } - String timeZone = ""; + var timeZone = ''; if (random.boolean()) { timeZone = random.element(timeZones); } @@ -113,7 +113,7 @@ class Date { // If the minute is a single digit (i.e. less than 10) // We want to prepend a 0 to it. - String minute = (date.minute < 10) + final minute = (date.minute < 10) ? '0' + date.minute.toString() : date.minute.toString(); diff --git a/lib/src/faker.dart b/lib/src/faker.dart index fa02a2c..89fffbb 100644 --- a/lib/src/faker.dart +++ b/lib/src/faker.dart @@ -13,7 +13,7 @@ import 'person.dart'; import 'random_generator.dart'; import 'sport.dart'; -const Faker faker = const Faker(); +const Faker faker = Faker(); class Faker { final Address address; diff --git a/lib/src/internet.dart b/lib/src/internet.dart index f4cd161..1be855d 100644 --- a/lib/src/internet.dart +++ b/lib/src/internet.dart @@ -3,8 +3,8 @@ import 'data/person/lastnames.dart'; import 'random_generator.dart'; class Internet { - static const _hosts = const ['gmail.com', 'yahoo.com', 'hotmail.com']; - static const _domainSuffixes = const [ + static const _hosts = ['gmail.com', 'yahoo.com', 'hotmail.com']; + static const _domainSuffixes = [ 'co.uk', 'com', 'us', @@ -13,7 +13,7 @@ class Internet { 'info', 'name' ]; - static const _disposableHosts = const [ + static const _disposableHosts = [ 'mailinator.com', 'suremail.info', 'spamherelots.com', @@ -87,7 +87,7 @@ class Internet { /// faker.internet.domainWord(); /// ``` String domainWord() => random.element(lastnames).toLowerCase().replaceAll( - new RegExp(r'[^a-z0-9\-]'), ''); // -- remove illegal domain characters + RegExp(r'[^a-z0-9\-]'), ''); // -- remove illegal domain characters /// Generates a URI with the given [protocol]. /// diff --git a/lib/src/lorem.dart b/lib/src/lorem.dart index e703bab..18bc3e2 100644 --- a/lib/src/lorem.dart +++ b/lib/src/lorem.dart @@ -1,5 +1,5 @@ -import 'data/lorem/words.dart' as word_list; import 'data/lorem/sentences.dart' as sentence_list; +import 'data/lorem/words.dart' as word_list; import 'random_generator.dart'; class Lorem { @@ -40,6 +40,8 @@ class Lorem { /// faker.lorem.sentences(5); /// ``` List sentences(numberOfSentences) { - return Iterable.generate(numberOfSentences).map((_) => sentence()).toList(); + return Iterable.generate(numberOfSentences) + .map((_) => sentence()) + .toList(); } } diff --git a/lib/src/person.dart b/lib/src/person.dart index ac1556b..bccc780 100644 --- a/lib/src/person.dart +++ b/lib/src/person.dart @@ -3,9 +3,9 @@ import 'data/person/lastnames.dart'; import 'random_generator.dart'; class Person { - static const _prefixes = const ['Mr.', 'Mrs.', 'Ms.', 'Miss', 'Dr']; + static const _prefixes = ['Mr.', 'Mrs.', 'Ms.', 'Miss', 'Dr']; - static const _suffixes = const [ + static const _suffixes = [ 'Jr.', 'Sr.', 'I', diff --git a/lib/src/random_generator.dart b/lib/src/random_generator.dart index c0d549a..c3c91b5 100644 --- a/lib/src/random_generator.dart +++ b/lib/src/random_generator.dart @@ -1,8 +1,8 @@ import 'dart:math'; -var _rng = new Random(); +var _rng = Random(); -const random = const RandomGenerator(); +const random = RandomGenerator(); class RandomGenerator { const RandomGenerator(); @@ -54,7 +54,7 @@ class RandomGenerator { /// /// random.string(10, min: 5); /// ``` - String string(int max, {int min = 1}) => new String.fromCharCodes( + String string(int max, {int min = 1}) => String.fromCharCodes( numbers(92, integer(max, min: min)).map((value) => value + 33)); /// Generates a list of random length filled by return value of [fn]. @@ -67,7 +67,7 @@ class RandomGenerator { /// ``` List amount(fn(int i), int max, {int min = 1}) { var length = integer(max, min: min); - return new List.generate(length, fn); + return List.generate(length, fn); } /// Generates a random set of numbers from the given [pattern]. diff --git a/test/runner.dart b/test/runner.dart index 7f6fa62..1257a24 100644 --- a/test/runner.dart +++ b/test/runner.dart @@ -12,7 +12,7 @@ import 'specs/sport.dart' as sport; import 'specs/date.dart' as date; import 'specs/random_generator.dart' as random; -main() { +void main() { address.main(); conference.main(); company.main(); diff --git a/test/specs/address.dart b/test/specs/address.dart index f26b560..7b91cef 100644 --- a/test/specs/address.dart +++ b/test/specs/address.dart @@ -1,8 +1,8 @@ import 'package:test/test.dart'; import 'package:faker/faker.dart'; -main() { - var faker = new Faker(); +void main() { + var faker = Faker(); group('address', () { test('should be able to zip code', () { @@ -20,43 +20,43 @@ main() { }); test('should be able to generate city prefix', () { - expect(faker.address.cityPrefix(), matches(new RegExp(r'^[^ ]+ [^ ]+$'))); + expect(faker.address.cityPrefix(), matches(RegExp(r'^[^ ]+ [^ ]+$'))); }); test('should be able to generate city suffix', () { - expect(faker.address.citySuffix(), matches(new RegExp(r'^[a-z]+$'))); + expect(faker.address.citySuffix(), matches(RegExp(r'^[a-z]+$'))); }); test('should be able to generate street name', () { - expect(faker.address.streetName(), matches(new RegExp(r'^[^ ]+ [^ ]+$'))); + expect(faker.address.streetName(), matches(RegExp(r'^[^ ]+ [^ ]+$'))); }); test('should be able to generate street address', () { - expect(faker.address.streetAddress(), matches(new RegExp(r'^[^ ]+ [^ ]+ [^ ]+$'))); + expect(faker.address.streetAddress(), matches(RegExp(r'^[^ ]+ [^ ]+ [^ ]+$'))); }); test('should be able to generate street suffix', () { - expect(faker.address.streetSuffix(), matches(new RegExp(r'^[\w]+$'))); + expect(faker.address.streetSuffix(), matches(RegExp(r'^[\w]+$'))); }); test('should be able to generate building number', () { - expect(faker.address.buildingNumber(), matches(new RegExp(r'^[\w]+$'))); + expect(faker.address.buildingNumber(), matches(RegExp(r'^[\w]+$'))); }); test('should be able to generate neighborhood', () { - expect(faker.address.neighborhood(), matches(new RegExp(r'^[\w-/^ ]*$'))); + expect(faker.address.neighborhood(), matches(RegExp(r'^[\w-/^ ]*$'))); }); test('should be able to generate country', () { - expect(faker.address.country(), matches(new RegExp(r"^[\w,éÅô\.Ç\-()'^ ]+$"))); + expect(faker.address.country(), matches(RegExp(r"^[\w,éÅô\.Ç\-()'^ ]+$"))); }); test('should be able to generate country code', () { - expect(faker.address.countryCode(), matches(new RegExp(r'^[A-Z]{2}$'))); + expect(faker.address.countryCode(), matches(RegExp(r'^[A-Z]{2}$'))); }); test('should be able to generate continent', () { - expect(faker.address.continent(), matches(new RegExp(r'^[\w\s]*$'))); + expect(faker.address.continent(), matches(RegExp(r'^[\w\s]*$'))); }); }); } diff --git a/test/specs/company.dart b/test/specs/company.dart index b698611..4cba65d 100644 --- a/test/specs/company.dart +++ b/test/specs/company.dart @@ -1,7 +1,7 @@ -import "package:test/test.dart"; +import 'package:test/test.dart'; import 'package:faker/faker.dart'; -main() { +void main() { group('company', () { test('should be able to generate name', () { for (var i = 0; i < 10; i++) { @@ -18,7 +18,7 @@ main() { }); test('should be able to generate suffix', () { - expect(faker.company.suffix(), matches(new RegExp(r'^[\w^ ]+$'))); + expect(faker.company.suffix(), matches(RegExp(r'^[\w^ ]+$'))); }); }); } diff --git a/test/specs/conference.dart b/test/specs/conference.dart index a96e264..95e74a6 100644 --- a/test/specs/conference.dart +++ b/test/specs/conference.dart @@ -1,10 +1,10 @@ -import "package:test/test.dart"; +import 'package:test/test.dart'; import 'package:faker/faker.dart'; -main() { +void main() { group('conference', () { test('should be able to generate name', () { - expect(faker.conference.name(), matches(new RegExp(r'^[\w\.,\-() ]*$'))); + expect(faker.conference.name(), matches(RegExp(r'^[\w\.,\-() ]*$'))); }); }); } diff --git a/test/specs/currency.dart b/test/specs/currency.dart index 7ed5e67..7e20d8a 100644 --- a/test/specs/currency.dart +++ b/test/specs/currency.dart @@ -1,8 +1,8 @@ import 'package:test/test.dart'; import 'package:faker/faker.dart'; -main() { - var faker = new Faker(); +void main() { + var faker = Faker(); group('currency', () { test('should be able to generate currency code', () { @@ -10,7 +10,7 @@ main() { }); test('should be able to generate currency name', () { - expect(faker.currency.name(), matches(new RegExp(r'(\w){1}'))); + expect(faker.currency.name(), matches(RegExp(r'(\w){1}'))); }); }); } diff --git a/test/specs/date.dart b/test/specs/date.dart index 3da99ee..43329ae 100644 --- a/test/specs/date.dart +++ b/test/specs/date.dart @@ -1,28 +1,28 @@ import 'package:test/test.dart'; import 'package:faker/faker.dart'; -main() { +void main() { var faker = Faker(); - group("date", () { - test("should be able to generate a DateTime", () { + group('date', () { + test('should be able to generate a DateTime', () { expect(true, faker.date.dateTime() is DateTime); }); - test("should be able to generate a month", () { - expect(faker.date.month(), matches(new RegExp(r"^([\w\s\-])+$"))); + test('should be able to generate a month', () { + expect(faker.date.month(), matches(RegExp(r'^([\w\s\-])+$'))); }); - test("should be able to generate a year", () { + test('should be able to generate a year', () { expect( - faker.date.year(), matches(new RegExp(r"^([0-9]){1,5}( (BC|AD))?$"))); + faker.date.year(), matches(RegExp(r'^([0-9]){1,5}( (BC|AD))?$'))); }); test('should be able to generate a time', () { expect( faker.date.time(), - matches(new RegExp( - r"^([0-9]){1,}:([0-9]){2} ?( (AM|PM|((\w){3})))?( )?(((\w){3}))*$"))); + matches(RegExp( + r'^([0-9]){1,}:([0-9]){2} ?( (AM|PM|((\w){3})))?( )?(((\w){3}))*$'))); }); }); } diff --git a/test/specs/food.dart b/test/specs/food.dart index db8c553..2d957f2 100644 --- a/test/specs/food.dart +++ b/test/specs/food.dart @@ -1,20 +1,20 @@ import 'package:test/test.dart'; import 'package:faker/faker.dart'; -main() { - var faker = new Faker(); +void main() { + var faker = Faker(); group('food', () { test('should be able to generate restaurant', () { - expect(faker.food.restaurant(), matches(new RegExp(r"^([\w\s\'-])+$"))); + expect(faker.food.restaurant(), matches(RegExp(r"^([\w\s\'-])+$"))); }); test('should be able to generate dish', () { - expect(faker.food.dish(), matches(new RegExp(r"^([\w\s\'-])+$"))); + expect(faker.food.dish(), matches(RegExp(r"^([\w\s\'-])+$"))); }); test('should be able to generate cuisine', () { - expect(faker.food.cuisine(), matches(new RegExp(r"^([\w\s\-])+$"))); + expect(faker.food.cuisine(), matches(RegExp(r'^([\w\s\-])+$'))); }); }); } diff --git a/test/specs/guid.dart b/test/specs/guid.dart index c727d1f..053fbca 100644 --- a/test/specs/guid.dart +++ b/test/specs/guid.dart @@ -1,10 +1,10 @@ -import "package:test/test.dart"; +import 'package:test/test.dart'; import 'package:faker/faker.dart'; -main() { +void main() { group('guid', () { test('should be able to generate a guid', () { - expect(faker.guid.guid(), matches(new RegExp(r'^[\da-f]{8}\-[\da-f]{4}\-[\da-f]{4}\-[\da-f]{4}\-[\da-f]{12}$'))); + expect(faker.guid.guid(), matches(RegExp(r'^[\da-f]{8}\-[\da-f]{4}\-[\da-f]{4}\-[\da-f]{4}\-[\da-f]{12}$'))); }); }); diff --git a/test/specs/internet.dart b/test/specs/internet.dart index 619f075..4b5aae1 100644 --- a/test/specs/internet.dart +++ b/test/specs/internet.dart @@ -1,48 +1,48 @@ import 'package:test/test.dart'; import 'package:faker/faker.dart'; -main() { - var faker = new Faker(); +void main() { + var faker = Faker(); group('internet', () { test('should be able to generate email', () { - expect(faker.internet.email(), matches(new RegExp(r'[a-zA-Z.+]+@[a-zA-Z.]+'))); + expect(faker.internet.email(), matches(RegExp(r'[a-zA-Z.+]+@[a-zA-Z.]+'))); }); test('should be able to generate disposable email', () { - expect(faker.internet.disposableEmail(), matches(new RegExp(r'[a-zA-Z.+]+@[a-zA-Z.]+'))); + expect(faker.internet.disposableEmail(), matches(RegExp(r'[a-zA-Z.+]+@[a-zA-Z.]+'))); }); test('should be able to generate free email', () { - expect(faker.internet.freeEmail(), matches(new RegExp(r'[a-zA-Z.+]+@[a-zA-Z.]+'))); + expect(faker.internet.freeEmail(), matches(RegExp(r'[a-zA-Z.+]+@[a-zA-Z.]+'))); }); test('should be able to generate safe email', () { - expect(faker.internet.safeEmail(), matches(new RegExp(r'[a-zA-Z.+]+@[a-zA-Z.]+'))); + expect(faker.internet.safeEmail(), matches(RegExp(r'[a-zA-Z.+]+@[a-zA-Z.]+'))); }); test('should be able to generate user name', () { - expect(faker.internet.userName(), matches(new RegExp(r'[a-z]+((_|-|\.)[a-z]+)'))); + expect(faker.internet.userName(), matches(RegExp(r'[a-z]+((_|-|\.)[a-z]+)'))); }); test('should be able to generate domain name', () { - expect(faker.internet.domainName(), matches(new RegExp(r'^((?!-)[A-Za-z0-9-]{1,63}).+[A-Za-z]{2,6}$'))); + expect(faker.internet.domainName(), matches(RegExp(r'^((?!-)[A-Za-z0-9-]{1,63}).+[A-Za-z]{2,6}$'))); }); test('should be able to generate domain word', () { - expect(faker.internet.domainWord(), matches(new RegExp(r"^[\w']+$"))); + expect(faker.internet.domainWord(), matches(RegExp(r"^[\w']+$"))); }); test('should be able to generate uri', () { - expect(faker.internet.uri('ftp'), matches(new RegExp(r'^(ftp://.+)$'))); + expect(faker.internet.uri('ftp'), matches(RegExp(r'^(ftp://.+)$'))); }); test('should be able to generate http url', () { - expect(faker.internet.httpUrl(), matches(new RegExp(r'^(http://.+)$'))); + expect(faker.internet.httpUrl(), matches(RegExp(r'^(http://.+)$'))); }); test('should be able to generate https url', () { - expect(faker.internet.httpsUrl(), matches(new RegExp(r'^(https://.+)$'))); + expect(faker.internet.httpsUrl(), matches(RegExp(r'^(https://.+)$'))); }); test('should be able to generate ipv4 address', () { @@ -54,7 +54,7 @@ main() { }); test('should be able to generate mac address', () { - expect(faker.internet.macAddress(), matches(new RegExp(r'^([\da-f]{2}[:]){5}([\da-f]{2})$'))); + expect(faker.internet.macAddress(), matches(RegExp(r'^([\da-f]{2}[:]){5}([\da-f]{2})$'))); }); test('should be able to generate password', () { diff --git a/test/specs/job.dart b/test/specs/job.dart index 5ade8fc..81d2286 100644 --- a/test/specs/job.dart +++ b/test/specs/job.dart @@ -1,12 +1,12 @@ import 'package:test/test.dart'; import 'package:faker/faker.dart'; -main() { - var faker = new Faker(); +void main() { + var faker = Faker(); group('job', () { test('should be able to generate job title', () { - expect(faker.job.title(), matches(new RegExp(r'^[^ ]+ [^ ]+ [^ ]+$'))); + expect(faker.job.title(), matches(RegExp(r'^[^ ]+ [^ ]+ [^ ]+$'))); }); }); } diff --git a/test/specs/lorem.dart b/test/specs/lorem.dart index 4407a2f..a5130af 100644 --- a/test/specs/lorem.dart +++ b/test/specs/lorem.dart @@ -1,11 +1,11 @@ import 'package:faker/faker.dart'; import 'package:test/test.dart'; -main() { +void main() { group('Lorem', (){ group('words', () { test('should be able to generate single word', () { - expect(faker.lorem.word(), matches(new RegExp(r'^[\w-^]+$'))); + expect(faker.lorem.word(), matches(RegExp(r'^[\w-^]+$'))); }); test('should be able to generate word list', () { @@ -15,7 +15,7 @@ main() { group('senetences', () { test('should be able to generate sentence', () { - expect(faker.lorem.sentence(), matches(new RegExp(r'^[\w^ ]+\.$'))); + expect(faker.lorem.sentence(), matches(RegExp(r'^[\w^ ]+\.$'))); }); test('should be able to generate sentence list', () { diff --git a/test/specs/person.dart b/test/specs/person.dart index a209962..1b583b1 100644 --- a/test/specs/person.dart +++ b/test/specs/person.dart @@ -1,8 +1,8 @@ import 'package:test/test.dart'; import 'package:faker/faker.dart'; -main() { - var faker = new Faker(); +void main() { + var faker = Faker(); group('person', () { test('should be able to generate name', () { @@ -14,19 +14,19 @@ main() { }); test('should be able to generate first name', () { - expect(faker.person.firstName(), matches(new RegExp(r'^[^\s]+$'))); + expect(faker.person.firstName(), matches(RegExp(r'^[^\s]+$'))); }); test('should be able to generate last name', () { - expect(faker.person.lastName(), matches(new RegExp(r'^[^\s]+$'))); + expect(faker.person.lastName(), matches(RegExp(r'^[^\s]+$'))); }); test('should be able to generate prefix', () { - expect(faker.person.prefix(), matches(new RegExp(r'^[\w.]{2,4}$'))); + expect(faker.person.prefix(), matches(RegExp(r'^[\w.]{2,4}$'))); }); test('should be able to generate suffix', () { - expect(faker.person.suffix(), matches(new RegExp(r'^[\w.]{1,3}$'))); + expect(faker.person.suffix(), matches(RegExp(r'^[\w.]{1,3}$'))); }); }); } diff --git a/test/specs/random_generator.dart b/test/specs/random_generator.dart index 22f9745..656c2e6 100644 --- a/test/specs/random_generator.dart +++ b/test/specs/random_generator.dart @@ -1,12 +1,12 @@ -import 'package:test/test.dart'; import 'package:faker/faker.dart'; +import 'package:test/test.dart'; -const isInt = const TypeMatcher(); -const isDouble = const TypeMatcher(); -const isString = const TypeMatcher(); -const isListOfInt = const TypeMatcher>(); +const isInt = TypeMatcher(); +const isDouble = TypeMatcher(); +const isString = TypeMatcher(); +const isListOfInt = TypeMatcher>(); -main() { +void main() { group('random generator', () { test('should be able to generate element', () { expect(faker.randomGenerator.element([1, 2, 5]), anyOf(1, 2, 5)); @@ -32,14 +32,18 @@ main() { test('should be able to generate string', () { expect(faker.randomGenerator.string(5), isString); - expect(faker.randomGenerator.string(10, min: 5), hasLength(greaterThan(4))); + expect( + faker.randomGenerator.string(10, min: 5), hasLength(greaterThan(4))); }); test('should be able to generate amount', () { - expect(faker.randomGenerator.amount( - (_) => faker.internet.ipv4Address(), 20), hasLength(lessThan(21))); - expect(faker.randomGenerator.amount( - (_) => faker.internet.ipv4Address(), 20, min: 5), hasLength(greaterThan(4))); + expect( + faker.randomGenerator.amount((_) => faker.internet.ipv4Address(), 20), + hasLength(lessThan(21))); + expect( + faker.randomGenerator + .amount((_) => faker.internet.ipv4Address(), 20, min: 5), + hasLength(greaterThan(4))); }); test('should be able to generate from pattern', () { diff --git a/test/specs/sport.dart b/test/specs/sport.dart index 540c176..4bba9d1 100644 --- a/test/specs/sport.dart +++ b/test/specs/sport.dart @@ -1,10 +1,10 @@ import 'package:test/test.dart'; import 'package:faker/faker.dart'; -main() { +void main() { group('sport', () { test('should be able to generate name', () { - expect(faker.sport.name(), matches(new RegExp(r'^[\w-^ ]+$'))); + expect(faker.sport.name(), matches(RegExp(r'^[\w-^ ]+$'))); }); }); }