data-faking 0.1.2

Generate massive amounts of fake data
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
use crate::utils::seeder;
use wasm_bindgen::prelude::*;

#[wasm_bindgen]
pub fn planet() -> String {
	PLANETS[seeder::gen_range(0..PLANETS_LEN)].to_string()
}

#[wasm_bindgen]
pub fn moon() -> String {
	MOONS[seeder::gen_range(0..MOONS_LEN)].to_string()
}

#[wasm_bindgen]
pub fn galaxy() -> String {
	GALAXYS[seeder::gen_range(0..GALAXYS_LEN)].to_string()
}

#[wasm_bindgen]
pub fn nebula() -> String {
	NEBULAS[seeder::gen_range(0..NEBULAS_LEN)].to_string()
}

#[wasm_bindgen]
pub fn star_cluster() -> String {
	STAR_CLUSTERS[seeder::gen_range(0..STAR_CLUSTERS_LEN)].to_string()
}

#[wasm_bindgen]
pub fn constellation() -> String {
	CONSTELLATIONS[seeder::gen_range(0..CONSTELLATIONS_LEN)].to_string()
}

#[wasm_bindgen]
pub fn star() -> String {
	STARS[seeder::gen_range(0..STARS_LEN)].to_string()
}

#[wasm_bindgen]
pub fn agency() -> String {
	AGENCYS[seeder::gen_range(0..AGENCYS_LEN)].to_string()
}

#[wasm_bindgen]
pub fn agency_abv() -> String {
	AGENCYS_ABV[seeder::gen_range(0..AGENCYS_ABV_LEN)].to_string()
}

#[wasm_bindgen]
pub fn nasa_space_craft() -> String {
	NASA_SPACE_CRAFTS[seeder::gen_range(0..NASA_SPACE_CRAFTS_LEN)].to_string()
}

#[wasm_bindgen]
pub fn company() -> String {
	COMPANYS[seeder::gen_range(0..COMPANYS_LEN)].to_string()
}

#[wasm_bindgen]
pub fn distance_measurement() -> String {
	DISTANCE_MEASUREMENTS[seeder::gen_range(0..DISTANCE_MEASUREMENTS_LEN)].to_string()
}

#[wasm_bindgen]
pub fn meteorite() -> String {
	METEORITES[seeder::gen_range(0..METEORITES_LEN)].to_string()
}

#[wasm_bindgen]
pub fn launch_vehicle() -> String {
	LAUNCH_VEHICLES[seeder::gen_range(0..LAUNCH_VEHICLES_LEN)].to_string()
}

static PLANETS: [&'static str; 8] = [
	"Mercury",
	"Venus",
	"Earth",
	"Mars",
	"Jupiter",
	"Saturn",
	"Uranus",
	"Neptune",
];
static PLANETS_LEN: usize = PLANETS.len();

static MOONS: [&'static str; 20] = [
	"Moon",
	"Luna",
	"Deimos",
	"Phobos",
	"Ganymede",
	"Callisto",
	"Io",
	"Europa",
	"Titan",
	"Rhea",
	"Iapetus",
	"Dione",
	"Tethys",
	"Hyperion",
	"Ariel",
	"Puck",
	"Oberon",
	"Umbriel",
	"Triton",
	"Proteus",
];
static MOONS_LEN: usize = MOONS.len();

static GALAXYS: [&'static str; 10] = [
	"Milky Way",
	"Andromeda",
	"Triangulum",
	"Whirlpool",
	"Blackeye",
	"Sunflower",
	"Pinwheel",
	"Hoags Object",
	"Centaurus A",
	"Messier 83",
];
static GALAXYS_LEN: usize = GALAXYS.len();

static NEBULAS: [&'static str; 8] = [
	"Lagoon Nebula",
	"Eagle Nebula",
	"Triffid Nebula",
	"Dumbell Nebula",
	"Orion Nebula",
	"Ring Nebula",
	"Bodes Nebula",
	"Owl Nebula",
];
static NEBULAS_LEN: usize = NEBULAS.len();

