ffaker 2.0.0 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (75) hide show
  1. checksums.yaml +4 -4
  2. data/Changelog.md +32 -0
  3. data/README.md +7 -6
  4. data/REFERENCE.md +1355 -0
  5. data/Rakefile +6 -6
  6. data/ffaker.gemspec +16 -3
  7. data/lib/ffaker.rb +1 -1
  8. data/lib/ffaker/address_ca.rb +3 -3
  9. data/lib/ffaker/avatar.rb +20 -0
  10. data/lib/ffaker/bacon_ipsum.rb +1 -1
  11. data/lib/ffaker/data/job_cn/job_nouns +300 -0
  12. data/lib/ffaker/data/sport/names +34 -0
  13. data/lib/ffaker/dizzle_ipsum.rb +1 -1
  14. data/lib/ffaker/healthcare_ipsum.rb +1 -1
  15. data/lib/ffaker/hipster_ipsum.rb +1 -1
  16. data/lib/ffaker/html_ipsum.rb +1 -1
  17. data/lib/ffaker/identification_kr.rb +20 -0
  18. data/lib/ffaker/identification_mx.rb +3 -3
  19. data/lib/ffaker/internet.rb +3 -3
  20. data/lib/ffaker/internet_se.rb +1 -1
  21. data/lib/ffaker/job_cn.rb +12 -0
  22. data/lib/ffaker/job_fr.rb +6 -2
  23. data/lib/ffaker/locale.rb +1 -1
  24. data/lib/ffaker/lorem.rb +7 -5
  25. data/lib/ffaker/lorem_ar.rb +1 -1
  26. data/lib/ffaker/lorem_cn.rb +1 -1
  27. data/lib/ffaker/lorem_fr.rb +1 -1
  28. data/lib/ffaker/lorem_kr.rb +1 -1
  29. data/lib/ffaker/movie.rb +6 -0
  30. data/lib/ffaker/phone_number.rb +46 -17
  31. data/lib/ffaker/product.rb +1 -1
  32. data/lib/ffaker/skill.rb +1 -1
  33. data/lib/ffaker/sport.rb +10 -0
  34. data/lib/ffaker/string.rb +22 -11
  35. data/lib/ffaker/utils/array_utils.rb +4 -3
  36. data/lib/ffaker/vehicle.rb +1 -1
  37. data/scripts/reference.rb +89 -0
  38. data/test/test_address_ca.rb +6 -4
  39. data/test/test_array_utils.rb +3 -3
  40. data/test/test_avatar.rb +50 -0
  41. data/test/test_company.rb +8 -6
  42. data/test/test_identification.rb +5 -4
  43. data/test/test_identification_kr.rb +13 -0
  44. data/test/test_internet.rb +4 -0
  45. data/test/test_job.rb +1 -2
  46. data/test/test_job_cn.rb +17 -0
  47. data/test/test_job_fr.rb +4 -7
  48. data/test/test_job_ja.rb +1 -1
  49. data/test/test_job_kr.rb +1 -1
  50. data/test/test_locale.rb +21 -0
  51. data/test/test_lorem_kr.rb +1 -1
  52. data/test/test_movie.rb +8 -0
  53. data/test/test_name.rb +3 -3
  54. data/test/test_name_br.rb +7 -8
  55. data/test/test_name_cs.rb +8 -6
  56. data/test/test_name_de.rb +3 -3
  57. data/test/test_name_fr.rb +15 -17
  58. data/test/test_name_ga.rb +12 -14
  59. data/test/test_name_it.rb +14 -15
  60. data/test/test_name_ja.rb +1 -1
  61. data/test/test_name_mx.rb +82 -80
  62. data/test/test_name_nb.rb +6 -9
  63. data/test/test_name_nl.rb +3 -3
  64. data/test/test_name_ph.rb +12 -2
  65. data/test/test_name_ru.rb +14 -10
  66. data/test/test_name_se.rb +6 -9
  67. data/test/test_name_sn.rb +39 -52
  68. data/test/test_name_th.rb +7 -9
  69. data/test/test_phone_number.rb +9 -0
  70. data/test/test_sports.rb +13 -0
  71. data/test/test_string.rb +26 -16
  72. data/test/test_units.rb +8 -10
  73. data/test/test_units_english.rb +15 -22
  74. data/test/test_units_metric.rb +15 -21
  75. metadata +22 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 862894ba20d39b03c8265bd7198a6844b5080303
4
- data.tar.gz: 2367534621bb52657c10a4cdbc8d868d62d9aa38
3
+ metadata.gz: 50d7c128aed30faa58d228d56df0b50fc24acf06
4
+ data.tar.gz: e8e1fc13fbe9d59fd869d592d35e25f0f1b3b680
5
5
  SHA512:
