gitextract_3831vy8a/ ├── .devcontainer/ │ └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── .codecov.yml │ ├── CODEOWNERS │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ ├── feature_request.yml │ │ └── freestyle.md │ ├── commit-convention.md │ ├── pull_request_template.md │ ├── renovate.json5 │ └── workflows/ │ ├── check-mergable-by-label.yml │ ├── check-release-pr.yml │ ├── ci.yml │ ├── comment-issue.yml │ ├── draft-release.yml │ ├── integration-test.yml │ ├── pr.yml │ ├── prepare-release-pr.yml │ ├── publish-release.yml │ └── semantic-pull-request.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc.d.ts ├── .prettierrc.js ├── .versionrc.json ├── .vscode/ │ ├── extensions.json │ └── settings.json ├── BACKERS.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cypress/ │ ├── e2e/ │ │ ├── api.cy.ts │ │ ├── example-refresh.cy.ts │ │ └── guide.cy.ts │ └── tsconfig.json ├── cypress.config.ts ├── docs/ │ ├── .vitepress/ │ │ ├── api-pages.ts │ │ ├── components/ │ │ │ ├── Banner.vue │ │ │ ├── api-docs/ │ │ │ │ ├── format.ts │ │ │ │ ├── method-parameters.vue │ │ │ │ ├── method.ts │ │ │ │ ├── method.vue │ │ │ │ ├── refresh-button.vue │ │ │ │ └── refreshable-code.vue │ │ │ └── shims.d.ts │ │ ├── config.ts │ │ ├── shared/ │ │ │ └── utils/ │ │ │ └── slugify.ts │ │ ├── theme/ │ │ │ ├── index.css │ │ │ └── index.ts │ │ └── versions.ts │ ├── about/ │ │ ├── announcements/ │ │ │ ├── 2022-01-14.md │ │ │ ├── 2022-09-08.md │ │ │ └── 2024-10-26.md │ │ ├── announcements.md │ │ ├── roadmap/ │ │ │ ├── index.md │ │ │ ├── v6.md │ │ │ ├── v7.md │ │ │ ├── v8.md │ │ │ └── v9.md │ │ ├── team/ │ │ │ ├── TeamPage.vue │ │ │ └── members.json │ │ └── team.md │ ├── api/ │ │ ├── ApiIndex.vue │ │ ├── api-types.ts │ │ └── index.md │ ├── contributing/ │ │ ├── code-of-conduct.md │ │ ├── propose-a-feature.md │ │ ├── report-bugs.md │ │ ├── set-up-a-development-environment.md │ │ └── submit-a-pull-request.md │ ├── guide/ │ │ ├── frameworks.md │ │ ├── index.md │ │ ├── localization.md │ │ ├── randomizer.md │ │ ├── unique.md │ │ ├── upgrading.md │ │ └── usage.md │ ├── index.md │ ├── locales/ │ │ └── .gitkeep │ └── public/ │ └── robots.txt ├── eslint.config.ts ├── netlify.toml ├── package.json ├── scripts/ │ ├── apidocs/ │ │ ├── diff.ts │ │ ├── generate.ts │ │ ├── output/ │ │ │ ├── constants.ts │ │ │ ├── diff-index.ts │ │ │ ├── page-index.ts │ │ │ ├── page.ts │ │ │ ├── search-index.ts │ │ │ └── source-base-url.ts │ │ ├── processing/ │ │ │ ├── class.ts │ │ │ ├── error.ts │ │ │ ├── jsdocs.ts │ │ │ ├── method.ts │ │ │ ├── parameter.ts │ │ │ ├── signature.ts │ │ │ ├── source.ts │ │ │ └── type.ts │ │ ├── project.ts │ │ └── utils/ │ │ └── value-checks.ts │ ├── apidocs.ts │ ├── diff.ts │ ├── env.ts │ ├── generate-locales.ts │ ├── locales/ │ │ ├── exports.ts │ │ ├── metadata.ts │ │ └── page.ts │ └── shared/ │ ├── format.ts │ ├── markdown.ts │ ├── paths.ts │ └── refreshable-code.ts ├── src/ │ ├── definitions/ │ │ ├── airline.ts │ │ ├── animal.ts │ │ ├── book.ts │ │ ├── color.ts │ │ ├── commerce.ts │ │ ├── company.ts │ │ ├── database.ts │ │ ├── date.ts │ │ ├── definitions.ts │ │ ├── finance.ts │ │ ├── food.ts │ │ ├── hacker.ts │ │ ├── index.ts │ │ ├── internet.ts │ │ ├── location.ts │ │ ├── lorem.ts │ │ ├── metadata.ts │ │ ├── music.ts │ │ ├── person.ts │ │ ├── phone_number.ts │ │ ├── science.ts │ │ ├── system.ts │ │ ├── vehicle.ts │ │ └── word.ts │ ├── errors/ │ │ └── faker-error.ts │ ├── faker.ts │ ├── index.ts │ ├── internal/ │ │ ├── base32.ts │ │ ├── base64.ts │ │ ├── bind-this-to-member-functions.ts │ │ ├── date.ts │ │ ├── deprecated.ts │ │ ├── group-by.ts │ │ ├── keys.ts │ │ ├── locale-proxy.ts │ │ ├── mersenne.ts │ │ ├── module-base.ts │ │ ├── seed.ts │ │ └── types.ts │ ├── locale/ │ │ ├── af_ZA.ts │ │ ├── ar.ts │ │ ├── az.ts │ │ ├── base.ts │ │ ├── bn_BD.ts │ │ ├── cs_CZ.ts │ │ ├── cy.ts │ │ ├── da.ts │ │ ├── de.ts │ │ ├── de_AT.ts │ │ ├── de_CH.ts │ │ ├── dv.ts │ │ ├── el.ts │ │ ├── en.ts │ │ ├── en_AU.ts │ │ ├── en_AU_ocker.ts │ │ ├── en_BORK.ts │ │ ├── en_CA.ts │ │ ├── en_GB.ts │ │ ├── en_GH.ts │ │ ├── en_HK.ts │ │ ├── en_IE.ts │ │ ├── en_IN.ts │ │ ├── en_NG.ts │ │ ├── en_US.ts │ │ ├── en_ZA.ts │ │ ├── eo.ts │ │ ├── es.ts │ │ ├── es_MX.ts │ │ ├── fa.ts │ │ ├── fi.ts │ │ ├── fr.ts │ │ ├── fr_BE.ts │ │ ├── fr_CA.ts │ │ ├── fr_CH.ts │ │ ├── fr_LU.ts │ │ ├── fr_SN.ts │ │ ├── he.ts │ │ ├── hr.ts │ │ ├── hu.ts │ │ ├── hy.ts │ │ ├── id_ID.ts │ │ ├── index.ts │ │ ├── it.ts │ │ ├── ja.ts │ │ ├── ka_GE.ts │ │ ├── ko.ts │ │ ├── ku_ckb.ts │ │ ├── ku_kmr_latin.ts │ │ ├── lv.ts │ │ ├── mk.ts │ │ ├── nb_NO.ts │ │ ├── ne.ts │ │ ├── nl.ts │ │ ├── nl_BE.ts │ │ ├── pl.ts │ │ ├── pt_BR.ts │ │ ├── pt_PT.ts │ │ ├── ro.ts │ │ ├── ro_MD.ts │ │ ├── ru.ts │ │ ├── sk.ts │ │ ├── sl_SI.ts │ │ ├── sr_RS_latin.ts │ │ ├── sv.ts │ │ ├── ta_IN.ts │ │ ├── th.ts │ │ ├── tr.ts │ │ ├── uk.ts │ │ ├── ur.ts │ │ ├── uz_UZ_latin.ts │ │ ├── vi.ts │ │ ├── yo_NG.ts │ │ ├── zh_CN.ts │ │ ├── zh_TW.ts │ │ └── zu_ZA.ts │ ├── locales/ │ │ ├── af_ZA/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ └── legal_entity_type.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ └── last_name_pattern.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── ar/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ └── product_name.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_prefix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ ├── team/ │ │ │ │ ├── creature.ts │ │ │ │ ├── index.ts │ │ │ │ └── name.ts │ │ │ └── vehicle/ │ │ │ ├── fuel.ts │ │ │ ├── index.ts │ │ │ ├── manufacturer.ts │ │ │ ├── model.ts │ │ │ └── type.ts │ │ ├── az/ │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── base/ │ │ │ ├── color/ │ │ │ │ ├── index.ts │ │ │ │ └── space.ts │ │ │ ├── database/ │ │ │ │ ├── collation.ts │ │ │ │ ├── engine.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ └── time_zone.ts │ │ │ ├── hacker/ │ │ │ │ ├── abbreviation.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── emoji.ts │ │ │ │ ├── http_status_code.ts │ │ │ │ ├── index.ts │ │ │ │ ├── jwt_algorithm.ts │ │ │ │ └── user_agent_pattern.ts │ │ │ ├── location/ │ │ │ │ ├── country_code.ts │ │ │ │ ├── index.ts │ │ │ │ └── time_zone.ts │ │ │ ├── metadata.ts │ │ │ └── system/ │ │ │ ├── directory_path.ts │ │ │ ├── index.ts │ │ │ └── mime_type.ts │ │ ├── bn_BD/ │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── continent.ts │ │ │ │ ├── country.ts │ │ │ │ ├── county.ts │ │ │ │ ├── index.ts │ │ │ │ └── state.ts │ │ │ └── metadata.ts │ │ ├── cs_CZ/ │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── cy/ │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ └── metadata.ts │ │ ├── da/ │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ ├── product_description.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── buzz_adjective.ts │ │ │ │ ├── buzz_noun.ts │ │ │ │ ├── buzz_verb.ts │ │ │ │ ├── company_name.ts │ │ │ │ ├── descriptor.ts │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ ├── name_pattern.ts │ │ │ │ └── noun.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── middle_name.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── sex.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ └── word/ │ │ │ ├── adjective.ts │ │ │ ├── adverb.ts │ │ │ ├── conjunction.ts │ │ │ ├── index.ts │ │ │ ├── interjection.ts │ │ │ ├── noun.ts │ │ │ ├── preposition.ts │ │ │ └── verb.ts │ │ ├── de/ │ │ │ ├── animal/ │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── database/ │ │ │ │ ├── column.ts │ │ │ │ └── index.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── nobility_title_prefix.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── sex.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ └── word/ │ │ │ ├── adjective.ts │ │ │ ├── adverb.ts │ │ │ ├── index.ts │ │ │ ├── noun.ts │ │ │ ├── preposition.ts │ │ │ └── verb.ts │ │ ├── de_AT/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── nobility_title_prefix.ts │ │ │ │ └── prefix.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ └── word/ │ │ │ ├── adjective.ts │ │ │ └── index.ts │ │ ├── de_CH/ │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country_code.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_name.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ └── prefix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── dv/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── company/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ ├── name_pattern.ts │ │ │ │ └── noun.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── sex.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── el/ │ │ │ ├── app/ │ │ │ │ ├── author.ts │ │ │ │ ├── index.ts │ │ │ │ ├── name.ts │ │ │ │ └── version.ts │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── buzz_adjective.ts │ │ │ │ ├── buzz_noun.ts │ │ │ │ ├── buzz_verb.ts │ │ │ │ ├── descriptor.ts │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ ├── name_pattern.ts │ │ │ │ └── noun.ts │ │ │ ├── finance/ │ │ │ │ ├── account_type.ts │ │ │ │ ├── credit_card/ │ │ │ │ │ ├── american_express.ts │ │ │ │ │ ├── discover.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── mastercard.ts │ │ │ │ │ └── visa.ts │ │ │ │ ├── currency.ts │ │ │ │ ├── index.ts │ │ │ │ └── transaction_type.ts │ │ │ ├── hacker/ │ │ │ │ ├── abbreviation.ts │ │ │ │ ├── adjective.ts │ │ │ │ ├── index.ts │ │ │ │ ├── noun.ts │ │ │ │ └── verb.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── index.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ └── prefix.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ └── team/ │ │ │ ├── creature.ts │ │ │ ├── index.ts │ │ │ └── name.ts │ │ ├── en/ │ │ │ ├── airline/ │ │ │ │ ├── airline.ts │ │ │ │ ├── airplane.ts │ │ │ │ ├── airport.ts │ │ │ │ └── index.ts │ │ │ ├── animal/ │ │ │ │ ├── bear.ts │ │ │ │ ├── bird.ts │ │ │ │ ├── cat.ts │ │ │ │ ├── cetacean.ts │ │ │ │ ├── cow.ts │ │ │ │ ├── crocodilia.ts │ │ │ │ ├── dog.ts │ │ │ │ ├── fish.ts │ │ │ │ ├── horse.ts │ │ │ │ ├── index.ts │ │ │ │ ├── insect.ts │ │ │ │ ├── lion.ts │ │ │ │ ├── pet_name.ts │ │ │ │ ├── rabbit.ts │ │ │ │ ├── rodent.ts │ │ │ │ ├── snake.ts │ │ │ │ └── type.ts │ │ │ ├── app/ │ │ │ │ ├── author.ts │ │ │ │ ├── index.ts │ │ │ │ ├── name.ts │ │ │ │ └── version.ts │ │ │ ├── book/ │ │ │ │ ├── author.ts │ │ │ │ ├── format.ts │ │ │ │ ├── genre.ts │ │ │ │ ├── index.ts │ │ │ │ ├── publisher.ts │ │ │ │ ├── series.ts │ │ │ │ └── title.ts │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ ├── product_description.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── buzz_adjective.ts │ │ │ │ ├── buzz_noun.ts │ │ │ │ ├── buzz_verb.ts │ │ │ │ ├── descriptor.ts │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ ├── name_pattern.ts │ │ │ │ └── noun.ts │ │ │ ├── database/ │ │ │ │ ├── column.ts │ │ │ │ └── index.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── finance/ │ │ │ │ ├── account_type.ts │ │ │ │ ├── credit_card/ │ │ │ │ │ ├── american_express.ts │ │ │ │ │ ├── diners_club.ts │ │ │ │ │ ├── discover.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── jcb.ts │ │ │ │ │ ├── mastercard.ts │ │ │ │ │ └── visa.ts │ │ │ │ ├── currency.ts │ │ │ │ ├── index.ts │ │ │ │ ├── transaction_description_pattern.ts │ │ │ │ └── transaction_type.ts │ │ │ ├── food/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── description_pattern.ts │ │ │ │ ├── dish.ts │ │ │ │ ├── dish_pattern.ts │ │ │ │ ├── ethnic_category.ts │ │ │ │ ├── fruit.ts │ │ │ │ ├── index.ts │ │ │ │ ├── ingredient.ts │ │ │ │ ├── meat.ts │ │ │ │ ├── spice.ts │ │ │ │ └── vegetable.ts │ │ │ ├── hacker/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── index.ts │ │ │ │ ├── ingverb.ts │ │ │ │ ├── noun.ts │ │ │ │ ├── phrase.ts │ │ │ │ └── verb.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── example_email.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── continent.ts │ │ │ │ ├── country.ts │ │ │ │ ├── county.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── music/ │ │ │ │ ├── album.ts │ │ │ │ ├── artist.ts │ │ │ │ ├── genre.ts │ │ │ │ ├── index.ts │ │ │ │ └── song_name.ts │ │ │ ├── person/ │ │ │ │ ├── bio_part.ts │ │ │ │ ├── bio_pattern.ts │ │ │ │ ├── bio_supporter.ts │ │ │ │ ├── first_name.ts │ │ │ │ ├── gender.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── job_title_pattern.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── middle_name.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ ├── sex.ts │ │ │ │ ├── suffix.ts │ │ │ │ └── western_zodiac_sign.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ ├── science/ │ │ │ │ ├── chemical_element.ts │ │ │ │ ├── index.ts │ │ │ │ └── unit.ts │ │ │ ├── team/ │ │ │ │ ├── creature.ts │ │ │ │ ├── index.ts │ │ │ │ └── name.ts │ │ │ ├── vehicle/ │ │ │ │ ├── bicycle_type.ts │ │ │ │ ├── fuel.ts │ │ │ │ ├── index.ts │ │ │ │ ├── manufacturer.ts │ │ │ │ ├── model.ts │ │ │ │ └── type.ts │ │ │ └── word/ │ │ │ ├── adjective.ts │ │ │ ├── adverb.ts │ │ │ ├── conjunction.ts │ │ │ ├── index.ts │ │ │ ├── interjection.ts │ │ │ ├── noun.ts │ │ │ ├── preposition.ts │ │ │ └── verb.ts │ │ ├── en_AU/ │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ └── legal_entity_type.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ └── last_name_pattern.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── en_AU_ocker/ │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_name.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ └── last_name_pattern.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── en_BORK/ │ │ │ ├── index.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ └── person/ │ │ │ ├── index.ts │ │ │ └── last_name_pattern.ts │ │ ├── en_CA/ │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country_code.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── postcode_by_state.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── index.ts │ │ │ │ └── last_name_pattern.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── en_GB/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_infix.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── county.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_name.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── index.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ └── name.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── en_GH/ │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ ├── street_prefix.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ └── name.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── en_HK/ │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ └── legal_entity_type.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── postcode_by_state.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_cantonese_part.ts │ │ │ │ ├── street_english_part.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ ├── street_prefix.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ └── name.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── en_IE/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── county.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── index.ts │ │ │ │ └── last_name_pattern.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── en_IN/ │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ └── legal_entity_type.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ └── last_name_pattern.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── en_NG/ │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ └── legal_entity_type.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ └── name.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── en_US/ │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── county.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode_by_state.ts │ │ │ │ ├── street_name.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── index.ts │ │ │ │ └── last_name_pattern.ts │ │ │ └── phone_number/ │ │ │ ├── area_code.ts │ │ │ ├── exchange_code.ts │ │ │ └── index.ts │ │ ├── en_ZA/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ └── legal_entity_type.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ └── name.ts │ │ │ └── phone_number/ │ │ │ ├── area_code.ts │ │ │ ├── exchange_code.ts │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── eo/ │ │ │ ├── animal/ │ │ │ │ ├── bear.ts │ │ │ │ ├── crocodilia.ts │ │ │ │ ├── index.ts │ │ │ │ ├── lion.ts │ │ │ │ └── type.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── index.ts │ │ │ │ └── product_name.ts │ │ │ ├── database/ │ │ │ │ ├── column.ts │ │ │ │ └── index.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── hacker/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── index.ts │ │ │ │ ├── ingverb.ts │ │ │ │ ├── noun.ts │ │ │ │ ├── phrase.ts │ │ │ │ └── verb.ts │ │ │ ├── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── country.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ ├── street_prefix.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── bio_part.ts │ │ │ │ ├── bio_pattern.ts │ │ │ │ ├── first_name.ts │ │ │ │ ├── gender.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ ├── sex.ts │ │ │ │ └── western_zodiac_sign.ts │ │ │ ├── science/ │ │ │ │ ├── chemical_element.ts │ │ │ │ ├── index.ts │ │ │ │ └── unit.ts │ │ │ └── vehicle/ │ │ │ ├── fuel.ts │ │ │ └── index.ts │ │ ├── es/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── descriptor.ts │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ ├── name_pattern.ts │ │ │ │ └── noun.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── county.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── job_title_pattern.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── es_MX/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── buzz_adjective.ts │ │ │ │ ├── buzz_noun.ts │ │ │ │ ├── buzz_verb.ts │ │ │ │ ├── descriptor.ts │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ ├── name_pattern.ts │ │ │ │ └── noun.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ └── team/ │ │ │ ├── creature.ts │ │ │ ├── index.ts │ │ │ └── name.ts │ │ ├── fa/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── buzz_adjective.ts │ │ │ │ ├── buzz_noun.ts │ │ │ │ ├── buzz_verb.ts │ │ │ │ ├── descriptor.ts │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ ├── name_pattern.ts │ │ │ │ └── noun.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── finance/ │ │ │ │ ├── account_type.ts │ │ │ │ ├── credit_card/ │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── mastercard.ts │ │ │ │ │ └── visa.ts │ │ │ │ ├── currency.ts │ │ │ │ ├── index.ts │ │ │ │ └── transaction_type.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── example_email.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── country.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ ├── street_prefix.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── music/ │ │ │ │ ├── genre.ts │ │ │ │ └── index.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ └── prefix.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ ├── vehicle/ │ │ │ │ ├── fuel.ts │ │ │ │ ├── index.ts │ │ │ │ ├── manufacturer.ts │ │ │ │ ├── model.ts │ │ │ │ └── type.ts │ │ │ └── word/ │ │ │ ├── adjective.ts │ │ │ ├── conjunction.ts │ │ │ ├── index.ts │ │ │ ├── interjection.ts │ │ │ ├── noun.ts │ │ │ ├── preposition.ts │ │ │ └── verb.ts │ │ ├── fi/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ └── name.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── fr/ │ │ │ ├── animal/ │ │ │ │ ├── bear.ts │ │ │ │ ├── bird.ts │ │ │ │ ├── cat.ts │ │ │ │ ├── cetacean.ts │ │ │ │ ├── cow.ts │ │ │ │ ├── crocodilia.ts │ │ │ │ ├── dog.ts │ │ │ │ ├── fish.ts │ │ │ │ ├── horse.ts │ │ │ │ ├── index.ts │ │ │ │ ├── insect.ts │ │ │ │ ├── lion.ts │ │ │ │ ├── rabbit.ts │ │ │ │ ├── snake.ts │ │ │ │ └── type.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ ├── product_description.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── finance/ │ │ │ │ ├── account_type.ts │ │ │ │ ├── currency.ts │ │ │ │ ├── index.ts │ │ │ │ └── transaction_type.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ ├── street_prefix.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── music/ │ │ │ │ ├── genre.ts │ │ │ │ └── index.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── job_title_pattern.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── sex.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ ├── vehicle/ │ │ │ │ ├── bicycle_type.ts │ │ │ │ ├── fuel.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ └── word/ │ │ │ ├── adjective.ts │ │ │ ├── adverb.ts │ │ │ ├── conjunction.ts │ │ │ ├── index.ts │ │ │ ├── interjection.ts │ │ │ ├── noun.ts │ │ │ ├── preposition.ts │ │ │ └── verb.ts │ │ ├── fr_BE/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ ├── street_prefix.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── gender.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── fr_CA/ │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country_code.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── index.ts │ │ │ │ └── last_name_pattern.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── fr_CH/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── country_code.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ ├── street_prefix.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── sex.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── fr_LU/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ └── state.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── index.ts │ │ │ │ └── last_name_pattern.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── fr_SN/ │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ ├── street_prefix.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ └── person/ │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ └── name.ts │ │ ├── he/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ ├── product_description.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── buzz_adjective.ts │ │ │ │ ├── buzz_noun.ts │ │ │ │ ├── buzz_verb.ts │ │ │ │ ├── descriptor.ts │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ ├── name_pattern.ts │ │ │ │ └── noun.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── county.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_prefix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── music/ │ │ │ │ ├── genre.ts │ │ │ │ └── index.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ └── prefix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── hr/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── county.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── hu/ │ │ │ ├── animal/ │ │ │ │ ├── cat.ts │ │ │ │ ├── dog.ts │ │ │ │ ├── horse.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ ├── product_description.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── finance/ │ │ │ │ ├── account_type.ts │ │ │ │ ├── index.ts │ │ │ │ └── transaction_type.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── continent.ts │ │ │ │ ├── country.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ └── prefix.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ └── word/ │ │ │ ├── adjective.ts │ │ │ ├── adverb.ts │ │ │ ├── conjunction.ts │ │ │ ├── index.ts │ │ │ ├── interjection.ts │ │ │ ├── noun.ts │ │ │ └── verb.ts │ │ ├── hy/ │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── country.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ └── name.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── id_ID/ │ │ │ ├── animal/ │ │ │ │ ├── bear.ts │ │ │ │ ├── cetacean.ts │ │ │ │ ├── crocodilia.ts │ │ │ │ ├── fish.ts │ │ │ │ ├── index.ts │ │ │ │ ├── insect.ts │ │ │ │ ├── lion.ts │ │ │ │ ├── pet_name.ts │ │ │ │ ├── rabbit.ts │ │ │ │ ├── rodent.ts │ │ │ │ └── type.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ ├── product_description.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ ├── name_pattern.ts │ │ │ │ └── prefix.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_prefix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── female_title.ts │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── male_title.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ └── word/ │ │ │ ├── adjective.ts │ │ │ ├── adverb.ts │ │ │ ├── conjunction.ts │ │ │ ├── index.ts │ │ │ ├── interjection.ts │ │ │ ├── noun.ts │ │ │ ├── preposition.ts │ │ │ └── verb.ts │ │ ├── index.ts │ │ ├── it/ │ │ │ ├── company/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── buzz_adjective.ts │ │ │ │ ├── buzz_noun.ts │ │ │ │ ├── buzz_verb.ts │ │ │ │ ├── descriptor.ts │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ ├── name_pattern.ts │ │ │ │ └── noun.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── ja/ │ │ │ ├── animal/ │ │ │ │ ├── bear.ts │ │ │ │ ├── bird.ts │ │ │ │ ├── cat.ts │ │ │ │ ├── cow.ts │ │ │ │ ├── dog.ts │ │ │ │ ├── fish.ts │ │ │ │ ├── horse.ts │ │ │ │ └── index.ts │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── company/ │ │ │ │ ├── category.ts │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── finance/ │ │ │ │ ├── account_type.ts │ │ │ │ ├── currency.ts │ │ │ │ ├── index.ts │ │ │ │ ├── transaction_description_pattern.ts │ │ │ │ └── transaction_type.ts │ │ │ ├── food/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── description_pattern.ts │ │ │ │ ├── dish.ts │ │ │ │ ├── dish_pattern.ts │ │ │ │ ├── ethnic_category.ts │ │ │ │ ├── fruit.ts │ │ │ │ ├── index.ts │ │ │ │ ├── ingredient.ts │ │ │ │ ├── meat.ts │ │ │ │ ├── spice.ts │ │ │ │ └── vegetable.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── country.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── job_title_pattern.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── sex.ts │ │ │ │ └── suffix.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ ├── science/ │ │ │ │ ├── chemical_element.ts │ │ │ │ ├── index.ts │ │ │ │ └── unit.ts │ │ │ └── vehicle/ │ │ │ ├── fuel.ts │ │ │ ├── index.ts │ │ │ └── type.ts │ │ ├── ka_GE/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ ├── name_pattern.ts │ │ │ │ └── prefix.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ └── prefix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── ko/ │ │ │ ├── animal/ │ │ │ │ ├── bear.ts │ │ │ │ ├── bird.ts │ │ │ │ ├── cat.ts │ │ │ │ ├── index.ts │ │ │ │ ├── pet_name.ts │ │ │ │ └── rabbit.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── company/ │ │ │ │ ├── category.ts │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_name_part.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ └── name.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ └── word/ │ │ │ ├── adjective.ts │ │ │ ├── adverb.ts │ │ │ ├── index.ts │ │ │ └── noun.ts │ │ ├── ku_ckb/ │ │ │ ├── index.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ └── person/ │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── middle_name.ts │ │ │ ├── middle_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── sex.ts │ │ ├── ku_kmr_latin/ │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── metadata.ts │ │ │ └── person/ │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── job_type.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ └── prefix.ts │ │ ├── lv/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ ├── name_pattern.ts │ │ │ │ └── prefix.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── mk/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── nb_NO/ │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ └── index.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── common_street_suffix.ts │ │ │ │ ├── continent.ts │ │ │ │ ├── country.ts │ │ │ │ ├── county.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ ├── street_prefix.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ ├── sex.ts │ │ │ │ ├── suffix.ts │ │ │ │ └── western_zodiac_sign.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ ├── science/ │ │ │ │ ├── chemical_element.ts │ │ │ │ ├── index.ts │ │ │ │ └── unit.ts │ │ │ ├── vehicle/ │ │ │ │ ├── bicycle_type.ts │ │ │ │ ├── fuel.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ └── word/ │ │ │ ├── adjective.ts │ │ │ ├── conjunction.ts │ │ │ ├── index.ts │ │ │ └── interjection.ts │ │ ├── ne/ │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ └── legal_entity_type.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ └── last_name_pattern.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── nl/ │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ ├── product_description.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ └── legal_entity_type.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── hacker/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── index.ts │ │ │ │ ├── noun.ts │ │ │ │ ├── phrase.ts │ │ │ │ └── verb.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── nl_BE/ │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ └── legal_entity_type.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── pl/ │ │ │ ├── animal/ │ │ │ │ ├── horse.ts │ │ │ │ └── index.ts │ │ │ ├── book/ │ │ │ │ ├── author.ts │ │ │ │ ├── format.ts │ │ │ │ ├── genre.ts │ │ │ │ ├── index.ts │ │ │ │ ├── publisher.ts │ │ │ │ ├── series.ts │ │ │ │ └── title.ts │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_prefix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── music/ │ │ │ │ ├── genre.ts │ │ │ │ ├── index.ts │ │ │ │ └── song_name.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── gender.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── sex.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ ├── science/ │ │ │ │ ├── chemical_element.ts │ │ │ │ ├── index.ts │ │ │ │ └── unit.ts │ │ │ └── team/ │ │ │ ├── index.ts │ │ │ ├── name.ts │ │ │ └── prefix.ts │ │ ├── pt_BR/ │ │ │ ├── book/ │ │ │ │ ├── author.ts │ │ │ │ ├── format.ts │ │ │ │ ├── genre.ts │ │ │ │ ├── index.ts │ │ │ │ ├── publisher.ts │ │ │ │ ├── series.ts │ │ │ │ └── title.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_prefix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ ├── sex.ts │ │ │ │ ├── suffix.ts │ │ │ │ └── western_zodiac_sign.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ └── word/ │ │ │ ├── adjective.ts │ │ │ ├── index.ts │ │ │ ├── noun.ts │ │ │ └── verb.ts │ │ ├── pt_PT/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── country.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_prefix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ └── word/ │ │ │ ├── adjective.ts │ │ │ ├── index.ts │ │ │ ├── noun.ts │ │ │ └── verb.ts │ │ ├── ro/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── county.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── ro_MD/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── county.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name_part.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_prefix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── ru/ │ │ │ ├── book/ │ │ │ │ ├── author.ts │ │ │ │ ├── format.ts │ │ │ │ ├── genre.ts │ │ │ │ ├── index.ts │ │ │ │ ├── publisher.ts │ │ │ │ ├── series.ts │ │ │ │ └── title.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ ├── name_pattern.ts │ │ │ │ └── suffix.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── hacker/ │ │ │ │ ├── abbreviation.ts │ │ │ │ ├── adjective.ts │ │ │ │ ├── index.ts │ │ │ │ ├── ingverb.ts │ │ │ │ ├── noun.ts │ │ │ │ ├── phrase.ts │ │ │ │ └── verb.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── middle_name.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── sk/ │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── sl_SI/ │ │ │ ├── index.ts │ │ │ ├── metadata.ts │ │ │ └── person/ │ │ │ ├── bio_part.ts │ │ │ ├── bio_pattern.ts │ │ │ ├── bio_supporter.ts │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── job_area.ts │ │ │ ├── job_descriptor.ts │ │ │ ├── job_title.ts │ │ │ ├── job_title_pattern.ts │ │ │ ├── job_type.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ ├── sex.ts │ │ │ ├── suffix.ts │ │ │ └── western_zodiac_sign.ts │ │ ├── sr_RS_latin/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ └── name.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── sv/ │ │ │ ├── cell_phone/ │ │ │ │ ├── common_cell_prefix.ts │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── common_street_suffix.ts │ │ │ │ ├── country.ts │ │ │ │ ├── county.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ ├── street_prefix.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ └── prefix.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ └── team/ │ │ │ ├── index.ts │ │ │ ├── name.ts │ │ │ └── suffix.ts │ │ ├── ta_IN/ │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ └── metadata.ts │ │ ├── th/ │ │ │ ├── animal/ │ │ │ │ ├── cat.ts │ │ │ │ ├── dog.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_name.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── sex.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── tr/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ ├── product_description.ts │ │ │ │ └── product_name.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ └── prefix.ts │ │ │ └── phone_number/ │ │ │ ├── area_code.ts │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── uk/ │ │ │ ├── company/ │ │ │ │ ├── category.ts │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ ├── street_prefix.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── middle_name.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── ur/ │ │ │ ├── animal/ │ │ │ │ ├── bear.ts │ │ │ │ ├── cow.ts │ │ │ │ ├── crocodilia.ts │ │ │ │ ├── index.ts │ │ │ │ ├── insect.ts │ │ │ │ ├── lion.ts │ │ │ │ └── type.ts │ │ │ ├── app/ │ │ │ │ ├── author.ts │ │ │ │ ├── index.ts │ │ │ │ ├── name.ts │ │ │ │ └── version.ts │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ └── product_name.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── finance/ │ │ │ │ ├── account_type.ts │ │ │ │ ├── index.ts │ │ │ │ └── transaction_type.ts │ │ │ ├── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── country.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── music/ │ │ │ │ ├── genre.ts │ │ │ │ └── index.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ ├── sex.ts │ │ │ │ └── suffix.ts │ │ │ ├── team/ │ │ │ │ ├── creature.ts │ │ │ │ ├── index.ts │ │ │ │ └── name.ts │ │ │ └── vehicle/ │ │ │ ├── bicycle_type.ts │ │ │ ├── fuel.ts │ │ │ ├── index.ts │ │ │ ├── manufacturer.ts │ │ │ ├── model.ts │ │ │ └── type.ts │ │ ├── uz_UZ_latin/ │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ ├── product_description.ts │ │ │ │ └── product_name.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name_part.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ └── person/ │ │ │ ├── bio_parts.ts │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── job_title.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ └── sex.ts │ │ ├── vi/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── name_pattern.ts │ │ │ │ └── prefix.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ └── name.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── yo_NG/ │ │ │ ├── index.ts │ │ │ ├── metadata.ts │ │ │ └── person/ │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ └── last_name_pattern.ts │ │ ├── zh_CN/ │ │ │ ├── airline/ │ │ │ │ ├── airline.ts │ │ │ │ ├── airplane.ts │ │ │ │ ├── airport.ts │ │ │ │ └── index.ts │ │ │ ├── animal/ │ │ │ │ ├── bear.ts │ │ │ │ ├── bird.ts │ │ │ │ ├── cat.ts │ │ │ │ ├── dog.ts │ │ │ │ ├── fish.ts │ │ │ │ ├── horse.ts │ │ │ │ ├── index.ts │ │ │ │ ├── insect.ts │ │ │ │ ├── pet_name.ts │ │ │ │ └── type.ts │ │ │ ├── book/ │ │ │ │ ├── author.ts │ │ │ │ ├── format.ts │ │ │ │ ├── genre.ts │ │ │ │ ├── index.ts │ │ │ │ ├── publisher.ts │ │ │ │ ├── series.ts │ │ │ │ └── title.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ ├── product_description.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── category.ts │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── database/ │ │ │ │ ├── column.ts │ │ │ │ └── index.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── finance/ │ │ │ │ ├── account_type.ts │ │ │ │ ├── credit_card/ │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── mastercard.ts │ │ │ │ │ ├── unionpay.ts │ │ │ │ │ └── visa.ts │ │ │ │ ├── currency.ts │ │ │ │ ├── index.ts │ │ │ │ └── transaction_type.ts │ │ │ ├── food/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── description_pattern.ts │ │ │ │ ├── dish.ts │ │ │ │ ├── dish_pattern.ts │ │ │ │ ├── ethnic_category.ts │ │ │ │ ├── fruit.ts │ │ │ │ ├── index.ts │ │ │ │ ├── ingredient.ts │ │ │ │ ├── meat.ts │ │ │ │ ├── spice.ts │ │ │ │ └── vegetable.ts │ │ │ ├── hacker/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── index.ts │ │ │ │ ├── noun.ts │ │ │ │ ├── phrase.ts │ │ │ │ └── verb.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── continent.ts │ │ │ │ ├── country.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── music/ │ │ │ │ ├── genre.ts │ │ │ │ ├── index.ts │ │ │ │ └── song_name.ts │ │ │ ├── person/ │ │ │ │ ├── bio_part.ts │ │ │ │ ├── bio_pattern.ts │ │ │ │ ├── bio_supporter.ts │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── sex.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ ├── science/ │ │ │ │ ├── chemical_element.ts │ │ │ │ ├── index.ts │ │ │ │ └── unit.ts │ │ │ ├── vehicle/ │ │ │ │ ├── bicycle_type.ts │ │ │ │ ├── fuel.ts │ │ │ │ ├── index.ts │ │ │ │ ├── manufacturer.ts │ │ │ │ └── type.ts │ │ │ └── word/ │ │ │ ├── adjective.ts │ │ │ ├── adverb.ts │ │ │ ├── conjunction.ts │ │ │ ├── index.ts │ │ │ ├── interjection.ts │ │ │ ├── noun.ts │ │ │ ├── preposition.ts │ │ │ └── verb.ts │ │ ├── zh_TW/ │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── sex.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ └── zu_ZA/ │ │ ├── cell_phone/ │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── company/ │ │ │ ├── index.ts │ │ │ └── legal_entity_type.ts │ │ ├── index.ts │ │ ├── internet/ │ │ │ ├── domain_suffix.ts │ │ │ └── index.ts │ │ ├── location/ │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── state.ts │ │ │ └── street_pattern.ts │ │ ├── metadata.ts │ │ ├── person/ │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ └── last_name_pattern.ts │ │ └── phone_number/ │ │ ├── format/ │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ └── index.ts │ ├── modules/ │ │ ├── airline/ │ │ │ └── index.ts │ │ ├── animal/ │ │ │ └── index.ts │ │ ├── book/ │ │ │ └── index.ts │ │ ├── color/ │ │ │ └── index.ts │ │ ├── commerce/ │ │ │ ├── index.ts │ │ │ └── upc-check-digit.ts │ │ ├── company/ │ │ │ └── index.ts │ │ ├── database/ │ │ │ └── index.ts │ │ ├── datatype/ │ │ │ └── index.ts │ │ ├── date/ │ │ │ └── index.ts │ │ ├── finance/ │ │ │ ├── bitcoin.ts │ │ │ ├── iban.ts │ │ │ └── index.ts │ │ ├── food/ │ │ │ └── index.ts │ │ ├── git/ │ │ │ └── index.ts │ │ ├── hacker/ │ │ │ └── index.ts │ │ ├── helpers/ │ │ │ ├── eval.ts │ │ │ ├── index.ts │ │ │ └── luhn-check.ts │ │ ├── image/ │ │ │ └── index.ts │ │ ├── internet/ │ │ │ ├── char-mappings.ts │ │ │ └── index.ts │ │ ├── location/ │ │ │ └── index.ts │ │ ├── lorem/ │ │ │ └── index.ts │ │ ├── music/ │ │ │ └── index.ts │ │ ├── number/ │ │ │ └── index.ts │ │ ├── person/ │ │ │ └── index.ts │ │ ├── phone/ │ │ │ └── index.ts │ │ ├── science/ │ │ │ └── index.ts │ │ ├── string/ │ │ │ ├── index.ts │ │ │ └── uuid.ts │ │ ├── system/ │ │ │ └── index.ts │ │ ├── vehicle/ │ │ │ └── index.ts │ │ └── word/ │ │ ├── filter-word-list-by-length.ts │ │ └── index.ts │ ├── randomizer.ts │ ├── simple-faker.ts │ └── utils/ │ ├── merge-locales.ts │ └── mersenne.ts ├── test/ │ ├── __snapshots__/ │ │ └── locale-data.spec.ts.snap │ ├── all-functional.spec.ts │ ├── docs/ │ │ ├── __snapshots__/ │ │ │ └── format.spec.ts.snap │ │ ├── format.spec.ts │ │ └── versions.spec.ts │ ├── faker.spec.ts │ ├── integration/ │ │ └── modules/ │ │ └── image.spec.ts │ ├── internal/ │ │ ├── __snapshots__/ │ │ │ └── base32.spec.ts.snap │ │ ├── base32.spec.ts │ │ ├── base64.spec.ts │ │ ├── bind-this-to-member-functions.spec.ts │ │ ├── date.spec.ts │ │ ├── group-by.spec.ts │ │ ├── locale-proxy.spec.ts │ │ └── seed.spec.ts │ ├── locale-data.spec.ts │ ├── locale-imports.spec.ts │ ├── modules/ │ │ ├── __snapshots__/ │ │ │ ├── airline.spec.ts.snap │ │ │ ├── animal.spec.ts.snap │ │ │ ├── book.spec.ts.snap │ │ │ ├── color.spec.ts.snap │ │ │ ├── commerce.spec.ts.snap │ │ │ ├── company.spec.ts.snap │ │ │ ├── database.spec.ts.snap │ │ │ ├── datatype.spec.ts.snap │ │ │ ├── date.spec.ts.snap │ │ │ ├── finance.spec.ts.snap │ │ │ ├── food.spec.ts.snap │ │ │ ├── git.spec.ts.snap │ │ │ ├── hacker.spec.ts.snap │ │ │ ├── helpers.spec.ts.snap │ │ │ ├── image.spec.ts.snap │ │ │ ├── internet.spec.ts.snap │ │ │ ├── location.spec.ts.snap │ │ │ ├── lorem.spec.ts.snap │ │ │ ├── music.spec.ts.snap │ │ │ ├── number.spec.ts.snap │ │ │ ├── person.spec.ts.snap │ │ │ ├── phone.spec.ts.snap │ │ │ ├── random.spec.ts.snap │ │ │ ├── science.spec.ts.snap │ │ │ ├── string.spec.ts.snap │ │ │ ├── system.spec.ts.snap │ │ │ ├── vehicle.spec.ts.snap │ │ │ └── word.spec.ts.snap │ │ ├── airline.spec.ts │ │ ├── animal.spec.ts │ │ ├── book.spec.ts │ │ ├── color.spec.ts │ │ ├── commerce.spec.ts │ │ ├── company.spec.ts │ │ ├── database.spec.ts │ │ ├── datatype.spec.ts │ │ ├── date.spec.ts │ │ ├── finance-iban.spec.ts │ │ ├── finance.spec.ts │ │ ├── food.spec.ts │ │ ├── git.spec.ts │ │ ├── hacker.spec.ts │ │ ├── helpers-eval.spec.ts │ │ ├── helpers.spec-d.ts │ │ ├── helpers.spec.ts │ │ ├── image.spec.ts │ │ ├── internet.spec.ts │ │ ├── location.spec.ts │ │ ├── lorem.spec.ts │ │ ├── music.spec.ts │ │ ├── number.spec.ts │ │ ├── person.spec.ts │ │ ├── phone.spec.ts │ │ ├── science.spec.ts │ │ ├── string.spec.ts │ │ ├── system.spec.ts │ │ ├── vehicle.spec.ts │ │ └── word.spec.ts │ ├── require.spec.cts │ ├── scripts/ │ │ └── apidocs/ │ │ ├── .gitignore │ │ ├── __snapshots__/ │ │ │ ├── class.spec.ts.snap │ │ │ ├── method.spec.ts.snap │ │ │ ├── page.spec.ts.snap │ │ │ └── verify-jsdoc-tags.spec.ts.snap │ │ ├── class.example.ts │ │ ├── class.spec.ts │ │ ├── method.example.ts │ │ ├── method.spec.ts │ │ ├── page.spec.ts │ │ ├── utils.ts │ │ └── verify-jsdoc-tags.spec.ts │ ├── setup.ts │ ├── simple-faker.spec.ts │ ├── support/ │ │ ├── seeded-runs.ts │ │ └── times.ts │ ├── utils/ │ │ ├── __snapshots__/ │ │ │ └── mersenne.spec.ts.snap │ │ ├── merge-locales.spec.ts │ │ ├── mersenne-test-utils.ts │ │ └── mersenne.spec.ts │ └── vitest-extensions.ts ├── tsconfig.json ├── tsup.config.ts ├── vitest.config.ts └── vitest.it-config.ts