static STAR_CLUSTERS: [&'static str; 30] = [
	"Wild Duck",
	"Hyades",
	"Coma",
	"Butterfly",
	"Messier 7",
	"Pleiades",
	"Beehive Cluster",
	"Pearl Cluster",
	"Hodge 301",
	"Jewel Box Cluster",
	"Wishing Well Cluster",
	"Diamond Cluster",
	"Trumpler 10",
	"Collinder 140",
	"Liller 1",
	"Koposov II",
	"Koposov I",
	"Djorgovski 1",
	"Arp-Madore 1",
	"NGC 6144",
	"NGC 2808",
	"NGC 1783",
	"Messier 107",
	"Messier 70",
	"Omega Centauri",
	"Palomar 12",
	"Palomar 4",
	"Palomar 6",
	"Pyxis Cluster",
	"Segue 3",
];
static STAR_CLUSTERS_LEN: usize = STAR_CLUSTERS.len();

static CONSTELLATIONS: [&'static str; 21] = [
	"Big Dipper",
	"Litte Dipper",
	"Orion",
	"Leo",
	"Gemini",
	"Cancer",
	"Canis Minor",
	"Canis Major",
	"Ursa Major",
	"Ursa Minor",
	"Virgo",
	"Libra",
	"Scorpius",
	"Sagittarius",
	"Lyra",
	"Capricornus",
	"Aquarius",
	"Pisces",
	"Aries",
	"Leo Minor",
	"Auriga",
];
static CONSTELLATIONS_LEN: usize = CONSTELLATIONS.len();

static STARS: [&'static str; 19] = [
	"Sun",
	"Proxima Centauri",
	"Rigil Kentaurus",
	"Barnards Star",
	"Wolf 359",
	"Luyten 726-8A",
	"Luyten 726-8B",
	"Sirius A",
	"Sirius B",
	"Ross 154",
	"Ross 248",
	"Procyon A",
	"Procyon B",
	"Vega",
	"Rigel",
	"Arcturus",
	"Betelgeuse",
	"Mahasim",
	"Polaris",
];
static STARS_LEN: usize = STARS.len();

static AGENCYS: [&'static str; 14] = [
	"National Aeronautics and Space Administration",
	"European Space Agency",
	"German Aerospace Center",
	"Indian Space Research Organization",
	"China National Space Administration",
	"UK Space Agency",
	"Brazilian Space Agency",
	"Mexican Space Agency",
	"Israeli Space Agency",
	"Italian Space Agency",
	"Japan Aerospace Exploration Agency",
	"National Space Agency of Ukraine",
	"Russian Federal Space Agency",
	"Swedish National Space Board",
];
static AGENCYS_LEN: usize = AGENCYS.len();

static AGENCYS_ABV: [&'static str; 15] = [
	"NASA",
	"AEM",
	"AEB",
	"UKSA",
	"CSA",
	"CNSA",
	"ESA",
	"DLR",
	"ISRO",
	"JAXA",
	"ISA",
	"CNES",
	"NSAU",
	"ROSCOSMOS",
	"SNSB",
];
static AGENCYS_ABV_LEN: usize = AGENCYS_ABV.len();

static NASA_SPACE_CRAFTS: [&'static str; 10] = [
	"Orion",
	"Mercury",
	"Gemini",
	"Apollo",
	"Enterprise",
	"Columbia",
	"Challenger",
	"Discovery",
	"Atlantis",
	"Endeavour",
];
static NASA_SPACE_CRAFTS_LEN: usize = NASA_SPACE_CRAFTS.len();

static COMPANYS: [&'static str; 9] = [
	"Rocket Lab",
	"SpaceX",
	"Blue Origin",
	"Virgin Galactic",
	"SpaceDev",
	"Bigelow Aerospace",
	"Orbital Sciences",
	"JPL",
	"NASA Jet Propulsion Laboratory",
];
static COMPANYS_LEN: usize = COMPANYS.len();

static DISTANCE_MEASUREMENTS: [&'static str; 5] = [
	"light years",
	"AU",
	"parsecs",
	"kiloparsecs",
	"megaparsecs",
];
static DISTANCE_MEASUREMENTS_LEN: usize = DISTANCE_MEASUREMENTS.len();