6
- metadata.gz: 515c5818c9fb8c8f19fa9df9da1db1b01dac1310f80b43c87f5b60a0d12c13c0260998946350ca1dea4b5448482024a2726954cf035cdc18cf599da9719f3dd0
7
- data.tar.gz: b5acad51337d9b91248b57b8330b12cbd9823ae3822e06f4daca6af2d4c9fd6ae79fcd67cb8f95a47bf8da73f4bdb785a5bb032d29ca5e646c49503c22b2d50b
6
+ metadata.gz: 0de7fdd0265dbfad7158bd8ea879013d118fb041925b474e1dbdb128372ad04fc8897b4f5c688a1a8e37a175964d00f5abbe62cacf1279da73a6b3804e6ff2fc
7
+ data.tar.gz: e4a3669a80d74121a4e733e25313a59957bcb97f3c46126924f0051477ef25a90a6117e3f0356811120834cff4dfa9c79966321c732c3ccd34df72b6ab2f534f
@@ -1,8 +1,40 @@
1
+ ## 2.1.0
2
+
3
+ - [#191] - add REFERENCE.md ([@rstacruz])
4
+ - [#193] - fix FFaker::Locale.language throwing errors ([@rstacruz], [#196])
5
+ - [#199] - FFaker::String.from_regexp: implement support for regexp ranges like `/[a-f]/` ([@marocchino], [#200])
6
+ - [#181] - fix FFaker::PhoneNumber.phone_number throwing invalid US phone numbers ([@rstacruz], [#195])
7
+ - [#181] - implement FFaker::PhoneNumber.area_code ([@rstacruz], [#195])
8
+ - [#203] - deprecate FFaker::ArrayUtils.random_pick in favor for Array#sample ([@marocchino])
9
+ - [#211] - add Korean identification support
10
+ - [#212] - add IMEI support
11
+ - [#213] - Fix max length support FFaker::Internet.password ([@anderscarling])
12
+ - many internal library and test suite refactorings
13
+
14
+
15
+ [#181]: https://github.com/EmmanuelOga/ffaker/issues/181
16
+ [#191]: https://github.com/EmmanuelOga/ffaker/issues/191
17
+ [#193]: https://github.com/EmmanuelOga/ffaker/issues/193
18
+ [#195]: https://github.com/EmmanuelOga/ffaker/issues/195
19
+ [#196]: https://github.com/EmmanuelOga/ffaker/issues/196
20
+ [#199]: https://github.com/EmmanuelOga/ffaker/issues/199
21
+ [#200]: https://github.com/EmmanuelOga/ffaker/issues/200
22
+ [#203]: https://github.com/EmmanuelOga/ffaker/issues/203
23
+ [#211]: https://github.com/ffaker/ffaker/pull/211
24
+ [#212]: https://github.com/ffaker/ffaker/pull/212
25
+ [#213]: https://github.com/ffaker/ffaker/pull/213
26
+ [@marocchino]: https://github.com/marocchino
27
+ [@rstacruz]: https://github.com/rstacruz
28
+ [@anderscarling]: https://github.com/anderscarling
29
+
30
+
1
31
  ## 2.0.0
2
32
  - switched faker to ffaker namespace, you should now be able to use
3
33
  faker and ffaker gem together.
34
+
4
35
  ## 1.32.1
5
36
  - set required ruby version for gem
37
+
6
38
  ## 1.32.0
7
39
  - add Korean lorem to API
8
40
  - add 100 canadian largest cities to API
data/README.md CHANGED
@@ -9,10 +9,13 @@
9
9
 
10
10
  ```ruby
11
11
  require 'ffaker'
12
- FFaker::Name.name => "Christophe Bartell"
13
- FFaker::Internet.email => "kirsten.greenholt@corkeryfisher.info"
12
+
13
+ FFaker::Name.name #=> "Christophe Bartell"
14
+ FFaker::Internet.email #=> "kirsten.greenholt@corkeryfisher.info"
14
15
  ```
15
16
 
17
+ **[See more →](REFERENCE.md)**
18
+
16
19
  ## ffaker vs faker
17
20
 
18
21
  The faker and ffaker APIs are mostly the same, although the API on ffaker keeps
@@ -25,8 +28,6 @@ and then
25
28
 
26
29
  require 'ffaker'
27
30
 
28
- instead of "faker" with only one f.
29
-
30
31
  ## ffaker is faster... does it really matter?
31
32
 
32
33
  <b>NO.</b>
@@ -55,8 +56,8 @@ for Faker modules, so if you try to use a constant that is not defined
55
56
  in the module, the
56
57
  [override](https://github.com/EmmanuelOga/ffaker/blob/master/lib/ffaker/utils/module_utils.rb#L9)
57
58
  will look for a data file matching the name of the constant. E.G.: the
58
- first time someone accesses ++FFaker::Name::FIRST_NAMES++, a const of that
59
- name will be set with data from ffaker/data/name/first_names.
59
+ first time someone accesses `FFaker::Name::FIRST_NAMES`, a const of that
60
+ name will be set with data from `ffaker/data/name/first_names`.
60
61
 
61
62
  ## TODO
62
63
 
@@ -0,0 +1,1355 @@
1
+ # FFaker reference
2
+
3
+ * [FFaker::Address](#ffakeraddress)
4
+ * [FFaker::AddressAU](#ffakeraddressau)
5
+ * [FFaker::AddressBR](#ffakeraddressbr)
6
+ * [FFaker::AddressCA](#ffakeraddressca)
7
+ * [FFaker::AddressDA](#ffakeraddressda)
8
+ * [FFaker::AddressDE](#ffakeraddressde)
9
+ * [FFaker::AddressFI](#ffakeraddressfi)
10
+ * [FFaker::AddressFR](#ffakeraddressfr)
11
+ * [FFaker::AddressMX](#ffakeraddressmx)
12
+ * [FFaker::AddressNL](#ffakeraddressnl)
13
+ * [FFaker::AddressSE](#ffakeraddressse)
14
+ * [FFaker::AddressSN](#ffakeraddresssn)
15
+ * [FFaker::AddressUK](#ffakeraddressuk)
16
+ * [FFaker::AddressUS](#ffakeraddressus)
17
+ * [FFaker::Avatar](#ffakeravatar)
18
+ * [FFaker::Lorem](#ffakerlorem)
19
+ * [FFaker::BaconIpsum](#ffakerbaconipsum)
20
+ * [FFaker::Boolean](#ffakerboolean)
21
+ * [FFaker::Color](#ffakercolor)
22
+ * [FFaker::Company](#ffakercompany)
23
+ * [FFaker::CompanyIT](#ffakercompanyit)
24
+ * [FFaker::CompanySE](#ffakercompanyse)
25
+ * [FFaker::Conference](#ffakerconference)
26
+ * [FFaker::CoursesFR](#ffakercoursesfr)
27
+ * [FFaker::Currency](#ffakercurrency)
28
+ * [FFaker::DizzleIpsum](#ffakerdizzleipsum)
29
+ * [FFaker::Education](#ffakereducation)
30
+ * [FFaker::Food](#ffakerfood)
31
+ * [FFaker::Gender](#ffakergender)
32
+ * [FFaker::GenderCN](#ffakergendercn)
33
+ * [FFaker::GenderKR](#ffakergenderkr)
34
+ * [FFaker::Geolocation](#ffakergeolocation)
35
+ * [FFaker::Guid](#ffakerguid)
36
+ * [FFaker::HealthcareIpsum](#ffakerhealthcareipsum)
37
+ * [FFaker::HipsterIpsum](#ffakerhipsteripsum)
38
+ * [FFaker::HTMLIpsum](#ffakerhtmlipsum)
39
+ * [FFaker::Identification](#ffakeridentification)
40
+ * [FFaker::IdentificationES](#ffakeridentificationes)
41
+ * [FFaker::IdentificationESCL](#ffakeridentificationescl)
42
+ * [FFaker::IdentificationESCO](#ffakeridentificationesco)
43
+ * [FFaker::IdentificationKr](#ffakeridentificationkr)
44
+ * [FFaker::IdentificationMX](#ffakeridentificationmx)
45
+ * [FFaker::Internet](#ffakerinternet)
46
+ * [FFaker::InternetSE](#ffakerinternetse)
47
+ * [FFaker::Job](#ffakerjob)
48
+ * [FFaker::JobCN](#ffakerjobcn)
49
+ * [FFaker::JobFR](#ffakerjobfr)
50
+ * [FFaker::JobJA](#ffakerjobja)
51
+ * [FFaker::JobKR](#ffakerjobkr)
52
+ * [FFaker::Locale](#ffakerlocale)
53
+ * [FFaker::LoremAR](#ffakerloremar)
54
+ * [FFaker::LoremCN](#ffakerloremcn)
55
+ * [FFaker::LoremFR](#ffakerloremfr)
56
+ * [FFaker::LoremKR](#ffakerloremkr)
57
+ * [FFaker::Movie](#ffakermovie)
58
+ * [FFaker::Name](#ffakername)
59
+ * [FFaker::NameBR](#ffakernamebr)
60
+ * [FFaker::NameCN](#ffakernamecn)
61
+ * [FFaker::NameCS](#ffakernamecs)
62
+ * [FFaker::NameDA](#ffakernameda)
63
+ * [FFaker::NameDE](#ffakernamede)
64
+ * [FFaker::NameFR](#ffakernamefr)
65
+ * [FFaker::NameGA](#ffakernamega)
66
+ * [FFaker::NameIT](#ffakernameit)
67
+ * [FFaker::NameJA](#ffakernameja)
68
+ * [FFaker::NameKR](#ffakernamekr)
69
+ * [FFaker::NameMX](#ffakernamemx)
70
+ * [FFaker::NameNB](#ffakernamenb)
71
+ * [FFaker::NameNL](#ffakernamenl)
72
+ * [FFaker::NamePH](#ffakernameph)
73
+ * [FFaker::NameRU](#ffakernameru)
74
+ * [FFaker::NameSE](#ffakernamese)
75
+ * [FFaker::NameSN](#ffakernamesn)
76
+ * [FFaker::NameTH](#ffakernameth)
77
+ * [FFaker::NameVN](#ffakernamevn)
78
+ * [FFaker::NatoAlphabet](#ffakernatoalphabet)
79
+ * [FFaker::PhoneNumber](#ffakerphonenumber)
80
+ * [FFaker::PhoneNumberAU](#ffakerphonenumberau)
81
+ * [FFaker::PhoneNumberCU](#ffakerphonenumbercu)
82
+ * [FFaker::PhoneNumberDA](#ffakerphonenumberda)
83
+ * [FFaker::PhoneNumberDE](#ffakerphonenumberde)
84
+ * [FFaker::PhoneNumberFR](#ffakerphonenumberfr)
85
+ * [FFaker::PhoneNumberIT](#ffakerphonenumberit)
86
+ * [FFaker::PhoneNumberKR](#ffakerphonenumberkr)
87
+ * [FFaker::PhoneNumberMX](#ffakerphonenumbermx)
88
+ * [FFaker::PhoneNumberNL](#ffakerphonenumbernl)
89
+ * [FFaker::PhoneNumberSE](#ffakerphonenumberse)
90
+ * [FFaker::PhoneNumberSG](#ffakerphonenumbersg)
91
+ * [FFaker::PhoneNumberSN](#ffakerphonenumbersn)
92
+ * [FFaker::Product](#ffakerproduct)
93
+ * [FFaker::Skill](#ffakerskill)
94
+ * [FFaker::Sport](#ffakersport)
95
+ * [FFaker::SSN](#ffakerssn)
96
+ * [FFaker::SSNMX](#ffakerssnmx)
97
+ * [FFaker::SSNSE](#ffakerssnse)
98
+ * [FFaker::String](#ffakerstring)
99
+ * [FFaker::Time](#ffakertime)
100
+ * [FFaker::Unit](#ffakerunit)
101
+ * [FFaker::UnitEnglish](#ffakerunitenglish)
102
+ * [FFaker::UnitMetric](#ffakerunitmetric)
103
+ * [FFaker::Vehicle](#ffakervehicle)
104
+ * [FFaker::Venue](#ffakervenue)
105
+
106
+ ## FFaker::Address
107
+
108
+ | Method | Example |
109
+ | ------ | ------- |
110
+ | `building_number` | 37858, 5661, 088 |
111
+ | `city` | New Mae, Laurettatown, New Rebeka |
112
+ | `city_prefix` | North, South, West |
113
+ | `city_suffix` | bury, burgh, berg |
114
+ | `country` | Ukraine, Hungary, Congo, The Democratic Republic of The |
115
+ | `country_code` | BY, AW, GW |
116
+ | `neighborhood` | Gates Mills North, Sea Ranch Lakes, Candlewood Country Club |
117
+ | `secondary_address` | Suite 516, Suite 556, Suite 692 |
118
+ | `street_address` | 97194 Wunsch Drive, 3064 Goodwin Ranch, 13282 O'Reilly Crest |
119
+ | `street_name` | Harber Crossing, Klocko Haven, Roob Trail |
120
+ | `street_suffix` | Forest, Ridges, Grove |
121
+ | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
122
+ | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
123
+ | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
124
+ | `us_state` | ❗ *[us_state] is deprecated. For US addresses please use the AddressUS module* |
125
+ | `us_state_abbr` | ❗ *[state_abbr] is deprecated. For US addresses please use the AddressUS module* |
126
+ | `zip_code` | ❗ *[zip_code] is deprecated. For US addresses please use the AddressUS module* |
127
+
128
+ ## FFaker::AddressAU
129
+
130
+ | Method | Example |
131
+ | ------ | ------- |
132
+ | `building_number` | 867, 44576, 247 |
133
+ | `city` | Port Hudsonton, Port Vito, Melanybury |
134
+ | `city_prefix` | Port, South, East |
135
+ | `city_suffix` | side, mouth, borough |
136
+ | `country` | Kiribati, Haiti, Malawi |
137
+ | `country_code` | PG, PY, PA |
138
+ | `full_address` | 5602 Joanny Terrace, Wagga Wagga NSW 2170, 31030 Gusikowski Haven, Darwin NT 7320, 41769 Roxane Courts, Darwin NT 4350 |
139
+ | `neighborhood` | White Oak South of Columbia Pike, Jamaica Estates/Holliswood, Sagaponack Seaside |
140
+ | `postcode` | 2600, 5540, 3300 |
141
+ | `secondary_address` | Suite 115, Apt. 606, Suite 043 |
142
+ | `state` | Australian Capital Territory, South Australia, South Australia |
143
+ | `state_abbr` | WA, ACT, TAS |
144
+ | `street_address` | 2329 Timmothy Motorway, 0794 Quitzon Expressway, 86460 Sauer Track |
145
+ | `street_name` | Okuneva Fords, Lindgren Mews, Kertzmann Ridge |
146
+ | `street_suffix` | Causeway, Meadow, Squares |
147
+ | `suburb` | Port Lincoln, Rockhampton, Braddon |
148
+ | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
149
+ | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
150
+ | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
151
+ | `us_state` | ❗ *[us_state] is deprecated. For US addresses please use the AddressUS module* |
152
+ | `us_state_abbr` | ❗ *[state_abbr] is deprecated. For US addresses please use the AddressUS module* |
153
+ | `zip_code` | ❗ *[zip_code] is deprecated. For US addresses please use the AddressUS module* |
154
+
155
+ ## FFaker::AddressBR
156
+
157
+ | Method | Example |
158
+ | ------ | ------- |
159
+ | `building_number` | 791, 327, 9337 |
160
+ | `city` | Franco da Rocha, Sinop, Atibaia |
161
+ | `city_prefix` | East, South, North |
162
+ | `city_suffix` | mouth, port, burgh |
163
+ | `country` | Lithuania, Antarctica, Ireland |
164
+ | `country_code` | LI, SE, JE |
165
+ | `neighborhood` | phoenix, Pennypack, Greater Las Vegas National |
166
+ | `secondary_address` | Apt. 583, Apt. 960, Apt. 543 |
167
+ | `state` | Tocantins, Amazonas, Rio Grande do Norte |
168
+ | `state_abbr` | MA, RN, RJ |
169
+ | `street` | Rua Pedro Souza, Avenida Fabrícia Costa, Travessa Tertuliano Gomes |
170
+ | `street_address` | 7335 Miller Plaza, 591 Upton Loaf, 056 Justus Roads |
171
+ | `street_name` | Conroy Roads, Hahn Isle, Schneider Pike |
172
+ | `street_prefix` | Alameda, Rua, Alameda |
173
+ | `street_suffix` | Springs, Haven, Prairie |
174
+ | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
175
+ | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
176
+ | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
177
+ | `us_state` | ❗ *[us_state] is deprecated. For US addresses please use the AddressUS module* |
178
+ | `us_state_abbr` | ❗ *[state_abbr] is deprecated. For US addresses please use the AddressUS module* |
179
+ | `zip_code` | 97562-510, 03136-374, 58862-485 |
180
+
181
+ ## FFaker::AddressCA
182
+
183
+ | Method | Example |
184
+ | ------ | ------- |
185
+ | `building_number` | 753, 772, 10767 |
186
+ | `city` | Clarence-Rockland, Baie-Saint-Paul, Baie-Saint-Paul |
187
+ | `city_prefix` | South, West, New |
188
+ | `city_suffix` | ton, shire, mouth |
189
+ | `country` | Comoros, Spain, Micronesia, Federated States of |
190
+ | `country_code` | IM, MD, SR |
191
+ | `neighborhood` | phoenix, Sea Ranch Lakes, East of Telegraph Road |
192
+ | `postal_code` | H4R 5J5, S8J 8T0, Y3Y 2N7 |
193
+ | `province` | Nunavut, Northwest Territories, Newfoundland and Labrador |
194
+ | `province_abbr` | BC, QC, NS |
195
+ | `secondary_address` | Suite 885, Suite 880, Apt. 935 |
196
+ | `street_address` | 4025 Francisco Rapid, 4520 Kallie Pass, 92186 Beer Harbors |
197
+ | `street_name` | Brandon Lights, Mraz Streets, Dudley Junction |
198
+ | `street_suffix` | Cliff, Vista, Manor |
199
+ | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
200
+ | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
201
+ | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
202
+ | `us_state` | ❗ *[us_state] is deprecated. For US addresses please use the AddressUS module* |
203
+ | `us_state_abbr` | ❗ *[state_abbr] is deprecated. For US addresses please use the AddressUS module* |
204
+ | `zip_code` | ❗ *[zip_code] is deprecated. For US addresses please use the AddressUS module* |
205
+
206
+ ## FFaker::AddressDA
207
+
208
+ | Method | Example |
209
+ | ------ | ------- |
210
+ | `building_number` | 86645, 0940, 572 |
211
+ | `city` | Gesten, Egernsund, Lemming |
212
+ | `city_prefix` | West, West, Port |
213
+ | `city_suffix` | port, stad, fort |
214
+ | `country` | Maldives, Antarctica, Vanuatu |
215
+ | `country_code` | GU, PY, IR |
216
+ | `full_address` | Kallerupvej 45 7570 Skørping Nordjylland DANMARK, Kastanjegang 47 3798 Gedser Syddanmark DANMARK, Storemosen 70 9107 Gadbjerg Sjælland DANMARK |
217
+ | `kommune` | Ærø, Helsingør, København |
218
+ | `neighborhood` | Murray Hill, Bushwick South, Mott Haven/Port Morris |
219
+ | `post_nr` | 0229, 2905, 2040 |
220
+ | `region` | Nordjylland, Syddanmark, Nordjylland |
221
+ | `secondary_address` | Apt. 448, Suite 706, Apt. 063 |
222
+ | `state` | Skanderborg, Tønder, Ikast-Brande |
223
+ | `street_address` | Guldalderen 68, Præstemosevej 75, Storengen 96 |
224
+ | `street_name` | Gyvelhegnet, Estland Alle, Folehavevej |
225
+ | `street_suffix` | Park, Pass, Fields |
226
+ | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
227
+ | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
228
+ | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
229
+ | `us_state` | ❗ *[us_state] is deprecated. For US addresses please use the AddressUS module* |
230
+ | `us_state_abbr` | ❗ *[state_abbr] is deprecated. For US addresses please use the AddressUS module* |
231
+ | `zip_code` | 3202, 8407, 4444 |
232
+
233
+ ## FFaker::AddressDE
234
+
235
+ | Method | Example |
236
+ | ------ | ------- |
237
+ | `building_number` | 97050, 0218, 6653 |
238
+ | `city` | Voerde, Schwetzingen, Vallendar |
239
+ | `city_prefix` | New, Port, East |
240
+ | `city_suffix` | side, mouth, fort |
241
+ | `country` | CuraÇao, United Arab Emirates, Mauritania |
242
+ | `country_code` | DJ, AS, RS |
243
+ | `neighborhood` | Olmsted Falls Central, Auburn North, Ocean Parkway South |
244
+ | `secondary_address` | Apt. 349, Suite 344, Suite 700 |
245
+ | `state` | Hamburg, Saarland, Baden-Wuerttemberg |
246
+ | `street_address` | Cathrinehain 165, Jackelinestr. 170, Quincystr. 77 |
247
+ | `street_name` | Jewessstr., Naderweg, Nikostr. |
248
+ | `street_suffix` | Gateway, Spur, Track |
249
+ | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
250
+ | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
251
+ | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
252
+ | `us_state` | ❗ *[us_state] is deprecated. For US addresses please use the AddressUS module* |
253
+ | `us_state_abbr` | ❗ *[state_abbr] is deprecated. For US addresses please use the AddressUS module* |
254
+ | `zip_code` | 94606, 02456, 71942 |
255
+
256
+ ## FFaker::AddressFI
257
+
258
+ | Method | Example |
259
+ | ------ | ------- |
260
+ | `building_number` | 44916, 85983, 3429 |
261
+ | `city` | Nokia, Lahti, Vantaa |
262
+ | `city_prefix` | South, Lake, Lake |
263
+ | `city_suffix` | haven, stad, mouth |
264
+ | `country` | Vanuatu, Malta, Greece |
265
+ | `country_code` | EC, KE, TN |
266
+ | `full_address` | Koskentie 1 b 7, 68724 Hämeenlinna, SUOMI, Kurjenmäentie 5 a, 87494 Haapajärvi, SUOMI, Kujalantie 8, 55528 Kankaanpää, SUOMI |
267
+ | `neighborhood` | Bridesburg, Allegheny West, South of Lake Ave |
268
+ | `random_country` | Chile, Amerikan Samoa, Barbados |
269
+ | `secondary_address` | Suite 126, Suite 105, Suite 755 |
270
+ | `street_address` | Isoniituntie 0 a 6, Urheilutie 3 a 4, Lingontie 1 b |
271
+ | `street_name` | Lepäntie, Niilonpolku, Savikontie |
272
+ | `street_nbr` | 5 b, 4, 7 a |
273
+ | `street_suffix` | Viaduct, Mount, Field |
274
+ | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
275
+ | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
276
+ | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
277
+ | `us_state` | ❗ *[us_state] is deprecated. For US addresses please use the AddressUS module* |
278
+ | `us_state_abbr` | ❗ *[state_abbr] is deprecated. For US addresses please use the AddressUS module* |
279
+ | `zip_code` | 46430, 27620, 73143 |
280
+
281
+ ## FFaker::AddressFR
282
+
283
+ | Method | Example |
284
+ | ------ | ------- |
285
+ | `building_number` | 896, 6379, 138 |
286
+ | `city` | Fort-de-France, Nancy, Agen |
287
+ | `city_prefix` | North, West, New |
288
+ | `city_suffix` | borough, burgh, shire |
289
+ | `country` | Virgin Islands, U.S., Cameroon, Djibouti |
290
+ | `country_code` | FJ, NL, BQ |
291
+ | `full_address` | 6 B bd Henri Aubert 94640 Versailles, 2 T, impasse Lucas Remy, 2B635 Évry, 52 Q, av Paulette Godard, 2991 Saint-Denis |
292
+ | `neighborhood` | South of Bell Road, North Norridge, River Heights |
293
+ | `postal_code` | 4470, 977546, 970601 |
294
+ | `secondary_address` | Apt. 192, Suite 737, Apt. 672 |
295
+ | `street_address` | 9959 T, avenue Andrée Lemonnier, 3 Q, avenue François Alves, 71, boulevard Noël le Rousseau |
296
+ | `street_name` | Myah Fork, Kasey Plaza, Guadalupe Circles |
297
+ | `street_suffix` | Crest, Fort, Stravenue |
298
+ | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
299
+ | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
300
+ | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
301
+ | `us_state` | ❗ *[us_state] is deprecated. For US addresses please use the AddressUS module* |
302
+ | `us_state_abbr` | ❗ *[state_abbr] is deprecated. For US addresses please use the AddressUS module* |
303
+ | `zip_code` | ❗ *[zip_code] is deprecated. For US addresses please use the AddressUS module* |
304
+
305
+ ## FFaker::AddressMX
306
+
307
+ | Method | Example |
308
+ | ------ | ------- |
309
+ | `municipality` | Cazones de Herrera, Tepoztlán, Copándaro |
310
+ | `postal_code` | 44326, 57737, 90948 |
311
+ | `state` | Nayarit, Veracruz, San Luis Potosí |
312
+ | `state_abbr` | COL, HGO, GTO |
313
+ | `zip_code` | 84455, 85501, 38389 |
314
+
315
+ ## FFaker::AddressNL
316
+
317
+ | Method | Example |
318
+ | ------ | ------- |
319
+ | `building_number` | 1077, 10364, 81066 |
320
+ | `city` | Eeneind, Arnemuiden, Den Nul |
321
+ | `city_prefix` | West, Port, West |
322
+ | `city_suffix` | mouth, mouth, view |
323
+ | `country` | Turkey, Philippines, Slovakia |
324
+ | `country_code` | DM, LK, IS |
325
+ | `neighborhood` | Mount Kisco West, Gates Mills North, Rockville East of Hungerford Dr |
326
+ | `postal_code` | 0199 ew, 7746 yx, 5923 fj |
327
+ | `province` | Drenthe, Noord-Brabant, Limburg |
328
+ | `secondary_address` | Suite 631, Suite 999, Apt. 417 |
329
+ | `street_address` | 639 Pieterstraat, 16542 Maudstraat, 23553 Alidastraat |
330
+ | `street_name` | Carrollstraat, Keelingstraat, Brittstraat |
331
+ | `street_suffix` | Path, Points, Cliffs |
332
+ | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
333
+ | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
334
+ | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
335
+ | `us_state` | ❗ *[us_state] is deprecated. For US addresses please use the AddressUS module* |
336
+ | `us_state_abbr` | ❗ *[state_abbr] is deprecated. For US addresses please use the AddressUS module* |
337
+ | `zip_code` | 5571 qz, 2655 qo, 2911 lj |
338
+
339
+ ## FFaker::AddressSE
340
+
341
+ | Method | Example |
342
+ | ------ | ------- |
343
+ | `building_number` | 257, 010, 16574 |
344
+ | `city` | Lysekil, Kristianstad, Örnsköldsvik |
345
+ | `city_prefix` | South, West, North |
346
+ | `city_suffix` | mouth, mouth, stad |
347
+ | `country` | Virgin Islands, British, India, Mali |
348
+ | `country_code` | SC, TC, BJ |
349
+ | `full_address` | Reimersholmsgatan 0, 56 038 Karlstad, SVERIGE, Gustafsborgsvägen 29, 54203 Enköping, SVERIGE, Rädisvägen 2a, 05197 Flen, SVERIGE |
350
+ | `neighborhood` | Schall Circle/Lakeside Green, Cleveland Park, Mott Haven/Port Morris |
351
+ | `random_country` | Nigeria, Nordmarianerna, Zambia |
352
+ | `secondary_address` | Apt. 036, Suite 984, Suite 306 |
353
+ | `street_address` | Gustafsborgsvägen 1a, Textilvägen 526, Högsjövägen 3b |
354
+ | `street_name` | Disavägen, Snoilskyvägen, Kedjevägen |
355
+ | `street_nbr` | 7a, 70, 2b |
356
+ | `street_suffix` | Ford, Field, Passage |
357
+ | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
358
+ | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
359
+ | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
360
+ | `us_state` | ❗ *[us_state] is deprecated. For US addresses please use the AddressUS module* |
361
+ | `us_state_abbr` | ❗ *[state_abbr] is deprecated. For US addresses please use the AddressUS module* |
362
+ | `zip_code` | 42 049, 47755, 96881 |
363
+
364
+ ## FFaker::AddressSN
365
+
366
+ | Method | Example |
367
+ | ------ | ------- |
368
+ | `arrondissement` | Sam Notaire, Yeumbeul Nord, Thiaroye Sur Mer |
369
+ | `building_number` | 97044, 05405, 578 |
370
+ | `city` | Hintzland, Lake Bridgetteside, East Gordonfurt |
371
+ | `city_prefix` | West, Port, East |
372
+ | `city_suffix` | chester, land, town |
373
+ | `country` | Switzerland, New Caledonia, Antarctica |
374
+ | `country_code` | CY, IN, NR |
375
+ | `departement` | Tambacounda, Mbour, nioro du rip |
376
+ | `neighborhood` | Florissant West, Candlewood Country Club, Auburn North |
377
+ | `region` | matam, louga, kedougou |
378
+ | `secondary_address` | Apt. 592, Apt. 868, Suite 216 |
379
+ | `street_address` | 21118 Fay Manor, 674 Bulah Skyway, 88629 Lebsack Cape |
380
+ | `street_name` | Waelchi Spur, Hansen Plain, Diego Streets |
381
+ | `street_suffix` | Harbors, Union, Lakes |
382
+ | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
383
+ | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
384
+ | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
385
+ | `us_state` | ❗ *[us_state] is deprecated. For US addresses please use the AddressUS module* |
386
+ | `us_state_abbr` | ❗ *[state_abbr] is deprecated. For US addresses please use the AddressUS module* |
387
+ | `zip_code` | ❗ *[zip_code] is deprecated. For US addresses please use the AddressUS module* |
388
+
389
+ ## FFaker::AddressUK
390
+
391
+ | Method | Example |
392
+ | ------ | ------- |
393
+ | `building_number` | 26518, 244, 23391 |
394
+ | `city` | West Dolly, Gerlachland, Deckowview |
395
+ | `city_prefix` | North, South, South |
396
+ | `city_suffix` | mouth, fort, ville |
397
+ | `country` | Scotland, Northern Ireland, England |
398
+ | `country_code` | LI, FR, MW |
399
+ | `county` | Tayside, County Tyrone, Central |
400
+ | `neighborhood` | Babylon Bayside, Seven Hills Area, North East Irwindale |
401
+ | `postcode` | BX8 0BS, GB44 7TP, TQ78 3HD |
402
+ | `secondary_address` | Apt. 956, Suite 118, Suite 349 |
403
+ | `street_address` | 64695 Bechtelar Centers, 22618 Aylin Spurs, 8616 Constantin Lane |
404
+ | `street_name` | Jess Pass, Davis Ranch, Bailey Spurs |
405
+ | `street_suffix` | Hill, Forges, Way |
406
+ | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
407
+ | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
408
+ | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
409
+ | `us_state` | ❗ *[us_state] is deprecated. For US addresses please use the AddressUS module* |
410
+ | `us_state_abbr` | ❗ *[state_abbr] is deprecated. For US addresses please use the AddressUS module* |
411
+ | `zip_code` | ❗ *[zip_code] is deprecated. For US addresses please use the AddressUS module* |
412
+
413
+ ## FFaker::AddressUS
414
+
415
+ | Method | Example |
416
+ | ------ | ------- |
417
+ | `building_number` | 34103, 0198, 492 |
418
+ | `city` | West Ociebury, Port Terence, Port Lesley |
419
+ | `city_prefix` | New, North, New |
420
+ | `city_suffix` | furt, borough, berg |
421
+ | `continental_state` | Louisiana, Kansas, Alabama |
422
+ | `continental_state_abbr` | IL, IA, RI |
423
+ | `country` | Guinea, Latvia, Bolivia, Plurinational State of |
424
+ | `country_code` | SX, MG, MU |
425
+ | `neighborhood` | East Renton, Babylon Bayside, Northwoods West |
426
+ | `secondary_address` | Suite 011, Suite 455, Suite 040 |
427
+ | `state` | North Dakota, Massachusetts, West Virginia |
428
+ | `state_abbr` | MS, ND, MO |
429
+ | `state_and_territories_abbr` | IN, WY, CT |
430
+ | `street_address` | 54177 Casey Inlet, 6549 Bella Neck, 92992 Valentina Freeway |
431
+ | `street_name` | Kariane Stream, Tremblay Mountain, Edwin Canyon |
432
+ | `street_suffix` | Ford, Parks, Extensions |
433
+ | `uk_country` | ❗ *[uk_country] is deprecated. For UK addresses please use the AddressUK module* |
434
+ | `uk_county` | ❗ *[uk_county] is deprecated. For UK addresses please use the AddressUK module* |
435
+ | `uk_postcode` | ❗ *[uk_postcode] is deprecated. For UK addresses please use the AddressUK module* |
436
+ | `us_state` | ❗ *[us_state] is deprecated. For US addresses please use the AddressUS module* |
437
+ | `us_state_abbr` | ❗ *[state_abbr] is deprecated. For US addresses please use the AddressUS module* |
438
+ | `zip_code` | 61516-5529, 69414-7920, 22908-4629 |
439
+
440
+ ## FFaker::Avatar
441
+
442
+ | Method | Example |
443
+ | ------ | ------- |
444
+ | `image` | http://robohash.org/quiasintet.png?size=300x300, http://robohash.org/delectusautemet.png?size=300x300, http://robohash.org/iureexaliquam.png?size=300x300 |
445
+
446
+ ## FFaker::Lorem
447
+
448
+ | Method | Example |
449
+ | ------ | ------- |
450
+ | `characters` | fds71va5yuhjdl28701ifedgbgjalr8dq2buu66lgsuuvx26d969vskvoo093yfuv8govmkt32b4ik8myl5jidijlgzfthxcl8wkq045sq4q8bzgzv9h0vnfub8fa1714tw09tga8slqfba5o0e2woird4tv5gpubk5v784tauxz0weate2ayy5u37ly4sa0fh2bho5y4stwzmp3lys6nm3smcpz1fhblj420e3sm9k788p42u3h227vmon4lpp, 5d5kte29tqgbtkd64rthvaooyye9ri5bli1jwy651ykfo4s19zpt17av0no7krm5jy6ehmyo8g4vjmjncje4dnilldrp1xp5ck1cfs0wsbxuoovhg9s51ay9j4ukgyfvuoxccbmaooju25pdg0qkwyzjv7v52uvjrkgb5wi1fle0l31phudm2b7xgz7p6v3zyhhmgjka5txgogjuyrzc2kg5cy059qclsjea1d69p1a18dc2ufitajl753bhpkn, x3o7v39u7433ioat5h7oeo5rhmf2n76hw0iel70y7fu2wkyegxk6rar1luhvjfdgyddaq5mxn50p8k0xovhia0v2de9f6lpeqj7vf20yam1u7qy8xdeyobpf2oxz4kp98g0rdabgwqc092w5rd9879j26tb2ra4lrndztv3ndcrrweamlfl5pvc552wma3rhh1ts93u8ejcj3nsr2usx4fb6yhl0molhoxarwq4y6m815bjs5zlst0gc71dkmux |
451
+ | `paragraph` | Cupiditate omnis expedita cum dolorum. Eum omnis sed sint sunt labore nulla et et. Dignissimos maxime distinctio natus omnis quia. Rerum sed recusandae velit illo itaque dolore., Quis animi aut eos eum. Fugit sed qui corporis autem consequatur eum laboriosam id. Aliquid iure ullam accusantium maxime rerum animi. Et ut vitae sit molestias ea tenetur ut. Numquam velit nostrum eum fugiat., Occaecati reiciendis sit recusandae officiis modi omnis autem. Beatae sit nemo nihil qui deserunt minima. Pariatur doloribus illum voluptas dolor nam. Blanditiis consectetur totam officia dolorum. Cum laudantium aut deserunt perspiciatis eum vel in neque. |
452
+ | `paragraphs` | Fuga officia inventore vel et deleniti repudiandae porro. Et tempora autem inventore facere. Ex est dolores voluptatem voluptatem aut optio ducimus., Et assumenda velit eum praesentium rem. Dolorem et est corporis error distinctio consequatur. Qui enim quis culpa placeat. Et praesentium nostrum inventore non hic aut tenetur., Fugit qui culpa excepturi dicta quasi. Et inventore nesciunt beatae rerum et sed. Et laborum corrupti voluptatibus omnis., Ad et quia sequi est odio omnis. Voluptatem assumenda debitis similique aut quia suscipit. Sunt voluptatem voluptates et aut et recusandae molestias pariatur., Commodi molestiae dolorem aperiam quo doloribus quisquam vel. Vero ratione voluptas ut tempora perferendis facilis rerum deleniti. Soluta architecto illum expedita odio et alias. Est dolorem inventore omnis aut. Perferendis doloremque molestiae quo aut odit., Commodi sunt et vero ut maiores pariatur. Sunt debitis eius aperiam unde architecto. Molestias labore enim eos ex cumque explicabo., Omnis maiores id quam eligendi deserunt dignissimos sed autem. Adipisci voluptatibus magnam itaque tenetur. Illo voluptates earum iste itaque. Maxime voluptas ut iusto occaecati est quasi quam., Omnis minima repellat mollitia alias expedita. Nostrum enim dolore rerum minima mollitia non. Error inventore optio rem sunt neque velit. Consectetur aut dolores consequuntur expedita repellat quo., Quia dolorem necessitatibus non non aliquam. Dicta fuga molestiae recusandae libero consequatur ut. Pariatur temporibus minima odit debitis sit. |
453
+ | `phrase` | Excepturi non est dolore distinctio., Alias ut commodi et occaecati quisquam dolorem qui incidunt., Praesentium nesciunt fugiat ullam excepturi quisquam. |
454
+ | `phrases` | Vitae aspernatur quae beatae qui., Deserunt ea sint excepturi placeat delectus totam nisi., Asperiores voluptatem id eos hic quo error maiores dolorum., Consectetur illo deleniti dignissimos maxime delectus voluptatibus et non., Provident voluptatum sint iste et laborum., Cupiditate enim ducimus fugit eum officiis exercitationem et voluptatem., Sed illum deserunt repellendus dicta dolorem veniam iusto., Dolore recusandae sequi dolorum hic ea quis incidunt quia., Sit ut dolorem vero et velit sunt. |
455
+ | `sentence` | Asperiores molestiae nisi voluptatum sed omnis consequatur id., Aliquam recusandae illo rem maiores atque., Et qui quas soluta nesciunt libero laborum. |
456
+ | `sentences` | Rerum illo est maiores non., Omnis quis eum veritatis dolores aspernatur ipsa natus atque., Ut earum dolorem et fugiat odit non amet., Veniam cupiditate earum nam aut ut vel., Autem magnam quo sint deserunt aut., Laborum voluptate et odit omnis omnis sit quam officia., Eius cumque qui porro ipsum culpa., Molestias culpa sed impedit eligendi qui., Fugit deserunt aut aspernatur inventore voluptates. |
457
+ | `word` | magnam, consequatur, pariatur |
458
+ | `words` | possimus, qui, sed, iure, ipsam, sunt, possimus, odit, fugit |
459
+
460
+ ## FFaker::BaconIpsum
461
+
462
+ | Method | Example |
463
+ | ------ | ------- |
464
+ | `characters` | qqedw1sl7bt3jsv69s1wz3eti369l7bmlcsm6eurng7tmdbf48wmw3k215be34u6p4uru633hl49r0n02ulf004alru4v8jvjyaaer7ebdidodgachlgt5ip0ly651agzqpchnkc3l4miii7jzimxorqva8mik7d6ckwui3dvvy03tm57boebuzmdzfbf0r7a80tmb0uywshceodu2cbezg3gk2d6hh41c7bh2x6h4h6vdiy8uru9hf184l7t9u, oisaazjlrplxggghci2urvljiie2u1jsqwxaseistrjgdboch7rtk1wfpj2goch5l85oqnualggg3q5yvu2aw3q3k332dtiog9w9b42pombmga5x9sjg0u8wy1xjj0y5u0xmoholcc1dujezshs9goay94auhmvg3iggqxh9x4ak7xau4i281gbvsagb4v89876a5262zhhkrd4vcl21mnl7hvsewtqlc0jc2aaqz2bdy2as656ndol5v7rmxns, 1buqbi613do8wp89w3686zr725alo6id27t9arute2uc35rk6wmllld8mg0trhp4lfml8supp6vffxta5rl5eehzo49452yp0qmvoqhxn618hi4f7c75wi9qhnjh2o00ab0dg8c4wfufncd58jo9d39xssgsdujbg4uuntupa3iudddo51oxr997i3ts0hkp7jp4lxxkmmvdii285oxb42k3f9y4aron212xma1966ulk2tsspi87pxymviwa6k |
465
+ | `paragraph` | Pork loin sausage landjaeger pastrami frankfurter boudin beef ribs t-bone. Fatback Kevin biltong tenderloin short loin brisket tri-tip meatball sirloin. Chicken ham hock capicola tail frankfurter pork chop ribeye venison. Turkey prosciutto porchetta pastrami tenderloin ball tip pork loin., Shankle strip steak landjaeger leberkas beef fatback jowl turducken bacon. Pastrami andouille flank swine leberkas. Tongue hamburger swine pork ribeye. Capicola short ribs beef short loin pork loin meatloaf., Cow doner capicola short ribs jowl tongue turducken pig pork loin. Leberkas sirloin beef shankle pancetta corned beef. Tri-tip ham hock fatback frankfurter sirloin landjaeger drumstick chicken. Pork t-bone ball tip corned beef pork loin tri-tip filet mignon andouille pancetta. |
466
+ | `paragraphs` | Shoulder shankle andouille tenderloin turkey. Jowl pancetta tri-tip ribeye pastrami flank. Boudin short ribs t-bone shank leberkas tri-tip tongue. Tail porchetta short loin jerky prosciutto sirloin pork. Strip steak boudin corned beef rump fatback prosciutto pastrami., Frankfurter porchetta filet mignon pancetta fatback pork loin venison flank brisket. Shankle sausage jerky biltong tenderloin beef ribs pig pancetta short ribs. Sausage frankfurter pork chop capicola short loin pig porchetta biltong bresaola. Shankle brisket bresaola chicken boudin ham pork andouille. Pork swine meatloaf sausage pork chop rump boudin., Tenderloin tongue turkey frankfurter short loin jerky rump. Chuck shankle porchetta ground round pig beef t-bone pork loin chicken. Drumstick brisket kielbasa bacon frankfurter tenderloin doner ground round chuck., Shankle sausage tail turducken drumstick porchetta ribeye. Turkey bacon chuck beef ribs chicken ribeye tongue pancetta. Swine shankle meatloaf venison ham hock strip steak., Venison pork beef ribs pork loin ribeye pancetta capicola fatback. Sirloin meatball ball tip beef ribs pork loin corned beef kielbasa chuck. Sausage meatball pork loin fatback jowl flank biltong. Cow kielbasa capicola filet mignon pig ham., Beef tenderloin ribeye landjaeger turducken spare ribs t-bone shank. Chicken brisket corned beef pork loin beef jerky. Salami biltong pork chop ground round drumstick filet mignon bacon., Jowl drumstick pork loin bresaola shankle pastrami prosciutto. Jowl short ribs pancetta meatball tail fatback rump spare ribs filet mignon. Turducken frankfurter Kevin tail swine ground round corned beef boudin. Meatball sausage shoulder cow chicken jerky landjaeger bresaola. Pork belly shank biltong cow pancetta., Pastrami beef rump biltong doner leberkas. Pork pork loin capicola ham hock cow venison. Shankle pork kielbasa ham hock swine jowl short ribs meatball., Sirloin spare ribs bacon leberkas prosciutto meatloaf. Kevin pig shoulder frankfurter shankle ground round biltong fatback. Shank tongue tri-tip salami Kevin venison spare ribs brisket. Hamburger boudin fatback swine ground round. |
467
+ | `phrase` | Chicken shankle prosciutto swine short ribs., Kielbasa bresaola meatball pastrami turducken shoulder chuck brisket., Salami bacon meatball cow kielbasa turkey shankle ham short loin. |
468
+ | `phrases` | Meatloaf rump ball tip tri-tip short ribs., Sausage corned beef doner Kevin ham hock beef ribs rump., Chicken pastrami pork belly pig ham hock chuck pork loin swine., Jerky pork loin tri-tip pastrami kielbasa swine porchetta sausage shoulder., Strip steak salami tongue pig pancetta landjaeger., Cow swine short ribs bresaola chicken pastrami pork chop., Fatback t-bone leberkas brisket ribeye sausage biltong., Venison turducken andouille pork belly ham hock salami pork porchetta biltong., Short ribs pork hamburger tenderloin drumstick ham biltong boudin. |
469
+ | `sentence` | Sausage pig pork loin shankle tri-tip pancetta., Fatback pork chop pork loin sirloin shankle sausage tongue pig., Ribeye biltong rump boudin leberkas doner pork chop porchetta. |
470
+ | `sentences` | Ham hock frankfurter rump landjaeger venison chicken pig., Swine turkey sirloin meatloaf capicola., Flank bacon bresaola short loin chicken tail cow turducken., Bacon ball tip turducken chuck ground round jerky., Capicola flank fatback bacon shankle ground round., Short loin biltong bresaola turkey prosciutto sirloin fatback boudin., Pork meatball salami doner pig pork belly., Beef frankfurter meatball chicken ground round., Jerky salami shank leberkas frankfurter jowl. |
471
+ | `word` | boudin, sirloin, Kevin |
472
+ | `words` | short ribs, pastrami, bresaola, pork, brisket, bacon, swine, jowl, strip steak |
473
+
474
+ ## FFaker::Boolean
475
+
476
+ | Method | Example |
477
+ | ------ | ------- |
478
+ | `maybe` | true, false, true |
479
+ | `random` | true, true, false |
480
+ | `sample` | true, false, false |
481
+
482
+ ## FFaker::Color
483
+
484
+ | Method | Example |
485
+ | ------ | ------- |
486
+ | `name` | teal, brown, aqua |
487
+
488
+ ## FFaker::Company
489
+
490
+ | Method | Example |
491
+ | ------ | ------- |
492
+ | `bs` | target e-business functionalities, brand proactive interfaces, generate scalable architectures |
493
+ | `catch_phrase` | Proactive even-keeled benchmark, Devolved static leverage, Multi-layered next generation superstructure |
494
+ | `name` | Hermiston, Jacobs and Auer, Waters-Adams, Pouros, Lubowitz and Kautzer |
495
+ | `position` | General Department Consultant, Assistant Secretary, Department Manager |
496
+ | `suffix` | Inc, Group, Group |
497
+
498
+ ## FFaker::CompanyIT
499
+
500
+ | Method | Example |
501
+ | ------ | ------- |
502
+ | `name` | Longo S.p.a., Sangiacomo s.n.c., Lionetti s.r.l. |
503
+ | `prefix` | Studio Legale, Studio Tecnico, Studio Tecnico |
504
+ | `suffix` | Ingegneri, s.n.c., s.r.l. |
505
+
506
+ ## FFaker::CompanySE
507
+
508
+ | Method | Example |
509
+ | ------ | ------- |
510
+ | `name` | Satterfield-Abernathy, Weissnat Ab, Turcotte-Stamm |
511
+ | `suffix` | Ab, AB, Ab |
512
+
513
+ ## FFaker::Conference
514
+
515
+ | Method | Example |
516
+ | ------ | ------- |
517
+ | `name` | Reserve Estimation for Unconventional Resources 2012, 2nd Annual Concentrated Photovolatic Summit USA (CPV USA 2010), Open Networking Summit 2012 |
518
+
519
+ ## FFaker::CoursesFR
520
+
521
+ | Method | Example |
522
+ | ------ | ------- |
523
+
524
+ ## FFaker::Currency
525
+
526
+ | Method | Example |
527
+ | ------ | ------- |
528
+ | `code` | XAU, XAG, SYP |
529
+ | `name` | Dalasi, Riel, Rand Namibia Dollar |
530
+
531
+ ## FFaker::DizzleIpsum
532
+
533
+ | Method | Example |
534
+ | ------ | ------- |
535
+ | `characters` | jorccy5j7ech3b2fnc3nb2k47742km0xnj3yne92b93zsvbo00lxp7xofkkl18lhbwmrz74cgnqj4sj6lri9a0ex987nvyup9hi1su81mc2cdtpo6ws53j7gctjj7u66b3p8fnvhxb6vt7pbniqq7nnyfslz3f4u5op7ziqpxkabh9ta6qdrikri9u0thcy9w085jpp24uszrxbq2ke27hh67xgkstbcnarhbopxjyn9qfygml8islctnuhseen, ii3lnhj06d6wcw8q4lz30ceu188sil929v1fzzb7wp77hbhd8hgfdm9z9249d4s31xfqvjb0x7iuynwlw1wejjfcbr693k0ivesw0c50ntgmtiu6sco33wcafaywnti6sqn41hr9hbeiq99n4yvym3i8x4gx8ggho2y47veqchhf5wesfs8wfpp7hyxl28bflegtv9h10ksrz31wu46zdw7i76bxu47c4cxwl3bjd08nrri7oalwm5n2l1kziju, zfhi0gg7o5w2c2hwu7ui4ye0um8phbw4a49j29nwir5jw0kz83bx2mn8kr5fkqc4jevxfpls5ut6huhlpes1qpsszo5lb9zzmfl0tl4cgr9nqrkhuntc0o4shv51se9h17radt1sje3gpstr026uvtdhvm3ionfeat0ox6i7ao61h8jv8epzt20ryo1grraf3mkpznqom0r7232aj524qtq0fboaze0c0h0onnqb1mgvm8q6ywpsg8owucwdmks |
536
+ | `paragraph` | Sippin' on gin and juice plizzay bubbles in the tub every single one if you was me and I was you nothing can save ya everybody got they cups zig zag smoke. Drop it like it's hot Snoopy hizzouse eighty degrees smokin' indo now I'm on parole waddup. For the gs if you was me and I was you Coupe de Ville and my money on my mind the S oh yes., If you was me and i was you smokin' indo Snoopy in tha hizzle everybody got they cups through all the drama fizzle I love my momma. Feel the breeze the dopest hizzouse put ya choppers up with my mind on my money fo shizzle. Recognize hizzouse with my mind on my money feel the breeze gizzo tha dizzle realer the Dogg Pound. The magic johnson of rap smokin' weed if you was me and I was you nothing can save ya and my money on my mind Mr. Buckwort if the ride is more fly, then you must buy. Like every single day waddup how we do it roll with you talk too much drizzle the dopest laid back your chrome., Realer if you was me and I was you Doggfada smokin' weed every single one Coupe de Ville. The magic johnson of rap guess what? realer zig zag smoke televizzle laid back now I'm on parole gold chain smokin' weed. Why is you the diggy at ease Snoop real deal Holyfield the LBC. Nothing can save ya now I'm on parole for the Gs roll with Snoop like every single day realer Doggfada. Your chrome rizzide smokin' indo roll with bubbles in the tub now I'm on parole. |
537
+ | `paragraphs` | If you was me and i was you the LBC at ease bubbles in the tub how we do it nothing can save ya roll with realer. Zig zag smoke smokin' weed rizzide Snoop put ya choppers up. Coupe de ville through all the drama make a few ends put ya choppers up with my mind on my money recognize the diggy bubbles in the tub roll with. Mr. buckwort for the hustlers rizzide fo rizzle realness real deal Holyfield gold chain if you was me and I was you. The diggy if you was me and I was you rolling down the street I love my momma in tha hizzle for the Gs., Fizzle it's 1993 televizzle every single one everybody got they cups. Used to sell loot roll with guess what? at ease everybody got they cups feel the breeze Snoopy. Fo rizzle hizzouse eighty degrees the dopest plizzay if you was me and I was you you talk too much. Long beach drop it like it's hot Snoopy sippin' on gin and juice televizzle may I and my money on my mind your chrome., Through all the drama pizzle and my money on my mind real deal Holyfield guess what? bubbles in the tub. Everybody got they cups in tha hizzle through all the drama fizzle drizzle. Fo rizzle sippin' on gin and juice recognize drizzle make a few ends realer gizzo. How we do it may I nasty for the Gs and my money on my mind., Tha shiznit with my mind on my money smokin' indo if the ride is more fly, then you must buy through all the drama. Zig zag smoke may I Doggfada put ya choppers up like every single day. Pizzle Snoop everybody got they cups real deal Holyfield Mr. Buckwort may I rizzoad rizzide every single one. Televizzle rizzide for the hustlers tha dizzle rolling down the street if you was me and I was you used to sell loot. At ease and my money on my mind bubbles in the tub laid back for the Gs Snoop gold chain., Waddup the diggy your chrome if you was me and I was you why is you fizzle. Hizzouse the S oh yes the dopest your chrome televizzle make a few ends. Roll with fizzle rolling down the street feel the breeze tha shiznit gizzo hizzouse in tha hizzle. Roll with bubbles in the tub televizzle the diggy nothing can save ya. Real deal holyfield waddup every single one make a few ends the Dogg Pound the dopest Long Beach fo rizzle tha dizzle., Fo shizzle every single one roll with at ease nothing can save ya fo rizzle gizzo the Magic Johnson of rap. Realer may I everybody got they cups eighty degrees how we do it Long Beach tha dizzle. I love my momma roll with gold chain make a few ends the dopest drizzle waddup how we do it bionic., The dogg pound Snoopy zig zag smoke like every single day rizzoad why is you. It's 1993 for the hustlers the Dogg Pound at ease fo shizzle. Plizzay tha dizzle if the ride is more fly, then you must buy it's 1993 Snoop. Mr. buckwort Snoopy laid back Doggfada eighty degrees roll with make a few ends real deal Holyfield realness., If you was me and i was you bubbles in the tub put ya choppers up fo rizzle roll with and my money on my mind Snoop through all the drama. Realer through all the drama gizzo the dopest Snoop fizzle fo shizzle. Televizzle recognize real deal Holyfield for the Gs you talk too much rizzoad with my mind on my money. Rizzide roll with fo shizzle the S oh yes eighty degrees why is you waddup. Fizzle at ease make a few ends realer fo rizzle., Coupe de ville real deal Holyfield the dopest feel the breeze hizzouse realer. Waddup like every single day may I pizzle nasty. Roll with and my money on my mind recognize the Magic Johnson of rap realer. If the ride is more fly, then you must buy smokin' weed fo shizzle why is you fizzle now I'm on parole realness. |
538
+ | `phrase` | If the ride is more fly, then you must buy everybody got they cups you talk too much hizzouse bubbles in the tub every single one fizzle., And my money on my mind put ya choppers up the Magic Johnson of rap the dopest real deal Holyfield., Rizzide the Dogg Pound rolling down the street why is you like every single day. |
539
+ | `phrases` | Sippin' on gin and juice tha shiznit Coupe de Ville nasty drizzle in tha hizzle if you was me and I was you for the Gs used to sell loot., Smokin' indo make a few ends roll with you talk too much I love my momma Snoopy., You talk too much nasty laid back bubbles in the tub I love my momma why is you through all the drama., Long beach rolling down the street feel the breeze rizzoad bionic real deal Holyfield., Mr. buckwort smokin' weed may I drizzle in tha hizzle., Nasty Coupe de Ville smokin' weed Doggfada at ease tha dizzle for the hustlers real deal Holyfield through all the drama., Bionic plizzay smokin' weed bubbles in the tub and my money on my mind Doggfada., Nothing can save ya Snoopy Long Beach recognize laid back., If you was me and i was you drop it like it's hot you talk too much Doggfada if the ride is more fly, then you must buy in tha hizzle. |
540
+ | `sentence` | Tha shiznit the dopest Doggfada put ya choppers up everybody got they cups., For the gs recognize if you was me and I was you the Dogg Pound nothing can save ya waddup laid back., In tha hizzle smokin' weed the diggy drizzle the Magic Johnson of rap drop it like it's hot for the Gs. |
541
+ | `sentences` | Rolling down the street it's 1993 recognize nothing can save ya hizzouse how we do it fo rizzle you talk too much zig zag smoke., The diggy laid back for the hustlers Doggfada smokin' indo put ya choppers up pizzle Long Beach the LBC., Realness used to sell loot like every single day if the ride is more fly, then you must buy for the Gs through all the drama waddup gold chain., Sippin' on gin and juice recognize I love my momma put ya choppers up real deal Holyfield Mr. Buckwort used to sell loot if the ride is more fly, then you must buy., How we do it you talk too much Mr. Buckwort Coupe de Ville eighty degrees rolling down the street the Dogg Pound., Doggfada rolling down the street in tha hizzle through all the drama if you was me and I was you everybody got they cups zig zag smoke every single one., Rizzoad the S oh yes nothing can save ya how we do it laid back Snoopy hizzouse., Televizzle every single one the LBC and my money on my mind in tha hizzle., For the hustlers how we do it feel the breeze the LBC bionic everybody got they cups the dopest your chrome. |
542
+ | `word` | nasty, feel the breeze, how we do it |
543
+ | `words` | the S oh yes, gizzo, roll with, sippin' on gin and juice, the dopest, Mr. Buckwort, guess what?, laid back, nasty |
544
+
545
+ ## FFaker::Education
546
+
547
+ | Method | Example |
548
+ | ------ | ------- |
549
+ | `degree` | Bachelor of Arts in Social Studies, Bachelor of Arts in Political Arts, Doctor of Medicine in Human Resource Engineering |
550
+ | `degree_short` | DPhil in Social Economics, MA in Political Management, MD in Medical Science |
551
+ | `major` | Medical Philosophy, Systems Education, Marketing Science |
552
+ | `school` | Hillfield Institution, University of New York, College of Minnesota |
553
+ | `school_generic_name` | South Carolina, Louisiana, Indiana |
554
+ | `school_name` | Northcoast, Larkwood, Redside |
555
+
556
+ ## FFaker::Food
557
+
558
+ | Method | Example |
559
+ | ------ | ------- |
560
+ | `fruit` | Honeydew, Honeydew, Currant |
561
+ | `herb_or_spice` | Cinnamon, Cilantro, Saffron |
562
+ | `ingredient` | Cauliflower, Grouse, Rock melon |
563
+ | `meat` | Moose, Tripe, Goose |
564
+ | `vegetable` | Yardlong bean, Pumpkin, Pumpkin |
565
+
566
+ ## FFaker::Gender
567
+
568
+ | Method | Example |
569
+ | ------ | ------- |
570
+ | `maybe` | male, male, female |
571
+ | `random` | male, male, female |
572
+ | `sample` | female, female, male |
573
+
574
+ ## FFaker::GenderCN
575
+
576
+ | Method | Example |
577
+ | ------ | ------- |
578
+ | `maybe` | 男, 男, 女 |
579
+ | `random` | 男, 男, 女 |
580
+ | `sample` | 男, 男, 男 |
581
+
582
+ ## FFaker::GenderKR
583
+
584
+ | Method | Example |
585
+ | ------ | ------- |
586
+ | `maybe` | 남, 녀, 녀 |
587
+ | `random` | 녀, 녀, 남 |
588
+ | `sample` | 녀, 녀, 녀 |
589
+
590
+ ## FFaker::Geolocation
591
+
592
+ | Method | Example |
593
+ | ------ | ------- |
594
+ | `boxed_coords`(..., ...) | |
595
+ | `lat` | 40.8831107806302, 40.0677174866262, 33.3732084677927 |
596
+ | `lng` | -122.395610510952, -115.120716573, -73.83582 |
597
+
598
+ ## FFaker::Guid
599
+
600
+ | Method | Example |
601
+ | ------ | ------- |
602
+ | `guid` | 999ED50E-70B5-AEA9-F60C-53C4EF3F7D06, 99345774-3845-174A-B8DA-43ED2FB08303, A8C0809B-E934-8D9A-49A7-4E34A98D6CC3 |
603
+
604
+ ## FFaker::HealthcareIpsum
605
+
606
+ | Method | Example |
607
+ | ------ | ------- |
608
+ | `characters` | ndgw94lt4h84dpdy16sikaxbtav6qvkncljby69jl5m891r6wiu6i3ih4l3a38eohnrqccc2n17w56ha9kocal85buq0yad94wfj7s0p5jcnvbfox9lxd4r07orwe97f9x7y3giqzvlx0cme7zis8hs01589v2h9pdv6r4ptu0x2smo691vr6ctkzq0dq5x60pzv12381vg57i9c5f3q77q26pbi56bvsser2sbhgopb858r7q4acy5dkkw0jgo, yya1b99el1q0w9pjl9u8ezzpik72q3fxvu7gpc7voj8p8q8nufqzlvq87yb20agteuxaf8y8bdkchm6zfj3b0x42u1mx93tqr68r49ucswq0653pirw5ccvj2c38jr8t9epl2w82ro6hvit2arb8h5wcbsox6gfjb57vmylscs0bpc62624be8vg8k5a9ujn0mk0vwnu3bpn4jvnrtzrny4ediansvzcbkv0dh4vziiqg77s3ax40ydbetptbqw, 3i5po2wwrx6wr66ubjp5hycwedjrh6pwu6sov46mm5k7zzrrs2108hfrgr6fmzeln24b6lth0nyxdgpycwvgvpajp07lsz9o2orgn60cuuv7aiqbydohzik8ckyxv8w0e84ouayexp7ehif71tzpd3npejbq2tda2ly18p7kio89n6s2jlie3cpmrdkn12xc9hkzlthco55cor77kw746e2rf86mrlmdp4aqfbv9cp6ns97jolu2qmx41imvus4 |
609
+ | `paragraph` | Rider group health plan covered person gag rule laws limited policy utilization review defensive medicine explanation of benefits. Group health plan exclusion period capitation dependent diagnostic related group HIPAA skilled nursing facility co-payment. Case manager fee-for-service eligible dependent well-baby care health reimbursement arrangement portability noncancellable policy. Contract year consolidated omnibus budget reconciliation act defensive medicine open enrollment premium clinical practice guidelines flexible benefit plan. Designated facility EAPs evidence of insurability primary care physician stop-loss provisions service area DRG., Network skilled nursing facility HMO incurral date wellness office visit medical necessity assignment of benefits. Preferred provider organization impaired risk medical necessity claim standard industrial classification network hospital-surgical coverage deductible. Grievance claim PCP preferred provider organization referral flexible benefit plan. Ncqa provider noncancellable policy medicare supplement schedule of benefits and exclusions open enrollment CPT any willing provider laws., Coordination of benefits episode of care claim third-party payer co-insurance. Dependent health maintenance organization medical savings account national association of insurance commissioners coordinated care. Staff model out-of-pocket costs fee schedule HEDIS SIC EOB misrepresentation. |
610
+ | `paragraphs` | Assignment of benefits COBRA deductible skilled nursing facility claim participating provider accumulation period. Sic open enrollment policyholder eligible expenses hospice care HCFA Common Procedure Coding System certificate of coverage NDC. Schedule of benefits and exclusions underwriting certificate of coverage admitting physician pre-certification HEDIS wellness office visit risk clinical practice guidelines., Critical access hospital dependent lapse pre-authorization current procedural terminology. Fee schedule deductible carry over credit major medical general agent lifetime maximum creditable coverage fee-for-service. Assignment of benefits R&amp;C charge national drug code reasonable and customary gatekeeper morbidity concurrent review. Standard industrial classification health care provider broker general agent gag rule laws covered benefit open enrollment medigap insured., Hdhp capitation R&amp;C charge open enrollment contract year high deductible health plan policy year PPO. Network flexible spending account MSA HIPAA policyholder assignment of benefits NDC out-of-pocket maximum. Master policy skilled nursing facility independent practice associations attachment capitation formulary. Lifetime maximum explanation of benefits general agent referral urgent care defensive medicine FSA exclusions and limitations. Gatekeeper critical access hospital reasonable and customary HCPCS MSA SIC., Ndc workers compensation dependent full-time student fee-for-service. Hra renewal covered person third-party payer network provider beneficiary. Major medical EOB flexible benefit plan accredited health maintenance organization insured., Accredited discharge planning DRG state-mandated benefits covered person. Enrollee attachment case manager after care HEDIS centers of excellence admitting physician. Certificate of coverage pre-authorization inpatient care impaired risk independent practice associations first dollar coverage pregnancy care eligible dependent., Msa care plan general agent custodial care preventive care COBRA covered charges/expenses. Fsa network provider PCP health care provider pregnancy care skilled nursing facility broker. Pregnancy care prior authorization qualifying event MSA state insurance department premium enrollee., Any willing provider laws evidence of insurability deductible carry over credit concurrent review waiting period denial of claim. Master policy EAPs full-time student accumulation period enrollee HIPAA independent practice associations policy short-term medical insurance. Free-look period enrollee board certified full-time student preferred provider organization. Cpt referral international classification of diseases, 9th revision, clinical modification icd-9-cm dependent medical savings account out-of-plan centers of excellence NAIC., Standard industrial classification MSA board certified stop-loss provisions medicaid eligible dependent clinical practice guidelines. Health maintenance organization second surgical opinion ASO well-baby care coordinated care. Evidence of insurability incurral date medicare coordination of benefits independent practice associations. Hcpcs national committee for quality assurance health maintenance organization rider exclusion period out-of-pocket maximum CPT PPO denial of claim., Noncancellable policy health insurance portability &amp;amp; accountability act pre-existing condition HSA short-term medical insurance lapse staff model HIPAA. Fee-for-service out-of-pocket maximum renewal agent of record gag rule laws. Misrepresentation HIPAA national committee for quality assurance disenroll health savings account NAIC pre-existing condition well-baby care. Health reimbursement arrangement disenroll HSA capitation EAPs policy year health savings account qualifying event. |
611
+ | `phrase` | Eligible expenses co-insurance formulary health care provider waiting period accumulation period accreditation creditable coverage skilled nursing facility., Urgent care international classification of diseases, 9th revision, clinical modification icd-9-cm disenroll high deductible health plan HDHP., Effective date HSA well-baby care HDHP underwriting. |
612
+ | `phrases` | Ambulatory care state-mandated benefits self-insured preferred provider organization primary care physician noncancellable policy consolidated omnibus budget reconciliation act fee schedule pregnancy care., Discharge planning urgent care IPA national committee for quality assurance co-payment coordinated care pre-existing condition pregnancy care., Pre-existing condition workers compensation grievance pre-certification stop-loss provisions beneficiary., Master policy network exclusion period eligible dependent health insurance portability &amp;amp; accountability act administrative services only R&amp;C charge appeal., Rider HRA ambulatory care health insurance portability &amp;amp; accountability act indemnity health plan workers compensation gatekeeper medical necessity HEDIS., Policyholder standard industrial classification discharge planning hospital care beneficiary ASO PCP co-pay., Co-pay special benefit networks impaired risk hospital-surgical coverage NCQA case management., Out-of-plan DRG guaranteed issue utilization review current procedural terminology indemnity health plan., Managed care noncancellable policy out-of-network health savings account health care provider. |
613
+ | `sentence` | Capitation rider home health care any willing provider laws national association of insurance commissioners cost sharing beneficiary self administered., R&amp;c charge case manager insured critical access hospital PPO accreditation., Pre-admission testing out-of-pocket costs preventive care pre-admission review beneficiary. |
614
+ | `sentences` | Insured capitation denial of claim ancillary services gag rule laws nonrenewable fee schedule formulary., Deductible carry over credit gag rule laws formulary out-of-plan misrepresentation health care provider case manager., Free-look period guaranteed issue disenroll any willing provider laws first dollar coverage., Claim hospital-surgical coverage NAIC covered charges/expenses policyholder international classification of diseases, 9th revision, clinical modification icd-9-cm., Out-of-pocket costs international classification of diseases, 9th revision, clinical modification icd-9-cm health employer data and information set self administered lapse current procedural terminology pre-certification., Independent practice associations eligible expenses home health care self-insured pre-existing condition claim health insurance portability &amp;amp; accountability act., Out-of-network fee schedule beneficiary well-baby care coordinated care R&amp;C charge PPO., Pre-existing condition admitting physician benefit cap accumulation period claim reasonable and customary assignment of benefits covered charges/expenses., Ambulatory care lapse FSA medicare administrative services only formulary denial of claim primary care physician IPA. |
615
+ | `word` | policy, indemnity health plan, reasonable and customary |
616
+ | `words` | health savings account, EOB, exclusion period, HDHP, risk, preventive care, stop-loss provisions, incurral date, fee-for-service |
617
+
618
+ ## FFaker::HipsterIpsum
619
+
620
+ | Method | Example |
621
+ | ------ | ------- |
622
+ | `characters` | m40gsqt6xkofxrkr80m7ooy3k0dj9n5icdts45dglkx4axih4r3kpurafmawf29sryb7oafnzau635yrkompbink764zhewegg9shdefoqndgj5fjlpy3oq8k9lzaudlmkrgyj748lzt6wg1ngy9vy1opb81z8dbx41z29hbl9eycbpm6ew96vhhkkwinqaf1o5r79rwp1etijo657w4jxn7umgkc50bhy6gq50cbcwxdd76chxhwbs2u7b7xjw, 45nnmm6v4k63goto9sl4x05cb4typu3995jx4h55kjf06p1lqwzh35r1yeaw1og8zl19f2wl9h3w6py2y2id3yqcdhigv258flgmi20v8u7hxnvovfzhdg4jrg7yhuixxvvr6id4xe67wrbdnyrst4d2ci4h7n2d2dke649xz6w40l2c1ja4rbdh63k6ds1u26qk8om0532tqxay1rry64jav7ws2xzey791raizoblt8og65k6x4n8fzlqjxro, 1zbzsynjo5a1aap0i3kxyqdc3y4beiyh1yanqb9j2lt0o8ggy46r5lbq45u2l6p51t0oyxmolwqurlproopfn51ikmevuqeamas4justagsnb0k13nq25m5itqy25ht76j3irj4klg22aw557qlsjlrusahdd35ebycfh9q3gkbgcdzkxqkuw8nl56i2noo3tdkdczt7egxxx1e116vi1mvemii0gry9mf1fnqn6dndap337znydrep5os5dk67 |
623
+ | `paragraph` | Four loko Carles bicycle rights mustache American Apparel PBR. Cosby sweater jean shorts gluten-free trust fund skateboard Wes Anderson American Apparel scenester. Beard butcher you probably haven't heard of them keytar art jean shorts food truck., Moon leggings retro raw denim photo booth tattooed fap mixtape. Twee hoodie Marfa wolf artisan Williamsburg. Stumptown cardigan McSweeney's wolf beard viral. Yr irony brunch Banksy ethical single-origin coffee. Vegan craft beer Wayfarers gentrify Williamsburg twee aesthetic Carles., Vegan party bicycle rights VHS yr lo-fi. Iphone blog Portland lo-fi cardigan VHS vegan mlkshk irony. High life craft beer lo-fi next level tattooed chambray etsy mustache VHS. Letterpress chambray twee food truck stumptown. |
624
+ | `paragraphs` | Art Brooklyn Pitchfork synth vegan retro keffiyeh iPhone. Raw denim before they sold out fap brunch Austin bicycle rights. Cred mustache tumblr stumptown gentrify. Mustache yr aesthetic skateboard dreamcatcher blog messenger bag. Tofu gentrify Pitchfork sartorial yr Carles., Hoodie artisan before they sold out +1 cardigan. Single-origin coffee VHS put a bird on it lomo retro farm-to-table before they sold out trust fund irony. Freegan messenger bag viral etsy McSweeney's readymade dreamcatcher Austin VHS. Gentrify lo-fi lomo leggings Williamsburg brunch viral butcher. You probably haven't heard of them irony whatever craft beer tofu., Echo park beard tofu retro Rerry Richardson lo-fi before they sold out vice craft beer. Organic Rerry Richardson next level 8-bit Williamsburg gentrify. Mlkshk PBR wolf American Apparel sartorial. +1 yr craft beer Brooklyn Wayfarers Austin squid vice retro. American apparel dreamcatcher tattooed etsy moon echo park tumblr Cosby Sweater sustainable., Moon next level high life mustache VHS party. Party echo park sustainable moon mustache Wayfarers letterpress. Salvia DIY squid ethical banh mi gluten-free Williamsburg., Marfa fanny pack trust fund bicycle rights jean shorts mixtape single-origin coffee Four Loko vegan. Chambray +1 master cleanse leggings ethical VHS food truck synth. Banh mi yr fanny pack jean shorts messenger bag lomo chambray., Skateboard Carles moon beard whatever cred. Echo park Shoreditch Austin sustainable keffiyeh vinyl. Mcsweeney's yr raw denim next level tofu gentrify. Vice mixtape retro etsy raw denim., Tumblr biodiesel vinyl cred Four Loko brunch lo-fi Carles jean shorts. Yr thundercats Shoreditch scenester butcher squid hoodie. Before they sold out fixie quinoa helvetica fanny pack McSweeney's tofu., Food truck freegan before they sold out you probably haven't heard of them moon squid American Apparel PBR. Butcher jean shorts Marfa ethical organic you probably haven't heard of them mustache. Gluten-free Austin photo booth lo-fi +1 jean shorts PBR craft beer lomo. Biodiesel tattooed lo-fi etsy keffiyeh brunch. Synth jean shorts Williamsburg raw denim hoodie cardigan beard cred., Skateboard whatever ethical Pitchfork Banksy single-origin coffee chambray locavore. Gluten-free cardigan Shoreditch keffiyeh vegan. Vhs aesthetic stumptown echo park squid. |
625
+ | `phrase` | Fixie squid iPhone vice leggings twee Wayfarers fanny pack., Cardigan trust fund locavore art tattooed biodiesel before they sold out whatever., Hoodie master cleanse Rerry Richardson bicycle rights Cosby Sweater +1. |
626
+ | `phrases` | Banh mi next level mixtape farm-to-table helvetica DIY., Aesthetic iPhone tofu sustainable freegan vinyl Wes Anderson scenester., Squid twee party mlkshk +1 farm-to-table Williamsburg., Put a bird on it Cosby Sweater party lo-fi thundercats., Craft beer Portland 8-bit jean shorts +1 put a bird on it photo booth cliche McSweeney's., Scenester cred Shoreditch hoodie cardigan Williamsburg synth party., Artisan DIY Williamsburg tattooed hoodie quinoa., Cred blog vinyl ethical viral Austin retro stumptown lomo., Portland brunch sartorial butcher twee messenger bag single-origin coffee. |
627
+ | `sentence` | Vinyl Shoreditch food truck American Apparel bicycle rights craft beer stumptown Banksy master cleanse., Vice Banksy artisan DIY bicycle rights irony., Lomo cred ethical McSweeney's Shoreditch cardigan beard sustainable hoodie. |
628
+ | `sentences` | Blog locavore put a bird on it Shoreditch party butcher tattooed Cosby Sweater skateboard., Gluten-free skateboard fixie Banksy readymade synth retro cred locavore., Pbr Brooklyn readymade fap dreamcatcher yr +1 tumblr., Aesthetic yr cred thundercats dreamcatcher Wayfarers ethical high life jean shorts., Next level Wayfarers Williamsburg stumptown artisan art iPhone mustache Shoreditch., Jean shorts helvetica Wes Anderson lomo moon., Whatever stumptown chambray synth art Rerry Richardson sustainable mustache vice., Dreamcatcher vinyl jean shorts beard Rerry Richardson wolf keffiyeh Cosby Sweater., Biodiesel DIY fap art tofu iPhone beard irony. |
629
+ | `word` | PBR, PBR, Wayfarers |
630
+ | `words` | messenger bag, Rerry Richardson, vice, raw denim, Carles, banh mi, food truck, farm-to-table, American Apparel |
631
+
632
+ ## FFaker::HTMLIpsum
633
+
634
+ | Method | Example |
635
+ | ------ | ------- |
636
+ | `a` | &lt;a href="#molestiae" title="Illo quis"&gt;Impedit suscipit&lt;/a&gt;, &lt;a href="#libero" title="Occaecati molestiae"&gt;Ipsa amet&lt;/a&gt;, &lt;a href="#labore" title="Temporibus aut"&gt;Alias quaerat&lt;/a&gt; |
637
+ | `body` | &lt;h1&gt;Quas vel&lt;/h1&gt;&lt;table&gt; &lt;thead&gt; &lt;tr&gt; &lt;th&gt;Ea&lt;/th&gt; &lt;th&gt;Sapiente&lt;/th&gt; &lt;th&gt;Doloremque&lt;/th&gt; &lt;th&gt;Veritatis&lt;/th&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;tbody&gt;&lt;tr&gt; &lt;td&gt;Earum&lt;/td&gt; &lt;td&gt;Beatae&lt;/td&gt; &lt;td&gt;Qui&lt;/td&gt; &lt;td&gt;&lt;a href="#earum" title="Minus molestiae"&gt;Doloremque at&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;Nostrum&lt;/td&gt; &lt;td&gt;Itaque&lt;/td&gt; &lt;td&gt;Aliquam&lt;/td&gt; &lt;td&gt;&lt;a href="#reprehenderit" title="Fugit adipisci"&gt;Consequuntur voluptatem&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;Et&lt;/td&gt; &lt;td&gt;Doloremque&lt;/td&gt; &lt;td&gt;Dolor&lt;/td&gt; &lt;td&gt;&lt;a href="#eveniet" title="Alias dolore"&gt;Dolorem corporis&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;/tbody&gt; &lt;/table&gt;&lt;h2&gt;Ex sequi&lt;/h2&gt; &lt;ol&gt;&lt;li&gt;Debitis unde voluptas dolores enim dolor. Consectetur facere commodi animi delectus maiores distinctio nostrum blanditiis.&lt;/li&gt;&lt;li&gt;Praesentium recusandae quisquam eveniet excepturi aut quia. Vitae possimus neque libero iste asperiores. Aspernatur sed sunt eius quia aut ducimus.&lt;/li&gt;&lt;/ol&gt; &lt;blockquote&gt;&lt;p&gt;Accusantium laboriosam esse excepturi vel iusto cupiditate atque dolor. Inventore adipisci velit enim illum accusantium incidunt a. Enim at sit voluptatibus architecto harum quo. Temporibus rerum officiis voluptatem qui tempore.&lt;br&gt;Aliquam aut consequatur quod non quae aliquid aperiam. Voluptatibus hic libero nam tenetur. Molestias fuga corrupti rem et delectus quibusdam ex. Voluptatibus ipsa debitis et dolores esse. Deleniti eum et quo reiciendis eius occaecati officia.&lt;br&gt;Esse qui voluptate consectetur ut. Sed consectetur facilis et cumque ut laudantium. Vel quaerat neque aut dicta. Rerum qui aut ducimus omnis voluptates.&lt;/p&gt;&lt;/blockquote&gt; &lt;h3&gt;Possimus repellat&lt;/h3&gt; &lt;ul&gt;&lt;/ul&gt; &lt;pre&gt;&lt;code&gt; #ad h1 a { display: block; width: 300px; height: 80px; } &lt;/code&gt;&lt;/pre&gt;, &lt;h1&gt;Laborum deserunt&lt;/h1&gt;&lt;p&gt;&lt;a href="#quibusdam" title="Odio iure"&gt;Maxime modi&lt;/a&gt; &lt;strong&gt;Aliquam quibusdam&lt;/strong&gt;. Magni dolorem expedita deserunt voluptatum. Harum pariatur voluptatibus asperiores et sit. Quidem aliquam quia aspernatur porro non consequatur.&lt;/p&gt;&lt;p&gt;&lt;em&gt;Modi reiciendis autem illo aliquid provident. Eaque magni repellat quibusdam quisquam qui occaecati aperiam aut. Doloremque autem quis culpa molestias aut quis. Nisi libero et rerum quam.&lt;/em&gt; Dignissimos accusantium pariatur eaque ad cum. Ut molestiae dolorem eius et doloremque. Odit non enim sunt esse incidunt repellat. &lt;a href="#aliquam" title="Recusandae eos"&gt;Dolor ea&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Tempore est deleniti facere reiciendis et commodi. Expedita qui mollitia dolor ullam asperiores tempora et. Magnam est aperiam velit ullam numquam consequuntur. Quidem voluptatem veniam ut architecto accusamus expedita earum suscipit. Iure illo voluptates blanditiis ut. &lt;em&gt;Doloribus quae sit et accusamus. Cumque ea rem ut ut rerum quia. Aut quam laborum ut possimus velit sequi.&lt;/em&gt; &lt;code&gt;maxime rem&lt;/code&gt;&lt;/p&gt;&lt;table&gt; &lt;thead&gt; &lt;tr&gt; &lt;th&gt;Ut&lt;/th&gt; &lt;th&gt;Qui&lt;/th&gt; &lt;th&gt;Dolorem&lt;/th&gt; &lt;th&gt;Impedit&lt;/th&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;tbody&gt;&lt;tr&gt; &lt;td&gt;Veritatis&lt;/td&gt; &lt;td&gt;Repellat&lt;/td&gt; &lt;td&gt;Minima&lt;/td&gt; &lt;td&gt;&lt;a href="#et" title="Occaecati consectetur"&gt;Est veritatis&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;/tbody&gt; &lt;/table&gt;&lt;h2&gt;Sed officia&lt;/h2&gt; &lt;ol&gt;&lt;li&gt;Quis exercitationem ipsam in omnis explicabo. Libero molestiae ipsum natus voluptas. Magnam delectus sunt voluptatem dolore.&lt;/li&gt;&lt;li&gt;Occaecati voluptatem qui rem voluptatibus incidunt dolores non. Ad praesentium velit aut earum.&lt;/li&gt;&lt;/ol&gt; &lt;blockquote&gt;&lt;p&gt;At et nemo laboriosam itaque vero omnis amet velit. Fuga rerum fugit a tempore fugiat ut. Maiores consequatur iure et totam velit et eius.&lt;br&gt;Eum mollitia voluptatum aliquam ab doloremque. Rerum ut omnis qui ut. Eum quisquam aliquid rerum velit sit et. Libero atque saepe et sunt quas repellendus laudantium a.&lt;br&gt;Velit quae iure accusantium magni sint dicta. Aut nulla impedit accusamus aliquid omnis dignissimos quaerat. Veritatis alias tempora voluptates minus repellendus exercitationem. Ea porro ea quos quidem ex occaecati. Sit beatae et ut molestiae eligendi incidunt deleniti reprehenderit.&lt;/p&gt;&lt;/blockquote&gt; &lt;h3&gt;Enim quia&lt;/h3&gt; &lt;ul&gt;&lt;li&gt;Accusantium excepturi laudantium non consequuntur dolores.&lt;/li&gt;&lt;/ul&gt; &lt;pre&gt;&lt;code&gt; #quod h1 a { display: block; width: 300px; height: 80px; } &lt;/code&gt;&lt;/pre&gt;, &lt;h1&gt;Hic illo&lt;/h1&gt;&lt;p&gt;Similique rerum rem culpa ab facere. Dolorem eum quae itaque incidunt neque sed. Tempora eius iusto debitis molestiae suscipit deserunt autem. Perspiciatis sed perferendis assumenda ut. &lt;code&gt;corrupti dicta&lt;/code&gt; &lt;em&gt;Sapiente reprehenderit id rerum nemo provident vitae voluptatum mollitia. Quisquam odio eum asperiores ut reprehenderit. Omnis deleniti sed molestiae quae. Aut consequuntur non dolorum maxime tempora. Quae et aut odit dicta et hic maiores dolorum.&lt;/em&gt;&lt;/p&gt;&lt;p&gt;Corrupti placeat magni qui molestiae vero voluptate officia. Sed exercitationem quasi qui aut expedita laudantium molestiae. Fugiat qui quidem ea reprehenderit harum autem impedit nesciunt. Quas et cumque et sapiente soluta illo tempora. Voluptas rem possimus cum saepe. Odio explicabo incidunt tempore nam facere qui sint. Enim assumenda sunt hic aut atque. Veritatis eum enim voluptatum illum fuga. Ipsam error quibusdam minima eos accusamus. Aut est deleniti suscipit reprehenderit nihil voluptas. Tempore error nisi nostrum assumenda.&lt;/p&gt;&lt;p&gt;&lt;code&gt;asperiores sed&lt;/code&gt; &lt;em&gt;Aut et aperiam consequuntur ab et. Reiciendis quis blanditiis sit quia. Corrupti nihil omnis non id rerum autem est cumque.&lt;/em&gt; Sed porro reprehenderit occaecati quis. Corporis vitae optio et itaque animi consequuntur veritatis. Et quasi et natus facere sit rerum cumque porro. Officiis delectus tempore alias consequatur provident.&lt;/p&gt;&lt;table&gt; &lt;thead&gt; &lt;tr&gt; &lt;th&gt;Quas&lt;/th&gt; &lt;th&gt;Nisi&lt;/th&gt; &lt;th&gt;Dolor&lt;/th&gt; &lt;th&gt;Sint&lt;/th&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;tbody&gt;&lt;tr&gt; &lt;td&gt;Amet&lt;/td&gt; &lt;td&gt;Magnam&lt;/td&gt; &lt;td&gt;Veritatis&lt;/td&gt; &lt;td&gt;&lt;a href="#ut" title="Consequatur praesentium"&gt;Natus voluptas&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;Corrupti&lt;/td&gt; &lt;td&gt;Consequatur&lt;/td&gt; &lt;td&gt;Laudantium&lt;/td&gt; &lt;td&gt;&lt;a href="#dicta" title="Nobis voluptatem"&gt;Aperiam pariatur&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;Velit&lt;/td&gt; &lt;td&gt;Tenetur&lt;/td&gt; &lt;td&gt;Saepe&lt;/td&gt; &lt;td&gt;&lt;a href="#ratione" title="Omnis sint"&gt;Atque qui&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;/tbody&gt; &lt;/table&gt;&lt;h2&gt;Aperiam a&lt;/h2&gt; &lt;ol&gt;&lt;/ol&gt; &lt;blockquote&gt;&lt;p&gt;Et sunt inventore qui aut. Nostrum excepturi quos voluptate velit. Dolores velit velit qui blanditiis tempore eum corrupti.&lt;br&gt;Dolorem ab sit voluptas vitae. Sint totam architecto sequi beatae. Aperiam ad amet iusto nihil harum aut molestiae. At ea sit quisquam qui.&lt;br&gt;Porro voluptas amet aut quibusdam aliquid illum. Exercitationem aperiam provident sit repellat non. Quae occaecati repellat odio voluptatem modi amet. Recusandae non atque omnis error eum quo ea. Officiis voluptatem dolor perspiciatis rerum dolores neque.&lt;/p&gt;&lt;/blockquote&gt; &lt;h3&gt;Delectus at&lt;/h3&gt; &lt;ul&gt;&lt;li&gt;Recusandae voluptatem cupiditate ducimus quidem. Eum laudantium quis qui deleniti ipsum. Eum ipsam non natus aliquam aspernatur soluta voluptate veniam.&lt;/li&gt;&lt;/ul&gt; &lt;pre&gt;&lt;code&gt; #doloribus h1 a { display: block; width: 300px; height: 80px; } &lt;/code&gt;&lt;/pre&gt; |
638
+ | `dl` | &lt;dl&gt;&lt;dt&gt;Dolore&lt;/dt&gt;&lt;dd&gt;Ut rerum id animi a aut alias dolorum. Cupiditate tempora eos pariatur quae. Perferendis qui ut harum et cupiditate. Dolores voluptatem ipsum cumque veritatis.&lt;/dd&gt;&lt;dt&gt;Est&lt;/dt&gt;&lt;dd&gt;Sed enim et excepturi ipsa dolores autem. Saepe tenetur perspiciatis aut unde dolores iure. Aperiam deserunt quam quidem sit corporis.&lt;/dd&gt;&lt;/dl&gt;, &lt;dl&gt;&lt;dt&gt;Et&lt;/dt&gt;&lt;dd&gt;Et facilis voluptate expedita quod illo qui assumenda nulla. Eligendi impedit esse et voluptatem officia harum. Animi earum laboriosam omnis iste et est dolorem alias. In autem et perspiciatis quis natus odio.&lt;/dd&gt;&lt;dt&gt;Maxime&lt;/dt&gt;&lt;dd&gt;Non velit minima id minus ducimus ut aperiam voluptate. Assumenda doloremque quisquam est nisi facere voluptatem deserunt reprehenderit.&lt;/dd&gt;&lt;/dl&gt;, &lt;dl&gt;&lt;dt&gt;Ullam&lt;/dt&gt;&lt;dd&gt;Id doloremque voluptatum blanditiis provident. Voluptatem sit pariatur velit ab distinctio sed repellat reiciendis. Placeat doloribus beatae nisi non aut sint est qui.&lt;/dd&gt;&lt;dt&gt;Dolorem&lt;/dt&gt;&lt;dd&gt;Ipsam dolorum vero cum dignissimos. Vero ipsa sit veniam eius possimus enim saepe. Perferendis aut nostrum hic explicabo consequatur corrupti.&lt;/dd&gt;&lt;/dl&gt; |
639
+ | `fancy_string` | &lt;strong&gt;Amet praesentium&lt;/strong&gt;. Ea velit est molestiae est quae et occaecati dolorem. Et sit suscipit voluptas qui rerum est quo. Veritatis nesciunt sed maxime tempore aperiam doloribus voluptatem quaerat. Deleniti numquam ut harum consequatur molestiae voluptates quod libero. &lt;code&gt;veritatis ut&lt;/code&gt;, &lt;code&gt;repellat molestiae&lt;/code&gt; Quaerat ut consequuntur et quo asperiores. Qui amet voluptatem earum mollitia qui est perspiciatis doloribus. Et veniam blanditiis impedit voluptas sed. Odio officia autem ut alias recusandae. Quisquam aut ut recusandae cum. &lt;a href="#aspernatur" title="Enim repudiandae"&gt;Eius eaque&lt;/a&gt;, &lt;a href="#sed" title="Nam laborum"&gt;In nesciunt&lt;/a&gt; &lt;em&gt;Sunt molestiae quae nemo voluptatem ut facilis omnis. Ex quas velit nihil saepe. Dolorem incidunt quod accusamus cum ea. Tempora nesciunt officia id nostrum dolor sed non. Esse incidunt earum blanditiis voluptatem deleniti sint aut.&lt;/em&gt; &lt;strong&gt;Officia eligendi&lt;/strong&gt;. |
640
+ | `ol_long` | &lt;ol&gt;&lt;li&gt;Voluptatem a harum ducimus doloribus. Sunt magni cumque aliquid neque quia. Perferendis quasi sint culpa quis laborum sapiente nulla. Eligendi et fuga omnis sed occaecati.&lt;/li&gt;&lt;li&gt;Qui dolor omnis aut iste dolores laborum itaque. Qui molestiae quia aut nisi at fuga.&lt;/li&gt;&lt;li&gt;Modi voluptate et unde blanditiis impedit nemo. A est labore at ratione qui. Suscipit delectus cupiditate deleniti qui.&lt;/li&gt;&lt;/ol&gt;, &lt;ol&gt;&lt;li&gt;Voluptas et repellat perspiciatis cumque aspernatur ut deserunt. Qui labore hic fugiat laudantium eum ab tempora. Qui quae quidem aut vel aliquid autem nam. Ipsam ullam facere id est voluptatem.&lt;/li&gt;&lt;li&gt;Modi et pariatur aut voluptatem sit. Dicta minus quos quaerat repellendus. Hic quos quia sapiente dolorum animi rerum ut harum. Iste perferendis aliquam officia itaque quisquam aut quibusdam omnis.&lt;/li&gt;&lt;li&gt;Eum nobis aliquid dolores iusto dolorem ipsa. Odio impedit aspernatur tempora est. Doloribus quae nam magnam eum quia ab. Quia magni aut accusamus provident illum ut similique.&lt;/li&gt;&lt;/ol&gt;, &lt;ol&gt;&lt;li&gt;Dignissimos mollitia voluptas repellendus molestiae enim inventore corporis. Ex consequatur maxime laborum at sapiente. Vel repellendus consequatur voluptatibus et libero et sunt dolorem. Odio repudiandae sint placeat explicabo est.&lt;/li&gt;&lt;li&gt;Quo quod aut omnis aut. Eligendi impedit similique nobis sit soluta voluptas est voluptates. Qui possimus expedita eum iure dignissimos.&lt;/li&gt;&lt;li&gt;Labore sed est reprehenderit at itaque. Quis consequatur aliquam nihil sed totam aut non eaque. Ut dicta possimus dolor consequatur qui est aliquid commodi. Voluptatem velit hic illo possimus delectus qui repellendus blanditiis.&lt;/li&gt;&lt;/ol&gt; |
641
+ | `ol_short` | &lt;ol&gt;&lt;li&gt;Dolor distinctio modi omnis id ratione.&lt;/li&gt;&lt;li&gt;Vel nam consequuntur et.&lt;/li&gt;&lt;li&gt;Expedita voluptas quo aliquam magnam necessitatibus vitae.&lt;/li&gt;&lt;/ol&gt;, &lt;ol&gt;&lt;li&gt;Laudantium dignissimos natus ab cumque voluptatibus quia.&lt;/li&gt;&lt;li&gt;Sed velit sunt nam deleniti ipsa.&lt;/li&gt;&lt;li&gt;Velit alias itaque excepturi porro maiores sint.&lt;/li&gt;&lt;/ol&gt;, &lt;ol&gt;&lt;li&gt;Tenetur dignissimos recusandae sit est.&lt;/li&gt;&lt;li&gt;Illum ullam ut quia impedit nemo atque.&lt;/li&gt;&lt;li&gt;Repellat et et natus est consequatur voluptates.&lt;/li&gt;&lt;/ol&gt; |
642
+ | `p` | &lt;p&gt;Quos eaque fugiat magni occaecati. Et voluptatem iusto odit minus. Aperiam ex rerum magni officia quae voluptatum earum tempore. Aut rem vel et sit quia. Velit id occaecati dolorum nisi quasi qui.&lt;/p&gt;, &lt;p&gt;Consectetur incidunt cumque iste alias veniam. Quidem et veniam atque odit occaecati et ea maiores. Unde sed laborum rem nesciunt est impedit reprehenderit laudantium.&lt;/p&gt;, &lt;p&gt;Minus voluptas porro illum sunt. Sapiente sed dolor porro ut perferendis. Aliquid maxime qui provident nemo laudantium tenetur aut ut. Vitae est commodi sed ut voluptas qui.&lt;/p&gt; |
643
+ | `table` | &lt;table&gt; &lt;thead&gt; &lt;tr&gt; &lt;th&gt;Quos&lt;/th&gt; &lt;th&gt;Doloribus&lt;/th&gt; &lt;th&gt;Nam&lt;/th&gt; &lt;th&gt;Qui&lt;/th&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;tbody&gt;&lt;tr&gt; &lt;td&gt;Sapiente&lt;/td&gt; &lt;td&gt;Omnis&lt;/td&gt; &lt;td&gt;Consequuntur&lt;/td&gt; &lt;td&gt;&lt;a href="#sed" title="Eum excepturi"&gt;Ducimus quia&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;Totam&lt;/td&gt; &lt;td&gt;Temporibus&lt;/td&gt; &lt;td&gt;Possimus&lt;/td&gt; &lt;td&gt;&lt;a href="#sed" title="Quia at"&gt;Reprehenderit voluptatem&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;Incidunt&lt;/td&gt; &lt;td&gt;Rerum&lt;/td&gt; &lt;td&gt;Sed&lt;/td&gt; &lt;td&gt;&lt;a href="#delectus" title="Tempore consequatur"&gt;Enim fuga&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;/tbody&gt; &lt;/table&gt;, &lt;table&gt; &lt;thead&gt; &lt;tr&gt; &lt;th&gt;A&lt;/th&gt; &lt;th&gt;Necessitatibus&lt;/th&gt; &lt;th&gt;Natus&lt;/th&gt; &lt;th&gt;Id&lt;/th&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;tbody&gt;&lt;tr&gt; &lt;td&gt;Nam&lt;/td&gt; &lt;td&gt;Quibusdam&lt;/td&gt; &lt;td&gt;Deleniti&lt;/td&gt; &lt;td&gt;&lt;a href="#et" title="Ut incidunt"&gt;Dolorem enim&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;Eos&lt;/td&gt; &lt;td&gt;Laborum&lt;/td&gt; &lt;td&gt;Amet&lt;/td&gt; &lt;td&gt;&lt;a href="#quia" title="Fugit et"&gt;Velit dolores&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;Distinctio&lt;/td&gt; &lt;td&gt;Ab&lt;/td&gt; &lt;td&gt;Accusantium&lt;/td&gt; &lt;td&gt;&lt;a href="#eos" title="Et debitis"&gt;Quas dolorem&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;/tbody&gt; &lt;/table&gt;, &lt;table&gt; &lt;thead&gt; &lt;tr&gt; &lt;th&gt;Ut&lt;/th&gt; &lt;th&gt;Quis&lt;/th&gt; &lt;th&gt;Est&lt;/th&gt; &lt;th&gt;Quasi&lt;/th&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;tbody&gt;&lt;tr&gt; &lt;td&gt;Aut&lt;/td&gt; &lt;td&gt;Odio&lt;/td&gt; &lt;td&gt;Rerum&lt;/td&gt; &lt;td&gt;&lt;a href="#itaque" title="Quo et"&gt;Deleniti voluptate&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;Maiores&lt;/td&gt; &lt;td&gt;Rem&lt;/td&gt; &lt;td&gt;Sunt&lt;/td&gt; &lt;td&gt;&lt;a href="#et" title="Id earum"&gt;Delectus explicabo&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;Eveniet&lt;/td&gt; &lt;td&gt;Suscipit&lt;/td&gt; &lt;td&gt;Tenetur&lt;/td&gt; &lt;td&gt;&lt;a href="#reprehenderit" title="Qui necessitatibus"&gt;Aperiam nihil&lt;/a&gt;&lt;/td&gt; &lt;/tr&gt;&lt;/tbody&gt; &lt;/table&gt; |
644
+ | `ul_links` | &lt;ul&gt;&lt;li&gt;&lt;a href="#rem" title="Incidunt"&gt;Doloremque&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="#velit" title="Quo"&gt;Quisquam&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="#error" title="Iste"&gt;Dolorem&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;, &lt;ul&gt;&lt;li&gt;&lt;a href="#dicta" title="Facere"&gt;Quo&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="#ad" title="Qui"&gt;Qui&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="#et" title="Vero"&gt;Sequi&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;, &lt;ul&gt;&lt;li&gt;&lt;a href="#rerum" title="Architecto"&gt;Ipsum&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="#culpa" title="Provident"&gt;Fuga&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="#harum" title="Velit"&gt;Ea&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt; |
645
+ | `ul_long` | &lt;ul&gt;&lt;li&gt;Aut vitae ut aut sapiente cupiditate. Commodi et similique quidem aliquam consectetur.&lt;/li&gt;&lt;li&gt;Illo vero unde asperiores aut possimus amet quam. Et nostrum perspiciatis voluptate id pariatur vitae est. Fugiat ab distinctio ut deleniti nobis sed. Qui sunt dolores aperiam adipisci nostrum sed.&lt;/li&gt;&lt;li&gt;Dolore aut ad saepe accusantium beatae repellat aperiam. Sed saepe nam deserunt quibusdam porro.&lt;/li&gt;&lt;/ul&gt;, &lt;ul&gt;&lt;li&gt;Amet fugiat accusamus ullam in. Incidunt vitae minima aliquid excepturi quia sit enim quia. Impedit dicta nihil quidem suscipit reprehenderit hic. Tenetur numquam et ex voluptatum harum pariatur.&lt;/li&gt;&lt;li&gt;Similique sed odit quo quidem eaque eius. Aut voluptates dignissimos dicta veniam odio excepturi quasi. Placeat architecto vero id quia libero voluptatibus quaerat.&lt;/li&gt;&lt;li&gt;Vitae accusantium deserunt eos quibusdam. Nostrum neque odio adipisci cum tempore qui veniam. Omnis fugiat quam sed ad. Ut et sit omnis quia.&lt;/li&gt;&lt;/ul&gt;, &lt;ul&gt;&lt;li&gt;Beatae vel qui perspiciatis fugiat mollitia asperiores. Iste et et nihil magnam dolorum sint ipsam ducimus.&lt;/li&gt;&lt;li&gt;Odit neque aut ut excepturi quod itaque commodi. Similique et reiciendis harum ipsum voluptatem totam. Tempore ratione id consequuntur incidunt suscipit.&lt;/li&gt;&lt;li&gt;Officia dolorum aut placeat vitae quidem impedit ullam quos. Nam numquam eos esse placeat voluptatum dolor. Sint dicta quod commodi deleniti.&lt;/li&gt;&lt;/ul&gt; |
646
+ | `ul_short` | &lt;ul&gt;&lt;li&gt;Sed sunt consequatur aut animi.&lt;/li&gt;&lt;li&gt;Illum sit eius vitae unde.&lt;/li&gt;&lt;li&gt;Et quas perspiciatis.&lt;/li&gt;&lt;/ul&gt;, &lt;ul&gt;&lt;li&gt;Aut adipisci ratione aut.&lt;/li&gt;&lt;li&gt;Consectetur nostrum soluta odit fugiat ducimus impedit.&lt;/li&gt;&lt;li&gt;Aut sapiente est.&lt;/li&gt;&lt;/ul&gt;, &lt;ul&gt;&lt;li&gt;Delectus pariatur dolorem id in non.&lt;/li&gt;&lt;li&gt;Cum odit ut consequatur blanditiis repellat.&lt;/li&gt;&lt;li&gt;Nam ut aspernatur libero esse quidem.&lt;/li&gt;&lt;/ul&gt; |
647
+
648
+ ## FFaker::Identification
649
+
650
+ | Method | Example |
651
+ | ------ | ------- |
652
+ | `drivers_license` | T093-150-44-439-6, K611-155-46-293-2, Z707-367-77-822-7 |
653
+ | `ethnicity` | Caucasian, Prefer not to respond, Caucasian |
654
+ | `gender` | Male, Female, Male |
655
+ | `ssn` | 122-82-7786, 877-51-7551, 923-57-3440 |
656
+
657
+ ## FFaker::IdentificationES
658
+
659
+ | Method | Example |
660
+ | ------ | ------- |
661
+ | `gender` | Mujer, Hombre, Hombre |
662
+
663
+ ## FFaker::IdentificationESCL
664
+
665
+ | Method | Example |
666
+ | ------ | ------- |
667
+ | `gender` | Mujer, Mujer, Hombre |
668
+ | `rut` | 24307230-1, 1001706-8, 1654820-0 |
669
+
670
+ ## FFaker::IdentificationESCO
671
+
672
+ | Method | Example |
673
+ | ------ | ------- |
674
+ | `blood_type` | O+, O-, O+ |
675
+ | `driver_license_category` | B1, B3, B2 |
676
+ | `drivers_license` | 717145548201, 3072328, 33820691 |
677
+ | `expedition_date` | 2012-04-18, 2013-01-01, 2010-03-27 |
678
+ | `gender` | Hombre, Hombre, Mujer |
679
+ | `id` | 31630614, 7116062019656, 1032689398 |
680
+
681
+ ## FFaker::IdentificationKr
682
+
683
+ | Method | Example |
684
+ | ------ | ------- |
685
+ | `rrn` | 840609-2588404, 722003-1797672, 741206-1326457 |
686
+
687
+ ## FFaker::IdentificationMX
688
+
689
+ | Method | Example |
690
+ | ------ | ------- |
691
+ | `curp` | XOZM131124HGTHFYR9, DACF991109HMNWXYW0, CENU021114HVZLPC43 |
692
+ | `rfc` | ENM8309088W6, LEEP781017QNL, LART750219MW0 |
693
+ | `rfc_persona_fisica` | HEYF730918UFB, XITN060603WJ5, RUAF061113MBN |
694
+ | `rfc_persona_moral` | BST720115QB8, BNT130128ZI3, JFP920529ZEF |
695
+
696
+ ## FFaker::Internet
697
+
698
+ | Method | Example |
699
+ | ------ | ------- |
700
+ | `disposable_email` | addison@binkmail.com, jamal@safetymail.info, lee@suremail.info |
701
+ | `domain_name` | greenholt.info, parkerbraun.biz, effertz.com |
702
+ | `domain_suffix` | name, info, us |
703
+ | `domain_word` | mcculloughframi, blick, weimann |
704
+ | `email` | osvaldo_schiller@sawayn.co.uk, berry_wehner@cruickshank.info, meredith_lemke@wintheisermcclure.co.uk |
705
+ | `free_email` | lori_rutherford@hotmail.com, jacinthe@hotmail.com, guadalupe_friesen@hotmail.com |
706
+ | `http_url` | http://oreilly.name, http://larkin.name, http://gislasonveum.info |
707
+ | `ip_v4_address` | 3.101.206.116, 40.33.11.103, 235.105.209.9 |
708
+ | `password` | saepeautassumend, etullammollitia, explicaboconsequ |
709
+ | `safe_email` | vada@example.com, jaqueline_moen@example.com, sunny@example.org |
710
+ | `slug` | sunt-adipisci, voluptatem-facilis, sint-et |
711
+ | `uri`(...) | |
712
+ | `user_name` | troy_bogisich, alexanne_kirlin, conrad |
713
+
714
+ ## FFaker::InternetSE
715
+
716
+ | Method | Example |
717
+ | ------ | ------- |
718
+ | `company_name_single_word` | Torp-Dickinson, Doyle, Grimes, |
719
+ | `disposable_email` | gerd_dicki@spamherelots.com, fredrik_damore@suremail.info, eva.stiedemann@spamherelots.com |
720
+ | `domain_name` | mcclure.com, mayertquitzon.se, leffler.nu |
721
+ | `domain_suffix` | nu, se, com |
722
+ | `domain_word` | bartolettibechtelar, barrowsmills, barrows |
723
+ | `email` | lisbeth.morissette@mertznienow.nu, rune@murphy.se, oskarjanolof_dibbert@schamberger.nu |
724
+ | `free_email` | georg@spray.se, filip.schowalter@gmail.com, allan_haley@yahoo.com |
725
+ | `http_url` | http://moorewisoky.se, http://wisoky.nu, http://bailey.nu |
726
+ | `ip_v4_address` | 169.246.143.172, 200.130.73.149, 211.90.20.38 |
727
+ | `join_to_user_name`(...) | |
728
+ | `login_user_name` | berit, malinweber, erik_quigley |
729
+ | `password` | nihileaquesuscip, sitenimeveniet, nisivoluptascupi |
730
+ | `safe_email` | martin_bahringer@example.org, anita@example.net, ingemar@example.com |
731
+ | `slug` | veritatis_officiis, tenetur-blanditiis, sunt_nobis |
732
+ | `uri`(...) | |
733
+ | `user_name` | kerstin, david.gaylord, alexandra_bosco |
734
+ | `user_name_from_name`(...) | |
735
+ | `user_name_random` | erika_boyle, elias_paucek, kristina.mcdermott |
736
+ | `user_name_variant_long` | agneta_mertz, linna.jenkins, rosemarie.lindgren |
737
+ | `user_name_variant_short` | hans, carina, peringemar |
738
+
739
+ ## FFaker::Job
740
+
741
+ | Method | Example |
742
+ | ------ | ------- |
743
+ | `title` | Senior Group Strategist, Dynamic Metrics Assistant, International Web Assistant |
744
+
745
+ ## FFaker::JobCN
746
+
747
+ | Method | Example |
748
+ | ------ | ------- |
749
+ | `title` | 护师, 市场顾问, 鞋匠 |
750
+
751
+ ## FFaker::JobFR
752
+
753
+ | Method | Example |
754
+ | ------ | ------- |
755
+ | `title` | expert de la protection civile, superviseur associé des services techniques, directeur des opérations associé du contrôle technique |
756
+
757
+ ## FFaker::JobJA
758
+
759
+ | Method | Example |
760
+ | ------ | ------- |
761
+ | `title` | スポーツインストラクター, パタンナー, 気象予報士 |
762
+
763
+ ## FFaker::JobKR
764
+
765
+ | Method | Example |
766
+ | ------ | ------- |
767
+ | `title` | 화학 연구원, 석유 및 화학물 가공장치 조작원, 통역가 |
768
+
769
+ ## FFaker::Locale
770
+
771
+ | Method | Example |
772
+ | ------ | ------- |
773
+ | `code` | CS, SW, KL |
774
+ | `language` | Setswana, Tegulu, Kannada |
775
+
776
+ ## FFaker::LoremAR
777
+
778
+ | Method | Example |
779
+ | ------ | ------- |
780
+ | `paragraph` | الساحة غير شعار به،. لم وعزّزت كلّ مدن, عن ساعة بقسوة أم الأوربيين. أفاق عن هو, الشطر ثم كلّ., انه, الإستسلام الدمج الرئيسية. مارد الشهيرة بلا لم المنتصرة مرمى روسية والديون. قوات إيو فكانت البشريةً. تسبب والفرنسي نورماندي الأوروبيّون عن حول الأعمال عدد. النزاع جمعت تحرّك حيث باستسلام., الدمج وباءت قهر أن تكتيكاً لان فكانت. ثم أفاق حول الا. و فعل, اسبوعين لم, الساحة سياسة. |
781
+ | `paragraphs` | كلا مساعدة تحت دارت قادة اتّجة أن الرئيسية حكومة. إذ هذا بالمحور ان مليون بالرغم غرّة، ماذا بـ. من إيو تونس الثالث والديون. بلا استولت مع ومضى الإحتفاظ إذ فقد بالقنابل وحرمان. العناد واتّجه دول, غير قد لم حين مع,., الصينية كل, انه, العصبة أن كل, وتتحمّل, الحكم. الله الا بداية غريمه الساحة تعداد علاقة مقاطعة كل. قِبل لم أجزاء, خصوصا الفترة. حتى معزّزة أحدث الإستسلام التجارية وبحلول الأبرياء., ضرب بـ قصف, جوي بتخصيص انه,. تلك أن تطوير به، لم المسرح و. بشكل مارد بلا منشوريا لعدم مهانة الصفحات ومن وصافرات., حيث وضم انتهت جُل, أم هو. تعداد ستالينجراد بل وباءت لان عدم عدم الحكم كلّ. سقوط الولايات من قبل وقوعها، أفاق. الدّفاع الدولارات قد المحيط. بتحدّي كلّ, فكانت ستالينجراد المبرمة., شبح سياسة كل أما أوراقهم لم. يذكر ثم المدنيين الى أخر تم. ألماني, بحث يذكر حول المتساقطة،, والحلفاء وباستثناء. مكن الفرنسية الجديدة، ما. والروسية في, الأوضاع ومن بها انتباه أحدث يذكر اعتداء., ما لها , قد لألمانيا الشمل بل,. تكاليف باستسلام الأوضاع عدم. بحق فكانت بل, عن عن أن., والفلبين بأذى مسرح والفرنسي المبرمة بالمحور. بـ وتتحمّل كل التكاليف وانتهاءً الفترة شمال الحلفاء. تم أساسي تكاليف إحتار بهيئة لم. وحتّى فاتّبع ثم البرية ألمانيا وصافرات أن السيء., حول بقسوة ما, دول مع الياباني و حالية استعملت. الإنذار، مع يبق, يتسنّى يتعلّق أن, مارد. تسبب سقطت شيء, فبعد ما لمّ جوي المعركة،. سقطت بالرغم الأمريكية النازيين ولم شبح. ستالينجراد ألمانيا عام لليابان., مع, ما والديون تكتيكاً ما حدة حيث. فقد كل حدى المتحدة, قد وجهان الأولى. العناد غريمه لم وبالرغم المشترك وفرنسا والعتاد فاتّبع. |
782
+ | `phrase` | تزامناً تعد الا عام حيث أم, اعلان بـ, الإتفاقية., مكّن بقيادة موالية المزيفة وبدون حيث به، وباءت., لمّ علاقة لم في,. |
783
+ | `phrases` | فاتّبع يبق و والعتاد في, التي جديدة., مشارف أفاق نتيجة هذه., الأولى واستمرت وحرمان لم ما, البشريةً., هو الحرب بالمحور دول, ستالينجراد تم اليميني., عرض ألمانيا الفترة أما قد هذه وبالرغم جسيمة., وعزّزت جسيمة أي إنطلاق كلّ., في, اعتداء بشكل النفط, نفس المعاهدات بـ., بالرّغم الحرب أم الأوضاع عدم الإستسلام لم أم, كل., أوراقهم كما باستسلام الى و استطاعوا وباءت. |
784
+ | `sentence` | السفن بل ان كلا الإثنان., حين الطريق ضمنها إستسلاماً إذ إستمات البشريةً غير., قتيل، باستحداث غزو الأولى. |
785
+ | `sentences` | بالقصف المحيط ويكيبيديا، حدة كلا, حالية ولم غرّة،., مع التجارية الامم فصل وضم نورماندي ما, الربيع،., استعملت فعل, بل لعدم موسوليني بحق., المقاومة ذلك إذ, وتم فصل., يتبقّ لبولندا، لإنعدام المحيط و., تعديل قام بل اسبوعين إعلان وجهان., المانيا قام تزامناً في قام., واتّجه حالية مع, انتهت على قوات إستسلاماً الصفحات تكاليف., إذ تشيرشل بل تم أضف, مع ما, كلّ لإعادة. |
786
+ | `word` | أوراقهم, أوراقهم, الأوربيين |
787
+ | `words` | البشريةً, عدد, وفنلندا, ساعة, وباستثناء, لم, إبّان, وفرنسا, الله |
788
+
789
+ ## FFaker::LoremCN
790
+
791
+ | Method | Example |
792
+ | ------ | ------- |
793
+ | `paragraph` | 莺歌燕舞一触即发赞叹不已不吵不闹琳琅满目嚎啕大哭吼两全其美悠然自得, 生气勃勃琳琅满目四分五裂不计其数管中窥豹千锤百炼一本万利, 和风拂面嚎啕大哭三思而行波浪滚滚空前绝后, 十万火急云浪滚滚各抒己见千锤百炼不干不净万紫千红张口结舌交头接耳万众一心, 一手遮天车轮滚滚无牵无挂时上时下头重脚轻犹豫不决咕咚。, 泪如雨下牛马不如惊恐万状牛头马面交头接耳, 操之过急五彩缤纷千山万水震天动地, 咕咚绵绵细雨七高八低拳打脚踢, 无影无踪五谷丰登千言万语九牛一毛不吵不闹俯视霎时间燃眉之急, 流星赶月哗哗啦啦时高时低风和日丽和好如初雪花飞舞于心不安。, 小心翼翼天诛地灭流星赶月半明半昧看望果实累累十万火急汹涌澎湃, 心旷神怡静思默想月白风清金光万道一泻千里眉清目秀, 全神贯注五体投地银妆素裹四分五裂精益求精闻名天下不吵不闹细雨如烟, 无忧无虑秋雨绵绵七拼八凑激动不已浩浩荡荡拾金不昧大汗淋漓悔恨交加, 难舍难分壮志凌云鸦雀无声轻风徐徐。 |
794
+ | `paragraphs` | 白纸黑字观察行云流水莺歌燕舞红通通十分可恶有名无实一目十行, 黄澄澄狂风暴雨有气无力十指连心, 前赴后继龙争虎斗火红瞬息万变不伦不类四面楚歌红彤彤嚷, 不闻不问牛头马面水帘悬挂瞪, 粉妆玉砌象牙白语气坚定一箭双雕热泪盈眶。, 不闻不问可憎可恶嚎叫凶多吉少忐忑不安绵绵细雨嘶无穷无尽, 去世杀鸡儆猴天老地荒天高云淡七零八落秋月似钩震天动地泪流满面嗖嗖, 顷刻间暑气逼人声名狼籍秋高气爽胆小如鼠闷闷不乐万家灯火, 闷闷不乐千奇百怪人山人海啼喜怒哀乐, 前呼后拥九鼎一丝瞪去世。, 白茫茫去世日月如梭提心吊胆自说自话万里无云移步换影, 昂首阔步和好如初天罗地网天高云淡精益求精梨黄, 晚风习习绞尽脑汁万丈瀑布桃红柳绿哗啦火冒三丈吱呀, 牛头马面黑白分明交头接耳万紫千红语气坚定一诺千金铺天盖地首字正腔圆, 春暖花开危峰兀立雪花飞舞赤日炎炎乘热打铁白璧无瑕狗尾续貂四面八方半明半昧。, 惊惶失措昂首阔步东鳞西爪洁白如玉愁眉苦脸叹为观止急急忙忙一鸣惊人龙马精神, 心灰意冷五湖四海啼枣红心直口快前呼后拥九牛一毛泪如泉涌怒发冲冠, 无忧无虑铿锵有力暑气逼人不胜枚举三生有幸早出晚归秋雨绵绵, 金灿灿小心翼翼亡羊补牢有气无力火冒三丈虎啸龙吟讲忧愁不安。, 碧波荡漾顾虑重重成千上万语气坚定五花八门望女成凤生死存亡, 生龙活虎五花八门两败俱伤赤日炎炎杯弓蛇影雪花如席, 雪飘如絮悔恨交加冰清玉洁星月如钩青红皂白叮叮咚咚微微一笑桃红柳绿。, 绵绵细雨三头六臂生龙活虎乌云翻滚勃然大怒谈论, 七高八低不清不楚借尸还魂绵绵细雨东拉西扯暮色苍茫, 艳阳高照万众一心慷慨激昂八面威风追悔莫及雪花飞舞白璧无瑕, 茫雾似轻一毛不拔不闻不问大雪封门嚎八面玲珑冉冉, 秋高气爽左顾右盼鸡犬不宁落叶沙沙。, 哗哗啦啦忐忑不安东拉西扯怒发冲冠朝气勃勃舍己为人, 八仙过海,各显神通鸡犬不宁能屈能伸注视议论灰心丧气, 兴致勃勃鹅黄思前顾后十全十美买空卖空注视。, 甲小试牛刀千军万马心明眼亮俯视枫叶似火眉开眼笑五彩缤纷逝世, 鸟瞰日月如梭忧愁不安当午日明两全其美洗耳恭听冉冉一泻千里提心吊胆, 泪眼汪汪弹孔累累有备无患小心翼翼冰清玉洁, 半明半昧前仰后合螳臂当车羞愧难言狐疑不决绝无仅有, 吼银妆素裹惶惶不安刹那间大公无私四面楚歌排山倒海。, 急不可待聚精会神鼠目寸光白璧无瑕瞄, 身材魁梧暴雨如注七窍生烟江水滚滚千姿万状, 时隐时现震天动地大名鼎鼎五光十色, 鹤立鸡群螳臂当车东倒西歪一丝不苟, 麦浪滚滚雷厉风行眼明手快坐井观天对牛弹琴雪花如席两袖清风哈哈大笑。 |
795
+ | `sentence` | 愁眉苦脸一言九鼎声名狼籍大失所望字正腔圆嚷五体投地,, 前因后果狗急跳墙微微一笑望子成龙四面八方亡羊补牢愁眉苦脸,, 绿意盎然虎啸龙吟绿莹莹闷闷不乐仰望白雪皑皑东奔西走走马观花元, |
796
+ | `sentences` | 当机立断令人发指鸣十万火急七嘴八舌大汗淋漓湖蓝天昏地暗,, 交谈秋高气爽讲四分五裂逝世舒舒服服打草惊蛇承上启下雄心勃勃,, 万里无云瞥有恃无恐生龙活虎三头六臂,, 一毛不拔叮叮当当一手遮天两全其美,, 摩肩接踵闻名于世白雪皑皑勃然大怒精益求精万众一心一眨眼当午日明,, 前因后果星光熠熠鹤立鸡群嫣然一笑唧唧喳喳打草惊蛇三顾茅庐曰,, 半梦半醒热浪滚滚九牛一毛异口同声,, 乐不可支龙争虎斗红日东升左顾右盼泪眼汪汪秋高气爽,, 万花凋谢瓢泼大雨一诺千金山河壮丽雷厉风行千奇百怪华灯初上一文不值秋风凉爽, |
797
+ | `word` | 若即若离, 流星赶月, 心急如焚 |
798
+ | `words` | 绿树成阴, 红艳艳, 千山万水, 火眼金睛, 黑压压, 尸骨累累, 连绵不断, 鼠目寸光, 黑压压 |
799
+
800
+ ## FFaker::LoremFR
801
+
802
+ | Method | Example |
803
+ | ------ | ------- |
804
+ | `paragraph` | Encoreloin purent on cette. Glissa sauvages loin d chaîne. Route ses sournois sémantique il encore où., Loin question tas côtes initiale des alphanatale. Vous firent exploitent un headline pacqua lui panse instrumentalisèrent. Sans règlalades ses oreille déconcerter oxymore coule et qui. Encoreloin se orthodoxographique prémâchées sûr tas coeur. Les jour delà est., Un passage pacqua litéralement remit moins. Italiques petite sémantique cuit. Et leurs longtemps origines lieu voyellie projets gravi glissa. |
805
+ | `paragraphs` | D question océan pointdexclamators long là initiale exploitent vodkale. Instrumentalisèrent vie fourmillait rencontra les des mot l une. Dernier la s instrumentalisèrent route puis virgulos et. Pas le sémantique orthodoxographique origines., Grand pays un sans l du cuit raviser. Que saoule coeur lorem. Maintes rebrousser bouche propre était on le retourner. Pays petit firent vils raviser s., Vivent tas sans fin copy volent larousse bouche. Vivent retourner ressaisi restait et. Consonnia jour purent chaîne. Réecrite remit point origines lieues vils puis rencontra. Petit et le en la aguets bercail., Finir ces lui où qui sauvages cette. Initiale rebrousser s règlalades même. Bercail longtemps rencontra encoreloin pas., Pans attendraient très réecrite prévint convaincre bourg-en-lettres écho de. Côtes rebrousser genre lettrines. Fins mais flancs dissuader sournois lui. Loin là maintes chaîne peut à bolos des fût., Voyellie désormais ils lettrines paroles. été là-bas glissa genre un flancs bolos l. Chaîne bolo lourd subline entiers coeur lieu bien monts., La sûr bien propre coula ferait italiques pans. Pays réecrite agence ville orthodoxographique peut cette toutes encoreloin. Litéralement cela joue langues ruisseau ville d vivent. Leurs copy rue laissa là sûr lorem. Déconcerter phrases fût sa avait aguets à., Coeur sans côtes tas prémâchées rencontra régit. Exploitent alphanatale côtes bien. Où bien instrumentalisèrent lequel vodkale., Vivent italiques larousse passage ne en. Créas voyellie dissuader volent sûr nom aventurer. Flancs saoule aux réecrite pointdexclamators très. Grand chaîne litéralement aventurer déconcerter. Bolo volent ils longtemps lourd genre. |
806
+ | `phrase` | Remit bourg-en-lettres bolos lourd qu subline., Sauvages restait puissante cuit s leurs alphanatale alors l., Laissa rebrousser déconcerter alphabetville genre rue toute. |
807
+ | `phrases` | Qui aguets puissante consonnia est décida., Du été le remit et., Panse traîner leur ponctuation le., Sur fins delà phrases avait laissa écho., Interpelle bien origines retrait à vodkale subline., Pans tout lequel par., Le mais encoreloin passage consonnia mot sur coula., Retrait dissuader sans bercail purent mésusèrent., Petit là-bas leur flancs pays. |
808
+ | `sentence` | Mots il histoire prevenant et., Cela la mille origines des sournois lettrines coula., Décida rue on c été règlalades pour vaste. |
809
+ | `sentences` | Sain exploitent fin dans ligne des pans mais son., Bercail pointdexclamators headline subline là pour grammaire jeta que., Dissuader aventurer sain petite était., Flancs premiers ces par désormais leur., Et une motus il., Premiers approvisionne loin agence., Litéralement ruisseau larousse là-bas mille en., Pays paragraphe vodkale déconcerter était subline oreille mésusèrent vie., Voyellie en preuve bercail écho. |
810
+ | `word` | Larousse, lourd, Bolos |
811
+ | `words` | bonnes, initiale, venait, moins, traîner, joue, Et, ils, prévint |
812
+
813
+ ## FFaker::LoremKR
814
+
815
+ | Method | Example |
816
+ | ------ | ------- |
817
+ | `paragraph` | 대한 보전하세 마르고 삼천리 일편단심일세. 화려강산 가슴 백두산이 가을 사랑하세 위에 불변함은. 백두산이 사랑하세 괴로우나 높고 불변함은 하느님이 듯. 공활한데 대한으로 보우하사 일편단심일세 사랑하세 높고 백두산이 기상일세. 철갑을 바람서리 저 밝은 기상과 높고 가슴 화려강산 삼천리., 만세 사람 마르고 하늘 대한으로. 괴로우나 남산 공활한데 물과 구름 보전하세. 공활한데 마르고 이 기상일세 일편단심일세 없이 위에 나라 기상과. 구름 위에 기상일세 없이 우리나라 높고 달은 하늘 남산. 불변함은 듯 두른 백두산이 보우하사 달은 대한., 동해 기상일세 하늘 이 길이 충성을 즐거우나. 가슴 백두산이 공활한데 구름 듯 대한으로 소나무 삼천리. 괴로우나 하늘 물과 구름 듯 두른 가을 우리. |
818
+ | `paragraphs` | 두른 없이 동해 닳도록 바람서리 이 하늘 길이. 동해 가을 충성을 나라 마르고 불변함은 괴로우나 두른. 우리나라 백두산이 삼천리 즐거우나 마르고 듯 구름 소나무 두른., 두른 대한으로 바람서리 만세 밝은 높고 가슴 기상과. 동해 사람 물과 사랑하세 일편단심일세 듯 저 하늘 나라. 보우하사 두른 대한 괴로우나 일편단심일세. 바람서리 밝은 우리나라 하늘 불변함은 사람 저 무궁화 대한. 닳도록 동해 무궁화 즐거우나 위에 이., 밝은 이 가을 백두산이 괴로우나 충성을. 가슴 구름 이 물과 하늘 사랑하세 충성을 저 만세. 맘으로 없이 기상과 철갑을 일편단심일세 남산 즐거우나. 듯 기상일세 밝은 나라 위에 괴로우나 즐거우나 하느님이., 삼천리 저 백두산이 듯 보우하사 다하여 무궁화 철갑을 하느님이. 대한으로 나라 우리나라 바람서리 보우하사 동해. 이 만세 구름 남산 괴로우나 마르고 가을 듯 보우하사. 즐거우나 대한으로 삼천리 불변함은 만세 보우하사. 기상일세 공활한데 철갑을 닳도록 불변함은 하느님이 삼천리., 우리 마르고 길이 동해 우리나라. 화려강산 사랑하세 충성을 즐거우나 삼천리 남산 위에 두른 철갑을. 소나무 사랑하세 우리 높고 하늘 닳도록 사람 우리나라. 가슴 마르고 남산 이 일편단심일세 밝은 달은., 물과 높고 충성을 사랑하세 즐거우나 위에. 두른 보전하세 사람 닳도록 가슴 없이 공활한데 우리. 기상과 밝은 닳도록 길이 대한 다하여 구름 이., 사랑하세 나라 일편단심일세 충성을 저. 다하여 우리 가을 가슴 백두산이 이. 나라 높고 사랑하세 괴로우나 바람서리 두른 불변함은 마르고., 삼천리 저 충성을 밝은 이 사랑하세 백두산이. 마르고 무궁화 물과 하늘 기상과. 다하여 물과 동해 만세 하느님이 닳도록 화려강산., 무궁화 만세 마르고 다하여 일편단심일세 불변함은 두른. 다하여 나라 저 사람 밝은 달은 가슴 백두산이 닳도록. 듯 충성을 대한으로 보전하세 밝은 나라 삼천리. 소나무 저 닳도록 물과 불변함은 백두산이 남산 일편단심일세 없이. 하느님이 보전하세 불변함은 물과 마르고 듯 두른 대한. |
819
+ | `phrase` | 기상일세 하늘 불변함은 화려강산 다하여., 백두산이 밝은 즐거우나 괴로우나 위에 삼천리., 백두산이 괴로우나 마르고 밝은 철갑을. |
820
+ | `phrases` | 우리나라 보우하사 듯 보전하세 맘으로 가슴 닳도록 괴로우나 충성을., 보전하세 듯 사랑하세 충성을 구름 물과 괴로우나., 일편단심일세 밝은 대한으로 보우하사 소나무 하늘., 하느님이 백두산이 물과 불변함은 충성을 맘으로 달은., 즐거우나 하늘 가슴 가을 하느님이., 대한으로 높고 하늘 마르고 만세 괴로우나., 우리나라 대한으로 괴로우나 삼천리 소나무 일편단심일세 동해., 만세 기상과 나라 마르고 우리 공활한데 삼천리 없이 즐거우나., 위에 길이 철갑을 대한으로 남산 없이 소나무 대한 우리나라. |
821
+ | `sentence` | 저 소나무 맘으로 우리 만세 백두산이 나라., 맘으로 닳도록 백두산이 기상과 없이 보우하사 가슴 만세 가을., 백두산이 닳도록 바람서리 기상과 사랑하세 공활한데 없이. |
822
+ | `sentences` | 즐거우나 남산 가슴 듯 닳도록 높고 우리., 우리 무궁화 충성을 즐거우나 소나무 길이 하느님이., 대한으로 나라 대한 저 백두산이., 백두산이 밝은 공활한데 하늘 듯 사랑하세 만세 물과 철갑을., 나라 다하여 사랑하세 소나무 바람서리 즐거우나 괴로우나., 저 없이 바람서리 우리나라 괴로우나., 마르고 공활한데 보우하사 대한으로 높고 위에 기상일세., 밝은 보전하세 무궁화 맘으로 공활한데 높고 위에 대한으로 즐거우나., 남산 철갑을 두른 대한 가을 이 나라. |
823
+ | `word` | 닳도록, 동해, 백두산이 |
824
+ | `words` | 대한으로, 마르고, 이, 듯, 보우하사, 마르고, 철갑을, 사랑하세, 길이 |
825
+
826
+ ## FFaker::Movie
827
+
828
+ | Method | Example |
829
+ | ------ | ------- |
830
+ | `rating` | PG, G, PG-13 |
831
+ | `title` | Ultra Wizard, American Man, Season of the Green Pickpocket |
832
+
833
+ ## FFaker::Name
834
+
835
+ | Method | Example |
836
+ | ------ | ------- |
837
+ | `first_name` | Fanny, Laney, Woodrow |
838
+ | `last_name` | Schmeler, Hayes, Lindgren |
839
+ | `name` | Boyd Grimes, Edd Boehm Jr., Fredy Gottlieb |
840
+ | `prefix` | Ms., Miss, Mr. |
841
+ | `suffix` | IV, V, DVM |
842
+
843
+ ## FFaker::NameBR
844
+
845
+ | Method | Example |
846
+ | ------ | ------- |
847
+ | `first_name` | Marcelo, Maria, Janaína |
848
+ | `last_name` | Saraiva, Reis, Saraiva |
849
+ | `name` | Norberto Souza, Alessandra Moreira, Warley Saraiva |
850
+ | `name_with_prefix` | Srta. Washington Oliveira, Sra. Lorena Pinheiro, Sra. Vicente Melo |
851
+ | `prefix` | Sra., Srta., Srta. |
852
+
853
+ ## FFaker::NameCN
854
+
855
+ | Method | Example |
856
+ | ------ | ------- |
857
+ | `first_name` | 宛芳, 原芳, 新乐 |
858
+ | `last_first` | 姒奇雅, 武苓妹, 蒙欢莹 |
859
+ | `last_name` | 果, 米, 闫 |
860
+ | `name` | 礼舜湛, 乐齐光, 必政尔 |
861
+
862
+ ## FFaker::NameCS
863
+
864
+ | Method | Example |
865
+ | ------ | ------- |
866
+ | `first_name` | René, Ondřej, Dušan |
867
+ | `last_name` | Beranová, Blažek, Blažek |
868
+ | `name` | Dr. Robert Čížek Th.D., Ms. Vítězslav Brož Ph.D., Dr. Dagmar Bártová Ph.D. |
869
+ | `prefix` | Miss, Dr., Miss |
870
+ | `suffix` | Ph.D., Ph.D., Ph.D. |
871
+ | `with_same_sex` | ‼️ LocalJumpError: no block given (yield) |
872
+
873
+ ## FFaker::NameDA
874
+
875
+ | Method | Example |
876
+ | ------ | ------- |
877
+ | `any_name` | Anaz Kemmer Carroll, Suren Howell D'Amore Simonis Waelchi, Esmee Schamberger Ritchie |
878
+ | `female_name` | Annaline Kreiger, Kisa Rolfson, Basik Cummings |
879
+ | `first_name` | Torfinn Strosin, Ingelil Altenwerth, Dr. Razan Fay |
880
+ | `last_name` | Considine, Pfannerstill, Schmidt |
881
+ | `male_name` | Si Weber, Jarno Wisozk, Fr. Greg Rippin |
882
+ | `name` | Fr. Samaya Greenholt Wintheiser Ledner, Robbert McKenzie Cronin, Fr. Deva Huel Hegmann Huel |
883
+ | `prefix` | Dr., Dr., Dr. |
884
+ | `suffix` | Sr., MD, Jr. |
885
+
886
+ ## FFaker::NameDE
887
+
888
+ | Method | Example |
889
+ | ------ | ------- |
890
+ | `first_name` | Lillian, Quinton, Betsy |
891
+ | `last_name` | Price, Schimmel, Fay |
892
+ | `name` | Mallory Rutherford, Benton Hodkiewicz, Herr Savannah Maggio |
893
+ | `prefix` | Dr., Dr., Prof. |
894
+ | `suffix` | Jr., PhD, Sr. |
895
+
896
+ ## FFaker::NameFR
897
+
898
+ | Method | Example |
899
+ | ------ | ------- |
900
+ | `first_name` | Aimée, Simone, Anaïs |
901
+ | `last_name` | Fournier, Tanguy, Mahe |
902
+ | `name` | Bernadette Fouquet, Théodore Perez, Patrick le Richard |
903
+ | `prefix` | de, du, du |
904
+
905
+ ## FFaker::NameGA
906
+
907
+ | Method | Example |
908
+ | ------ | ------- |
909
+ | `first_name_female` | Janun, Kaani, Banna |
910
+ | `first_name_male` | Leemu,, Baba, Karrafa, |
911
+ | `last_name` | ceesay, jammeh, ceesay |
912
+ | `name` | Adama, ceesay, Bijilo ceesay, Mawdo, ceesay |
913
+ | `name_female` | Kandeh jammeh, Ousainatou ceesay, Coumba ceesay |
914
+ | `name_male` | Folongko, jammeh, Jung, ceesay, Saaki, jammeh |
915
+
916
+ ## FFaker::NameIT
917
+
918
+ | Method | Example |
919
+ | ------ | ------- |
920
+ | `first_name` | Tommaso, Teofilo, Cristina |
921
+ | `last_name` | Patrizi, Ferrari, Lolli |
922
+ | `name` | Aurora Esposito, Benedetto Persichetti, Sophia Longo |
923
+ | `prefix` | Prof.ssa, Sig., Dott.ssa |
924
+
925
+ ## FFaker::NameJA
926
+
927
+ | Method | Example |
928
+ | ------ | ------- |
929
+ | `first_name` | 理恵, 奈々, 崇 |
930
+ | `last_first` | 刈谷恵美子, 中内真由, 秋山美香 |
931
+ | `last_name` | 寺戸, 脇山, 前泊 |
932
+ | `name` | ゆかり西川, 瞳仲村渠, 信野上 |
933
+
934
+ ## FFaker::NameKR
935
+
936
+ | Method | Example |
937
+ | ------ | ------- |
938
+ | `first_name` | 성아, 두홍, 대길 |
939
+ | `last_first` | 엽수열, 현정준, 난원태 |
940
+ | `last_name` | 황보, 뇌, 라 |
941
+ | `name` | 소봉본창, 왕정천, 매상아 |
942
+ | `name_with_space` | 옹 정배, 표 조운, 궉 성현 |
943
+
944
+ ## FFaker::NameMX
945
+
946
+ | Method | Example |
947
+ | ------ | ------- |
948
+ | `female_name` | Viviana, Aidé Imelda, Montserrat |
949
+ | `female_prefix` | C., Srita., Srita. |
950
+ | `first_name` | Carla, Kevin, Axel |
951
+ | `full_name` | Flor Tamara McLaughlin Auer, Emilia Nienow Kutch, Mayra Viviana Schneider Reynolds |
952
+ | `full_name_no_prefix` | Rebeca VonRueden Cassin, Montserrat Fabiola Welch Mitchell, Dania Kohler Fahey |
953
+ | `full_name_prefix` | Sr. Juan Blanda Feil, Sra. Oliva Bogisich Murphy, Srita. Lorena Goldner Berge |
954
+ | `last_name` | DuBuque, Stehr, Johnston |
955
+ | `male_name` | Agustín Lino, Víctor Ramón, Xavier |
956
+ | `male_prefix` | Sr., C., Sr. |
957
+ | `middle_name` | Fausto, Josefina, Ángela |
958
+ | `name` | Lilia, Raquel, Tomás |
959
+ | `paternal_last_names` | Emard Hahn, Stamm Quitzon, Larkin Bernhard |
960
+ | `prefix` | C., Srita., Sr. |
961
+ | `suffix` | III, IV, III |
962
+
963
+ ## FFaker::NameNB
964
+
965
+ | Method | Example |
966
+ | ------ | ------- |
967
+ | `first_name` | Filip, Leah, Even |
968
+ | `first_name_female` | Helene, Eline, Eline |
969
+ | `first_name_male` | Kristian, Oliver, Nikolai |
970
+ | `last_name` | Bosco, Nicolas, Collins |
971
+ | `name` | Prof. Emil Braun, Thomas Langosh, Emil Brekke |
972
+ | `prefix` | Prof., Prof., Dr. |
973
+ | `suffix` | DDS, PhD, DVM |
974
+
975
+ ## FFaker::NameNL
976
+
977
+ | Method | Example |
978
+ | ------ | ------- |
979
+ | `first_name` | Neeltje-Catharina, Eva, Alida |
980
+ | `first_name_female` | Femke, Lieke, Danille |
981
+ | `first_name_male` | Danil, Dennis, Marcel |
982
+ | `last_name` | Grady, Klocko, Schneider |
983
+ | `name` | Naomi Nikolaus, Robert Weimann, Sophie-Iris Wolff |
984
+ | `prefix` | Drs., Dr., Ir. |
985
+ | `suffix` | PhD, Jr., III |
986
+
987
+ ## FFaker::NamePH
988
+
989
+ | Method | Example |
990
+ | ------ | ------- |
991
+ | `first_name` | Dolores, Leonardo, Clint |
992
+ | `last_name` | Galendez, Roxas, Salem |
993
+ | `name` | Sadye Mendez, Ms. Amie Manzano, Daisy Manyakesg |
994
+ | `prefix` | Miss, Mr., Dr. |
995
+ | `suffix` | DDS, III, DVM |
996
+
997
+ ## FFaker::NameRU
998
+
999
+ | Method | Example |
1000
+ | ------ | ------- |
1001
+ | `first_name` | Давыд, Карл, Ростислав |
1002
+ | `last_name` | Квалиашвили, Никоноркин, Петров |
1003
+ | `name` | Табахьян Давыд Градимирович, Медвежинский Ростислав Исаевич, Дарина Отрочева |
1004
+ | `patronymic` | Вальтерович, Мартиновна, Антоновна |
1005
+ | `prefix` | Dr., Mr., Mr. |
1006
+ | `suffix` | Sr., IV, I |
1007
+ | `with_same_sex` | ‼️ LocalJumpError: no block given (yield) |
1008
+
1009
+ ## FFaker::NameSE
1010
+
1011
+ | Method | Example |
1012
+ | ------ | ------- |
1013
+ | `first_name` | Jörgen, Carina Maj-Britt, Rut |
1014
+ | `first_name_female` | Eva, Gerd, Hanna |
1015
+ | `first_name_male` | Sebastian, Ove, Jörgen |
1016
+ | `last_name` | Ondricka, Lindgren, Mueller |
1017
+ | `name` | Kurt Graham, Bengt Buckridge, Linnéa Hansen |
1018
+ | `prefix` | Prof., Dr., Prof. |
1019
+ | `suffix` | DVM, MD, V |
1020
+
1021
+ ## FFaker::NameSN
1022
+
1023
+ | Method | Example |
1024
+ | ------ | ------- |
1025
+ | `first_name_female` | Awentorébé, Sira, Salimata |
1026
+ | `first_name_male` | Woury, Youssou, Khadim |
1027
+ | `last_name` | Ndao, Traoré, Saady |
1028
+ | `name_female` | Dado Niasse, mame Ata Badji, Maymouna Diandy |
1029
+ | `name_male` | Siéka Djimera, mame Sidate Deme, pape Ndiouga Napel |
1030
+ | `name_sn` | pape Biry Wagué, Fama Dior, pape Yakou Ntab |
1031
+ | `prefix_female` | adjaratou, mame, adja |
1032
+ | `prefix_male` | mame, eladji, pape |
1033
+
1034
+ ## FFaker::NameTH
1035
+
1036
+ | Method | Example |
1037
+ | ------ | ------- |
1038
+ | `first_name` | พาณิชย์ , ทวีป , นริศา |
1039
+ | `last_name` | เก่งงาน, ชินวัตร, รักไทย |
1040
+ | `name` | ดวงใจ เคนเนะดิ , กุญชนิตา ชินวัตร, พิมพ์ใจ เก่งงาน |
1041
+ | `nick_name` | ณี, น้องหนู, เหน่ง |
1042
+
1043
+ ## FFaker::NameVN
1044
+
1045
+ | Method | Example |
1046
+ | ------ | ------- |
1047
+ | `first_name` | Đức, Văn, Đức |
1048
+ | `last_first` | Trần Tâm Quang, Tiêu Công Đức, Lạc Diệp Văn |
1049
+ | `last_name` | Phan, Kiều, Phạm |
1050
+ | `middle_name` | Đông, Anh, Gia |
1051
+ | `name` | Bảo Quang Lương, Tuyết Văn Phan, Văn Đức Huỳnh |
1052
+
1053
+ ## FFaker::NatoAlphabet
1054
+
1055
+ | Method | Example |
1056
+ | ------ | ------- |
1057
+ | `alphabetic_code` | SIERRA, DELTA, GOLF |
1058
+ | `callsign` | OSCAR-DELTA-NINE, UNIFORM-SIERRA-ZERO, XRAY-TANGO-NINE |
1059
+ | `code` | BRAVO, DELTA, TWO |
1060
+ | `codify`(...) | |
1061
+ | `numeric_code` | ONE, SEVEN, SEVEN |
1062
+
1063
+ ## FFaker::PhoneNumber
1064
+
1065
+ | Method | Example |
1066
+ | ------ | ------- |
1067
+ | `area_code` | 677, 742, 834 |
1068
+ | `imei` | 001245004857653, 001245004908642, 001245000240147 |
1069
+ | `phone_number` | 474.992.2090 x186, 1-460-642-5362, 318.896.4755 x85829 |
1070
+ | `short_phone_number` | 697-868-1429, 819-599-1587, 959-947-2321 |
1071
+
1072
+ ## FFaker::PhoneNumberAU
1073
+
1074
+ | Method | Example |
1075
+ | ------ | ------- |
1076
+ | `country_code` | +61, +61, +61 |
1077
+ | `home_work_phone_number` | (07) 7900 0917, (05) 8401 0728, (08) 4856 1742 |
1078
+ | `home_work_phone_prefix` | 07, 07, 03 |
1079
+ | `international_home_work_phone_number` | +61 5 0702 3005, +61 8 4239 5829, +61 8 7561 7330 |
1080
+ | `international_mobile_phone_number` | +61 4 5729 5476, +61 4 8087 5885, +61 4 4713 7831 |
1081
+ | `international_phone_number` | +61 2 7025 0252, +61 2 7563 8716, +61 4 4498 8460 |
1082
+ | `mobile_phone_number` | 0489 267 797, 0430 359 419, 0478 345 095 |
1083
+ | `mobile_phone_prefix` | 04, 04, 04 |
1084
+ | `phone_number` | (02) 4147 3473, (03) 8835 3149, 0427 712 474 |
1085
+ | `phone_prefix` | 07, 05, 03 |
1086
+
1087
+ ## FFaker::PhoneNumberCU
1088
+
1089
+ | Method | Example |
1090
+ | ------ | ------- |
1091
+ | `country_code` | 53, 53, 53 |
1092
+ | `e164_country_code` | 53, 53, 53 |
1093
+ | `e164_home_work_phone_number` | 5348822313, 5375722161, 5321889485 |
1094
+ | `e164_mobile_phone_number` | 5350051352, 5354754355, 5352340948 |
1095
+ | `e164_phone_number` | 5352529182, 5323008127, 5323245279 |
1096
+ | `general_phone_number` | (041) 72 3475, 05 502 8459, 05 666 7496 |
1097
+ | `home_work_phone_number` | (045) 39 3763, (041) 66 4220, (042) 90 8283 |
1098
+ | `home_work_phone_prefix` | 048, 047, 033 |
1099
+ | `international_country_code` | +53, +53, 0053 |
1100
+ | `international_home_work_phone_number` | 005331 44 8483, +5343 72 2981, 005332 88 9603 |
1101
+ | `international_mobile_phone_number` | +535 982 3801, +535 720 9779, +535 514 0807 |
1102
+ | `international_phone_number` | +5342 38 5403, +535 808 2048, 005324 05 3204 |
1103
+ | `mobile_phone_number` | 05 229 6088, 05 451 9236, 05 890 6185 |
1104
+ | `mobile_phone_prefix` | 05, 05, 05 |
1105
+ | `phone_number` | +535 335 1962, 5321479216, (047) 69 9945 |
1106
+ | `phone_prefix` | 032, 042, 031 |
1107
+
1108
+ ## FFaker::PhoneNumberDA
1109
+
1110
+ | Method | Example |
1111
+ | ------ | ------- |
1112
+ | `country_code` | +45, +45, +45 |
1113
+ | `home_work_phone_number` | 34100284, 30821544, 63741641 |
1114
+ | `international_home_work_phone_number` | +45 61923337, +45 27606572, +45 61311131 |
1115
+ | `international_mobile_phone_number` | +45 10916576, +45 18380054, +45 87864676 |
1116
+ | `international_phone_number` | +45 07377992, +45 98156496, +45 70068875 |
1117
+ | `mobile_phone_number` | 11465360, 47999314, 57780121 |
1118
+ | `phone_number` | 93645799, 52297566, 67784137 |
1119
+
1120
+ ## FFaker::PhoneNumberDE
1121
+
1122
+ | Method | Example |
1123
+ | ------ | ------- |
1124
+ | `country_code` | +49, +49, +49 |
1125
+ | `home_work_phone_number` | 06936 6439251, 078 0626241, 05144 3678287 |
1126
+ | `international_home_work_phone_number` | +49 80 7350097, +49 376 7289043, +49 2019 7174263 |
1127
+ | `international_mobile_phone_number` | +49 150 7193705, +49 171 5098534, +49 159 1563392 |
1128
+ | `international_phone_number` | +49 73 2411071, +49 512 4254625, +49 60 3419795 |
1129
+ | `mobile_phone_number` | 0169 3131655, 0155 3045584, 0164 5003284 |
1130
+ | `mobile_prefix` | 0155, 0179, 0151 |
1131
+ | `phone_number` | 0884 7164693, 057 6214558, 062 7432355 |
1132
+ | `region_prefix` | 05180, 0644, 07190 |
1133
+
1134
+ ## FFaker::PhoneNumberFR
1135
+
1136
+ | Method | Example |
1137
+ | ------ | ------- |
1138
+ | `home_work_phone_number` | 0033450526120, 0522095733, +33175441852 |
1139
+ | `mobile_phone_number` | +336 42 44 16 82, 0033703026344, 0033634087086 |
1140
+ | `phone_number` | 0353070630, +331 77 89 13 11, +33310578504 |
1141
+
1142
+ ## FFaker::PhoneNumberIT
1143
+
1144
+ | Method | Example |
1145
+ | ------ | ------- |
1146
+ | `home_phone_number` | 00390345 83384841, 00390377420864, +39 057451648296 |
1147
+ | `mobile_phone_number` | 0039329174818, +39349341122, 0039333 99157040 |
1148
+ | `number`(...) | |
1149
+ | `phone_number` | 0039 0377401936, +39 0374 499211, 0039 328 00528164 |
1150
+ | `random_space` | , , |
1151
+
1152
+ ## FFaker::PhoneNumberKR
1153
+
1154
+ | Method | Example |
1155
+ | ------ | ------- |
1156
+ | `contry_code` | +82, +82, +82 |
1157
+ | `home_work_phone_number` | 041 2432 7450, 064 4701 3281, 032 2192 0549 |
1158
+ | `international_home_work_phone_number` | +82 49 1247 2156, +82 62 1405 8638, +82 32 1720 7717 |
1159
+ | `international_mobile_phone_number` | +82 10 9938 2890, +82 11 8817 4998, +82 10 9246 5870 |
1160
+ | `international_phone_number` | +82 19 0012 9262, +82 42 7956 8751, +82 16 6702 0395 |
1161
+ | `mobile_phone_number` | 016 9993 3968, 019 6054 3561, 010 0455 2461 |
1162
+ | `phone_number` | 053 3323 0853, 043 2797 5270, 011 2254 6170 |
1163
+
1164
+ ## FFaker::PhoneNumberMX
1165
+
1166
+ | Method | Example |
1167
+ | ------ | ------- |
1168
+ | `country_code` | +52, +52, +52 |
1169
+ | `home_work_phone_number` | 67 7978 3142, 60 8630 1655, 94 2823 1516 |
1170
+ | `international_home_work_phone_number` | +52 70 8251 4997, +52 74 1523 6686, +52 66 1486 8062 |
1171
+ | `international_mobile_phone_number` | +52 1 83 7327 0006, +52 1 59 9050 5132, +52 1 10 4593 4960 |
1172
+ | `international_phone_number` | +52 08 9917 3661, +52 14 3726 8670, +52 22 2274 2532 |
1173
+ | `mobile_phone_number` | 044 95 5376 5345, 044 88 2942 7736, 044 98 1939 2989 |
1174
+ | `phone_number` | 14 9549 1271, 044 33 1688 3331, 044 90 9003 2349 |
1175
+ | `toll_free_number` | 01 800 789 4787, 01 800 801 2817, 01 800 983 0150 |
1176
+
1177
+ ## FFaker::PhoneNumberNL
1178
+
1179
+ | Method | Example |
1180
+ | ------ | ------- |
1181
+ | `home_work_phone_number` | 0182-55 14 55, 0541-062732, 0499-4458 72 |
1182
+ | `international_home_work_phone_number` | +31 412-168140, +31 343-3742 82, +31 71-1805261 |
1183
+ | `international_mobile_phone_number` | +31 6 665 519 82, +31 6 78 92 66 53, +31 6 07 30 05 15 |
1184
+ | `international_phone_number` | +31 294-2740 57, +31 689410711, +31 573-1021 97 |
1185
+ | `mobile_phone_number` | 06 182 565 20, 06 65 67 56 47, 06 25 98 14 46 |
1186
+ | `phone_number` | 0572-854143, 0660786542, 06 112 690 43 |
1187
+
1188
+ ## FFaker::PhoneNumberSE
1189
+
1190
+ | Method | Example |
1191
+ | ------ | ------- |
1192
+ | `area_prefix` | 435, 174, 534 |
1193
+ | `country_prefix` | +46, +46, 0046 |
1194
+ | `home_work_phone_number` | 0977-39 66 57, 0292-73 19 93, 0479-70 23 29 |
1195
+ | `international_home_work_phone_number` | 0046 (0)526-41 35 94, +46 (0)479-82 03 15, 0046 (0)645-522 87 |
1196
+ | `international_mobile_phone_number` | 0046 (0)765-47 29 02, 0046 (0)769-143045, +46 (0)704-73 19 15 |
1197
+ | `international_phone_number` | 0046 (0)703-024747, +46 (0)727-62 18 99, 0046 (0)735-824817 |
1198
+ | `mobile_phone_number` | 0702-418991, 0768-71 02 95, 0728-99 90 91 |
1199
+ | `mobile_phone_number_format` | 74#-######, 70#-######, 70#-###### |
1200
+ | `mobile_prefix` | 76, 73, 72 |
1201
+ | `phone_number` | 0729-47 63 62, 0732-997683, 0742-150095 |
1202
+ | `phone_number_format` | 514-### ##, 533-### ##, 140-## ## ## |
1203
+
1204
+ ## FFaker::PhoneNumberSG
1205
+
1206
+ | Method | Example |
1207
+ | ------ | ------- |
1208
+ | `country_code` | +65, +65, +65 |
1209
+ | `fixed_line_number` | 6732 4460, 6853 5345, 6386 1549 |
1210
+ | `international_toll_free_number` | 800 822 0210, 800 803 0172, 800 725 5971 |
1211
+ | `mobile_number` | 8666 4430, 8713 0960, 8384 9409 |
1212
+ | `mobile_or_pager_number` | 9955 3908, 9139 1806, 9908 9265 |
1213
+ | `phone_number` | 9179 9864, 6795 3349, 8109 1232 |
1214
+ | `premium_service_number` | 1900 609 9942, 1900 047 3366, 1900 425 0485 |
1215
+ | `toll_free_number` | 1800 577 8358, 1800 211 9123, 1800 618 2304 |
1216
+ | `voip_number` | 3101 1904, 3824 0884, 3467 2335 |
1217
+
1218
+ ## FFaker::PhoneNumberSN
1219
+
1220
+ | Method | Example |
1221
+ | ------ | ------- |
1222
+ | `homework_number` | 33-864-80-54, 33-892-82-77, 33-887-25-57 |
1223
+ | `homework_phone_prefix` | 33, 33, 33 |
1224
+ | `mobile_number` | 76-133-82-72, 76-699-31-29, 70-035-59-76 |
1225
+ | `mobile_phone_prefix` | 77, 76, 76 |
1226
+ | `phone_number` | 33-829-46-34, 33-854-60-87, 33-845-70-48 |
1227
+ | `short_phone_number` | 667-66-80, 745-60-28, 832-06-04 |
1228
+
1229
+ ## FFaker::Product
1230
+
1231
+ | Method | Example |
1232
+ | ------ | ------- |
1233
+ | `brand` | KQU, Phastfunc, Ampod |
1234
+ | `letters`(...) | |
1235
+ | `model` | O35, H22, B-7093 |
1236
+ | `product` | Bronswood Auto Viewer, Sirsync Audible Video Filter, Trackforge Disc Viewer |
1237
+ | `product_name` | Gel Performance Compressor, GPS Auto Controller, Output System |
1238
+
1239
+ ## FFaker::Skill
1240
+
1241
+ | Method | Example |
1242
+ | ------ | ------- |
1243
+ | `specialties` | Statistical Optimization, Statistical Analysis, Visual Design, Firmware Architecture, Mental Optimization, Hardware Metrics, Performance Modularization, Visual Profiling, Firmware Management |
1244
+ | `specialty` | Hardware Design, Team Methods, Multi-tier Modularization |
1245
+ | `tech_skill` | SublimeText, Bootstrap, Flash |
1246
+ | `tech_skills` | CSS3, ActionScript, JQuery, HTML5, SublimeText, PostgreSQL, SublimeText, Perl, REST |
1247
+
1248
+ ## FFaker::Sport
1249
+
1250
+ | Method | Example |
1251
+ | ------ | ------- |
1252
+ | `name` | Windsurfing, Wakeboarding, Volleyball |
1253
+
1254
+ ## FFaker::SSN
1255
+
1256
+ | Method | Example |
1257
+ | ------ | ------- |
1258
+ | `ssn` | 062-94-1143, 940-19-0670, 032-95-6863 |
1259
+
1260
+ ## FFaker::SSNMX
1261
+
1262
+ | Method | Example |
1263
+ | ------ | ------- |
1264
+ | `imss` | 5962909062-8, 4082769765-0, 1461669341-4 |
1265
+ | `imss_undashed` | 54078053504, 47374662524, 81861064017 |
1266
+ | `issste` | 4577134149-7, 0775893743-3, 4255162436-1 |
1267
+ | `issste_undashed` | 14014085180, 65025270837, 71499622187 |
1268
+ | `ssn` | 7603365293-8, 4308454962-2, 4273998027-4 |
1269
+ | `ssn_undashed` | 24445514853, 14654494448, 25591559504 |
1270
+
1271
+ ## FFaker::SSNSE
1272
+
1273
+ | Method | Example |
1274
+ | ------ | ------- |
1275
+ | `ssn` | 199312307853, 198908302120, 196112050105 |
1276
+
1277
+ ## FFaker::String
1278
+
1279
+ | Method | Example |
1280
+ | ------ | ------- |
1281
+ | `from_regexp`(...) | |
1282
+
1283
+ ## FFaker::Time
1284
+
1285
+ | Method | Example |
1286
+ | ------ | ------- |
1287
+ | `date` | 2015-02-07 00:00:00 +0100, 2013-08-07 00:00:00 +0200, 2013-03-11 00:00:00 +0100 |
1288
+ | `month` | September, January, May |
1289
+
1290
+ ## FFaker::Unit
1291
+
1292
+ | Method | Example |
1293
+ | ------ | ------- |
1294
+ | `temperature_abbr` | K, C, C |
1295
+ | `temperature_name` | Fahrenheit, Celsius, Celsius |
1296
+ | `time_abbr` | yr, msec, yr |
1297
+ | `time_name` | Seconds, Years, Seconds |
1298
+
1299
+ ## FFaker::UnitEnglish
1300
+
1301
+ | Method | Example |
1302
+ | ------ | ------- |
1303
+ | `area_abbr` | s, sq. in, sq yd |
1304
+ | `area_name` | section, township, square foot |
1305
+ | `length_abbr` | fur, in, m |
1306
+ | `length_name` | inch, yard, yard |
1307
+ | `liquid_abbr` | pt, pt, fl oz |
1308
+ | `liquid_name` | quart, gill, fluid ounce |
1309
+ | `mass_abbr` | t, t, lb |
1310
+ | `mass_name` | ounces, ounces, ounces |
1311
+ | `temperature_abbr` | C, K, K |
1312
+ | `temperature_name` | Fahrenheit, Celsius, Celsius |
1313
+ | `time_abbr` | d, msec, yr |
1314
+ | `time_name` | Hours, Days, Days |
1315
+ | `volume_abbr` | CY, CY, CI |
1316
+ | `volume_name` | cubic foot, cubic inch, cubic inch |
1317
+
1318
+ ## FFaker::UnitMetric
1319
+
1320
+ | Method | Example |
1321
+ | ------ | ------- |
1322
+ | `area_abbr` | m^2, km, km |
1323
+ | `area_name` | centimeters squared, hectares, hectares |
1324
+ | `length_abbr` | mm, cm, mm |
1325
+ | `length_name` | meters, kilometers, kilometers |
1326
+ | `liquid_abbr` | ml, ml, L |
1327
+ | `liquid_name` | liters, liters, liters |
1328
+ | `mass_abbr` | mt, kg, g |
1329
+ | `mass_name` | metric ton, gram, metric ton |
1330
+ | `temperature_abbr` | K, F, K |
1331
+ | `temperature_name` | Fahrenheit, Fahrenheit, Celsius |
1332
+ | `time_abbr` | d, s, yr |
1333
+ | `time_name` | Hours, Hours, Years |
1334
+ | `volume_abbr` | cm^3, cm^3, cm^3 |
1335
+ | `volume_name` | cubic centimeters, cubic meters, cubic centimeters |
1336
+
1337
+ ## FFaker::Vehicle
1338
+
1339
+ | Method | Example |
1340
+ | ------ | ------- |
1341
+ | `base_color` | purple, olive, olive |
1342
+ | `drivetrain` | 4X4, 4WD, RWD |
1343
+ | `make` | Freightliner, Cadillac, Mercedes-Benz |
1344
+ | `manufacturer_color` | mute beautiful orange, vibrant magnetic aqua, slate dull lime |
1345
+ | `mfg_color` | bright tranquil maroon, slate bright black, dark fast white |
1346
+ | `model` | Charger, Santa Fe, Lancer |
1347
+ | `trim` | EX, SI, SE |
1348
+ | `vin` | 19WMU05902L508844, 10TLZ16798T285015, 15RKE74231P557806 |
1349
+ | `year` | 1973, 1902, 1918 |
1350
+
1351
+ ## FFaker::Venue
1352
+
1353
+ | Method | Example |
1354
+ | ------ | ------- |
1355
+ | `name` | Centro de Convenciones Puebla William O. Jenkins, Business Planet, Centro de Eventos Castillo Hidalgo |