PageRenderTime 35ms CodeModel.GetById 42ms RepoModel.GetById 0ms app.codeStats 1ms

/borrador_font_proyecto/bower_components/vaadin-grid/demo/x-data-provider.html

https://bitbucket.org/juan_castellano/polymer
HTML | 4301 lines | 4293 code | 8 blank | 0 comment | 0 complexity | dd90010d0094005036d643e6aa424503 MD5 | raw file
Possible License(s): Apache-2.0, BSD-3-Clause, JSON, MIT
  1. <link rel="import" href="../../polymer/polymer.html">
  2. <dom-module id="x-data-provider">
  3. <script>
  4. window.addEventListener('WebComponentsReady', () => {
  5. class XDataProvider extends Polymer.Element {
  6. static get is() {
  7. return 'x-data-provider';
  8. }
  9. static get properties() {
  10. return {
  11. loading: {
  12. type: Boolean,
  13. notify: true
  14. },
  15. delay: {
  16. type: Number,
  17. value: 0
  18. },
  19. dataProvider: {
  20. notify: true,
  21. value: () => {
  22. const _this = this;
  23. return (params, callback) => {
  24. const items = Array.apply(null, {length: params.pageSize})
  25. .map((item, index) => window.getJSON('http://randomuser.me?index=' + (index + params.page * params.pageSize)));
  26. _this.loading = true;
  27. setTimeout(() => {
  28. callback(items);
  29. _this.loading = false;
  30. }, _this.delay);
  31. };
  32. }
  33. }
  34. };
  35. }
  36. }
  37. window.customElements.define(XDataProvider.is, XDataProvider);
  38. });
  39. </script>
  40. </dom-module>
  41. <dom-module id="x-array-data-provider">
  42. <script>
  43. window.addEventListener('WebComponentsReady', () => {
  44. class XArrayDataProvider extends Polymer.Element {
  45. static get is() {
  46. return 'x-array-data-provider';
  47. }
  48. static get properties() {
  49. return {
  50. size: {
  51. type: Number,
  52. value: null
  53. },
  54. items: {
  55. notify: true,
  56. computed: '_computeItems(size)'
  57. }
  58. };
  59. }
  60. _computeItems(size) {
  61. if (size !== null) {
  62. return window.users.results.slice(0, size);
  63. } else {
  64. return window.users.results;
  65. }
  66. }
  67. }
  68. window.customElements.define(XArrayDataProvider.is, XArrayDataProvider);
  69. });
  70. </script>
  71. </dom-module>
  72. <script>
  73. (() => {
  74. window.getJSON = (url, callback) => {
  75. if (url.indexOf('randomuser.me') > -1) {
  76. const index = parseInt(getParameterByName(url, 'index') || 0);
  77. return JSON.parse(JSON.stringify(users.results[index % users.results.length])); //clone object
  78. }
  79. };
  80. function getParameterByName(url, name) {
  81. name = name.replace(/[\[]/, '\\[').replace(/[\]]/, '\\]');
  82. const regex = new RegExp('[\\?&]' + name + '=([^&#]*)'),
  83. results = regex.exec(url);
  84. return results === null ? '' : decodeURIComponent(results[1].replace(/\+/g, ' '));
  85. }
  86. window.users = {
  87. "results": [{
  88. "gender": "female",
  89. "name": {
  90. "title": "ms",
  91. "first": "laura",
  92. "last": "arnaud"
  93. },
  94. "location": {
  95. "street": "5372 avenue du château",
  96. "city": "perpignan",
  97. "state": "jura",
  98. "zip": 93076
  99. },
  100. "email": "laura.arnaud@example.com",
  101. "username": "yellowdog501",
  102. "password": "zhou",
  103. "phone": "01-31-40-34-74",
  104. "picture": {
  105. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/19.jpg",
  106. "large": "https://randomuser.me/api/portraits/women/19.jpg"
  107. }
  108. }, {
  109. "gender": "male",
  110. "name": {
  111. "title": "mr",
  112. "first": "fabien",
  113. "last": "le gall"
  114. },
  115. "location": {
  116. "street": "9932 rue bossuet",
  117. "city": "nanterre",
  118. "state": "indre",
  119. "zip": 86307
  120. },
  121. "email": "fabien.le gall@example.com",
  122. "username": "goldenlion501",
  123. "password": "outkast",
  124. "phone": "03-59-32-43-22",
  125. "picture": {
  126. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/52.jpg",
  127. "large": "https://randomuser.me/api/portraits/men/52.jpg"
  128. }
  129. }, {
  130. "gender": "male",
  131. "name": {
  132. "title": "mr",
  133. "first": "ruben",
  134. "last": "leclercq"
  135. },
  136. "location": {
  137. "street": "6698 rue de l'abbaye",
  138. "city": "clermont-ferrand",
  139. "state": "marne",
  140. "zip": 80183
  141. },
  142. "email": "ruben.leclercq@example.com",
  143. "username": "crazymouse343",
  144. "password": "brutus",
  145. "phone": "01-58-73-95-64",
  146. "picture": {
  147. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/51.jpg",
  148. "large": "https://randomuser.me/api/portraits/men/51.jpg"
  149. }
  150. }, {
  151. "gender": "female",
  152. "name": {
  153. "title": "ms",
  154. "first": "kelya",
  155. "last": "roy"
  156. },
  157. "location": {
  158. "street": "4011 rue duquesne",
  159. "city": "avignon",
  160. "state": "ardennes",
  161. "zip": 84488
  162. },
  163. "email": "kelya.roy@example.com",
  164. "username": "tinymouse185",
  165. "password": "fossil",
  166. "phone": "02-52-00-68-31",
  167. "picture": {
  168. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/50.jpg",
  169. "large": "https://randomuser.me/api/portraits/women/50.jpg"
  170. }
  171. }, {
  172. "gender": "female",
  173. "name": {
  174. "title": "mrs",
  175. "first": "roxane",
  176. "last": "guillaume"
  177. },
  178. "location": {
  179. "street": "4420 rue de la barre",
  180. "city": "marseille",
  181. "state": "vaucluse",
  182. "zip": 25339
  183. },
  184. "email": "roxane.guillaume@example.com",
  185. "username": "redswan463",
  186. "password": "webmaster",
  187. "phone": "01-17-17-24-49",
  188. "picture": {
  189. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/30.jpg",
  190. "large": "https://randomuser.me/api/portraits/women/30.jpg"
  191. }
  192. }, {
  193. "gender": "male",
  194. "name": {
  195. "title": "mr",
  196. "first": "marius",
  197. "last": "moulin"
  198. },
  199. "location": {
  200. "street": "7220 rue barrier",
  201. "city": "mulhouse",
  202. "state": "haute-savoie",
  203. "zip": 90132
  204. },
  205. "email": "marius.moulin@example.com",
  206. "username": "ticklishduck726",
  207. "password": "brodie",
  208. "phone": "01-49-57-32-40",
  209. "picture": {
  210. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/59.jpg",
  211. "large": "https://randomuser.me/api/portraits/men/59.jpg"
  212. }
  213. }, {
  214. "gender": "female",
  215. "name": {
  216. "title": "mrs",
  217. "first": "nina",
  218. "last": "barbier"
  219. },
  220. "location": {
  221. "street": "8823 rue principale",
  222. "city": "versailles",
  223. "state": "territoire de belfort",
  224. "zip": 41960
  225. },
  226. "email": "nina.barbier@example.com",
  227. "username": "orangemouse715",
  228. "password": "jjjjjjjj",
  229. "phone": "04-27-90-48-61",
  230. "picture": {
  231. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/24.jpg",
  232. "large": "https://randomuser.me/api/portraits/women/24.jpg"
  233. }
  234. }, {
  235. "gender": "male",
  236. "name": {
  237. "title": "mr",
  238. "first": "marceau",
  239. "last": "lucas"
  240. },
  241. "location": {
  242. "street": "8601 avenue joliot curie",
  243. "city": "strasbourg",
  244. "state": "aveyron",
  245. "zip": 31008
  246. },
  247. "email": "marceau.lucas@example.com",
  248. "username": "beautifulfish844",
  249. "password": "malibu",
  250. "phone": "03-10-40-65-04",
  251. "picture": {
  252. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/72.jpg",
  253. "large": "https://randomuser.me/api/portraits/men/72.jpg"
  254. }
  255. }, {
  256. "gender": "female",
  257. "name": {
  258. "title": "mrs",
  259. "first": "lise",
  260. "last": "barbier"
  261. },
  262. "location": {
  263. "street": "8266 montée saint-barthélémy",
  264. "city": "nancy",
  265. "state": "haute-corse",
  266. "zip": 36269
  267. },
  268. "email": "lise.barbier@example.com",
  269. "username": "yellowlion972",
  270. "password": "prince",
  271. "phone": "01-53-27-42-55",
  272. "picture": {
  273. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/87.jpg",
  274. "large": "https://randomuser.me/api/portraits/women/87.jpg"
  275. }
  276. }, {
  277. "gender": "male",
  278. "name": {
  279. "title": "mr",
  280. "first": "louka",
  281. "last": "girard"
  282. },
  283. "location": {
  284. "street": "1546 rue paul-duvivier",
  285. "city": "amiens",
  286. "state": "loiret",
  287. "zip": 21273
  288. },
  289. "email": "louka.girard@example.com",
  290. "username": "ticklishduck965",
  291. "password": "13579",
  292. "phone": "01-89-77-27-08",
  293. "picture": {
  294. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/87.jpg",
  295. "large": "https://randomuser.me/api/portraits/men/87.jpg"
  296. }
  297. }, {
  298. "gender": "male",
  299. "name": {
  300. "title": "mr",
  301. "first": "maël",
  302. "last": "carpentier"
  303. },
  304. "location": {
  305. "street": "5208 place de l'abbé-franz-stock",
  306. "city": "boulogne-billancourt",
  307. "state": "creuse",
  308. "zip": 74380
  309. },
  310. "email": "maël.carpentier@example.com",
  311. "username": "organicbutterfly923",
  312. "password": "marsha",
  313. "phone": "04-83-07-23-64",
  314. "picture": {
  315. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/42.jpg",
  316. "large": "https://randomuser.me/api/portraits/men/42.jpg"
  317. }
  318. }, {
  319. "gender": "male",
  320. "name": {
  321. "title": "mr",
  322. "first": "sacha",
  323. "last": "boyer"
  324. },
  325. "location": {
  326. "street": "9137 rue de la mairie",
  327. "city": "orléans",
  328. "state": "val-de-marne",
  329. "zip": 37223
  330. },
  331. "email": "sacha.boyer@example.com",
  332. "username": "smallgoose805",
  333. "password": "daytona",
  334. "phone": "02-56-01-27-21",
  335. "picture": {
  336. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/21.jpg",
  337. "large": "https://randomuser.me/api/portraits/men/21.jpg"
  338. }
  339. }, {
  340. "gender": "male",
  341. "name": {
  342. "title": "mr",
  343. "first": "ewen",
  344. "last": "bernard"
  345. },
  346. "location": {
  347. "street": "6235 rue du bât-d'argent",
  348. "city": "versailles",
  349. "state": "aude",
  350. "zip": 94999
  351. },
  352. "email": "ewen.bernard@example.com",
  353. "username": "brownpeacock920",
  354. "password": "porter",
  355. "phone": "04-57-90-32-07",
  356. "picture": {
  357. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/85.jpg",
  358. "large": "https://randomuser.me/api/portraits/men/85.jpg"
  359. }
  360. }, {
  361. "gender": "female",
  362. "name": {
  363. "title": "ms",
  364. "first": "justine",
  365. "last": "lacroix"
  366. },
  367. "location": {
  368. "street": "7209 rue de bonnel",
  369. "city": "saint-étienne",
  370. "state": "pyrénées-orientales",
  371. "zip": 16872
  372. },
  373. "email": "justine.lacroix@example.com",
  374. "username": "tinygorilla929",
  375. "password": "rosemary",
  376. "phone": "01-21-57-60-19",
  377. "picture": {
  378. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/37.jpg",
  379. "large": "https://randomuser.me/api/portraits/women/37.jpg"
  380. }
  381. }, {
  382. "gender": "male",
  383. "name": {
  384. "title": "mr",
  385. "first": "mathys",
  386. "last": "brun"
  387. },
  388. "location": {
  389. "street": "8114 rue abel-gance",
  390. "city": "marseille",
  391. "state": "nord",
  392. "zip": 75632
  393. },
  394. "email": "mathys.brun@example.com",
  395. "username": "blackswan884",
  396. "password": "flying",
  397. "phone": "04-58-17-90-70",
  398. "picture": {
  399. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/51.jpg",
  400. "large": "https://randomuser.me/api/portraits/men/51.jpg"
  401. }
  402. }, {
  403. "gender": "male",
  404. "name": {
  405. "title": "mr",
  406. "first": "nathanaël",
  407. "last": "renard"
  408. },
  409. "location": {
  410. "street": "4972 rue de l'abbé-patureau",
  411. "city": "roubaix",
  412. "state": "vosges",
  413. "zip": 80974
  414. },
  415. "email": "nathanaël.renard@example.com",
  416. "username": "lazybird233",
  417. "password": "spanker",
  418. "phone": "01-05-79-43-20",
  419. "picture": {
  420. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/18.jpg",
  421. "large": "https://randomuser.me/api/portraits/men/18.jpg"
  422. }
  423. }, {
  424. "gender": "female",
  425. "name": {
  426. "title": "miss",
  427. "first": "enora",
  428. "last": "morel"
  429. },
  430. "location": {
  431. "street": "1649 place de l'abbé-georges-hénocque",
  432. "city": "saint-pierre",
  433. "state": "doubs",
  434. "zip": 70462
  435. },
  436. "email": "enora.morel@example.com",
  437. "username": "goldenfrog754",
  438. "password": "aquarius",
  439. "phone": "02-85-86-71-30",
  440. "picture": {
  441. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/76.jpg",
  442. "large": "https://randomuser.me/api/portraits/women/76.jpg"
  443. }
  444. }, {
  445. "gender": "female",
  446. "name": {
  447. "title": "miss",
  448. "first": "alexia",
  449. "last": "roger"
  450. },
  451. "location": {
  452. "street": "7970 rue de l'abbé-patureau",
  453. "city": "amiens",
  454. "state": "gers",
  455. "zip": 79238
  456. },
  457. "email": "alexia.roger@example.com",
  458. "username": "brownpanda263",
  459. "password": "yummy",
  460. "phone": "01-12-06-02-38",
  461. "picture": {
  462. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/57.jpg",
  463. "large": "https://randomuser.me/api/portraits/women/57.jpg"
  464. }
  465. }, {
  466. "gender": "female",
  467. "name": {
  468. "title": "mrs",
  469. "first": "elise",
  470. "last": "moreau"
  471. },
  472. "location": {
  473. "street": "7295 rue du cardinal-gerlier",
  474. "city": "reims",
  475. "state": "corrèze",
  476. "zip": 24436
  477. },
  478. "email": "elise.moreau@example.com",
  479. "username": "beautifulrabbit484",
  480. "password": "farmer",
  481. "phone": "01-30-67-66-68",
  482. "picture": {
  483. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/95.jpg",
  484. "large": "https://randomuser.me/api/portraits/women/95.jpg"
  485. }
  486. }, {
  487. "gender": "male",
  488. "name": {
  489. "title": "mr",
  490. "first": "lucien",
  491. "last": "richard"
  492. },
  493. "location": {
  494. "street": "1774 avenue des ternes",
  495. "city": "aix-en-provence",
  496. "state": "gard",
  497. "zip": 14228
  498. },
  499. "email": "lucien.richard@example.com",
  500. "username": "ticklishgoose891",
  501. "password": "radiohea",
  502. "phone": "01-13-81-29-95",
  503. "picture": {
  504. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/74.jpg",
  505. "large": "https://randomuser.me/api/portraits/men/74.jpg"
  506. }
  507. }, {
  508. "gender": "female",
  509. "name": {
  510. "title": "miss",
  511. "first": "maélie",
  512. "last": "vidal"
  513. },
  514. "location": {
  515. "street": "1967 place de l'abbé-georges-hénocque",
  516. "city": "caen",
  517. "state": "ardennes",
  518. "zip": 50930
  519. },
  520. "email": "maélie.vidal@example.com",
  521. "username": "blueswan403",
  522. "password": "49ers",
  523. "phone": "05-57-92-48-90",
  524. "picture": {
  525. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/78.jpg",
  526. "large": "https://randomuser.me/api/portraits/women/78.jpg"
  527. }
  528. }, {
  529. "gender": "male",
  530. "name": {
  531. "title": "mr",
  532. "first": "soren",
  533. "last": "mercier"
  534. },
  535. "location": {
  536. "street": "1226 avenue joliot curie",
  537. "city": "lyon",
  538. "state": "alpes-maritimes",
  539. "zip": 47279
  540. },
  541. "email": "soren.mercier@example.com",
  542. "username": "heavymouse914",
  543. "password": "oooooo",
  544. "phone": "02-80-37-59-28",
  545. "picture": {
  546. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/69.jpg",
  547. "large": "https://randomuser.me/api/portraits/men/69.jpg"
  548. }
  549. }, {
  550. "gender": "female",
  551. "name": {
  552. "title": "mrs",
  553. "first": "lina",
  554. "last": "vincent"
  555. },
  556. "location": {
  557. "street": "5448 rue de l'abbé-roger-derry",
  558. "city": "angers",
  559. "state": "eure-et-loir",
  560. "zip": 43857
  561. },
  562. "email": "lina.vincent@example.com",
  563. "username": "blackelephant904",
  564. "password": "sammy",
  565. "phone": "04-83-93-59-97",
  566. "picture": {
  567. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/66.jpg",
  568. "large": "https://randomuser.me/api/portraits/women/66.jpg"
  569. }
  570. }, {
  571. "gender": "female",
  572. "name": {
  573. "title": "ms",
  574. "first": "inès",
  575. "last": "garcia"
  576. },
  577. "location": {
  578. "street": "3738 rue baraban",
  579. "city": "tours",
  580. "state": "seine-et-marne",
  581. "zip": 23659
  582. },
  583. "email": "inès.garcia@example.com",
  584. "username": "crazyladybug286",
  585. "password": "nuclear",
  586. "phone": "04-17-86-23-58",
  587. "picture": {
  588. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/38.jpg",
  589. "large": "https://randomuser.me/api/portraits/women/38.jpg"
  590. }
  591. }, {
  592. "gender": "male",
  593. "name": {
  594. "title": "mr",
  595. "first": "jean",
  596. "last": "rousseau"
  597. },
  598. "location": {
  599. "street": "4052 rue des jardins",
  600. "city": "rennes",
  601. "state": "puy-de-dôme",
  602. "zip": 59683
  603. },
  604. "email": "jean.rousseau@example.com",
  605. "username": "orangeduck115",
  606. "password": "cedric",
  607. "phone": "04-92-22-27-12",
  608. "picture": {
  609. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/56.jpg",
  610. "large": "https://randomuser.me/api/portraits/men/56.jpg"
  611. }
  612. }, {
  613. "gender": "female",
  614. "name": {
  615. "title": "ms",
  616. "first": "laly",
  617. "last": "blanc"
  618. },
  619. "location": {
  620. "street": "1832 rue de l'église",
  621. "city": "angers",
  622. "state": "tarn-et-garonne",
  623. "zip": 12774
  624. },
  625. "email": "laly.blanc@example.com",
  626. "username": "organictiger217",
  627. "password": "what",
  628. "phone": "03-18-93-01-58",
  629. "picture": {
  630. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/26.jpg",
  631. "large": "https://randomuser.me/api/portraits/women/26.jpg"
  632. }
  633. }, {
  634. "gender": "male",
  635. "name": {
  636. "title": "mr",
  637. "first": "owen",
  638. "last": "joly"
  639. },
  640. "location": {
  641. "street": "2569 rue de la mairie",
  642. "city": "caen",
  643. "state": "morbihan",
  644. "zip": 45294
  645. },
  646. "email": "owen.joly@example.com",
  647. "username": "silvermouse740",
  648. "password": "fang",
  649. "phone": "05-64-86-41-09",
  650. "picture": {
  651. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/40.jpg",
  652. "large": "https://randomuser.me/api/portraits/men/40.jpg"
  653. }
  654. }, {
  655. "gender": "female",
  656. "name": {
  657. "title": "mrs",
  658. "first": "lia",
  659. "last": "thomas"
  660. },
  661. "location": {
  662. "street": "5012 rue de la baleine",
  663. "city": "rueil-malmaison",
  664. "state": "haute-savoie",
  665. "zip": 79519
  666. },
  667. "email": "lia.thomas@example.com",
  668. "username": "organicfish194",
  669. "password": "camaross",
  670. "phone": "03-84-69-46-96",
  671. "picture": {
  672. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/49.jpg",
  673. "large": "https://randomuser.me/api/portraits/women/49.jpg"
  674. }
  675. }, {
  676. "gender": "male",
  677. "name": {
  678. "title": "mr",
  679. "first": "ilan",
  680. "last": "charles"
  681. },
  682. "location": {
  683. "street": "5950 avenue vauban",
  684. "city": "asnières-sur-seine",
  685. "state": "paris",
  686. "zip": 64409
  687. },
  688. "email": "ilan.charles@example.com",
  689. "username": "organicbear875",
  690. "password": "reng",
  691. "phone": "05-31-79-93-27",
  692. "picture": {
  693. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/86.jpg",
  694. "large": "https://randomuser.me/api/portraits/men/86.jpg"
  695. }
  696. }, {
  697. "gender": "female",
  698. "name": {
  699. "title": "miss",
  700. "first": "garance",
  701. "last": "fabre"
  702. },
  703. "location": {
  704. "street": "1290 avenue des ternes",
  705. "city": "reims",
  706. "state": "essonne 91",
  707. "zip": 62116
  708. },
  709. "email": "garance.fabre@example.com",
  710. "username": "tinyladybug988",
  711. "password": "looker",
  712. "phone": "01-87-88-90-23",
  713. "picture": {
  714. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/28.jpg",
  715. "large": "https://randomuser.me/api/portraits/women/28.jpg"
  716. }
  717. }, {
  718. "gender": "male",
  719. "name": {
  720. "title": "mr",
  721. "first": "matthieu",
  722. "last": "pierre"
  723. },
  724. "location": {
  725. "street": "8601 rue de la charité",
  726. "city": "vitry-sur-seine",
  727. "state": "ille-et-vilaine",
  728. "zip": 30454
  729. },
  730. "email": "matthieu.pierre@example.com",
  731. "username": "silverbear932",
  732. "password": "yang",
  733. "phone": "01-88-71-77-41",
  734. "picture": {
  735. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/15.jpg",
  736. "large": "https://randomuser.me/api/portraits/men/15.jpg"
  737. }
  738. }, {
  739. "gender": "male",
  740. "name": {
  741. "title": "mr",
  742. "first": "lino",
  743. "last": "guerin"
  744. },
  745. "location": {
  746. "street": "6341 rue chazière",
  747. "city": "rueil-malmaison",
  748. "state": "seine-maritime",
  749. "zip": 13660
  750. },
  751. "email": "lino.guerin@example.com",
  752. "username": "lazywolf583",
  753. "password": "striper",
  754. "phone": "03-47-40-46-13",
  755. "picture": {
  756. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/70.jpg",
  757. "large": "https://randomuser.me/api/portraits/men/70.jpg"
  758. }
  759. }, {
  760. "gender": "female",
  761. "name": {
  762. "title": "ms",
  763. "first": "cassandra",
  764. "last": "perrin"
  765. },
  766. "location": {
  767. "street": "1321 rue de cuire",
  768. "city": "rennes",
  769. "state": "alpes-de-haute-provence",
  770. "zip": 67814
  771. },
  772. "email": "cassandra.perrin@example.com",
  773. "username": "whiteostrich266",
  774. "password": "picher",
  775. "phone": "04-33-97-36-01",
  776. "picture": {
  777. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/43.jpg",
  778. "large": "https://randomuser.me/api/portraits/women/43.jpg"
  779. }
  780. }, {
  781. "gender": "male",
  782. "name": {
  783. "title": "mr",
  784. "first": "diego",
  785. "last": "lefebvre"
  786. },
  787. "location": {
  788. "street": "8728 place du 8 novembre 1942",
  789. "city": "dijon",
  790. "state": "gers",
  791. "zip": 48414
  792. },
  793. "email": "diego.lefebvre@example.com",
  794. "username": "heavyostrich748",
  795. "password": "qqqqqqqq",
  796. "phone": "04-76-75-26-26",
  797. "picture": {
  798. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/78.jpg",
  799. "large": "https://randomuser.me/api/portraits/men/78.jpg"
  800. }
  801. }, {
  802. "gender": "male",
  803. "name": {
  804. "title": "mr",
  805. "first": "pablo",
  806. "last": "dufour"
  807. },
  808. "location": {
  809. "street": "6560 rue abel-ferry",
  810. "city": "le havre",
  811. "state": "var",
  812. "zip": 60702
  813. },
  814. "email": "pablo.dufour@example.com",
  815. "username": "blackelephant103",
  816. "password": "bella1",
  817. "phone": "01-63-34-56-19",
  818. "picture": {
  819. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/90.jpg",
  820. "large": "https://randomuser.me/api/portraits/men/90.jpg"
  821. }
  822. }, {
  823. "gender": "female",
  824. "name": {
  825. "title": "ms",
  826. "first": "claire",
  827. "last": "deschamps"
  828. },
  829. "location": {
  830. "street": "3039 rue de l'abbé-rousselot",
  831. "city": "paris",
  832. "state": "vosges",
  833. "zip": 49382
  834. },
  835. "email": "claire.deschamps@example.com",
  836. "username": "blackrabbit231",
  837. "password": "three",
  838. "phone": "04-95-50-18-22",
  839. "picture": {
  840. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/32.jpg",
  841. "large": "https://randomuser.me/api/portraits/women/32.jpg"
  842. }
  843. }, {
  844. "gender": "male",
  845. "name": {
  846. "title": "mr",
  847. "first": "dorian",
  848. "last": "renaud"
  849. },
  850. "location": {
  851. "street": "5224 rue de l'abbé-migne",
  852. "city": "le mans",
  853. "state": "creuse",
  854. "zip": 12516
  855. },
  856. "email": "dorian.renaud@example.com",
  857. "username": "greenbutterfly796",
  858. "password": "sublime",
  859. "phone": "03-06-08-42-72",
  860. "picture": {
  861. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/94.jpg",
  862. "large": "https://randomuser.me/api/portraits/men/94.jpg"
  863. }
  864. }, {
  865. "gender": "female",
  866. "name": {
  867. "title": "miss",
  868. "first": "lina",
  869. "last": "pierre"
  870. },
  871. "location": {
  872. "street": "8779 rue bossuet",
  873. "city": "aubervilliers",
  874. "state": "seine-et-marne",
  875. "zip": 12725
  876. },
  877. "email": "lina.pierre@example.com",
  878. "username": "redswan767",
  879. "password": "pirates",
  880. "phone": "02-95-70-42-58",
  881. "picture": {
  882. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/50.jpg",
  883. "large": "https://randomuser.me/api/portraits/women/50.jpg"
  884. }
  885. }, {
  886. "gender": "male",
  887. "name": {
  888. "title": "mr",
  889. "first": "loïs",
  890. "last": "le gall"
  891. },
  892. "location": {
  893. "street": "6686 rue abel-gance",
  894. "city": "fort-de-france",
  895. "state": "vaucluse",
  896. "zip": 88377
  897. },
  898. "email": "loïs.le gall@example.com",
  899. "username": "lazypanda653",
  900. "password": "shaggy",
  901. "phone": "05-08-25-24-00",
  902. "picture": {
  903. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/50.jpg",
  904. "large": "https://randomuser.me/api/portraits/men/50.jpg"
  905. }
  906. }, {
  907. "gender": "male",
  908. "name": {
  909. "title": "mr",
  910. "first": "lorenzo",
  911. "last": "vidal"
  912. },
  913. "location": {
  914. "street": "4349 avenue joliot curie",
  915. "city": "angers",
  916. "state": "tarn-et-garonne",
  917. "zip": 59060
  918. },
  919. "email": "lorenzo.vidal@example.com",
  920. "username": "purplefrog356",
  921. "password": "aisan",
  922. "phone": "04-69-50-14-47",
  923. "picture": {
  924. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/75.jpg",
  925. "large": "https://randomuser.me/api/portraits/men/75.jpg"
  926. }
  927. }, {
  928. "gender": "female",
  929. "name": {
  930. "title": "ms",
  931. "first": "elsa",
  932. "last": "durand"
  933. },
  934. "location": {
  935. "street": "8687 rue bony",
  936. "city": "saint-pierre",
  937. "state": "charente-maritime",
  938. "zip": 25807
  939. },
  940. "email": "elsa.durand@example.com",
  941. "username": "blacklion947",
  942. "password": "faggot",
  943. "phone": "05-40-26-68-43",
  944. "picture": {
  945. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/22.jpg",
  946. "large": "https://randomuser.me/api/portraits/women/22.jpg"
  947. }
  948. }, {
  949. "gender": "female",
  950. "name": {
  951. "title": "miss",
  952. "first": "maelya",
  953. "last": "rodriguez"
  954. },
  955. "location": {
  956. "street": "8861 rue dumenge",
  957. "city": "nice",
  958. "state": "seine-saint-denis",
  959. "zip": 36453
  960. },
  961. "email": "maelya.rodriguez@example.com",
  962. "username": "beautifulgoose256",
  963. "password": "baron",
  964. "phone": "01-12-92-47-84",
  965. "picture": {
  966. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/52.jpg",
  967. "large": "https://randomuser.me/api/portraits/women/52.jpg"
  968. }
  969. }, {
  970. "gender": "male",
  971. "name": {
  972. "title": "mr",
  973. "first": "nicolas",
  974. "last": "bernard"
  975. },
  976. "location": {
  977. "street": "4245 quai charles-de-gaulle",
  978. "city": "créteil",
  979. "state": "tarn-et-garonne",
  980. "zip": 98910
  981. },
  982. "email": "nicolas.bernard@example.com",
  983. "username": "whiteduck502",
  984. "password": "airbus",
  985. "phone": "02-51-80-98-95",
  986. "picture": {
  987. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/30.jpg",
  988. "large": "https://randomuser.me/api/portraits/men/30.jpg"
  989. }
  990. }, {
  991. "gender": "female",
  992. "name": {
  993. "title": "miss",
  994. "first": "louisa",
  995. "last": "menard"
  996. },
  997. "location": {
  998. "street": "7641 rue du moulin",
  999. "city": "saint-denis",
  1000. "state": "haute-corse",
  1001. "zip": 17526
  1002. },
  1003. "email": "louisa.menard@example.com",
  1004. "username": "redbutterfly857",
  1005. "password": "danzig",
  1006. "phone": "01-25-08-28-64",
  1007. "picture": {
  1008. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/70.jpg",
  1009. "large": "https://randomuser.me/api/portraits/women/70.jpg"
  1010. }
  1011. }, {
  1012. "gender": "female",
  1013. "name": {
  1014. "title": "miss",
  1015. "first": "diane",
  1016. "last": "chevalier"
  1017. },
  1018. "location": {
  1019. "street": "5456 rue baraban",
  1020. "city": "roubaix",
  1021. "state": "territoire de belfort",
  1022. "zip": 44542
  1023. },
  1024. "email": "diane.chevalier@example.com",
  1025. "username": "redfrog205",
  1026. "password": "golden",
  1027. "phone": "05-47-17-40-16",
  1028. "picture": {
  1029. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/8.jpg",
  1030. "large": "https://randomuser.me/api/portraits/women/8.jpg"
  1031. }
  1032. }, {
  1033. "gender": "female",
  1034. "name": {
  1035. "title": "ms",
  1036. "first": "flavie",
  1037. "last": "marie"
  1038. },
  1039. "location": {
  1040. "street": "5467 rue du bât-d'argent",
  1041. "city": "bordeaux",
  1042. "state": "haut-rhin",
  1043. "zip": 44442
  1044. },
  1045. "email": "flavie.marie@example.com",
  1046. "username": "bluepeacock236",
  1047. "password": "rose",
  1048. "phone": "02-43-23-51-86",
  1049. "picture": {
  1050. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/2.jpg",
  1051. "large": "https://randomuser.me/api/portraits/women/2.jpg"
  1052. }
  1053. }, {
  1054. "gender": "male",
  1055. "name": {
  1056. "title": "mr",
  1057. "first": "amaury",
  1058. "last": "robin"
  1059. },
  1060. "location": {
  1061. "street": "6967 rue barrier",
  1062. "city": "aulnay-sous-bois",
  1063. "state": "guyane",
  1064. "zip": 10997
  1065. },
  1066. "email": "amaury.robin@example.com",
  1067. "username": "whitebutterfly658",
  1068. "password": "deskjet",
  1069. "phone": "04-47-68-12-81",
  1070. "picture": {
  1071. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/18.jpg",
  1072. "large": "https://randomuser.me/api/portraits/men/18.jpg"
  1073. }
  1074. }, {
  1075. "gender": "female",
  1076. "name": {
  1077. "title": "mrs",
  1078. "first": "eléa",
  1079. "last": "fournier"
  1080. },
  1081. "location": {
  1082. "street": "3386 place de l'abbé-jean-lebeuf",
  1083. "city": "tourcoing",
  1084. "state": "pyrénées-orientales",
  1085. "zip": 70280
  1086. },
  1087. "email": "eléa.fournier@example.com",
  1088. "username": "orangegorilla170",
  1089. "password": "reginald",
  1090. "phone": "01-61-17-89-58",
  1091. "picture": {
  1092. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/52.jpg",
  1093. "large": "https://randomuser.me/api/portraits/women/52.jpg"
  1094. }
  1095. }, {
  1096. "gender": "female",
  1097. "name": {
  1098. "title": "ms",
  1099. "first": "eléonore",
  1100. "last": "boyer"
  1101. },
  1102. "location": {
  1103. "street": "1369 avenue du fort-caire",
  1104. "city": "nice",
  1105. "state": "guadeloupe",
  1106. "zip": 12634
  1107. },
  1108. "email": "eléonore.boyer@example.com",
  1109. "username": "tinybird250",
  1110. "password": "cubs",
  1111. "phone": "01-53-18-97-69",
  1112. "picture": {
  1113. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/94.jpg",
  1114. "large": "https://randomuser.me/api/portraits/women/94.jpg"
  1115. }
  1116. }, {
  1117. "gender": "female",
  1118. "name": {
  1119. "title": "mrs",
  1120. "first": "lila",
  1121. "last": "nicolas"
  1122. },
  1123. "location": {
  1124. "street": "3521 rue dugas-montbel",
  1125. "city": "dunkerque",
  1126. "state": "vaucluse",
  1127. "zip": 45555
  1128. },
  1129. "email": "lila.nicolas@example.com",
  1130. "username": "tinygoose877",
  1131. "password": "town",
  1132. "phone": "04-28-10-67-11",
  1133. "picture": {
  1134. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/25.jpg",
  1135. "large": "https://randomuser.me/api/portraits/women/25.jpg"
  1136. }
  1137. }, {
  1138. "gender": "male",
  1139. "name": {
  1140. "title": "mr",
  1141. "first": "théodore",
  1142. "last": "charles"
  1143. },
  1144. "location": {
  1145. "street": "1062 rue du 8 mai 1945",
  1146. "city": "roubaix",
  1147. "state": "corrèze",
  1148. "zip": 36297
  1149. },
  1150. "email": "théodore.charles@example.com",
  1151. "username": "ticklishfrog609",
  1152. "password": "true",
  1153. "phone": "01-72-09-30-82",
  1154. "picture": {
  1155. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/4.jpg",
  1156. "large": "https://randomuser.me/api/portraits/men/4.jpg"
  1157. }
  1158. }, {
  1159. "gender": "male",
  1160. "name": {
  1161. "title": "mr",
  1162. "first": "liam",
  1163. "last": "legrand"
  1164. },
  1165. "location": {
  1166. "street": "4869 rue jean-baldassini",
  1167. "city": "grenoble",
  1168. "state": "haute-loire",
  1169. "zip": 67383
  1170. },
  1171. "email": "liam.legrand@example.com",
  1172. "username": "silverwolf210",
  1173. "password": "poop",
  1174. "phone": "05-94-41-12-69",
  1175. "picture": {
  1176. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/56.jpg",
  1177. "large": "https://randomuser.me/api/portraits/men/56.jpg"
  1178. }
  1179. }, {
  1180. "gender": "female",
  1181. "name": {
  1182. "title": "ms",
  1183. "first": "séléna",
  1184. "last": "lucas"
  1185. },
  1186. "location": {
  1187. "street": "6677 rue du moulin",
  1188. "city": "villeurbanne",
  1189. "state": "meuse",
  1190. "zip": 76942
  1191. },
  1192. "email": "séléna.lucas@example.com",
  1193. "username": "silverfish974",
  1194. "password": "hubert",
  1195. "phone": "03-62-10-97-29",
  1196. "picture": {
  1197. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/47.jpg",
  1198. "large": "https://randomuser.me/api/portraits/women/47.jpg"
  1199. }
  1200. }, {
  1201. "gender": "female",
  1202. "name": {
  1203. "title": "miss",
  1204. "first": "romy",
  1205. "last": "gautier"
  1206. },
  1207. "location": {
  1208. "street": "6680 rue des jardins",
  1209. "city": "angers",
  1210. "state": "la réunion",
  1211. "zip": 49929
  1212. },
  1213. "email": "romy.gautier@example.com",
  1214. "username": "beautifulsnake854",
  1215. "password": "private1",
  1216. "phone": "02-15-06-86-83",
  1217. "picture": {
  1218. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/60.jpg",
  1219. "large": "https://randomuser.me/api/portraits/women/60.jpg"
  1220. }
  1221. }, {
  1222. "gender": "male",
  1223. "name": {
  1224. "title": "mr",
  1225. "first": "angelo",
  1226. "last": "rey"
  1227. },
  1228. "location": {
  1229. "street": "1148 rue abel-gance",
  1230. "city": "rouen",
  1231. "state": "eure-et-loir",
  1232. "zip": 95415
  1233. },
  1234. "email": "angelo.rey@example.com",
  1235. "username": "lazygoose981",
  1236. "password": "robinson",
  1237. "phone": "02-34-64-64-69",
  1238. "picture": {
  1239. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/94.jpg",
  1240. "large": "https://randomuser.me/api/portraits/men/94.jpg"
  1241. }
  1242. }, {
  1243. "gender": "female",
  1244. "name": {
  1245. "title": "miss",
  1246. "first": "lucie",
  1247. "last": "gerard"
  1248. },
  1249. "location": {
  1250. "street": "8039 rue abel",
  1251. "city": "paris",
  1252. "state": "allier",
  1253. "zip": 53796
  1254. },
  1255. "email": "lucie.gerard@example.com",
  1256. "username": "brownduck459",
  1257. "password": "nyjets",
  1258. "phone": "03-27-60-95-51",
  1259. "picture": {
  1260. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/35.jpg",
  1261. "large": "https://randomuser.me/api/portraits/women/35.jpg"
  1262. }
  1263. }, {
  1264. "gender": "female",
  1265. "name": {
  1266. "title": "miss",
  1267. "first": "sarah",
  1268. "last": "lucas"
  1269. },
  1270. "location": {
  1271. "street": "1625 rue laure-diebold",
  1272. "city": "dunkerque",
  1273. "state": "lot-et-garonne",
  1274. "zip": 67850
  1275. },
  1276. "email": "sarah.lucas@example.com",
  1277. "username": "bigrabbit515",
  1278. "password": "spanner",
  1279. "phone": "02-70-92-87-03",
  1280. "picture": {
  1281. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/15.jpg",
  1282. "large": "https://randomuser.me/api/portraits/women/15.jpg"
  1283. }
  1284. }, {
  1285. "gender": "female",
  1286. "name": {
  1287. "title": "miss",
  1288. "first": "léane",
  1289. "last": "vidal"
  1290. },
  1291. "location": {
  1292. "street": "1364 montée saint-barthélémy",
  1293. "city": "besançon",
  1294. "state": "bouches-du-rhône",
  1295. "zip": 72646
  1296. },
  1297. "email": "léane.vidal@example.com",
  1298. "username": "whitecat902",
  1299. "password": "whiteboy",
  1300. "phone": "04-39-61-05-71",
  1301. "picture": {
  1302. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/84.jpg",
  1303. "large": "https://randomuser.me/api/portraits/women/84.jpg"
  1304. }
  1305. }, {
  1306. "gender": "female",
  1307. "name": {
  1308. "title": "mrs",
  1309. "first": "valentine",
  1310. "last": "michel"
  1311. },
  1312. "location": {
  1313. "street": "8473 rue de bonnel",
  1314. "city": "rueil-malmaison",
  1315. "state": "meurthe-et-moselle",
  1316. "zip": 34105
  1317. },
  1318. "email": "valentine.michel@example.com",
  1319. "username": "blackpanda356",
  1320. "password": "liverpool",
  1321. "phone": "04-03-59-62-89",
  1322. "picture": {
  1323. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/10.jpg",
  1324. "large": "https://randomuser.me/api/portraits/women/10.jpg"
  1325. }
  1326. }, {
  1327. "gender": "male",
  1328. "name": {
  1329. "title": "mr",
  1330. "first": "lyam",
  1331. "last": "denis"
  1332. },
  1333. "location": {
  1334. "street": "7197 place du 8 novembre 1942",
  1335. "city": "grenoble",
  1336. "state": "manche",
  1337. "zip": 52232
  1338. },
  1339. "email": "lyam.denis@example.com",
  1340. "username": "beautifulpanda863",
  1341. "password": "panda",
  1342. "phone": "05-31-89-20-52",
  1343. "picture": {
  1344. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/24.jpg",
  1345. "large": "https://randomuser.me/api/portraits/men/24.jpg"
  1346. }
  1347. }, {
  1348. "gender": "male",
  1349. "name": {
  1350. "title": "mr",
  1351. "first": "pierre",
  1352. "last": "morin"
  1353. },
  1354. "location": {
  1355. "street": "3713 rue abel-gance",
  1356. "city": "dijon",
  1357. "state": "calvados",
  1358. "zip": 42110
  1359. },
  1360. "email": "pierre.morin@example.com",
  1361. "username": "heavypanda626",
  1362. "password": "auto",
  1363. "phone": "01-76-17-18-55",
  1364. "picture": {
  1365. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/9.jpg",
  1366. "large": "https://randomuser.me/api/portraits/men/9.jpg"
  1367. }
  1368. }, {
  1369. "gender": "female",
  1370. "name": {
  1371. "title": "mrs",
  1372. "first": "jeanne",
  1373. "last": "legrand"
  1374. },
  1375. "location": {
  1376. "street": "5214 boulevard de balmont",
  1377. "city": "saint-denis",
  1378. "state": "gers",
  1379. "zip": 50595
  1380. },
  1381. "email": "jeanne.legrand@example.com",
  1382. "username": "purpleduck137",
  1383. "password": "silent",
  1384. "phone": "02-23-24-55-61",
  1385. "picture": {
  1386. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/16.jpg",
  1387. "large": "https://randomuser.me/api/portraits/women/16.jpg"
  1388. }
  1389. }, {
  1390. "gender": "female",
  1391. "name": {
  1392. "title": "mrs",
  1393. "first": "eve",
  1394. "last": "blanchard"
  1395. },
  1396. "location": {
  1397. "street": "7933 rue de l'abbaye",
  1398. "city": "courbevoie",
  1399. "state": "aisn",
  1400. "zip": 64027
  1401. },
  1402. "email": "eve.blanchard@example.com",
  1403. "username": "smallgoose726",
  1404. "password": "oreo",
  1405. "phone": "01-60-65-26-72",
  1406. "picture": {
  1407. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/26.jpg",
  1408. "large": "https://randomuser.me/api/portraits/women/26.jpg"
  1409. }
  1410. }, {
  1411. "gender": "male",
  1412. "name": {
  1413. "title": "mr",
  1414. "first": "ewen",
  1415. "last": "charles"
  1416. },
  1417. "location": {
  1418. "street": "3058 rue docteur-bonhomme",
  1419. "city": "paris",
  1420. "state": "haute-corse",
  1421. "zip": 10582
  1422. },
  1423. "email": "ewen.charles@example.com",
  1424. "username": "orangegoose893",
  1425. "password": "78945612",
  1426. "phone": "01-49-50-63-17",
  1427. "picture": {
  1428. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/98.jpg",
  1429. "large": "https://randomuser.me/api/portraits/men/98.jpg"
  1430. }
  1431. }, {
  1432. "gender": "male",
  1433. "name": {
  1434. "title": "mr",
  1435. "first": "quentin",
  1436. "last": "dumas"
  1437. },
  1438. "location": {
  1439. "street": "9840 rue des chartreux",
  1440. "city": "fort-de-france",
  1441. "state": "haute-vienne",
  1442. "zip": 33208
  1443. },
  1444. "email": "quentin.dumas@example.com",
  1445. "username": "redladybug176",
  1446. "password": "volume",
  1447. "phone": "05-98-70-70-21",
  1448. "picture": {
  1449. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/1.jpg",
  1450. "large": "https://randomuser.me/api/portraits/men/1.jpg"
  1451. }
  1452. }, {
  1453. "gender": "female",
  1454. "name": {
  1455. "title": "ms",
  1456. "first": "lucie",
  1457. "last": "guerin"
  1458. },
  1459. "location": {
  1460. "street": "7513 rue louis-blanqui",
  1461. "city": "créteil",
  1462. "state": "haute-savoie",
  1463. "zip": 17960
  1464. },
  1465. "email": "lucie.guerin@example.com",
  1466. "username": "heavytiger356",
  1467. "password": "dark",
  1468. "phone": "04-34-48-79-41",
  1469. "picture": {
  1470. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/79.jpg",
  1471. "large": "https://randomuser.me/api/portraits/women/79.jpg"
  1472. }
  1473. }, {
  1474. "gender": "male",
  1475. "name": {
  1476. "title": "mr",
  1477. "first": "gabriel",
  1478. "last": "david"
  1479. },
  1480. "location": {
  1481. "street": "1415 rue dugas-montbel",
  1482. "city": "saint-étienne",
  1483. "state": "pyrénées-orientales",
  1484. "zip": 11891
  1485. },
  1486. "email": "gabriel.david@example.com",
  1487. "username": "blackpanda906",
  1488. "password": "logan1",
  1489. "phone": "04-85-30-68-26",
  1490. "picture": {
  1491. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/16.jpg",
  1492. "large": "https://randomuser.me/api/portraits/men/16.jpg"
  1493. }
  1494. }, {
  1495. "gender": "male",
  1496. "name": {
  1497. "title": "mr",
  1498. "first": "mathieu",
  1499. "last": "menard"
  1500. },
  1501. "location": {
  1502. "street": "3909 avenue goerges clémenceau",
  1503. "city": "créteil",
  1504. "state": "eure-et-loir",
  1505. "zip": 20589
  1506. },
  1507. "email": "mathieu.menard@example.com",
  1508. "username": "goldensnake791",
  1509. "password": "bootys",
  1510. "phone": "01-01-43-81-81",
  1511. "picture": {
  1512. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/44.jpg",
  1513. "large": "https://randomuser.me/api/portraits/men/44.jpg"
  1514. }
  1515. }, {
  1516. "gender": "female",
  1517. "name": {
  1518. "title": "ms",
  1519. "first": "alizee",
  1520. "last": "gauthier"
  1521. },
  1522. "location": {
  1523. "street": "2394 rue du stade",
  1524. "city": "argenteuil",
  1525. "state": "lot-et-garonne",
  1526. "zip": 31319
  1527. },
  1528. "email": "alizee.gauthier@example.com",
  1529. "username": "brownpanda290",
  1530. "password": "toejam",
  1531. "phone": "03-46-65-97-42",
  1532. "picture": {
  1533. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/82.jpg",
  1534. "large": "https://randomuser.me/api/portraits/women/82.jpg"
  1535. }
  1536. }, {
  1537. "gender": "female",
  1538. "name": {
  1539. "title": "miss",
  1540. "first": "naomi",
  1541. "last": "michel"
  1542. },
  1543. "location": {
  1544. "street": "5119 rue de la fontaine",
  1545. "city": "nîmes",
  1546. "state": "haut-rhin",
  1547. "zip": 31193
  1548. },
  1549. "email": "naomi.michel@example.com",
  1550. "username": "lazyfrog841",
  1551. "password": "wings",
  1552. "phone": "03-78-82-24-69",
  1553. "picture": {
  1554. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/15.jpg",
  1555. "large": "https://randomuser.me/api/portraits/women/15.jpg"
  1556. }
  1557. }, {
  1558. "gender": "female",
  1559. "name": {
  1560. "title": "ms",
  1561. "first": "amandine",
  1562. "last": "chevalier"
  1563. },
  1564. "location": {
  1565. "street": "4104 rue louis-blanqui",
  1566. "city": "saint-étienne",
  1567. "state": "pas-de-calais",
  1568. "zip": 75392
  1569. },
  1570. "email": "amandine.chevalier@example.com",
  1571. "username": "yellowgorilla877",
  1572. "password": "angels",
  1573. "phone": "04-53-19-41-51",
  1574. "picture": {
  1575. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/28.jpg",
  1576. "large": "https://randomuser.me/api/portraits/women/28.jpg"
  1577. }
  1578. }, {
  1579. "gender": "female",
  1580. "name": {
  1581. "title": "mrs",
  1582. "first": "victoria",
  1583. "last": "vincent"
  1584. },
  1585. "location": {
  1586. "street": "8533 rue barrier",
  1587. "city": "roubaix",
  1588. "state": "loir-et-cher",
  1589. "zip": 93690
  1590. },
  1591. "email": "victoria.vincent@example.com",
  1592. "username": "redbutterfly230",
  1593. "password": "pulsar",
  1594. "phone": "03-59-11-18-57",
  1595. "picture": {
  1596. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/54.jpg",
  1597. "large": "https://randomuser.me/api/portraits/women/54.jpg"
  1598. }
  1599. }, {
  1600. "gender": "female",
  1601. "name": {
  1602. "title": "mrs",
  1603. "first": "marilou",
  1604. "last": "robin"
  1605. },
  1606. "location": {
  1607. "street": "1820 rue duguesclin",
  1608. "city": "villeurbanne",
  1609. "state": "essonne 91",
  1610. "zip": 82090
  1611. },
  1612. "email": "marilou.robin@example.com",
  1613. "username": "whitecat633",
  1614. "password": "holly1",
  1615. "phone": "03-06-04-99-64",
  1616. "picture": {
  1617. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/16.jpg",
  1618. "large": "https://randomuser.me/api/portraits/women/16.jpg"
  1619. }
  1620. }, {
  1621. "gender": "male",
  1622. "name": {
  1623. "title": "mr",
  1624. "first": "simon",
  1625. "last": "girard"
  1626. },
  1627. "location": {
  1628. "street": "8065 rue barrème",
  1629. "city": "orléans",
  1630. "state": "jura",
  1631. "zip": 45630
  1632. },
  1633. "email": "simon.girard@example.com",
  1634. "username": "organicbird176",
  1635. "password": "search",
  1636. "phone": "01-94-69-77-57",
  1637. "picture": {
  1638. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/33.jpg",
  1639. "large": "https://randomuser.me/api/portraits/men/33.jpg"
  1640. }
  1641. }, {
  1642. "gender": "female",
  1643. "name": {
  1644. "title": "ms",
  1645. "first": "sara",
  1646. "last": "leclerc"
  1647. },
  1648. "location": {
  1649. "street": "6553 rue dubois",
  1650. "city": "toulon",
  1651. "state": "puy-de-dôme",
  1652. "zip": 66877
  1653. },
  1654. "email": "sara.leclerc@example.com",
  1655. "username": "beautifulbird160",
  1656. "password": "blaster",
  1657. "phone": "02-11-71-72-70",
  1658. "picture": {
  1659. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/93.jpg",
  1660. "large": "https://randomuser.me/api/portraits/women/93.jpg"
  1661. }
  1662. }, {
  1663. "gender": "female",
  1664. "name": {
  1665. "title": "miss",
  1666. "first": "manon",
  1667. "last": "dufour"
  1668. },
  1669. "location": {
  1670. "street": "2092 avenue du fort-caire",
  1671. "city": "toulon",
  1672. "state": "drôme",
  1673. "zip": 19136
  1674. },
  1675. "email": "manon.dufour@example.com",
  1676. "username": "orangegoose245",
  1677. "password": "1115",
  1678. "phone": "02-08-89-56-76",
  1679. "picture": {
  1680. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/32.jpg",
  1681. "large": "https://randomuser.me/api/portraits/women/32.jpg"
  1682. }
  1683. }, {
  1684. "gender": "female",
  1685. "name": {
  1686. "title": "ms",
  1687. "first": "lucie",
  1688. "last": "perrin"
  1689. },
  1690. "location": {
  1691. "street": "5968 quai chauveau",
  1692. "city": "grenoble",
  1693. "state": "maine-et-loire",
  1694. "zip": 25591
  1695. },
  1696. "email": "lucie.perrin@example.com",
  1697. "username": "ticklishtiger615",
  1698. "password": "corleone",
  1699. "phone": "05-68-68-59-40",
  1700. "picture": {
  1701. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/66.jpg",
  1702. "large": "https://randomuser.me/api/portraits/women/66.jpg"
  1703. }
  1704. }, {
  1705. "gender": "male",
  1706. "name": {
  1707. "title": "mr",
  1708. "first": "célestin",
  1709. "last": "caron"
  1710. },
  1711. "location": {
  1712. "street": "5583 place du 8 février 1962",
  1713. "city": "pau",
  1714. "state": "guadeloupe",
  1715. "zip": 89780
  1716. },
  1717. "email": "célestin.caron@example.com",
  1718. "username": "bigleopard849",
  1719. "password": "iloveyou2",
  1720. "phone": "04-80-03-20-14",
  1721. "picture": {
  1722. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/88.jpg",
  1723. "large": "https://randomuser.me/api/portraits/men/88.jpg"
  1724. }
  1725. }, {
  1726. "gender": "female",
  1727. "name": {
  1728. "title": "mrs",
  1729. "first": "nora",
  1730. "last": "sanchez"
  1731. },
  1732. "location": {
  1733. "street": "4503 rue courbet",
  1734. "city": "mulhouse",
  1735. "state": "oise",
  1736. "zip": 12383
  1737. },
  1738. "email": "nora.sanchez@example.com",
  1739. "username": "goldengoose556",
  1740. "password": "phoebe",
  1741. "phone": "04-22-07-08-63",
  1742. "picture": {
  1743. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/18.jpg",
  1744. "large": "https://randomuser.me/api/portraits/women/18.jpg"
  1745. }
  1746. }, {
  1747. "gender": "male",
  1748. "name": {
  1749. "title": "mr",
  1750. "first": "victor",
  1751. "last": "lacroix"
  1752. },
  1753. "location": {
  1754. "street": "2902 rue laure-diebold",
  1755. "city": "nantes",
  1756. "state": "loire",
  1757. "zip": 85289
  1758. },
  1759. "email": "victor.lacroix@example.com",
  1760. "username": "ticklishpeacock143",
  1761. "password": "closeup",
  1762. "phone": "03-80-73-29-20",
  1763. "picture": {
  1764. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/96.jpg",
  1765. "large": "https://randomuser.me/api/portraits/men/96.jpg"
  1766. }
  1767. }, {
  1768. "gender": "male",
  1769. "name": {
  1770. "title": "mr",
  1771. "first": "cléo",
  1772. "last": "gonzalez"
  1773. },
  1774. "location": {
  1775. "street": "2714 rue courbet",
  1776. "city": "colombes",
  1777. "state": "vendée",
  1778. "zip": 68910
  1779. },
  1780. "email": "cléo.gonzalez@example.com",
  1781. "username": "whitebird922",
  1782. "password": "jimmie",
  1783. "phone": "02-14-29-15-92",
  1784. "picture": {
  1785. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/20.jpg",
  1786. "large": "https://randomuser.me/api/portraits/men/20.jpg"
  1787. }
  1788. }, {
  1789. "gender": "male",
  1790. "name": {
  1791. "title": "mr",
  1792. "first": "justin",
  1793. "last": "henry"
  1794. },
  1795. "location": {
  1796. "street": "8141 rue d'abbeville",
  1797. "city": "courbevoie",
  1798. "state": "manche",
  1799. "zip": 86746
  1800. },
  1801. "email": "justin.henry@example.com",
  1802. "username": "crazygorilla911",
  1803. "password": "sucking",
  1804. "phone": "05-81-77-19-42",
  1805. "picture": {
  1806. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/98.jpg",
  1807. "large": "https://randomuser.me/api/portraits/men/98.jpg"
  1808. }
  1809. }, {
  1810. "gender": "female",
  1811. "name": {
  1812. "title": "ms",
  1813. "first": "eloïse",
  1814. "last": "francois"
  1815. },
  1816. "location": {
  1817. "street": "5215 place de l'abbé-jean-lebeuf",
  1818. "city": "tours",
  1819. "state": "vendée",
  1820. "zip": 34489
  1821. },
  1822. "email": "eloïse.francois@example.com",
  1823. "username": "bigleopard201",
  1824. "password": "spread",
  1825. "phone": "01-48-51-64-77",
  1826. "picture": {
  1827. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/39.jpg",
  1828. "large": "https://randomuser.me/api/portraits/women/39.jpg"
  1829. }
  1830. }, {
  1831. "gender": "female",
  1832. "name": {
  1833. "title": "ms",
  1834. "first": "valentine",
  1835. "last": "rey"
  1836. },
  1837. "location": {
  1838. "street": "2688 boulevard de la duchère",
  1839. "city": "nantes",
  1840. "state": "nord",
  1841. "zip": 59203
  1842. },
  1843. "email": "valentine.rey@example.com",
  1844. "username": "bluepeacock840",
  1845. "password": "blanked",
  1846. "phone": "04-60-46-59-92",
  1847. "picture": {
  1848. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/81.jpg",
  1849. "large": "https://randomuser.me/api/portraits/women/81.jpg"
  1850. }
  1851. }, {
  1852. "gender": "male",
  1853. "name": {
  1854. "title": "mr",
  1855. "first": "léonard",
  1856. "last": "denis"
  1857. },
  1858. "location": {
  1859. "street": "5828 rue des cuirassiers",
  1860. "city": "tours",
  1861. "state": "isère",
  1862. "zip": 12773
  1863. },
  1864. "email": "léonard.denis@example.com",
  1865. "username": "ticklishkoala355",
  1866. "password": "macross",
  1867. "phone": "02-23-73-94-64",
  1868. "picture": {
  1869. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/51.jpg",
  1870. "large": "https://randomuser.me/api/portraits/men/51.jpg"
  1871. }
  1872. }, {
  1873. "gender": "female",
  1874. "name": {
  1875. "title": "mrs",
  1876. "first": "sophie",
  1877. "last": "adam"
  1878. },
  1879. "location": {
  1880. "street": "9048 rue du moulin",
  1881. "city": "nîmes",
  1882. "state": "aude",
  1883. "zip": 72453
  1884. },
  1885. "email": "sophie.adam@example.com",
  1886. "username": "organicfish899",
  1887. "password": "dancing",
  1888. "phone": "02-55-78-89-55",
  1889. "picture": {
  1890. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/77.jpg",
  1891. "large": "https://randomuser.me/api/portraits/women/77.jpg"
  1892. }
  1893. }, {
  1894. "gender": "male",
  1895. "name": {
  1896. "title": "mr",
  1897. "first": "thibaut",
  1898. "last": "lucas"
  1899. },
  1900. "location": {
  1901. "street": "1557 rue chazière",
  1902. "city": "dijon",
  1903. "state": "allier",
  1904. "zip": 74638
  1905. },
  1906. "email": "thibaut.lucas@example.com",
  1907. "username": "purplefish415",
  1908. "password": "ocean",
  1909. "phone": "04-93-53-56-04",
  1910. "picture": {
  1911. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/48.jpg",
  1912. "large": "https://randomuser.me/api/portraits/men/48.jpg"
  1913. }
  1914. }, {
  1915. "gender": "male",
  1916. "name": {
  1917. "title": "mr",
  1918. "first": "johan",
  1919. "last": "renaud"
  1920. },
  1921. "location": {
  1922. "street": "2660 rue de l'abbé-gillet",
  1923. "city": "asnières-sur-seine",
  1924. "state": "pas-de-calais",
  1925. "zip": 97075
  1926. },
  1927. "email": "johan.renaud@example.com",
  1928. "username": "tinymeercat279",
  1929. "password": "aramis",
  1930. "phone": "03-45-38-33-12",
  1931. "picture": {
  1932. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/13.jpg",
  1933. "large": "https://randomuser.me/api/portraits/men/13.jpg"
  1934. }
  1935. }, {
  1936. "gender": "female",
  1937. "name": {
  1938. "title": "miss",
  1939. "first": "jade",
  1940. "last": "garnier"
  1941. },
  1942. "location": {
  1943. "street": "8967 place des 44 enfants d'izieu",
  1944. "city": "paris",
  1945. "state": "manche",
  1946. "zip": 90666
  1947. },
  1948. "email": "jade.garnier@example.com",
  1949. "username": "purplemouse463",
  1950. "password": "richie",
  1951. "phone": "03-84-84-64-98",
  1952. "picture": {
  1953. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/14.jpg",
  1954. "large": "https://randomuser.me/api/portraits/women/14.jpg"
  1955. }
  1956. }, {
  1957. "gender": "male",
  1958. "name": {
  1959. "title": "mr",
  1960. "first": "timeo",
  1961. "last": "petit"
  1962. },
  1963. "location": {
  1964. "street": "7239 rue abel",
  1965. "city": "villeurbanne",
  1966. "state": "saône-et-loire",
  1967. "zip": 74447
  1968. },
  1969. "email": "timeo.petit@example.com",
  1970. "username": "smallbutterfly123",
  1971. "password": "626262",
  1972. "phone": "02-45-71-51-36",
  1973. "picture": {
  1974. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/15.jpg",
  1975. "large": "https://randomuser.me/api/portraits/men/15.jpg"
  1976. }
  1977. }, {
  1978. "gender": "male",
  1979. "name": {
  1980. "title": "mr",
  1981. "first": "julien",
  1982. "last": "leroy"
  1983. },
  1984. "location": {
  1985. "street": "2257 avenue de l'abbé-roussel",
  1986. "city": "nanterre",
  1987. "state": "drôme",
  1988. "zip": 87242
  1989. },
  1990. "email": "julien.leroy@example.com",
  1991. "username": "yellowlion151",
  1992. "password": "yoyoma",
  1993. "phone": "01-32-40-02-33",
  1994. "picture": {
  1995. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/20.jpg",
  1996. "large": "https://randomuser.me/api/portraits/men/20.jpg"
  1997. }
  1998. }, {
  1999. "gender": "male",
  2000. "name": {
  2001. "title": "mr",
  2002. "first": "gaëtan",
  2003. "last": "nicolas"
  2004. },
  2005. "location": {
  2006. "street": "4373 rue du château",
  2007. "city": "nanterre",
  2008. "state": "aisn",
  2009. "zip": 15512
  2010. },
  2011. "email": "gaëtan.nicolas@example.com",
  2012. "username": "blackmeercat674",
  2013. "password": "ripley",
  2014. "phone": "01-26-98-86-49",
  2015. "picture": {
  2016. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/57.jpg",
  2017. "large": "https://randomuser.me/api/portraits/men/57.jpg"
  2018. }
  2019. }, {
  2020. "gender": "female",
  2021. "name": {
  2022. "title": "mrs",
  2023. "first": "emmy",
  2024. "last": "fontai"
  2025. },
  2026. "location": {
  2027. "street": "1332 rue de la fontaine",
  2028. "city": "saint-denis",
  2029. "state": "tarn-et-garonne",
  2030. "zip": 18215
  2031. },
  2032. "email": "emmy.fontai@example.com",
  2033. "username": "smallpeacock773",
  2034. "password": "worm",
  2035. "phone": "02-32-09-35-09",
  2036. "picture": {
  2037. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/80.jpg",
  2038. "large": "https://randomuser.me/api/portraits/women/80.jpg"
  2039. }
  2040. }, {
  2041. "gender": "male",
  2042. "name": {
  2043. "title": "mr",
  2044. "first": "ilan",
  2045. "last": "roy"
  2046. },
  2047. "location": {
  2048. "street": "6494 grande rue",
  2049. "city": "pau",
  2050. "state": "sarthe",
  2051. "zip": 73754
  2052. },
  2053. "email": "ilan.roy@example.com",
  2054. "username": "heavyrabbit125",
  2055. "password": "747474",
  2056. "phone": "03-49-39-04-24",
  2057. "picture": {
  2058. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/43.jpg",
  2059. "large": "https://randomuser.me/api/portraits/men/43.jpg"
  2060. }
  2061. }, {
  2062. "gender": "male",
  2063. "name": {
  2064. "title": "mr",
  2065. "first": "dorian",
  2066. "last": "marchand"
  2067. },
  2068. "location": {
  2069. "street": "6838 rue bataille",
  2070. "city": "le mans",
  2071. "state": "indre",
  2072. "zip": 85215
  2073. },
  2074. "email": "dorian.marchand@example.com",
  2075. "username": "ticklishmeercat706",
  2076. "password": "kayla",
  2077. "phone": "03-15-75-86-86",
  2078. "picture": {
  2079. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/79.jpg",
  2080. "large": "https://randomuser.me/api/portraits/men/79.jpg"
  2081. }
  2082. }, {
  2083. "gender": "female",
  2084. "name": {
  2085. "title": "miss",
  2086. "first": "constance",
  2087. "last": "roussel"
  2088. },
  2089. "location": {
  2090. "street": "4162 rue saint-georges",
  2091. "city": "metz",
  2092. "state": "savoie",
  2093. "zip": 47612
  2094. },
  2095. "email": "constance.roussel@example.com",
  2096. "username": "blacksnake489",
  2097. "password": "surfer",
  2098. "phone": "05-78-37-70-81",
  2099. "picture": {
  2100. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/92.jpg",
  2101. "large": "https://randomuser.me/api/portraits/women/92.jpg"
  2102. }
  2103. }, {
  2104. "gender": "female",
  2105. "name": {
  2106. "title": "miss",
  2107. "first": "sara",
  2108. "last": "andre"
  2109. },
  2110. "location": {
  2111. "street": "3032 rue du bât-d'argent",
  2112. "city": "dijon",
  2113. "state": "haut-rhin",
  2114. "zip": 95086
  2115. },
  2116. "email": "sara.andre@example.com",
  2117. "username": "heavyelephant273",
  2118. "password": "barney1",
  2119. "phone": "05-41-74-31-87",
  2120. "picture": {
  2121. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/57.jpg",
  2122. "large": "https://randomuser.me/api/portraits/women/57.jpg"
  2123. }
  2124. }, {
  2125. "gender": "female",
  2126. "name": {
  2127. "title": "mrs",
  2128. "first": "apolline",
  2129. "last": "moulin"
  2130. },
  2131. "location": {
  2132. "street": "8882 place de la mairie",
  2133. "city": "aubervilliers",
  2134. "state": "eure",
  2135. "zip": 73503
  2136. },
  2137. "email": "apolline.moulin@example.com",
  2138. "username": "biggoose874",
  2139. "password": "francesc",
  2140. "phone": "05-58-33-28-34",
  2141. "picture": {
  2142. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/32.jpg",
  2143. "large": "https://randomuser.me/api/portraits/women/32.jpg"
  2144. }
  2145. }, {
  2146. "gender": "male",
  2147. "name": {
  2148. "title": "mr",
  2149. "first": "johan",
  2150. "last": "vincent"
  2151. },
  2152. "location": {
  2153. "street": "1015 rue des abbesses",
  2154. "city": "villeurbanne",
  2155. "state": "nièvre",
  2156. "zip": 82429
  2157. },
  2158. "email": "johan.vincent@example.com",
  2159. "username": "tinyfish810",
  2160. "password": "stuart",
  2161. "phone": "04-69-63-71-14",
  2162. "picture": {
  2163. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/41.jpg",
  2164. "large": "https://randomuser.me/api/portraits/men/41.jpg"
  2165. }
  2166. }, {
  2167. "gender": "female",
  2168. "name": {
  2169. "title": "miss",
  2170. "first": "mélody",
  2171. "last": "vidal"
  2172. },
  2173. "location": {
  2174. "street": "9185 rue de la baleine",
  2175. "city": "bordeaux",
  2176. "state": "vendée",
  2177. "zip": 70247
  2178. },
  2179. "email": "mélody.vidal@example.com",
  2180. "username": "bigswan795",
  2181. "password": "bacchus",
  2182. "phone": "03-55-77-10-39",
  2183. "picture": {
  2184. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/56.jpg",
  2185. "large": "https://randomuser.me/api/portraits/women/56.jpg"
  2186. }
  2187. }, {
  2188. "gender": "female",
  2189. "name": {
  2190. "title": "miss",
  2191. "first": "lya",
  2192. "last": "david"
  2193. },
  2194. "location": {
  2195. "street": "3984 rue barrème",
  2196. "city": "courbevoie",
  2197. "state": "dordogne",
  2198. "zip": 66403
  2199. },
  2200. "email": "lya.david@example.com",
  2201. "username": "brownfrog749",
  2202. "password": "outside",
  2203. "phone": "04-62-58-13-77",
  2204. "picture": {
  2205. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/61.jpg",
  2206. "large": "https://randomuser.me/api/portraits/women/61.jpg"
  2207. }
  2208. }, {
  2209. "gender": "female",
  2210. "name": {
  2211. "title": "miss",
  2212. "first": "bérénice",
  2213. "last": "gauthier"
  2214. },
  2215. "location": {
  2216. "street": "3896 place paul-duquaire",
  2217. "city": "saint-étienne",
  2218. "state": "nord",
  2219. "zip": 31408
  2220. },
  2221. "email": "bérénice.gauthier@example.com",
  2222. "username": "beautifuldog787",
  2223. "password": "raider",
  2224. "phone": "03-96-55-76-61",
  2225. "picture": {
  2226. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/79.jpg",
  2227. "large": "https://randomuser.me/api/portraits/women/79.jpg"
  2228. }
  2229. }, {
  2230. "gender": "female",
  2231. "name": {
  2232. "title": "miss",
  2233. "first": "olivia",
  2234. "last": "boyer"
  2235. },
  2236. "location": {
  2237. "street": "8282 rue principale",
  2238. "city": "strasbourg",
  2239. "state": "vosges",
  2240. "zip": 46355
  2241. },
  2242. "email": "olivia.boyer@example.com",
  2243. "username": "ticklishbird698",
  2244. "password": "yuan",
  2245. "phone": "05-77-81-00-74",
  2246. "picture": {
  2247. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/90.jpg",
  2248. "large": "https://randomuser.me/api/portraits/women/90.jpg"
  2249. }
  2250. }, {
  2251. "gender": "male",
  2252. "name": {
  2253. "title": "mr",
  2254. "first": "robin",
  2255. "last": "lemaire"
  2256. },
  2257. "location": {
  2258. "street": "4305 rue de l'église",
  2259. "city": "pau",
  2260. "state": "ardèche",
  2261. "zip": 46881
  2262. },
  2263. "email": "robin.lemaire@example.com",
  2264. "username": "ticklishbear636",
  2265. "password": "lockerroom",
  2266. "phone": "03-51-57-58-51",
  2267. "picture": {
  2268. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/46.jpg",
  2269. "large": "https://randomuser.me/api/portraits/men/46.jpg"
  2270. }
  2271. }, {
  2272. "gender": "female",
  2273. "name": {
  2274. "title": "miss",
  2275. "first": "constance",
  2276. "last": "moulin"
  2277. },
  2278. "location": {
  2279. "street": "4269 rue de l'abbé-roger-derry",
  2280. "city": "colombes",
  2281. "state": "seine-saint-denis",
  2282. "zip": 98323
  2283. },
  2284. "email": "constance.moulin@example.com",
  2285. "username": "biggoose472",
  2286. "password": "hobbit",
  2287. "phone": "02-25-39-32-52",
  2288. "picture": {
  2289. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/93.jpg",
  2290. "large": "https://randomuser.me/api/portraits/women/93.jpg"
  2291. }
  2292. }, {
  2293. "gender": "female",
  2294. "name": {
  2295. "title": "ms",
  2296. "first": "margaux",
  2297. "last": "guerin"
  2298. },
  2299. "location": {
  2300. "street": "4153 rue cyrus-hugues",
  2301. "city": "le mans",
  2302. "state": "charente-maritime",
  2303. "zip": 30722
  2304. },
  2305. "email": "margaux.guerin@example.com",
  2306. "username": "yellowsnake728",
  2307. "password": "destiny",
  2308. "phone": "01-20-51-28-68",
  2309. "picture": {
  2310. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/45.jpg",
  2311. "large": "https://randomuser.me/api/portraits/women/45.jpg"
  2312. }
  2313. }, {
  2314. "gender": "female",
  2315. "name": {
  2316. "title": "mrs",
  2317. "first": "lila",
  2318. "last": "chevalier"
  2319. },
  2320. "location": {
  2321. "street": "9572 rue baraban",
  2322. "city": "versailles",
  2323. "state": "alpes-maritimes",
  2324. "zip": 91582
  2325. },
  2326. "email": "lila.chevalier@example.com",
  2327. "username": "purplegorilla353",
  2328. "password": "big1",
  2329. "phone": "01-91-29-31-25",
  2330. "picture": {
  2331. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/65.jpg",
  2332. "large": "https://randomuser.me/api/portraits/women/65.jpg"
  2333. }
  2334. }, {
  2335. "gender": "male",
  2336. "name": {
  2337. "title": "mr",
  2338. "first": "guillaume",
  2339. "last": "lacroix"
  2340. },
  2341. "location": {
  2342. "street": "6381 rue des chartreux",
  2343. "city": "paris",
  2344. "state": "lozère",
  2345. "zip": 65560
  2346. },
  2347. "email": "guillaume.lacroix@example.com",
  2348. "username": "redpanda437",
  2349. "password": "hotdog",
  2350. "phone": "01-17-94-09-40",
  2351. "picture": {
  2352. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/70.jpg",
  2353. "large": "https://randomuser.me/api/portraits/men/70.jpg"
  2354. }
  2355. }, {
  2356. "gender": "female",
  2357. "name": {
  2358. "title": "ms",
  2359. "first": "romy",
  2360. "last": "nguyen"
  2361. },
  2362. "location": {
  2363. "street": "7837 cours charlemagne",
  2364. "city": "courbevoie",
  2365. "state": "haute-garonne",
  2366. "zip": 29689
  2367. },
  2368. "email": "romy.nguyen@example.com",
  2369. "username": "heavybird504",
  2370. "password": "sithlord",
  2371. "phone": "03-31-83-53-50",
  2372. "picture": {
  2373. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/41.jpg",
  2374. "large": "https://randomuser.me/api/portraits/women/41.jpg"
  2375. }
  2376. }, {
  2377. "gender": "male",
  2378. "name": {
  2379. "title": "mr",
  2380. "first": "justin",
  2381. "last": "leroy"
  2382. },
  2383. "location": {
  2384. "street": "4990 rue d'abbeville",
  2385. "city": "nantes",
  2386. "state": "haut-rhin",
  2387. "zip": 90173
  2388. },
  2389. "email": "justin.leroy@example.com",
  2390. "username": "brownduck304",
  2391. "password": "dynasty",
  2392. "phone": "03-84-11-52-63",
  2393. "picture": {
  2394. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/42.jpg",
  2395. "large": "https://randomuser.me/api/portraits/men/42.jpg"
  2396. }
  2397. }, {
  2398. "gender": "female",
  2399. "name": {
  2400. "title": "mrs",
  2401. "first": "kelya",
  2402. "last": "rey"
  2403. },
  2404. "location": {
  2405. "street": "3826 rue du bon-pasteur",
  2406. "city": "bordeaux",
  2407. "state": "jura",
  2408. "zip": 18967
  2409. },
  2410. "email": "kelya.rey@example.com",
  2411. "username": "redleopard483",
  2412. "password": "roxanne",
  2413. "phone": "05-96-81-67-71",
  2414. "picture": {
  2415. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/81.jpg",
  2416. "large": "https://randomuser.me/api/portraits/women/81.jpg"
  2417. }
  2418. }, {
  2419. "gender": "male",
  2420. "name": {
  2421. "title": "mr",
  2422. "first": "edouard",
  2423. "last": "muller"
  2424. },
  2425. "location": {
  2426. "street": "1512 rue denfert-rochereau",
  2427. "city": "rennes",
  2428. "state": "puy-de-dôme",
  2429. "zip": 86538
  2430. },
  2431. "email": "edouard.muller@example.com",
  2432. "username": "smallgorilla905",
  2433. "password": "loki",
  2434. "phone": "04-98-26-41-53",
  2435. "picture": {
  2436. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/37.jpg",
  2437. "large": "https://randomuser.me/api/portraits/men/37.jpg"
  2438. }
  2439. }, {
  2440. "gender": "female",
  2441. "name": {
  2442. "title": "mrs",
  2443. "first": "louisa",
  2444. "last": "joly"
  2445. },
  2446. "location": {
  2447. "street": "8915 rue de l'abbé-carton",
  2448. "city": "nanterre",
  2449. "state": "moselle",
  2450. "zip": 68719
  2451. },
  2452. "email": "louisa.joly@example.com",
  2453. "username": "whitemeercat946",
  2454. "password": "madness",
  2455. "phone": "05-97-44-18-29",
  2456. "picture": {
  2457. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/40.jpg",
  2458. "large": "https://randomuser.me/api/portraits/women/40.jpg"
  2459. }
  2460. }, {
  2461. "gender": "male",
  2462. "name": {
  2463. "title": "mr",
  2464. "first": "mathieu",
  2465. "last": "arnaud"
  2466. },
  2467. "location": {
  2468. "street": "3087 rue cyrus-hugues",
  2469. "city": "reims",
  2470. "state": "vendée",
  2471. "zip": 72631
  2472. },
  2473. "email": "mathieu.arnaud@example.com",
  2474. "username": "brownduck281",
  2475. "password": "badger",
  2476. "phone": "05-94-29-79-68",
  2477. "picture": {
  2478. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/6.jpg",
  2479. "large": "https://randomuser.me/api/portraits/men/6.jpg"
  2480. }
  2481. }, {
  2482. "gender": "female",
  2483. "name": {
  2484. "title": "mrs",
  2485. "first": "léonie",
  2486. "last": "garnier"
  2487. },
  2488. "location": {
  2489. "street": "2535 rue pierre-delore",
  2490. "city": "reims",
  2491. "state": "corse-du-sud",
  2492. "zip": 10326
  2493. },
  2494. "email": "léonie.garnier@example.com",
  2495. "username": "purplerabbit916",
  2496. "password": "vintage",
  2497. "phone": "05-73-40-33-13",
  2498. "picture": {
  2499. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/60.jpg",
  2500. "large": "https://randomuser.me/api/portraits/women/60.jpg"
  2501. }
  2502. }, {
  2503. "gender": "male",
  2504. "name": {
  2505. "title": "mr",
  2506. "first": "roméo",
  2507. "last": "durand"
  2508. },
  2509. "location": {
  2510. "street": "8385 rue pasteur",
  2511. "city": "villeurbanne",
  2512. "state": "eure",
  2513. "zip": 64641
  2514. },
  2515. "email": "roméo.durand@example.com",
  2516. "username": "bluedog773",
  2517. "password": "byebye",
  2518. "phone": "03-46-21-50-29",
  2519. "picture": {
  2520. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/19.jpg",
  2521. "large": "https://randomuser.me/api/portraits/men/19.jpg"
  2522. }
  2523. }, {
  2524. "gender": "female",
  2525. "name": {
  2526. "title": "mrs",
  2527. "first": "lilou",
  2528. "last": "robert"
  2529. },
  2530. "location": {
  2531. "street": "8943 rue abel-gance",
  2532. "city": "asnières-sur-seine",
  2533. "state": "tarn",
  2534. "zip": 14597
  2535. },
  2536. "email": "lilou.robert@example.com",
  2537. "username": "tinybird877",
  2538. "password": "trinidad",
  2539. "phone": "04-68-24-10-20",
  2540. "picture": {
  2541. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/96.jpg",
  2542. "large": "https://randomuser.me/api/portraits/women/96.jpg"
  2543. }
  2544. }, {
  2545. "gender": "female",
  2546. "name": {
  2547. "title": "miss",
  2548. "first": "clarisse",
  2549. "last": "lemaire"
  2550. },
  2551. "location": {
  2552. "street": "7080 rue de l'abbé-carton",
  2553. "city": "avignon",
  2554. "state": "val-de-marne",
  2555. "zip": 61205
  2556. },
  2557. "email": "clarisse.lemaire@example.com",
  2558. "username": "brownbird973",
  2559. "password": "raiders1",
  2560. "phone": "05-26-26-13-95",
  2561. "picture": {
  2562. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/56.jpg",
  2563. "large": "https://randomuser.me/api/portraits/women/56.jpg"
  2564. }
  2565. }, {
  2566. "gender": "male",
  2567. "name": {
  2568. "title": "mr",
  2569. "first": "théo",
  2570. "last": "lemoine"
  2571. },
  2572. "location": {
  2573. "street": "1497 rue duguesclin",
  2574. "city": "saint-étienne",
  2575. "state": "alpes-maritimes",
  2576. "zip": 84487
  2577. },
  2578. "email": "théo.lemoine@example.com",
  2579. "username": "blueduck904",
  2580. "password": "kristina",
  2581. "phone": "02-20-65-45-90",
  2582. "picture": {
  2583. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/36.jpg",
  2584. "large": "https://randomuser.me/api/portraits/men/36.jpg"
  2585. }
  2586. }, {
  2587. "gender": "male",
  2588. "name": {
  2589. "title": "mr",
  2590. "first": "tim",
  2591. "last": "fernandez"
  2592. },
  2593. "location": {
  2594. "street": "5205 rue de la fontaine",
  2595. "city": "strasbourg",
  2596. "state": "eure",
  2597. "zip": 52350
  2598. },
  2599. "email": "tim.fernandez@example.com",
  2600. "username": "brownduck989",
  2601. "password": "slapper",
  2602. "phone": "02-31-16-71-38",
  2603. "picture": {
  2604. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/10.jpg",
  2605. "large": "https://randomuser.me/api/portraits/men/10.jpg"
  2606. }
  2607. }, {
  2608. "gender": "male",
  2609. "name": {
  2610. "title": "mr",
  2611. "first": "pablo",
  2612. "last": "renard"
  2613. },
  2614. "location": {
  2615. "street": "2203 rue de l'abbé-roger-derry",
  2616. "city": "reims",
  2617. "state": "martinique",
  2618. "zip": 68901
  2619. },
  2620. "email": "pablo.renard@example.com",
  2621. "username": "blackbird408",
  2622. "password": "fortress",
  2623. "phone": "03-03-33-79-22",
  2624. "picture": {
  2625. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/7.jpg",
  2626. "large": "https://randomuser.me/api/portraits/men/7.jpg"
  2627. }
  2628. }, {
  2629. "gender": "female",
  2630. "name": {
  2631. "title": "mrs",
  2632. "first": "mélody",
  2633. "last": "lambert"
  2634. },
  2635. "location": {
  2636. "street": "5234 rue abel-ferry",
  2637. "city": "saint-pierre",
  2638. "state": "somme",
  2639. "zip": 92087
  2640. },
  2641. "email": "mélody.lambert@example.com",
  2642. "username": "yellowkoala870",
  2643. "password": "voyeur",
  2644. "phone": "01-39-00-47-15",
  2645. "picture": {
  2646. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/83.jpg",
  2647. "large": "https://randomuser.me/api/portraits/women/83.jpg"
  2648. }
  2649. }, {
  2650. "gender": "female",
  2651. "name": {
  2652. "title": "ms",
  2653. "first": "giulia",
  2654. "last": "meyer"
  2655. },
  2656. "location": {
  2657. "street": "7412 rue paul-duvivier",
  2658. "city": "aubervilliers",
  2659. "state": "gers",
  2660. "zip": 31316
  2661. },
  2662. "email": "giulia.meyer@example.com",
  2663. "username": "organicelephant948",
  2664. "password": "sooner",
  2665. "phone": "04-17-50-37-96",
  2666. "picture": {
  2667. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/48.jpg",
  2668. "large": "https://randomuser.me/api/portraits/women/48.jpg"
  2669. }
  2670. }, {
  2671. "gender": "male",
  2672. "name": {
  2673. "title": "mr",
  2674. "first": "maxence",
  2675. "last": "leroux"
  2676. },
  2677. "location": {
  2678. "street": "5555 rue du dauphiné",
  2679. "city": "brest",
  2680. "state": "haute-savoie",
  2681. "zip": 61388
  2682. },
  2683. "email": "maxence.leroux@example.com",
  2684. "username": "bluelion346",
  2685. "password": "animal",
  2686. "phone": "05-93-90-42-73",
  2687. "picture": {
  2688. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/84.jpg",
  2689. "large": "https://randomuser.me/api/portraits/men/84.jpg"
  2690. }
  2691. }, {
  2692. "gender": "male",
  2693. "name": {
  2694. "title": "mr",
  2695. "first": "téo",
  2696. "last": "guerin"
  2697. },
  2698. "location": {
  2699. "street": "2287 place du 8 novembre 1942",
  2700. "city": "rennes",
  2701. "state": "yvelines",
  2702. "zip": 27607
  2703. },
  2704. "email": "téo.guerin@example.com",
  2705. "username": "silvermouse999",
  2706. "password": "player1",
  2707. "phone": "04-92-20-92-09",
  2708. "picture": {
  2709. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/32.jpg",
  2710. "large": "https://randomuser.me/api/portraits/men/32.jpg"
  2711. }
  2712. }, {
  2713. "gender": "female",
  2714. "name": {
  2715. "title": "miss",
  2716. "first": "luna",
  2717. "last": "roussel"
  2718. },
  2719. "location": {
  2720. "street": "4953 rue du moulin",
  2721. "city": "angers",
  2722. "state": "aveyron",
  2723. "zip": 72211
  2724. },
  2725. "email": "luna.roussel@example.com",
  2726. "username": "lazyswan987",
  2727. "password": "gustav",
  2728. "phone": "02-31-60-25-57",
  2729. "picture": {
  2730. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/79.jpg",
  2731. "large": "https://randomuser.me/api/portraits/women/79.jpg"
  2732. }
  2733. }, {
  2734. "gender": "female",
  2735. "name": {
  2736. "title": "ms",
  2737. "first": "maëline",
  2738. "last": "roy"
  2739. },
  2740. "location": {
  2741. "street": "3388 rue de bonnel",
  2742. "city": "montreuil",
  2743. "state": "allier",
  2744. "zip": 33778
  2745. },
  2746. "email": "maëline.roy@example.com",
  2747. "username": "smallbear726",
  2748. "password": "joseph",
  2749. "phone": "01-71-40-90-89",
  2750. "picture": {
  2751. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/39.jpg",
  2752. "large": "https://randomuser.me/api/portraits/women/39.jpg"
  2753. }
  2754. }, {
  2755. "gender": "male",
  2756. "name": {
  2757. "title": "mr",
  2758. "first": "jordan",
  2759. "last": "roger"
  2760. },
  2761. "location": {
  2762. "street": "2291 rue des abbesses",
  2763. "city": "marseille",
  2764. "state": "indre-et-loire",
  2765. "zip": 22525
  2766. },
  2767. "email": "jordan.roger@example.com",
  2768. "username": "bigfish980",
  2769. "password": "kinky",
  2770. "phone": "03-72-00-04-13",
  2771. "picture": {
  2772. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/95.jpg",
  2773. "large": "https://randomuser.me/api/portraits/men/95.jpg"
  2774. }
  2775. }, {
  2776. "gender": "male",
  2777. "name": {
  2778. "title": "mr",
  2779. "first": "rafael",
  2780. "last": "muller"
  2781. },
  2782. "location": {
  2783. "street": "5824 rue de l'abbé-soulange-bodin",
  2784. "city": "metz",
  2785. "state": "pas-de-calais",
  2786. "zip": 31642
  2787. },
  2788. "email": "rafael.muller@example.com",
  2789. "username": "bluewolf688",
  2790. "password": "please",
  2791. "phone": "04-81-24-33-55",
  2792. "picture": {
  2793. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/64.jpg",
  2794. "large": "https://randomuser.me/api/portraits/men/64.jpg"
  2795. }
  2796. }, {
  2797. "gender": "female",
  2798. "name": {
  2799. "title": "ms",
  2800. "first": "charlotte",
  2801. "last": "fleury"
  2802. },
  2803. "location": {
  2804. "street": "9861 avenue de la libération",
  2805. "city": "poitiers",
  2806. "state": "drôme",
  2807. "zip": 58632
  2808. },
  2809. "email": "charlotte.fleury@example.com",
  2810. "username": "silverfish678",
  2811. "password": "vector",
  2812. "phone": "03-96-10-99-73",
  2813. "picture": {
  2814. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/66.jpg",
  2815. "large": "https://randomuser.me/api/portraits/women/66.jpg"
  2816. }
  2817. }, {
  2818. "gender": "female",
  2819. "name": {
  2820. "title": "ms",
  2821. "first": "eva",
  2822. "last": "robin"
  2823. },
  2824. "location": {
  2825. "street": "1332 cours charlemagne",
  2826. "city": "marseille",
  2827. "state": "allier",
  2828. "zip": 80575
  2829. },
  2830. "email": "eva.robin@example.com",
  2831. "username": "redtiger872",
  2832. "password": "california",
  2833. "phone": "02-76-96-88-45",
  2834. "picture": {
  2835. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/68.jpg",
  2836. "large": "https://randomuser.me/api/portraits/women/68.jpg"
  2837. }
  2838. }, {
  2839. "gender": "male",
  2840. "name": {
  2841. "title": "mr",
  2842. "first": "martin",
  2843. "last": "menard"
  2844. },
  2845. "location": {
  2846. "street": "7293 avenue debrousse",
  2847. "city": "grenoble",
  2848. "state": "vosges",
  2849. "zip": 41264
  2850. },
  2851. "email": "martin.menard@example.com",
  2852. "username": "orangepanda900",
  2853. "password": "kristine",
  2854. "phone": "04-42-90-84-91",
  2855. "picture": {
  2856. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/97.jpg",
  2857. "large": "https://randomuser.me/api/portraits/men/97.jpg"
  2858. }
  2859. }, {
  2860. "gender": "male",
  2861. "name": {
  2862. "title": "mr",
  2863. "first": "ruben",
  2864. "last": "dubois"
  2865. },
  2866. "location": {
  2867. "street": "5141 rue du bât-d'argent",
  2868. "city": "aubervilliers",
  2869. "state": "haute-marne",
  2870. "zip": 90648
  2871. },
  2872. "email": "ruben.dubois@example.com",
  2873. "username": "heavyduck692",
  2874. "password": "uuuuuuuu",
  2875. "phone": "03-84-91-81-80",
  2876. "picture": {
  2877. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/89.jpg",
  2878. "large": "https://randomuser.me/api/portraits/men/89.jpg"
  2879. }
  2880. }, {
  2881. "gender": "female",
  2882. "name": {
  2883. "title": "ms",
  2884. "first": "lia",
  2885. "last": "olivier"
  2886. },
  2887. "location": {
  2888. "street": "6078 rue courbet",
  2889. "city": "asnières-sur-seine",
  2890. "state": "ardèche",
  2891. "zip": 50179
  2892. },
  2893. "email": "lia.olivier@example.com",
  2894. "username": "yellowfish421",
  2895. "password": "tester",
  2896. "phone": "03-62-90-17-02",
  2897. "picture": {
  2898. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/15.jpg",
  2899. "large": "https://randomuser.me/api/portraits/women/15.jpg"
  2900. }
  2901. }, {
  2902. "gender": "female",
  2903. "name": {
  2904. "title": "ms",
  2905. "first": "maelya",
  2906. "last": "brunet"
  2907. },
  2908. "location": {
  2909. "street": "4864 rue de la mairie",
  2910. "city": "dunkerque",
  2911. "state": "yonne",
  2912. "zip": 58768
  2913. },
  2914. "email": "maelya.brunet@example.com",
  2915. "username": "bigdog752",
  2916. "password": "stayout",
  2917. "phone": "03-06-28-42-61",
  2918. "picture": {
  2919. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/37.jpg",
  2920. "large": "https://randomuser.me/api/portraits/women/37.jpg"
  2921. }
  2922. }, {
  2923. "gender": "female",
  2924. "name": {
  2925. "title": "ms",
  2926. "first": "estelle",
  2927. "last": "francois"
  2928. },
  2929. "location": {
  2930. "street": "9297 place du 8 février 1962",
  2931. "city": "nice",
  2932. "state": "dordogne",
  2933. "zip": 95842
  2934. },
  2935. "email": "estelle.francois@example.com",
  2936. "username": "beautifulduck145",
  2937. "password": "gillian",
  2938. "phone": "01-09-36-49-84",
  2939. "picture": {
  2940. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/23.jpg",
  2941. "large": "https://randomuser.me/api/portraits/women/23.jpg"
  2942. }
  2943. }, {
  2944. "gender": "male",
  2945. "name": {
  2946. "title": "mr",
  2947. "first": "sacha",
  2948. "last": "rey"
  2949. },
  2950. "location": {
  2951. "street": "1392 avenue jean-jaurès",
  2952. "city": "rueil-malmaison",
  2953. "state": "tarn",
  2954. "zip": 52777
  2955. },
  2956. "email": "sacha.rey@example.com",
  2957. "username": "lazyleopard605",
  2958. "password": "aberdeen",
  2959. "phone": "05-05-46-65-88",
  2960. "picture": {
  2961. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/63.jpg",
  2962. "large": "https://randomuser.me/api/portraits/men/63.jpg"
  2963. }
  2964. }, {
  2965. "gender": "female",
  2966. "name": {
  2967. "title": "miss",
  2968. "first": "inaya",
  2969. "last": "brunet"
  2970. },
  2971. "location": {
  2972. "street": "1751 rue bossuet",
  2973. "city": "angers",
  2974. "state": "allier",
  2975. "zip": 17391
  2976. },
  2977. "email": "inaya.brunet@example.com",
  2978. "username": "beautifulfish263",
  2979. "password": "pyon",
  2980. "phone": "01-86-83-65-67",
  2981. "picture": {
  2982. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/50.jpg",
  2983. "large": "https://randomuser.me/api/portraits/women/50.jpg"
  2984. }
  2985. }, {
  2986. "gender": "female",
  2987. "name": {
  2988. "title": "mrs",
  2989. "first": "roxane",
  2990. "last": "lefebvre"
  2991. },
  2992. "location": {
  2993. "street": "9416 place de l'abbé-jean-lebeuf",
  2994. "city": "toulon",
  2995. "state": "haute-savoie",
  2996. "zip": 39227
  2997. },
  2998. "email": "roxane.lefebvre@example.com",
  2999. "username": "lazywolf795",
  3000. "password": "brittney",
  3001. "phone": "03-69-67-21-89",
  3002. "picture": {
  3003. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/30.jpg",
  3004. "large": "https://randomuser.me/api/portraits/women/30.jpg"
  3005. }
  3006. }, {
  3007. "gender": "female",
  3008. "name": {
  3009. "title": "ms",
  3010. "first": "chiara",
  3011. "last": "riviere"
  3012. },
  3013. "location": {
  3014. "street": "4338 rue pasteur",
  3015. "city": "montpellier",
  3016. "state": "loir-et-cher",
  3017. "zip": 66528
  3018. },
  3019. "email": "chiara.riviere@example.com",
  3020. "username": "greenbear652",
  3021. "password": "kick",
  3022. "phone": "03-70-00-56-40",
  3023. "picture": {
  3024. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/30.jpg",
  3025. "large": "https://randomuser.me/api/portraits/women/30.jpg"
  3026. }
  3027. }, {
  3028. "gender": "female",
  3029. "name": {
  3030. "title": "mrs",
  3031. "first": "alexia",
  3032. "last": "rousseau"
  3033. },
  3034. "location": {
  3035. "street": "7107 rue dumenge",
  3036. "city": "courbevoie",
  3037. "state": "aube",
  3038. "zip": 93400
  3039. },
  3040. "email": "alexia.rousseau@example.com",
  3041. "username": "bigswan118",
  3042. "password": "nang",
  3043. "phone": "05-52-90-86-59",
  3044. "picture": {
  3045. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/62.jpg",
  3046. "large": "https://randomuser.me/api/portraits/women/62.jpg"
  3047. }
  3048. }, {
  3049. "gender": "female",
  3050. "name": {
  3051. "title": "miss",
  3052. "first": "méline",
  3053. "last": "masson"
  3054. },
  3055. "location": {
  3056. "street": "2192 rue duquesne",
  3057. "city": "courbevoie",
  3058. "state": "vienne",
  3059. "zip": 20784
  3060. },
  3061. "email": "méline.masson@example.com",
  3062. "username": "beautifulfrog350",
  3063. "password": "magicman",
  3064. "phone": "05-12-62-93-27",
  3065. "picture": {
  3066. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/53.jpg",
  3067. "large": "https://randomuser.me/api/portraits/women/53.jpg"
  3068. }
  3069. }, {
  3070. "gender": "male",
  3071. "name": {
  3072. "title": "mr",
  3073. "first": "loïc",
  3074. "last": "blanc"
  3075. },
  3076. "location": {
  3077. "street": "3790 quai chauveau",
  3078. "city": "pau",
  3079. "state": "pas-de-calais",
  3080. "zip": 89631
  3081. },
  3082. "email": "loïc.blanc@example.com",
  3083. "username": "silverelephant702",
  3084. "password": "swordfis",
  3085. "phone": "02-08-99-59-45",
  3086. "picture": {
  3087. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/13.jpg",
  3088. "large": "https://randomuser.me/api/portraits/men/13.jpg"
  3089. }
  3090. }, {
  3091. "gender": "male",
  3092. "name": {
  3093. "title": "mr",
  3094. "first": "elio",
  3095. "last": "francois"
  3096. },
  3097. "location": {
  3098. "street": "7136 rue de la mairie",
  3099. "city": "dunkerque",
  3100. "state": "sarthe",
  3101. "zip": 20086
  3102. },
  3103. "email": "elio.francois@example.com",
  3104. "username": "lazyelephant126",
  3105. "password": "jonjon",
  3106. "phone": "02-57-52-73-32",
  3107. "picture": {
  3108. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/56.jpg",
  3109. "large": "https://randomuser.me/api/portraits/men/56.jpg"
  3110. }
  3111. }, {
  3112. "gender": "male",
  3113. "name": {
  3114. "title": "mr",
  3115. "first": "anatole",
  3116. "last": "caron"
  3117. },
  3118. "location": {
  3119. "street": "5588 place de l'église",
  3120. "city": "montreuil",
  3121. "state": "bas-rhin",
  3122. "zip": 32576
  3123. },
  3124. "email": "anatole.caron@example.com",
  3125. "username": "brownmouse744",
  3126. "password": "lawson",
  3127. "phone": "02-77-35-04-38",
  3128. "picture": {
  3129. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/20.jpg",
  3130. "large": "https://randomuser.me/api/portraits/men/20.jpg"
  3131. }
  3132. }, {
  3133. "gender": "male",
  3134. "name": {
  3135. "title": "mr",
  3136. "first": "tristan",
  3137. "last": "lemoine"
  3138. },
  3139. "location": {
  3140. "street": "3725 avenue debrousse",
  3141. "city": "mulhouse",
  3142. "state": "vosges",
  3143. "zip": 79564
  3144. },
  3145. "email": "tristan.lemoine@example.com",
  3146. "username": "smallladybug720",
  3147. "password": "samurai",
  3148. "phone": "01-22-12-94-43",
  3149. "picture": {
  3150. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/72.jpg",
  3151. "large": "https://randomuser.me/api/portraits/men/72.jpg"
  3152. }
  3153. }, {
  3154. "gender": "female",
  3155. "name": {
  3156. "title": "miss",
  3157. "first": "julia",
  3158. "last": "leclercq"
  3159. },
  3160. "location": {
  3161. "street": "8098 avenue de la libération",
  3162. "city": "caen",
  3163. "state": "pyrénées-orientales",
  3164. "zip": 39744
  3165. },
  3166. "email": "julia.leclercq@example.com",
  3167. "username": "greengoose561",
  3168. "password": "66666666",
  3169. "phone": "03-45-85-75-88",
  3170. "picture": {
  3171. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/26.jpg",
  3172. "large": "https://randomuser.me/api/portraits/women/26.jpg"
  3173. }
  3174. }, {
  3175. "gender": "male",
  3176. "name": {
  3177. "title": "mr",
  3178. "first": "kylian",
  3179. "last": "hubert"
  3180. },
  3181. "location": {
  3182. "street": "6831 rue cyrus-hugues",
  3183. "city": "orléans",
  3184. "state": "essonne 91",
  3185. "zip": 49128
  3186. },
  3187. "email": "kylian.hubert@example.com",
  3188. "username": "bigsnake664",
  3189. "password": "passmast",
  3190. "phone": "05-21-53-30-33",
  3191. "picture": {
  3192. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/69.jpg",
  3193. "large": "https://randomuser.me/api/portraits/men/69.jpg"
  3194. }
  3195. }, {
  3196. "gender": "male",
  3197. "name": {
  3198. "title": "mr",
  3199. "first": "joshua",
  3200. "last": "deschamps"
  3201. },
  3202. "location": {
  3203. "street": "2719 rue gasparin",
  3204. "city": "colombes",
  3205. "state": "yonne",
  3206. "zip": 44316
  3207. },
  3208. "email": "joshua.deschamps@example.com",
  3209. "username": "bluecat475",
  3210. "password": "duster",
  3211. "phone": "05-28-52-88-54",
  3212. "picture": {
  3213. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/6.jpg",
  3214. "large": "https://randomuser.me/api/portraits/men/6.jpg"
  3215. }
  3216. }, {
  3217. "gender": "female",
  3218. "name": {
  3219. "title": "miss",
  3220. "first": "roxane",
  3221. "last": "philippe"
  3222. },
  3223. "location": {
  3224. "street": "9445 rue laure-diebold",
  3225. "city": "metz",
  3226. "state": "drôme",
  3227. "zip": 27138
  3228. },
  3229. "email": "roxane.philippe@example.com",
  3230. "username": "purpleladybug873",
  3231. "password": "eagles",
  3232. "phone": "02-27-20-52-11",
  3233. "picture": {
  3234. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/91.jpg",
  3235. "large": "https://randomuser.me/api/portraits/women/91.jpg"
  3236. }
  3237. }, {
  3238. "gender": "female",
  3239. "name": {
  3240. "title": "miss",
  3241. "first": "celestine",
  3242. "last": "henry"
  3243. },
  3244. "location": {
  3245. "street": "1362 rue du bât-d'argent",
  3246. "city": "tourcoing",
  3247. "state": "landes",
  3248. "zip": 28343
  3249. },
  3250. "email": "celestine.henry@example.com",
  3251. "username": "biglion262",
  3252. "password": "575757",
  3253. "phone": "01-74-04-17-37",
  3254. "picture": {
  3255. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/43.jpg",
  3256. "large": "https://randomuser.me/api/portraits/women/43.jpg"
  3257. }
  3258. }, {
  3259. "gender": "male",
  3260. "name": {
  3261. "title": "mr",
  3262. "first": "corentin",
  3263. "last": "dupuis"
  3264. },
  3265. "location": {
  3266. "street": "3704 avenue vauban",
  3267. "city": "le havre",
  3268. "state": "somme",
  3269. "zip": 70779
  3270. },
  3271. "email": "corentin.dupuis@example.com",
  3272. "username": "lazyfish744",
  3273. "password": "mephisto",
  3274. "phone": "03-72-97-33-11",
  3275. "picture": {
  3276. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/54.jpg",
  3277. "large": "https://randomuser.me/api/portraits/men/54.jpg"
  3278. }
  3279. }, {
  3280. "gender": "male",
  3281. "name": {
  3282. "title": "mr",
  3283. "first": "joris",
  3284. "last": "schmitt"
  3285. },
  3286. "location": {
  3287. "street": "9780 rue barrier",
  3288. "city": "dijon",
  3289. "state": "ardèche",
  3290. "zip": 85776
  3291. },
  3292. "email": "joris.schmitt@example.com",
  3293. "username": "whitekoala561",
  3294. "password": "norton",
  3295. "phone": "02-41-50-20-91",
  3296. "picture": {
  3297. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/82.jpg",
  3298. "large": "https://randomuser.me/api/portraits/men/82.jpg"
  3299. }
  3300. }, {
  3301. "gender": "female",
  3302. "name": {
  3303. "title": "ms",
  3304. "first": "capucine",
  3305. "last": "martin"
  3306. },
  3307. "location": {
  3308. "street": "9591 rue pierre-delore",
  3309. "city": "argenteuil",
  3310. "state": "pas-de-calais",
  3311. "zip": 95317
  3312. },
  3313. "email": "capucine.martin@example.com",
  3314. "username": "blackcat565",
  3315. "password": "161616",
  3316. "phone": "04-21-75-31-88",
  3317. "picture": {
  3318. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/65.jpg",
  3319. "large": "https://randomuser.me/api/portraits/women/65.jpg"
  3320. }
  3321. }, {
  3322. "gender": "male",
  3323. "name": {
  3324. "title": "mr",
  3325. "first": "nils",
  3326. "last": "philippe"
  3327. },
  3328. "location": {
  3329. "street": "6031 rue de l'église",
  3330. "city": "limoges",
  3331. "state": "maine-et-loire",
  3332. "zip": 26014
  3333. },
  3334. "email": "nils.philippe@example.com",
  3335. "username": "heavyostrich278",
  3336. "password": "fatty",
  3337. "phone": "03-83-38-49-49",
  3338. "picture": {
  3339. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/82.jpg",
  3340. "large": "https://randomuser.me/api/portraits/men/82.jpg"
  3341. }
  3342. }, {
  3343. "gender": "male",
  3344. "name": {
  3345. "title": "mr",
  3346. "first": "timeo",
  3347. "last": "riviere"
  3348. },
  3349. "location": {
  3350. "street": "1170 rue du 8 mai 1945",
  3351. "city": "rennes",
  3352. "state": "nord",
  3353. "zip": 86360
  3354. },
  3355. "email": "timeo.riviere@example.com",
  3356. "username": "bluefrog153",
  3357. "password": "jimjim",
  3358. "phone": "02-44-54-44-42",
  3359. "picture": {
  3360. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/5.jpg",
  3361. "large": "https://randomuser.me/api/portraits/men/5.jpg"
  3362. }
  3363. }, {
  3364. "gender": "male",
  3365. "name": {
  3366. "title": "mr",
  3367. "first": "louka",
  3368. "last": "roussel"
  3369. },
  3370. "location": {
  3371. "street": "3962 rue de la fontaine",
  3372. "city": "toulon",
  3373. "state": "haut-rhin",
  3374. "zip": 46214
  3375. },
  3376. "email": "louka.roussel@example.com",
  3377. "username": "organicelephant879",
  3378. "password": "capecod",
  3379. "phone": "01-18-40-29-61",
  3380. "picture": {
  3381. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/36.jpg",
  3382. "large": "https://randomuser.me/api/portraits/men/36.jpg"
  3383. }
  3384. }, {
  3385. "gender": "male",
  3386. "name": {
  3387. "title": "mr",
  3388. "first": "charles",
  3389. "last": "robin"
  3390. },
  3391. "location": {
  3392. "street": "7905 avenue goerges clémenceau",
  3393. "city": "montreuil",
  3394. "state": "seine-maritime",
  3395. "zip": 86663
  3396. },
  3397. "email": "charles.robin@example.com",
  3398. "username": "organicfrog687",
  3399. "password": "colombia",
  3400. "phone": "03-90-93-56-90",
  3401. "picture": {
  3402. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/6.jpg",
  3403. "large": "https://randomuser.me/api/portraits/men/6.jpg"
  3404. }
  3405. }, {
  3406. "gender": "male",
  3407. "name": {
  3408. "title": "mr",
  3409. "first": "charles",
  3410. "last": "pierre"
  3411. },
  3412. "location": {
  3413. "street": "9824 rue paul bert",
  3414. "city": "nanterre",
  3415. "state": "pas-de-calais",
  3416. "zip": 23709
  3417. },
  3418. "email": "charles.pierre@example.com",
  3419. "username": "ticklishmouse489",
  3420. "password": "coolhand",
  3421. "phone": "03-91-38-84-10",
  3422. "picture": {
  3423. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/45.jpg",
  3424. "large": "https://randomuser.me/api/portraits/men/45.jpg"
  3425. }
  3426. }, {
  3427. "gender": "male",
  3428. "name": {
  3429. "title": "mr",
  3430. "first": "roméo",
  3431. "last": "dubois"
  3432. },
  3433. "location": {
  3434. "street": "8652 rue de la mairie",
  3435. "city": "villeurbanne",
  3436. "state": "haute-saône",
  3437. "zip": 21701
  3438. },
  3439. "email": "roméo.dubois@example.com",
  3440. "username": "smallbird888",
  3441. "password": "michael",
  3442. "phone": "05-18-81-56-84",
  3443. "picture": {
  3444. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/95.jpg",
  3445. "large": "https://randomuser.me/api/portraits/men/95.jpg"
  3446. }
  3447. }, {
  3448. "gender": "male",
  3449. "name": {
  3450. "title": "mr",
  3451. "first": "timothe",
  3452. "last": "morin"
  3453. },
  3454. "location": {
  3455. "street": "2004 avenue des ternes",
  3456. "city": "boulogne-billancourt",
  3457. "state": "haute-corse",
  3458. "zip": 68710
  3459. },
  3460. "email": "timothe.morin@example.com",
  3461. "username": "whitegorilla503",
  3462. "password": "joejoe",
  3463. "phone": "03-28-90-16-23",
  3464. "picture": {
  3465. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/20.jpg",
  3466. "large": "https://randomuser.me/api/portraits/men/20.jpg"
  3467. }
  3468. }, {
  3469. "gender": "female",
  3470. "name": {
  3471. "title": "miss",
  3472. "first": "elsa",
  3473. "last": "carpentier"
  3474. },
  3475. "location": {
  3476. "street": "1843 rue victor-hugo",
  3477. "city": "perpignan",
  3478. "state": "eure-et-loir",
  3479. "zip": 76340
  3480. },
  3481. "email": "elsa.carpentier@example.com",
  3482. "username": "bluelion798",
  3483. "password": "public",
  3484. "phone": "01-00-98-84-79",
  3485. "picture": {
  3486. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/73.jpg",
  3487. "large": "https://randomuser.me/api/portraits/women/73.jpg"
  3488. }
  3489. }, {
  3490. "gender": "male",
  3491. "name": {
  3492. "title": "mr",
  3493. "first": "damien",
  3494. "last": "bernard"
  3495. },
  3496. "location": {
  3497. "street": "6358 rue louis-garrand",
  3498. "city": "aubervilliers",
  3499. "state": "gard",
  3500. "zip": 63831
  3501. },
  3502. "email": "damien.bernard@example.com",
  3503. "username": "bigrabbit241",
  3504. "password": "hollywood",
  3505. "phone": "03-37-16-78-62",
  3506. "picture": {
  3507. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/0.jpg",
  3508. "large": "https://randomuser.me/api/portraits/men/0.jpg"
  3509. }
  3510. }, {
  3511. "gender": "female",
  3512. "name": {
  3513. "title": "ms",
  3514. "first": "celestine",
  3515. "last": "bernard"
  3516. },
  3517. "location": {
  3518. "street": "3508 rue paul-duvivier",
  3519. "city": "toulon",
  3520. "state": "doubs",
  3521. "zip": 89698
  3522. },
  3523. "email": "celestine.bernard@example.com",
  3524. "username": "organicelephant752",
  3525. "password": "saints",
  3526. "phone": "05-73-25-68-08",
  3527. "picture": {
  3528. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/39.jpg",
  3529. "large": "https://randomuser.me/api/portraits/women/39.jpg"
  3530. }
  3531. }, {
  3532. "gender": "male",
  3533. "name": {
  3534. "title": "mr",
  3535. "first": "nolan",
  3536. "last": "roche"
  3537. },
  3538. "location": {
  3539. "street": "6247 place de l'église",
  3540. "city": "mulhouse",
  3541. "state": "lot-et-garonne",
  3542. "zip": 27556
  3543. },
  3544. "email": "nolan.roche@example.com",
  3545. "username": "lazyrabbit325",
  3546. "password": "skirt",
  3547. "phone": "03-65-55-96-69",
  3548. "picture": {
  3549. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/57.jpg",
  3550. "large": "https://randomuser.me/api/portraits/men/57.jpg"
  3551. }
  3552. }, {
  3553. "gender": "male",
  3554. "name": {
  3555. "title": "mr",
  3556. "first": "louka",
  3557. "last": "moulin"
  3558. },
  3559. "location": {
  3560. "street": "1155 rue jean-baldassini",
  3561. "city": "saint-étienne",
  3562. "state": "marne",
  3563. "zip": 82990
  3564. },
  3565. "email": "louka.moulin@example.com",
  3566. "username": "smallfrog929",
  3567. "password": "jerk",
  3568. "phone": "03-10-51-30-68",
  3569. "picture": {
  3570. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/82.jpg",
  3571. "large": "https://randomuser.me/api/portraits/men/82.jpg"
  3572. }
  3573. }, {
  3574. "gender": "male",
  3575. "name": {
  3576. "title": "mr",
  3577. "first": "evan",
  3578. "last": "faure"
  3579. },
  3580. "location": {
  3581. "street": "5490 rue barrier",
  3582. "city": "fort-de-france",
  3583. "state": "marne",
  3584. "zip": 46709
  3585. },
  3586. "email": "evan.faure@example.com",
  3587. "username": "organicswan825",
  3588. "password": "brown",
  3589. "phone": "03-74-57-24-42",
  3590. "picture": {
  3591. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/98.jpg",
  3592. "large": "https://randomuser.me/api/portraits/men/98.jpg"
  3593. }
  3594. }, {
  3595. "gender": "female",
  3596. "name": {
  3597. "title": "miss",
  3598. "first": "ninon",
  3599. "last": "duval"
  3600. },
  3601. "location": {
  3602. "street": "2516 place de l'abbé-basset",
  3603. "city": "caen",
  3604. "state": "var",
  3605. "zip": 18684
  3606. },
  3607. "email": "ninon.duval@example.com",
  3608. "username": "smallladybug761",
  3609. "password": "deadman",
  3610. "phone": "02-93-78-25-76",
  3611. "picture": {
  3612. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/51.jpg",
  3613. "large": "https://randomuser.me/api/portraits/women/51.jpg"
  3614. }
  3615. }, {
  3616. "gender": "male",
  3617. "name": {
  3618. "title": "mr",
  3619. "first": "oscar",
  3620. "last": "gautier"
  3621. },
  3622. "location": {
  3623. "street": "7428 rue barrier",
  3624. "city": "dijon",
  3625. "state": "maine-et-loire",
  3626. "zip": 79657
  3627. },
  3628. "email": "oscar.gautier@example.com",
  3629. "username": "redpeacock799",
  3630. "password": "dragons",
  3631. "phone": "03-17-76-36-08",
  3632. "picture": {
  3633. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/90.jpg",
  3634. "large": "https://randomuser.me/api/portraits/men/90.jpg"
  3635. }
  3636. }, {
  3637. "gender": "female",
  3638. "name": {
  3639. "title": "ms",
  3640. "first": "océane",
  3641. "last": "david"
  3642. },
  3643. "location": {
  3644. "street": "7033 rue du stade",
  3645. "city": "dunkerque",
  3646. "state": "loir-et-cher",
  3647. "zip": 34843
  3648. },
  3649. "email": "océane.david@example.com",
  3650. "username": "bluebird751",
  3651. "password": "bobdole",
  3652. "phone": "02-31-92-25-83",
  3653. "picture": {
  3654. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/38.jpg",
  3655. "large": "https://randomuser.me/api/portraits/women/38.jpg"
  3656. }
  3657. }, {
  3658. "gender": "male",
  3659. "name": {
  3660. "title": "mr",
  3661. "first": "titouan",
  3662. "last": "louis"
  3663. },
  3664. "location": {
  3665. "street": "5699 rue de gerland",
  3666. "city": "colombes",
  3667. "state": "gers",
  3668. "zip": 36161
  3669. },
  3670. "email": "titouan.louis@example.com",
  3671. "username": "browntiger991",
  3672. "password": "whale",
  3673. "phone": "01-73-38-10-54",
  3674. "picture": {
  3675. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/63.jpg",
  3676. "large": "https://randomuser.me/api/portraits/men/63.jpg"
  3677. }
  3678. }, {
  3679. "gender": "male",
  3680. "name": {
  3681. "title": "mr",
  3682. "first": "alexis",
  3683. "last": "fournier"
  3684. },
  3685. "location": {
  3686. "street": "2842 rue dumenge",
  3687. "city": "lille",
  3688. "state": "deux-sèvres",
  3689. "zip": 66712
  3690. },
  3691. "email": "alexis.fournier@example.com",
  3692. "username": "redfrog404",
  3693. "password": "stiletto",
  3694. "phone": "01-49-84-13-19",
  3695. "picture": {
  3696. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/3.jpg",
  3697. "large": "https://randomuser.me/api/portraits/men/3.jpg"
  3698. }
  3699. }, {
  3700. "gender": "male",
  3701. "name": {
  3702. "title": "mr",
  3703. "first": "gaspard",
  3704. "last": "petit"
  3705. },
  3706. "location": {
  3707. "street": "8099 place de l'église",
  3708. "city": "avignon",
  3709. "state": "charente-maritime",
  3710. "zip": 11748
  3711. },
  3712. "email": "gaspard.petit@example.com",
  3713. "username": "yellowladybug882",
  3714. "password": "asdasd",
  3715. "phone": "05-27-91-50-43",
  3716. "picture": {
  3717. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/41.jpg",
  3718. "large": "https://randomuser.me/api/portraits/men/41.jpg"
  3719. }
  3720. }, {
  3721. "gender": "male",
  3722. "name": {
  3723. "title": "mr",
  3724. "first": "oscar",
  3725. "last": "sanchez"
  3726. },
  3727. "location": {
  3728. "street": "5630 rue cyrus-hugues",
  3729. "city": "rouen",
  3730. "state": "dordogne",
  3731. "zip": 22346
  3732. },
  3733. "email": "oscar.sanchez@example.com",
  3734. "username": "greenostrich145",
  3735. "password": "4711",
  3736. "phone": "03-80-99-95-84",
  3737. "picture": {
  3738. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/39.jpg",
  3739. "large": "https://randomuser.me/api/portraits/men/39.jpg"
  3740. }
  3741. }, {
  3742. "gender": "female",
  3743. "name": {
  3744. "title": "ms",
  3745. "first": "tess",
  3746. "last": "lambert"
  3747. },
  3748. "location": {
  3749. "street": "3893 rue gasparin",
  3750. "city": "bordeaux",
  3751. "state": "jura",
  3752. "zip": 58401
  3753. },
  3754. "email": "tess.lambert@example.com",
  3755. "username": "yellowmeercat128",
  3756. "password": "wxcvbn",
  3757. "phone": "02-48-59-70-35",
  3758. "picture": {
  3759. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/89.jpg",
  3760. "large": "https://randomuser.me/api/portraits/women/89.jpg"
  3761. }
  3762. }, {
  3763. "gender": "female",
  3764. "name": {
  3765. "title": "miss",
  3766. "first": "axelle",
  3767. "last": "caron"
  3768. },
  3769. "location": {
  3770. "street": "8504 avenue de la libération",
  3771. "city": "montpellier",
  3772. "state": "pyrénées-orientales",
  3773. "zip": 87934
  3774. },
  3775. "email": "axelle.caron@example.com",
  3776. "username": "ticklishmeercat582",
  3777. "password": "ibanez",
  3778. "phone": "02-74-30-73-24",
  3779. "picture": {
  3780. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/19.jpg",
  3781. "large": "https://randomuser.me/api/portraits/women/19.jpg"
  3782. }
  3783. }, {
  3784. "gender": "male",
  3785. "name": {
  3786. "title": "mr",
  3787. "first": "kaïs",
  3788. "last": "bonnet"
  3789. },
  3790. "location": {
  3791. "street": "4437 rue abel-gance",
  3792. "city": "versailles",
  3793. "state": "nord",
  3794. "zip": 45194
  3795. },
  3796. "email": "kaïs.bonnet@example.com",
  3797. "username": "lazytiger237",
  3798. "password": "dipper",
  3799. "phone": "03-57-78-68-95",
  3800. "picture": {
  3801. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/12.jpg",
  3802. "large": "https://randomuser.me/api/portraits/men/12.jpg"
  3803. }
  3804. }, {
  3805. "gender": "female",
  3806. "name": {
  3807. "title": "miss",
  3808. "first": "lucy",
  3809. "last": "rousseau"
  3810. },
  3811. "location": {
  3812. "street": "2046 rue de bonnel",
  3813. "city": "toulon",
  3814. "state": "seine-et-marne",
  3815. "zip": 14557
  3816. },
  3817. "email": "lucy.rousseau@example.com",
  3818. "username": "blackpanda557",
  3819. "password": "cyrano",
  3820. "phone": "01-82-79-44-54",
  3821. "picture": {
  3822. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/10.jpg",
  3823. "large": "https://randomuser.me/api/portraits/women/10.jpg"
  3824. }
  3825. }, {
  3826. "gender": "female",
  3827. "name": {
  3828. "title": "miss",
  3829. "first": "sophia",
  3830. "last": "picard"
  3831. },
  3832. "location": {
  3833. "street": "3117 place de l'abbé-georges-hénocque",
  3834. "city": "lille",
  3835. "state": "lot-et-garonne",
  3836. "zip": 27764
  3837. },
  3838. "email": "sophia.picard@example.com",
  3839. "username": "goldenladybug543",
  3840. "password": "bush",
  3841. "phone": "02-48-13-91-26",
  3842. "picture": {
  3843. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/21.jpg",
  3844. "large": "https://randomuser.me/api/portraits/women/21.jpg"
  3845. }
  3846. }, {
  3847. "gender": "female",
  3848. "name": {
  3849. "title": "mrs",
  3850. "first": "eloïse",
  3851. "last": "lecomte"
  3852. },
  3853. "location": {
  3854. "street": "1629 place des 44 enfants d'izieu",
  3855. "city": "mulhouse",
  3856. "state": "nord",
  3857. "zip": 55040
  3858. },
  3859. "email": "eloïse.lecomte@example.com",
  3860. "username": "crazykoala417",
  3861. "password": "chick",
  3862. "phone": "04-48-60-57-06",
  3863. "picture": {
  3864. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/84.jpg",
  3865. "large": "https://randomuser.me/api/portraits/women/84.jpg"
  3866. }
  3867. }, {
  3868. "gender": "male",
  3869. "name": {
  3870. "title": "mr",
  3871. "first": "thomas",
  3872. "last": "garcia"
  3873. },
  3874. "location": {
  3875. "street": "4428 rue bataille",
  3876. "city": "reims",
  3877. "state": "bouches-du-rhône",
  3878. "zip": 86375
  3879. },
  3880. "email": "thomas.garcia@example.com",
  3881. "username": "whitesnake456",
  3882. "password": "user",
  3883. "phone": "03-65-92-02-05",
  3884. "picture": {
  3885. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/15.jpg",
  3886. "large": "https://randomuser.me/api/portraits/men/15.jpg"
  3887. }
  3888. }, {
  3889. "gender": "female",
  3890. "name": {
  3891. "title": "miss",
  3892. "first": "lilou",
  3893. "last": "vincent"
  3894. },
  3895. "location": {
  3896. "street": "2393 rue de l'abbé-de-l'épée",
  3897. "city": "rouen",
  3898. "state": "orne",
  3899. "zip": 57857
  3900. },
  3901. "email": "lilou.vincent@example.com",
  3902. "username": "greenbear206",
  3903. "password": "151515",
  3904. "phone": "03-05-76-76-95",
  3905. "picture": {
  3906. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/90.jpg",
  3907. "large": "https://randomuser.me/api/portraits/women/90.jpg"
  3908. }
  3909. }, {
  3910. "gender": "male",
  3911. "name": {
  3912. "title": "mr",
  3913. "first": "oscar",
  3914. "last": "colin"
  3915. },
  3916. "location": {
  3917. "street": "6077 rue pasteur",
  3918. "city": "vitry-sur-seine",
  3919. "state": "loiret",
  3920. "zip": 63317
  3921. },
  3922. "email": "oscar.colin@example.com",
  3923. "username": "bluetiger503",
  3924. "password": "5329",
  3925. "phone": "05-36-59-31-22",
  3926. "picture": {
  3927. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/95.jpg",
  3928. "large": "https://randomuser.me/api/portraits/men/95.jpg"
  3929. }
  3930. }, {
  3931. "gender": "female",
  3932. "name": {
  3933. "title": "mrs",
  3934. "first": "amandine",
  3935. "last": "chevalier"
  3936. },
  3937. "location": {
  3938. "street": "9489 rue de l'abbé-soulange-bodin",
  3939. "city": "reims",
  3940. "state": "yvelines",
  3941. "zip": 52280
  3942. },
  3943. "email": "amandine.chevalier@example.com",
  3944. "username": "smalllion174",
  3945. "password": "tahoe",
  3946. "phone": "02-56-59-43-84",
  3947. "picture": {
  3948. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/38.jpg",
  3949. "large": "https://randomuser.me/api/portraits/women/38.jpg"
  3950. }
  3951. }, {
  3952. "gender": "male",
  3953. "name": {
  3954. "title": "mr",
  3955. "first": "luca",
  3956. "last": "roche"
  3957. },
  3958. "location": {
  3959. "street": "3415 rue cyrus-hugues",
  3960. "city": "avignon",
  3961. "state": "finistère",
  3962. "zip": 24501
  3963. },
  3964. "email": "luca.roche@example.com",
  3965. "username": "lazycat676",
  3966. "password": "gentle",
  3967. "phone": "05-89-58-12-62",
  3968. "picture": {
  3969. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/59.jpg",
  3970. "large": "https://randomuser.me/api/portraits/men/59.jpg"
  3971. }
  3972. }, {
  3973. "gender": "male",
  3974. "name": {
  3975. "title": "mr",
  3976. "first": "livio",
  3977. "last": "gautier"
  3978. },
  3979. "location": {
  3980. "street": "5621 place du 22 novembre 1943",
  3981. "city": "aix-en-provence",
  3982. "state": "manche",
  3983. "zip": 94922
  3984. },
  3985. "email": "livio.gautier@example.com",
  3986. "username": "browngoose771",
  3987. "password": "rodeo",
  3988. "phone": "05-88-64-82-14",
  3989. "picture": {
  3990. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/14.jpg",
  3991. "large": "https://randomuser.me/api/portraits/men/14.jpg"
  3992. }
  3993. }, {
  3994. "gender": "female",
  3995. "name": {
  3996. "title": "miss",
  3997. "first": "héloïse",
  3998. "last": "gerard"
  3999. },
  4000. "location": {
  4001. "street": "8035 avenue vauban",
  4002. "city": "le havre",
  4003. "state": "sarthe",
  4004. "zip": 42418
  4005. },
  4006. "email": "héloïse.gerard@example.com",
  4007. "username": "bigrabbit810",
  4008. "password": "butterfl",
  4009. "phone": "01-77-07-55-19",
  4010. "picture": {
  4011. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/5.jpg",
  4012. "large": "https://randomuser.me/api/portraits/women/5.jpg"
  4013. }
  4014. }, {
  4015. "gender": "female",
  4016. "name": {
  4017. "title": "mrs",
  4018. "first": "hélèna",
  4019. "last": "sanchez"
  4020. },
  4021. "location": {
  4022. "street": "6182 rue de la barre",
  4023. "city": "colombes",
  4024. "state": "meurthe-et-moselle",
  4025. "zip": 51274
  4026. },
  4027. "email": "hélèna.sanchez@example.com",
  4028. "username": "bluewolf964",
  4029. "password": "belle",
  4030. "phone": "03-95-76-59-06",
  4031. "picture": {
  4032. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/57.jpg",
  4033. "large": "https://randomuser.me/api/portraits/women/57.jpg"
  4034. }
  4035. }, {
  4036. "gender": "male",
  4037. "name": {
  4038. "title": "mr",
  4039. "first": "joshua",
  4040. "last": "clement"
  4041. },
  4042. "location": {
  4043. "street": "6389 rue de l'abbaye",
  4044. "city": "fort-de-france",
  4045. "state": "pas-de-calais",
  4046. "zip": 29469
  4047. },
  4048. "email": "joshua.clement@example.com",
  4049. "username": "greenrabbit628",
  4050. "password": "sakura",
  4051. "phone": "01-03-73-19-46",
  4052. "picture": {
  4053. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/92.jpg",
  4054. "large": "https://randomuser.me/api/portraits/men/92.jpg"
  4055. }
  4056. }, {
  4057. "gender": "male",
  4058. "name": {
  4059. "title": "mr",
  4060. "first": "théo",
  4061. "last": "le gall"
  4062. },
  4063. "location": {
  4064. "street": "5047 rue barrier",
  4065. "city": "pau",
  4066. "state": "seine-maritime",
  4067. "zip": 81736
  4068. },
  4069. "email": "théo.le gall@example.com",
  4070. "username": "crazyfrog346",
  4071. "password": "cheech",
  4072. "phone": "04-01-20-94-59",
  4073. "picture": {
  4074. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/26.jpg",
  4075. "large": "https://randomuser.me/api/portraits/men/26.jpg"
  4076. }
  4077. }, {
  4078. "gender": "male",
  4079. "name": {
  4080. "title": "mr",
  4081. "first": "amaury",
  4082. "last": "marie"
  4083. },
  4084. "location": {
  4085. "street": "2496 rue du bât-d'argent",
  4086. "city": "poitiers",
  4087. "state": "doubs",
  4088. "zip": 55239
  4089. },
  4090. "email": "amaury.marie@example.com",
  4091. "username": "orangeelephant651",
  4092. "password": "142536",
  4093. "phone": "01-15-34-30-76",
  4094. "picture": {
  4095. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/91.jpg",
  4096. "large": "https://randomuser.me/api/portraits/men/91.jpg"
  4097. }
  4098. }, {
  4099. "gender": "female",
  4100. "name": {
  4101. "title": "ms",
  4102. "first": "mia",
  4103. "last": "perez"
  4104. },
  4105. "location": {
  4106. "street": "6647 rue abel-gance",
  4107. "city": "mulhouse",
  4108. "state": "pas-de-calais",
  4109. "zip": 63980
  4110. },
  4111. "email": "mia.perez@example.com",
  4112. "username": "heavygorilla371",
  4113. "password": "gong",
  4114. "phone": "04-40-14-55-41",
  4115. "picture": {
  4116. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/96.jpg",
  4117. "large": "https://randomuser.me/api/portraits/women/96.jpg"
  4118. }
  4119. }, {
  4120. "gender": "male",
  4121. "name": {
  4122. "title": "mr",
  4123. "first": "julian",
  4124. "last": "garnier"
  4125. },
  4126. "location": {
  4127. "street": "9121 rue cyrus-hugues",
  4128. "city": "strasbourg",
  4129. "state": "aube",
  4130. "zip": 68224
  4131. },
  4132. "email": "julian.garnier@example.com",
  4133. "username": "greentiger804",
  4134. "password": "budlight",
  4135. "phone": "02-34-54-75-37",
  4136. "picture": {
  4137. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/28.jpg",
  4138. "large": "https://randomuser.me/api/portraits/men/28.jpg"
  4139. }
  4140. }, {
  4141. "gender": "female",
  4142. "name": {
  4143. "title": "ms",
  4144. "first": "louisa",
  4145. "last": "garcia"
  4146. },
  4147. "location": {
  4148. "street": "8955 rue duguesclin",
  4149. "city": "brest",
  4150. "state": "territoire de belfort",
  4151. "zip": 19714
  4152. },
  4153. "email": "louisa.garcia@example.com",
  4154. "username": "greenbird982",
  4155. "password": "slider",
  4156. "phone": "04-23-44-61-06",
  4157. "picture": {
  4158. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/45.jpg",
  4159. "large": "https://randomuser.me/api/portraits/women/45.jpg"
  4160. }
  4161. }, {
  4162. "gender": "male",
  4163. "name": {
  4164. "title": "mr",
  4165. "first": "alban",
  4166. "last": "roussel"
  4167. },
  4168. "location": {
  4169. "street": "3280 rue dumenge",
  4170. "city": "perpignan",
  4171. "state": "vosges",
  4172. "zip": 76104
  4173. },
  4174. "email": "alban.roussel@example.com",
  4175. "username": "blackgoose796",
  4176. "password": "dillon",
  4177. "phone": "04-27-74-52-30",
  4178. "picture": {
  4179. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/0.jpg",
  4180. "large": "https://randomuser.me/api/portraits/men/0.jpg"
  4181. }
  4182. }, {
  4183. "gender": "male",
  4184. "name": {
  4185. "title": "mr",
  4186. "first": "thibaut",
  4187. "last": "petit"
  4188. },
  4189. "location": {
  4190. "street": "4454 rue paul bert",
  4191. "city": "saint-étienne",
  4192. "state": "pyrénées-atlantiques",
  4193. "zip": 81332
  4194. },
  4195. "email": "thibaut.petit@example.com",
  4196. "username": "purplefish135",
  4197. "password": "menace",
  4198. "phone": "04-50-32-76-58",
  4199. "picture": {
  4200. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/78.jpg",
  4201. "large": "https://randomuser.me/api/portraits/men/78.jpg"
  4202. }
  4203. }, {
  4204. "gender": "female",
  4205. "name": {
  4206. "title": "miss",
  4207. "first": "sara",
  4208. "last": "rodriguez"
  4209. },
  4210. "location": {
  4211. "street": "3371 place de l'abbé-georges-hénocque",
  4212. "city": "amiens",
  4213. "state": "seine-maritime",
  4214. "zip": 36396
  4215. },
  4216. "email": "sara.rodriguez@example.com",
  4217. "username": "heavyrabbit937",
  4218. "password": "ultimate",
  4219. "phone": "02-70-27-75-21",
  4220. "picture": {
  4221. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/41.jpg",
  4222. "large": "https://randomuser.me/api/portraits/women/41.jpg"
  4223. }
  4224. }, {
  4225. "gender": "male",
  4226. "name": {
  4227. "title": "mr",
  4228. "first": "fabien",
  4229. "last": "olivier"
  4230. },
  4231. "location": {
  4232. "street": "7724 rue du bon-pasteur",
  4233. "city": "rennes",
  4234. "state": "aube",
  4235. "zip": 38139
  4236. },
  4237. "email": "fabien.olivier@example.com",
  4238. "username": "crazymeercat881",
  4239. "password": "goaway",
  4240. "phone": "01-09-10-17-00",
  4241. "picture": {
  4242. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/41.jpg",
  4243. "large": "https://randomuser.me/api/portraits/men/41.jpg"
  4244. }
  4245. }, {
  4246. "gender": "male",
  4247. "name": {
  4248. "title": "mr",
  4249. "first": "robin",
  4250. "last": "robin"
  4251. },
  4252. "location": {
  4253. "street": "5070 rue abel",
  4254. "city": "toulouse",
  4255. "state": "territoire de belfort",
  4256. "zip": 12479
  4257. },
  4258. "email": "robin.robin@example.com",
  4259. "username": "redpanda771",
  4260. "password": "caca",
  4261. "phone": "04-77-45-13-84",
  4262. "picture": {
  4263. "thumbnail": "https://randomuser.me/api/portraits/thumb/men/62.jpg",
  4264. "large": "https://randomuser.me/api/portraits/men/62.jpg"
  4265. }
  4266. }, {
  4267. "gender": "female",
  4268. "name": {
  4269. "title": "ms",
  4270. "first": "emeline",
  4271. "last": "lefebvre"
  4272. },
  4273. "location": {
  4274. "street": "7030 rue de la mairie",
  4275. "city": "caen",
  4276. "state": "territoire de belfort",
  4277. "zip": 87664
  4278. },
  4279. "email": "emeline.lefebvre@example.com",
  4280. "username": "crazyelephant349",
  4281. "password": "monroe",
  4282. "phone": "02-36-91-99-97",
  4283. "picture": {
  4284. "thumbnail": "https://randomuser.me/api/portraits/thumb/women/9.jpg",
  4285. "large": "https://randomuser.me/api/portraits/women/9.jpg"
  4286. }
  4287. }],
  4288. "nationality": "FR",
  4289. "seed": "f94158be2e69b5cf03",
  4290. "version": "0.7"
  4291. }
  4292. })();
  4293. </script>