static METEORITES: [&'static str; 162] = [
	"Aarhus",
	"Abee",
	"Adelie Land",
	"Adhi Kot",
	"Adzhi-Bogdo",
	"Santa Rosa de Viterbo",
	"Agen",
	"Akbarpur",
	"Albareto",
	"Allan Hills 84001",
	"Allan Hills A81005",
	"Allegan",
	"Allende",
	"Ambapur Nagla",
	"Andura",
	"Angers",
	"Angra dos Reis",
	"Ankober",
	"Anlong",
	"Annaheim",
	"Appley Bridge",
	"Arbol Solo",
	"Archie",
	"Arroyo Aguiar",
	"Assisi",
	"Atoka",
	"Avanhandava",
	"Bacubirito",
	"Baszkówka",
	"Beardsley",
	"Bellsbank",
	"Bench Crater",
	"Benton",
	"Białystok",
	"Blithfield",
	"Block Island",
	"Bovedy",
	"Brachina",
	"Brahin",
	"Brenham",
	"Buzzard Coulee",
	"Campo del Cielo",
	"Canyon Diablo",
	"Cape York",
	"Carancas",
	"Chambord",
	"Chassigny",
	"Chelyabinsk",
	"Chergach",
	"Chinga",
	"Chinguetti",
	"Claxton",
	"Coahuila",
	"Cranbourne",
	"DOrbigny",
	"Dronino",
	"Eagle Station",
	"Elbogen",
	"Ensisheim",
	"Esquel",
	"Fukang",
	"Gancedo",
	"Gao–Guenie",
	"Gay Gulch",
	"Gebel Kamil",
	"Gibeon",
	"Goose Lake",
	"Grant",
	"Hadley Rille",
	"Heat Shield Rock",
	"Hoba",
	"Homestead",
	"Hraschina",
	"Huckitta",
	"Imilac",
	"Itqiy",
	"Kaidun",
	"Kainsaz",
	"Karoonda",
	"Kesen",
	"Krasnojarsk",
	"LAigle",
	"Lac Dodon",
	"Lake Murray",
	"Loreto",
	"Los Angeles",
	"Łowicz",
	"Mackinac Island",
	"Mbozi",
	"Middlesbrough",
	"Millbillillie",
	"Mineo",
	"Monte Milone",
	"Moss",
	"Mundrabilla",
	"Muonionalusta",
	"Murchison",
	"Nakhla",
	"Nantan",
	"Neuschwanstein",
	"Northwest Africa 7034",
	"Northwest Africa 7325",
	"Norton County",
	"Novato",
	"Northwest Africa 3009",
	"Oileán Ruaidh (Martian)",
	"Old Woman",
	"Oldenburg",
	"Omolon",
	"Orgueil",
	"Ornans",
	"Osseo",
	"Österplana 065",
	"Ourique",
	"Pallasovka",
	"Paragould",
	"Park Forest",
	"Pavlovka",
	"Peace River",
	"Peekskill",
	"Penouille",
	"Polonnaruwa",
	"High Possil",
	"Příbram",
	"Pultusk",
	"Qidong",
	"Richardton",
	"Santa Vitoria do Palmar",
	"Sayh al Uhaymir 169",
	"Seymchan",
	"Shelter Island",
	"Shergotty",
	"Sikhote-Alin",
	"Sołtmany",
	"Springwater",
	"St-Robert",
	"Stannern",
	"Sulagiri",
	"Sutters Mill",
	"Sylacauga",
	"Tagish Lake",
	"Tamdakht",
	"Tenham",
	"Texas Fireball",
	"Tissint",
	"Tlacotepec",
	"Toluca",
	"Treysa",
	"Twannberg",
	"Veliky Ustyug",
	"Vermillion",
	"Weston",
	"Willamette",
	"Winona",
	"Wold Cottage",
	"Yamato 000593",
	"Yamato 691",
	"Yamato 791197",
	"Yardymly",
	"Zagami",
	"Zaisho",
	"Zaklodzie",
];
static METEORITES_LEN: usize = METEORITES.len();

static LAUNCH_VEHICLES: [&'static str; 28] = [
	"Antares",
	"Ariane 5",
	"Atlas",
	"Diamant",
	"Dnepr",
	"Delta",
	"Electron",
	"Energia",
	"Europa",
	"Falcon 9",
	"Falcon Heavy",
	"GSLV",
	"Juno",
	"Long March",
	"Mercury-Redstone",
	"Minotaur",
	"Pegasus",
	"Proton",
	"PSLV",
	"Safir",
	"Shavit",
	"Saturn IV",
	"Semiorka",
	"Soyouz",
	"Titan",
	"Vega",
	"Veronique",
	"Zenit",
];
static LAUNCH_VEHICLES_LEN: usize = LAUNCH_VEHICLES.len();