PageRenderTime 67ms CodeModel.GetById 26ms RepoModel.GetById 0ms app.codeStats 0ms

/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

Large files files are truncated, but you can click here to view the full file

  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": "g…

Large files files are truncated, but you can click here to view the full file