From da48578882e247886c692652e01ac240c1424fb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jesper=20M=C3=B8ller=20Jensen?= Date: Mon, 3 Oct 2022 11:16:22 +0200 Subject: [PATCH] updated mock data and implemented user info --- .../users/editor-view-users-grid.element.ts | 9 +- .../editor-view-users-user-details.element.ts | 57 +- .../views/users/editor-view-users.element.ts | 173 +-- .../editors/users/views/users/tempData.ts | 1368 +++++++++++++++++ 4 files changed, 1424 insertions(+), 183 deletions(-) create mode 100644 src/Umbraco.Web.UI.Client/src/backoffice/editors/users/views/users/tempData.ts diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/editors/users/views/users/editor-view-users-grid.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/editors/users/views/users/editor-view-users-grid.element.ts index e449d9fee5..5846edb92b 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/editors/users/views/users/editor-view-users-grid.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/editors/users/views/users/editor-view-users-grid.element.ts @@ -98,8 +98,13 @@ export class UmbEditorViewUsersGridElement extends UmbContextConsumerMixin(LitEl ${user.status} ` : nothing} -
${user.userGroup}
-
${user.lastLogin}
+
USER GROUPS NOT IMPLEMENTED
+ ${user.lastLoginDate + ? html`
+
Last login
+ ${user.lastLoginDate} +
` + : html`
${`${user.name} has not logged in yet`}
`} `; } diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/editors/users/views/users/editor-view-users-user-details.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/editors/users/views/users/editor-view-users-user-details.element.ts index 2fef9a5005..fc021e2dd0 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/editors/users/views/users/editor-view-users-user-details.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/editors/users/views/users/editor-view-users-user-details.element.ts @@ -4,6 +4,7 @@ import { customElement, state } from 'lit/decorators.js'; import { UmbContextConsumerMixin } from '../../../../../core/context'; import UmbEditorViewUsersElement, { UserItem } from './editor-view-users.element'; import { Subscription } from 'rxjs'; +import { tempData } from './tempData'; @customElement('umb-editor-view-users-user-details') export class UmbEditorViewUsersUserDetailsElement extends UmbContextConsumerMixin(LitElement) { @@ -80,24 +81,30 @@ export class UmbEditorViewUsersUserDetailsElement extends UmbContextConsumerMixi protected _usersContext?: UmbEditorViewUsersElement; protected _usersSubscription?: Subscription; - private _languages = [ - { name: 'English', value: 'en', selected: true }, - { name: 'Dutch', value: 'nl' }, - { name: 'French', value: 'fr' }, - { name: 'German', value: 'de' }, - { name: 'Spanish', value: 'es' }, - ]; + private _languages = tempData //TODO Get languages from API instead of fakeData + .reduce((acc, curr) => { + if (!acc.includes(curr.language)) { + acc.push(curr.language); + } + return acc; + }, [] as Array) + .map((language) => { + return { + name: language, + value: language, + selected: false, + }; + }); connectedCallback(): void { super.connectedCallback(); - this.consumeContext('umbUsersContext', (usersContext: UmbEditorViewUsersElement) => { this._usersContext = usersContext; this._usersSubscription?.unsubscribe(); this._usersSubscription = this._usersContext?.users.subscribe((users: Array) => { this._users = users; - this._user = this._users.find((user: UserItem) => user.key === this._userKey); + this._initUser(); }); }); @@ -106,8 +113,7 @@ export class UmbEditorViewUsersUserDetailsElement extends UmbContextConsumerMixi const pathParts = path.split('/'); this._userKey = pathParts[pathParts.length - 1]; - // get user from users array - this._user = this._users.find((user: UserItem) => user.key === this._userKey); + this._initUser(); } disconnectedCallback(): void { @@ -116,6 +122,15 @@ export class UmbEditorViewUsersUserDetailsElement extends UmbContextConsumerMixi this._usersSubscription?.unsubscribe(); } + private _initUser() { + this._user = this._users.find((user: UserItem) => user.key === this._userKey); + + const index = this._languages.findIndex((language) => language.value === this._user?.language); + if (index !== -1) { + this._languages[index].selected = true; + } + } + private _updateUserStatus() { if (!this._user) return; @@ -138,11 +153,11 @@ export class UmbEditorViewUsersUserDetailsElement extends UmbContextConsumerMixi return html`
Profile
- + Email - + - + Language @@ -205,32 +220,32 @@ export class UmbEditorViewUsersUserDetailsElement extends UmbContextConsumerMixi : nothing}
Last login: - ${this._user.lastLogin} + ${this._user.lastLoginDate || `${this._user.name} has not logged in yet`}
Failed login attempts - NOT IMPLEMENTED + ${this._user.failedLoginAttempts}
Last lockout date: - NOT IMPLEMENTED + ${this._user.lastLockoutDate || `${this._user.name} has not been locked out`}
Password last changed: - NOT IMPLEMENTED + ${this._user.lastLoginDate || `${this._user.name} has not changed password`}
User created: - NOT IMPLEMENTED + ${this._user.createDate}
User last updated: - NOT IMPLEMENTED + ${this._user.updateDate}
Id: + ${this._user.id} ${this._user.key} - NOT IMPLEMENTED
`; diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/editors/users/views/users/editor-view-users.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/editors/users/views/users/editor-view-users.element.ts index 6cdd4d1804..33854a0c06 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/editors/users/views/users/editor-view-users.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/editors/users/views/users/editor-view-users.element.ts @@ -10,12 +10,22 @@ import './editor-view-users-grid.element'; import './editor-view-users-selection.element'; import './editor-view-users-user-details.element'; +import { tempData } from './tempData'; + export interface UserItem { + id: number; key: string; name: string; - userGroup: string; - lastLogin: string; + email: string; status: string; + language: string; + lastLoginDate?: string; + lastLockoutDate?: string; + lastPasswordChangeDate?: string; + updateDate: string; + createDate: string; + failedLoginAttempts: number; + userGroup?: string; //TODO Implement this } @customElement('umb-editor-view-users') @@ -34,164 +44,7 @@ export class UmbEditorViewUsersElement extends UmbContextProviderMixin(LitElemen }, ]; - private tempData = [ - { - key: 'a9b18a00-58f2-420e-bf60-48d33ab156db', - name: 'Cecílie Bryon', - userGroup: 'Translators', - lastLogin: 'Fri, 23 April 2021', - status: 'Active', - }, - { - key: '3179d0b2-eec2-4045-b86a-149e13b93e14', - name: 'Kathleen G. Smith', - userGroup: 'Editors', - lastLogin: 'Tue, 6 June 2021', - status: 'Active', - }, - { - key: '1b1c9733-b845-4d9a-9ed2-b2f46c05fd72', - name: 'Adrian Andresen', - userGroup: 'Administrators', - lastLogin: 'Mon, 15 November 2021', - status: 'Active', - }, - { - key: 'b75af81a-b994-4e65-9330-b66c336d0207', - name: 'Lorenza Trentino', - userGroup: 'Editors', - lastLogin: 'Fri, 13 April 2022', - status: 'Disabled', - }, - { - key: 'b75af81a-b994-4e65-9330-b66c336d0202', - name: 'John Doe', - userGroup: 'Translators', - lastLogin: 'Tue, 11 December 2021', - status: 'Active', - }, - { - key: 'b75af81a-b994-4e65-9330-b66c336d0203', - name: 'Jane Doe', - userGroup: 'Editors', - lastLogin: 'Fri, 13 April 2022', - status: 'Invited', - }, - { - key: 'b75af81a-b994-4e65-9330-b66c336d0204', - name: 'John Smith', - userGroup: 'Administrators', - lastLogin: 'Mon, 15 November 2021', - status: 'Active', - }, - { - key: 'b75af81a-b994-4e65-9330-b66c336d0205', - name: 'Jane Smith', - userGroup: 'Editors', - lastLogin: 'Fri, 13 April 2022', - status: 'Active', - }, - { - key: 'b75af81a-b994-4e65-9330-b66c336d0206', - name: 'Oliver Twist', - userGroup: 'Translators', - lastLogin: 'Tue, 11 December 2021', - status: 'Active', - }, - { - key: 'b75af81a-b994-4e65-2330-b66c336d0207', - name: 'Olivia Doe', - userGroup: 'Editors', - lastLogin: 'Fri, 13 April 2022', - status: 'Inactive', - }, - { - key: 'b75af81a-b994-4e65-9330-b66c336d0208', - name: 'Hans Hansen', - userGroup: 'Administrators', - lastLogin: 'Mon, 15 November 2021', - status: 'Active', - }, - { - key: 'a9b18a00-58f2-sjh2-bf60-48d33ab156db', - name: 'Brian Adams', - userGroup: 'Translators', - lastLogin: 'Fri, 23 April 2021', - status: 'Invited', - }, - { - key: '3179d0b2-eec2-4432-b86a-149e13b93e14', - name: 'Smith John', - userGroup: 'Editors', - lastLogin: 'Tue, 6 June 2021', - status: 'Active', - }, - { - key: '1b1c9723-b845-4d9a-9ed2-b2f46c05fd72', - name: 'Reese Witherspoon', - userGroup: 'Administrators', - lastLogin: 'Mon, 15 November 2021', - status: 'Disabled', - }, - { - key: 'b75af81a-2f94-4e65-9330-b66c336d0207', - name: 'Denzel Washington', - userGroup: 'Editors', - lastLogin: 'Fri, 13 April 2022', - status: 'Active', - }, - { - key: 'b75af81a-b994-4e23-9330-b66c336d0202', - name: 'Leonardo DiCaprio', - userGroup: 'Translators', - lastLogin: 'Tue, 11 December 2021', - status: 'Active', - }, - { - key: 'b75af81a-2394-4e65-9330-b66c336d0203', - name: 'Idris Elba', - userGroup: 'Editors', - lastLogin: 'Fri, 13 April 2022', - status: 'Active', - }, - { - key: 'b75af81a-b994-4e65-9330-b6u7336d0204', - name: 'Quentin Tarantino', - userGroup: 'Administrators', - lastLogin: 'Mon, 15 November 2021', - status: 'Active', - }, - { - key: 'b75af81a-b994-4e65-2330-c66c336d0205', - name: 'Tom Hanks', - userGroup: 'Editors', - lastLogin: 'Fri, 13 April 2022', - status: 'Active', - }, - { - key: 'b75af82a-b994-4b65-9330-b66c336d0206', - name: 'Oprah Winfrey', - userGroup: 'Translators', - lastLogin: 'Tue, 11 December 2021', - status: 'Active', - }, - { - key: 'b75af81a-b994-4e65-2s30-b66b336d0207', - name: 'Pamela Anderson', - userGroup: 'Editors', - lastLogin: 'Fri, 13 April 2022', - status: 'Active', - }, - { - key: 'b75af81a-b994-4e65-9930-b66c336d0l33t', - name: 'Keanu Reeves', - userGroup: 'Administrators', - lastLogin: 'Mon, 15 November 2021', - status: 'Active', - }, - ]; - - private _users: BehaviorSubject> = new BehaviorSubject(this.tempData); + private _users: BehaviorSubject> = new BehaviorSubject(tempData); public readonly users: Observable> = this._users.asObservable(); private _selection: BehaviorSubject> = new BehaviorSubject(>[]); diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/editors/users/views/users/tempData.ts b/src/Umbraco.Web.UI.Client/src/backoffice/editors/users/views/users/tempData.ts new file mode 100644 index 0000000000..f799aa5ad0 --- /dev/null +++ b/src/Umbraco.Web.UI.Client/src/backoffice/editors/users/views/users/tempData.ts @@ -0,0 +1,1368 @@ +import { UserItem } from './editor-view-users.element'; + +export const tempData: Array = [ + { + id: 1, + key: '50f184d4-71f3-4a43-b8be-7a36340fbd0d', + name: 'Nat Linnane', + email: 'nlinnane0@fda.gov', + language: 'Greek', + status: 'Inactive', + lastLoginDate: '9/11/2022', + lastLockoutDate: '5/31/2022', + lastPasswordChangeDate: '1/10/2022', + updateDate: '8/27/2022', + createDate: '9/19/2022', + failedLoginAttempts: 52, + }, + { + id: 2, + key: '7c9c5510-a7b6-43fd-a2d1-51de0009eabf', + name: 'Tyrus Hows', + email: 'thows1@hatena.ne.jp', + language: 'Gagauz', + status: 'Inactive', + lastLoginDate: '9/1/2022', + lastLockoutDate: '2/9/2022', + lastPasswordChangeDate: '8/22/2022', + updateDate: '12/2/2021', + createDate: '9/17/2022', + failedLoginAttempts: 717, + }, + { + id: 3, + key: 'fa3cca42-3b65-4fce-9e9b-5b09ca44f536', + name: 'Nisse Grattan', + email: 'ngrattan2@alexa.com', + language: 'Tok Pisin', + status: 'Active', + lastLoginDate: '3/22/2022', + lastLockoutDate: '12/2/2021', + lastPasswordChangeDate: '5/28/2022', + updateDate: '9/4/2022', + createDate: '8/7/2022', + failedLoginAttempts: 873, + }, + { + id: 4, + key: '381383ef-8d81-455c-bcbc-5e95a5cdc897', + name: 'Thain Rainville', + email: 'trainville3@merriam-webster.com', + language: 'Tajik', + status: 'Active', + lastLoginDate: '2/28/2022', + lastLockoutDate: '1/6/2022', + lastPasswordChangeDate: '7/1/2022', + updateDate: '9/14/2022', + createDate: '2/20/2022', + failedLoginAttempts: 786, + }, + { + id: 5, + key: 'e3dcaf95-7d55-42e6-a023-ce179523bf48', + name: 'Perren Balsdon', + email: 'pbalsdon4@ezinearticles.com', + language: 'Somali', + status: 'Active', + lastLoginDate: '5/6/2022', + lastLockoutDate: '11/12/2021', + lastPasswordChangeDate: '11/10/2021', + updateDate: '5/8/2022', + createDate: '1/12/2022', + failedLoginAttempts: 884, + }, + { + id: 6, + key: '05d0356e-051f-4d00-8b56-24667deab75d', + name: 'Athene Bilborough', + email: 'abilborough5@princeton.edu', + language: 'Tetum', + status: 'Active', + lastLoginDate: '3/11/2022', + lastLockoutDate: '7/7/2022', + lastPasswordChangeDate: '3/8/2022', + updateDate: '12/31/2021', + createDate: '10/2/2022', + failedLoginAttempts: 527, + }, + { + id: 7, + key: 'ac906ed0-d8e0-4ca5-8f03-d817ce31fb7e', + name: 'Carline Sharp', + email: 'csharp6@com.com', + language: 'Portuguese', + status: 'Inactive', + lastLoginDate: '3/6/2022', + lastLockoutDate: '5/20/2022', + lastPasswordChangeDate: '10/9/2021', + updateDate: '1/19/2022', + createDate: '7/3/2022', + failedLoginAttempts: 324, + }, + { + id: 8, + key: '6e34346d-639e-4538-a2cc-9a8a6ba40545', + name: 'Tansy Hanna', + email: 'thanna7@google.pl', + language: 'Papiamento', + status: 'Active', + lastLoginDate: '9/10/2022', + lastLockoutDate: '10/28/2021', + lastPasswordChangeDate: '2/26/2022', + updateDate: '3/12/2022', + createDate: '3/6/2022', + failedLoginAttempts: 937, + }, + { + id: 9, + key: '978c1d59-0814-404d-a4c4-b5abceb4b1b6', + name: 'Heidie Mohan', + email: 'hmohan8@google.co.jp', + language: 'Montenegrin', + status: 'Active', + lastLoginDate: '6/16/2022', + lastLockoutDate: '3/2/2022', + lastPasswordChangeDate: '4/14/2022', + updateDate: '1/30/2022', + createDate: '12/13/2021', + failedLoginAttempts: 804, + }, + { + id: 10, + key: '98d36a68-9b74-435f-8790-d177726f6fed', + name: 'Alden Blaschke', + email: 'ablaschke9@marketwatch.com', + language: 'Mongolian', + status: 'Inactive', + lastLoginDate: '6/27/2022', + lastLockoutDate: '4/16/2022', + lastPasswordChangeDate: '12/31/2021', + updateDate: '4/9/2022', + createDate: '6/18/2022', + failedLoginAttempts: 458, + }, + { + id: 11, + key: 'bf6b7fbe-d3e7-4ca8-9b6d-7daca03c2411', + name: 'Hollis Rouf', + email: 'hroufa@irs.gov', + language: 'Papiamento', + status: 'Inactive', + updateDate: '9/11/2022', + createDate: '6/18/2022', + failedLoginAttempts: 532, + }, + { + id: 12, + key: 'cf1d90af-5b77-4e00-98be-145214443c24', + name: 'Neils Janiak', + email: 'njaniakb@indiatimes.com', + language: 'Aymara', + status: 'Inactive', + updateDate: '11/7/2021', + createDate: '12/30/2021', + failedLoginAttempts: 800, + }, + { + id: 13, + key: '11e6ddc8-33e3-461b-8147-155eac339978', + name: 'Zarah Slaughter', + email: 'zslaughterc@storify.com', + language: 'Afrikaans', + status: 'Invited', + lastLoginDate: '1/1/2022', + lastLockoutDate: '5/4/2022', + lastPasswordChangeDate: '3/6/2022', + updateDate: '11/10/2021', + createDate: '8/1/2022', + failedLoginAttempts: 182, + }, + { + id: 14, + key: 'fb651643-3f2b-4b8e-ab96-a4f3fa15303a', + name: 'Elly Corbishley', + email: 'ecorbishleyd@hexun.com', + language: 'Kyrgyz', + status: 'Invited', + lastLoginDate: '6/3/2022', + lastLockoutDate: '4/4/2022', + lastPasswordChangeDate: '12/21/2021', + updateDate: '7/19/2022', + createDate: '5/12/2022', + failedLoginAttempts: 426, + }, + { + id: 15, + key: '1e329702-50d3-4176-b5db-9315ac6ac2a3', + name: 'Alisander Leupold', + email: 'aleupolde@webnode.com', + language: 'Nepali', + status: 'Inactive', + lastLoginDate: '1/4/2022', + lastLockoutDate: '9/15/2022', + lastPasswordChangeDate: '5/24/2022', + updateDate: '9/20/2022', + createDate: '3/15/2022', + failedLoginAttempts: 327, + }, + { + id: 16, + key: '1fead0fa-8d19-4153-abb0-980c18973d21', + name: 'Gennie Casaccia', + email: 'gcasacciaf@vkontakte.ru', + language: 'Catalan', + status: 'Active', + lastLoginDate: '4/11/2022', + lastLockoutDate: '3/17/2022', + lastPasswordChangeDate: '4/30/2022', + updateDate: '10/15/2021', + createDate: '2/14/2022', + failedLoginAttempts: 469, + }, + { + id: 17, + key: 'd273cd7c-cbd4-4535-83d1-921b9c1255b3', + name: 'Vaughan Longstreet', + email: 'vlongstreetg@jugem.jp', + language: 'Khmer', + status: 'Active', + lastLoginDate: '3/16/2022', + lastLockoutDate: '11/4/2021', + lastPasswordChangeDate: '3/23/2022', + updateDate: '7/18/2022', + createDate: '8/24/2022', + failedLoginAttempts: 737, + }, + { + id: 18, + key: 'e2f0b261-8900-41a3-b80c-6a54e55da4a7', + name: 'Vanda Scamadin', + email: 'vscamadinh@list-manage.com', + language: 'Telugu', + status: 'Inactive', + updateDate: '7/16/2022', + createDate: '1/5/2022', + failedLoginAttempts: 721, + }, + { + id: 19, + key: '54ff0b22-f419-47c0-a6a0-85a2ba43a300', + name: 'Reagen Nore', + email: 'rnorei@ning.com', + language: 'Kyrgyz', + status: 'Disabled', + lastLoginDate: '7/10/2022', + lastLockoutDate: '4/29/2022', + lastPasswordChangeDate: '10/26/2021', + updateDate: '12/17/2021', + createDate: '12/7/2021', + failedLoginAttempts: 351, + }, + { + id: 20, + key: '2b8dfa33-3dea-407e-8bcc-038f903ec37c', + name: 'Crosby Breens', + email: 'cbreensj@google.com.br', + language: 'Māori', + status: 'Disabled', + lastLoginDate: '8/7/2022', + lastLockoutDate: '5/23/2022', + lastPasswordChangeDate: '1/26/2022', + updateDate: '11/12/2021', + createDate: '5/24/2022', + failedLoginAttempts: 182, + }, + { + id: 21, + key: 'd0244fdc-4b68-4a71-a11b-7c047503ba38', + name: 'Felipe Finicj', + email: 'ffinicjk@economist.com', + language: 'Latvian', + status: 'Active', + lastLoginDate: '11/5/2021', + lastLockoutDate: '7/12/2022', + lastPasswordChangeDate: '4/12/2022', + updateDate: '12/16/2021', + createDate: '11/27/2021', + failedLoginAttempts: 212, + }, + { + id: 22, + key: '0934aae0-d565-4087-87ea-171c23ed012c', + name: 'Ash Shepstone', + email: 'ashepstonel@arizona.edu', + language: 'French', + status: 'Invited', + lastLoginDate: '1/18/2022', + lastLockoutDate: '10/17/2021', + lastPasswordChangeDate: '11/24/2021', + updateDate: '4/14/2022', + createDate: '6/5/2022', + failedLoginAttempts: 825, + }, + { + id: 23, + key: '1e244947-6fb6-4c34-8e22-87d14e1002b4', + name: 'Franni Plester', + email: 'fplesterm@nytimes.com', + language: 'Hungarian', + status: 'Active', + lastLoginDate: '7/27/2022', + lastLockoutDate: '8/17/2022', + lastPasswordChangeDate: '3/2/2022', + updateDate: '2/26/2022', + createDate: '7/18/2022', + failedLoginAttempts: 10, + }, + { + id: 24, + key: 'e6539e00-e4e7-4b09-a8ba-2bb5026b1842', + name: "Pearla O'Cooney", + email: 'pocooneyn@hugedomains.com', + language: 'Persian', + status: 'Disabled', + lastLoginDate: '3/29/2022', + lastLockoutDate: '3/18/2022', + lastPasswordChangeDate: '11/25/2021', + updateDate: '4/27/2022', + createDate: '11/10/2021', + failedLoginAttempts: 774, + }, + { + id: 25, + key: '2fa83b80-d938-472f-b4f0-a480c342bfdc', + name: 'Brittaney Linsay', + email: 'blinsayo@godaddy.com', + language: 'Amharic', + status: 'Disabled', + lastLoginDate: '9/21/2022', + lastLockoutDate: '1/28/2022', + lastPasswordChangeDate: '6/15/2022', + updateDate: '9/5/2022', + createDate: '9/6/2022', + failedLoginAttempts: 538, + }, + { + id: 26, + key: '2f40ba2c-36f4-45f9-94ff-2ee01be3a83f', + name: 'Terry McCorkell', + email: 'tmccorkellp@noaa.gov', + language: 'Dhivehi', + status: 'Active', + lastLoginDate: '7/23/2022', + lastLockoutDate: '7/24/2022', + lastPasswordChangeDate: '10/11/2021', + updateDate: '12/9/2021', + createDate: '12/10/2021', + failedLoginAttempts: 766, + }, + { + id: 27, + key: 'ff5c07f1-9628-4f1a-b416-46e9669ff261', + name: 'Amalea Barbour', + email: 'abarbourq@businesswire.com', + language: 'Catalan', + status: 'Invited', + lastLoginDate: '11/29/2021', + lastLockoutDate: '1/17/2022', + lastPasswordChangeDate: '2/2/2022', + updateDate: '5/18/2022', + createDate: '12/31/2021', + failedLoginAttempts: 903, + }, + { + id: 28, + key: '188a2fed-c3f1-4e2f-8e96-1a930f2dbeaa', + name: 'Bethena Grewe', + email: 'bgrewer@naver.com', + language: 'Haitian Creole', + status: 'Active', + lastLoginDate: '11/12/2021', + lastLockoutDate: '6/4/2022', + lastPasswordChangeDate: '8/25/2022', + updateDate: '2/23/2022', + createDate: '7/10/2022', + failedLoginAttempts: 348, + }, + { + id: 29, + key: '7651d063-7a6a-4ccf-a14f-a4123e4e0154', + name: 'Yorgos Ferroni', + email: 'yferronis@unblog.fr', + language: 'Afrikaans', + status: 'Inactive', + lastLoginDate: '7/13/2022', + lastLockoutDate: '3/16/2022', + lastPasswordChangeDate: '2/2/2022', + updateDate: '12/19/2021', + createDate: '5/2/2022', + failedLoginAttempts: 774, + }, + { + id: 30, + key: 'd8798556-96e1-4a4b-bc61-29baad622d1d', + name: 'Ivar Wisbey', + email: 'iwisbeyt@blogspot.com', + language: 'Lao', + status: 'Invited', + lastLoginDate: '6/15/2022', + lastLockoutDate: '3/4/2022', + lastPasswordChangeDate: '2/1/2022', + updateDate: '5/22/2022', + createDate: '5/6/2022', + failedLoginAttempts: 912, + }, + { + id: 31, + key: 'd0633a4e-7532-4a36-be2e-5befe8a46f66', + name: 'Casie Greatland', + email: 'cgreatlandu@google.cn', + language: 'Māori', + status: 'Disabled', + lastLoginDate: '12/19/2021', + lastLockoutDate: '10/15/2021', + lastPasswordChangeDate: '3/4/2022', + updateDate: '4/5/2022', + createDate: '6/6/2022', + failedLoginAttempts: 261, + }, + { + id: 32, + key: 'af784e2b-02bf-4d75-b199-0fa92bd1a12c', + name: 'Bat Dake', + email: 'bdakev@mapy.cz', + language: 'Armenian', + status: 'Invited', + lastLoginDate: '9/17/2022', + lastLockoutDate: '12/17/2021', + lastPasswordChangeDate: '3/10/2022', + updateDate: '7/13/2022', + createDate: '9/18/2022', + failedLoginAttempts: 589, + }, + { + id: 33, + key: '0a25512d-a7d2-429b-9e92-ebc3cae5ca19', + name: 'Chlo Skirven', + email: 'cskirvenw@histats.com', + language: 'Irish Gaelic', + status: 'Invited', + lastLoginDate: '6/22/2022', + lastLockoutDate: '6/7/2022', + lastPasswordChangeDate: '10/27/2021', + updateDate: '8/26/2022', + createDate: '10/31/2021', + failedLoginAttempts: 323, + }, + { + id: 34, + key: 'aadb0afb-b42e-4b84-9889-91f177b4f03f', + name: 'Delmer Porch', + email: 'dporchx@newyorker.com', + language: 'Punjabi', + status: 'Disabled', + lastLoginDate: '1/22/2022', + lastLockoutDate: '12/10/2021', + lastPasswordChangeDate: '5/24/2022', + updateDate: '8/28/2022', + createDate: '4/26/2022', + failedLoginAttempts: 300, + }, + { + id: 35, + key: 'd8f5122b-06c7-4253-9358-0ffb673fd6fa', + name: 'Gussi Lednor', + email: 'glednory@google.de', + language: 'Romanian', + status: 'Invited', + lastLoginDate: '6/1/2022', + lastLockoutDate: '11/17/2021', + lastPasswordChangeDate: '12/25/2021', + updateDate: '2/3/2022', + createDate: '6/9/2022', + failedLoginAttempts: 39, + }, + { + id: 36, + key: 'f81d21b6-c2bd-455c-9614-80c6f0ca7aba', + name: 'Tish Kubacki', + email: 'tkubackiz@gmpg.org', + language: 'Bosnian', + status: 'Disabled', + lastLoginDate: '11/29/2021', + lastLockoutDate: '11/28/2021', + lastPasswordChangeDate: '12/1/2021', + updateDate: '5/25/2022', + createDate: '8/6/2022', + failedLoginAttempts: 826, + }, + { + id: 37, + key: 'e5d98b85-6d9b-40b4-8237-cf98db0a6331', + name: 'Madelene Le Noury', + email: 'mle10@google.com.au', + language: 'Punjabi', + status: 'Invited', + lastLoginDate: '6/8/2022', + lastLockoutDate: '11/1/2021', + lastPasswordChangeDate: '8/19/2022', + updateDate: '8/29/2022', + createDate: '8/2/2022', + failedLoginAttempts: 619, + }, + { + id: 38, + key: 'bb96eeb6-2f4c-4eda-a277-91077b0219b0', + name: 'Alberta Headech', + email: 'aheadech11@diigo.com', + language: 'Kazakh', + status: 'Active', + lastLoginDate: '8/12/2022', + lastLockoutDate: '8/8/2022', + lastPasswordChangeDate: '10/29/2021', + updateDate: '2/4/2022', + createDate: '10/18/2021', + failedLoginAttempts: 191, + }, + { + id: 39, + key: '56a2d315-0cc5-4b0d-9ae3-8a7b7326e531', + name: 'Kenon Maybey', + email: 'kmaybey12@cdbaby.com', + language: 'Telugu', + status: 'Active', + lastLoginDate: '6/11/2022', + lastLockoutDate: '3/4/2022', + lastPasswordChangeDate: '5/5/2022', + updateDate: '10/21/2021', + createDate: '9/1/2022', + failedLoginAttempts: 45, + }, + { + id: 40, + key: 'dddae890-939e-48fd-89da-90631be9401f', + name: 'Brig Totterdill', + email: 'btotterdill13@telegraph.co.uk', + language: 'Tajik', + status: 'Disabled', + lastLoginDate: '8/11/2022', + lastLockoutDate: '3/31/2022', + lastPasswordChangeDate: '4/30/2022', + updateDate: '3/9/2022', + createDate: '3/23/2022', + failedLoginAttempts: 936, + }, + { + id: 41, + key: '96359df7-74a3-4eff-a729-40eac9a85fcc', + name: 'Kore Faragher', + email: 'kfaragher14@elpais.com', + language: 'Georgian', + status: 'Disabled', + lastLoginDate: '5/9/2022', + lastLockoutDate: '4/19/2022', + lastPasswordChangeDate: '7/26/2022', + updateDate: '10/17/2021', + createDate: '4/14/2022', + failedLoginAttempts: 843, + }, + { + id: 42, + key: 'af74ab26-81f2-4c51-8867-24acc7021c3c', + name: 'Benedicto Oda', + email: 'boda15@zimbio.com', + language: 'Hungarian', + status: 'Active', + lastLoginDate: '7/6/2022', + lastLockoutDate: '12/27/2021', + lastPasswordChangeDate: '9/15/2022', + updateDate: '1/13/2022', + createDate: '4/1/2022', + failedLoginAttempts: 262, + }, + { + id: 43, + key: '81648dc6-93d5-468d-8fac-fcdd0fb854cd', + name: 'Celinka Gyorffy', + email: 'cgyorffy16@godaddy.com', + language: 'Punjabi', + status: 'Inactive', + lastLoginDate: '7/15/2022', + lastLockoutDate: '5/24/2022', + lastPasswordChangeDate: '2/26/2022', + updateDate: '3/27/2022', + createDate: '8/3/2022', + failedLoginAttempts: 606, + }, + { + id: 44, + key: '1c8fd6b4-ccd4-4bc3-9cde-bb705e2618aa', + name: 'Arri Goretti', + email: 'agoretti17@pcworld.com', + language: 'Armenian', + status: 'Invited', + updateDate: '1/24/2022', + createDate: '7/11/2022', + failedLoginAttempts: 234, + }, + { + id: 45, + key: 'dd26e22b-bcab-449f-8a35-ae63be90e8c6', + name: 'Giffie Strattan', + email: 'gstrattan18@cisco.com', + language: 'Maltese', + status: 'Disabled', + lastLoginDate: '5/15/2022', + lastLockoutDate: '10/21/2021', + lastPasswordChangeDate: '2/2/2022', + updateDate: '4/12/2022', + createDate: '7/7/2022', + failedLoginAttempts: 62, + }, + { + id: 46, + key: '08b5e626-20e6-486d-a289-baa5b49ee360', + name: 'Aeriel Webling', + email: 'awebling19@usgs.gov', + language: 'Dutch', + status: 'Disabled', + lastLoginDate: '7/20/2022', + lastLockoutDate: '11/17/2021', + lastPasswordChangeDate: '8/22/2022', + updateDate: '8/31/2022', + createDate: '7/8/2022', + failedLoginAttempts: 34, + }, + { + id: 47, + key: '064981b2-f8e4-4a25-a16e-1fe3441ae0a0', + name: 'Roderic Heckle', + email: 'rheckle1a@pbs.org', + language: 'Dari', + status: 'Inactive', + updateDate: '7/31/2022', + createDate: '2/19/2022', + failedLoginAttempts: 279, + }, + { + id: 48, + key: '0c221634-03be-4e69-9399-350c1da61641', + name: 'Gonzalo Magister', + email: 'gmagister1b@jigsy.com', + language: 'Hungarian', + status: 'Disabled', + lastLoginDate: '8/21/2022', + lastLockoutDate: '6/23/2022', + lastPasswordChangeDate: '2/11/2022', + updateDate: '6/23/2022', + createDate: '8/1/2022', + failedLoginAttempts: 227, + }, + { + id: 49, + key: 'e26f1576-483e-4132-a25a-1eaddf63f40d', + name: 'Nickolai Landsborough', + email: 'nlandsborough1c@ask.com', + language: 'Guaraní', + status: 'Inactive', + lastLoginDate: '11/25/2021', + lastLockoutDate: '7/24/2022', + lastPasswordChangeDate: '4/20/2022', + updateDate: '8/17/2022', + createDate: '10/31/2021', + failedLoginAttempts: 85, + }, + { + id: 50, + key: '7032b5ea-467a-43aa-9a23-33f195cfa0a0', + name: 'Linn Early', + email: 'learly1d@msn.com', + language: 'Swedish', + status: 'Active', + lastLoginDate: '10/18/2021', + lastLockoutDate: '6/14/2022', + lastPasswordChangeDate: '4/10/2022', + updateDate: '10/26/2021', + createDate: '7/30/2022', + failedLoginAttempts: 198, + }, + { + id: 51, + key: '57bb4927-a7a7-4dc9-af48-f418f1c0fbc6', + name: 'Julianna Jakab', + email: 'jjakab1e@cbsnews.com', + language: 'Malay', + status: 'Active', + lastLoginDate: '3/22/2022', + lastLockoutDate: '6/2/2022', + lastPasswordChangeDate: '9/7/2022', + updateDate: '3/14/2022', + createDate: '10/19/2021', + failedLoginAttempts: 387, + }, + { + id: 52, + key: 'd5bb1d61-1201-43b8-b3df-2bd9b4bf1269', + name: 'Erick Hovell', + email: 'ehovell1f@ucoz.com', + language: 'New Zealand Sign Language', + status: 'Disabled', + updateDate: '11/30/2021', + createDate: '3/4/2022', + failedLoginAttempts: 150, + }, + { + id: 53, + key: '3e711421-bdc3-411e-909c-ba7230396266', + name: 'Bondon Berends', + email: 'bberends1g@si.edu', + language: 'Zulu', + status: 'Invited', + updateDate: '1/12/2022', + createDate: '4/22/2022', + failedLoginAttempts: 455, + }, + { + id: 54, + key: '2c0806e0-a7dc-46bd-a4c1-85a7d0799c56', + name: 'Rubie Palluschek', + email: 'rpalluschek1h@multiply.com', + language: 'Icelandic', + status: 'Disabled', + lastLoginDate: '7/18/2022', + lastLockoutDate: '1/14/2022', + lastPasswordChangeDate: '8/13/2022', + updateDate: '1/17/2022', + createDate: '4/9/2022', + failedLoginAttempts: 427, + }, + { + id: 55, + key: '5fc52879-4684-44b1-9c39-63fc47d85587', + name: 'Kass Gaisford', + email: 'kgaisford1i@tiny.cc', + language: 'Hiri Motu', + status: 'Invited', + lastLoginDate: '12/22/2021', + lastLockoutDate: '9/10/2022', + lastPasswordChangeDate: '6/6/2022', + updateDate: '1/2/2022', + createDate: '7/1/2022', + failedLoginAttempts: 951, + }, + { + id: 56, + key: '0daeefb8-8f39-4d63-be8e-eef0239b418c', + name: 'Eba Fewings', + email: 'efewings1j@hexun.com', + language: 'Quechua', + status: 'Invited', + lastLoginDate: '11/30/2021', + lastLockoutDate: '4/17/2022', + lastPasswordChangeDate: '7/8/2022', + updateDate: '3/7/2022', + createDate: '6/19/2022', + failedLoginAttempts: 371, + }, + { + id: 57, + key: 'f34d019d-af85-4579-b510-b0e5a27c05ab', + name: 'Rand Espadate', + email: 'respadate1k@skyrock.com', + language: 'Persian', + status: 'Disabled', + lastLoginDate: '8/22/2022', + lastLockoutDate: '6/14/2022', + lastPasswordChangeDate: '9/5/2022', + updateDate: '2/11/2022', + createDate: '2/21/2022', + failedLoginAttempts: 5, + }, + { + id: 58, + key: 'acab2dd7-baae-40ef-b272-96ec50e633f7', + name: 'Bobina Macconachy', + email: 'bmacconachy1l@wikipedia.org', + language: 'Gujarati', + status: 'Active', + lastLoginDate: '5/25/2022', + lastLockoutDate: '6/28/2022', + lastPasswordChangeDate: '6/26/2022', + updateDate: '8/11/2022', + createDate: '3/12/2022', + failedLoginAttempts: 243, + }, + { + id: 59, + key: '8e3c0364-0c2a-451e-a65d-7c46cfba2436', + name: 'Walther Pattie', + email: 'wpattie1m@example.com', + language: 'Zulu', + status: 'Invited', + updateDate: '3/8/2022', + createDate: '10/8/2021', + failedLoginAttempts: 381, + }, + { + id: 60, + key: '0548a79d-a767-450c-9823-e170284347e9', + name: 'Elton Jedrychowski', + email: 'ejedrychowski1n@cam.ac.uk', + language: 'Greek', + status: 'Invited', + lastLoginDate: '5/16/2022', + lastLockoutDate: '7/18/2022', + lastPasswordChangeDate: '11/28/2021', + updateDate: '7/27/2022', + createDate: '9/30/2022', + failedLoginAttempts: 27, + }, + { + id: 61, + key: 'd97f31cd-939d-4686-b282-e6613c930ce9', + name: 'Melamie Chifney', + email: 'mchifney1o@umich.edu', + language: 'Albanian', + status: 'Active', + lastLoginDate: '3/16/2022', + lastLockoutDate: '12/22/2021', + lastPasswordChangeDate: '1/8/2022', + updateDate: '10/22/2021', + createDate: '12/9/2021', + failedLoginAttempts: 807, + }, + { + id: 62, + key: '160614dd-5749-4a74-878e-ac82e8cfe21b', + name: 'Auroora Theuff', + email: 'atheuff1p@over-blog.com', + language: 'Kurdish', + status: 'Inactive', + lastLoginDate: '11/28/2021', + lastLockoutDate: '11/17/2021', + lastPasswordChangeDate: '11/20/2021', + updateDate: '4/9/2022', + createDate: '6/29/2022', + failedLoginAttempts: 334, + }, + { + id: 63, + key: '3a1a9869-d103-40fb-98ac-4cce9e16ac17', + name: 'Law Cours', + email: 'lcours1q@google.co.uk', + language: 'Arabic', + status: 'Invited', + lastLoginDate: '3/27/2022', + lastLockoutDate: '12/2/2021', + lastPasswordChangeDate: '3/14/2022', + updateDate: '7/14/2022', + createDate: '2/4/2022', + failedLoginAttempts: 129, + }, + { + id: 64, + key: '174fd2e2-ac91-4eae-a366-2fe7e4322d88', + name: 'Clarke Rosenhaus', + email: 'crosenhaus1r@globo.com', + language: 'Afrikaans', + status: 'Active', + lastLoginDate: '6/23/2022', + lastLockoutDate: '7/4/2022', + lastPasswordChangeDate: '12/5/2021', + updateDate: '4/18/2022', + createDate: '8/16/2022', + failedLoginAttempts: 450, + }, + { + id: 65, + key: '762844a8-b64e-473a-ba50-f2cb446c8e93', + name: 'Nevins Gabler', + email: 'ngabler1s@psu.edu', + language: 'Korean', + status: 'Invited', + updateDate: '12/2/2021', + createDate: '12/14/2021', + failedLoginAttempts: 189, + }, + { + id: 66, + key: '46f28ab6-06ca-4d9f-93e4-742218ed5dca', + name: 'Bondon Corrin', + email: 'bcorrin1t@ustream.tv', + language: 'Hiri Motu', + status: 'Active', + lastLoginDate: '1/14/2022', + lastLockoutDate: '6/14/2022', + lastPasswordChangeDate: '11/28/2021', + updateDate: '9/10/2022', + createDate: '5/12/2022', + failedLoginAttempts: 359, + }, + { + id: 67, + key: 'b55ca6f9-2fd3-4e0d-a222-6df52db14007', + name: 'Juli Birtwistle', + email: 'jbirtwistle1u@histats.com', + language: 'Haitian Creole', + status: 'Active', + lastLoginDate: '11/25/2021', + lastLockoutDate: '3/20/2022', + lastPasswordChangeDate: '12/20/2021', + updateDate: '6/16/2022', + createDate: '11/29/2021', + failedLoginAttempts: 956, + }, + { + id: 68, + key: 'a5c7ea42-3257-48fe-9497-f684e6cdebaa', + name: 'Tomasine Hirsthouse', + email: 'thirsthouse1v@ehow.com', + language: 'Bosnian', + status: 'Disabled', + lastLoginDate: '9/19/2022', + lastLockoutDate: '4/21/2022', + lastPasswordChangeDate: '2/7/2022', + updateDate: '2/12/2022', + createDate: '1/3/2022', + failedLoginAttempts: 533, + }, + { + id: 69, + key: '4f9da285-8b73-4f74-9e54-50d04f1441a0', + name: 'Candide Flecknell', + email: 'cflecknell1w@guardian.co.uk', + language: 'Estonian', + status: 'Disabled', + lastLoginDate: '3/25/2022', + lastLockoutDate: '10/26/2021', + lastPasswordChangeDate: '12/3/2021', + updateDate: '12/31/2021', + createDate: '1/31/2022', + failedLoginAttempts: 621, + }, + { + id: 70, + key: '4054205f-6d9d-4bea-b1b2-29168dead18d', + name: 'Skelly Hockey', + email: 'shockey1x@usa.gov', + language: 'Burmese', + status: 'Active', + updateDate: '8/30/2022', + createDate: '1/16/2022', + failedLoginAttempts: 211, + }, + { + id: 71, + key: '1574526d-614b-41f4-abb4-4066fac8815c', + name: 'Nicholas Woan', + email: 'nwoan1y@istockphoto.com', + language: 'Māori', + status: 'Invited', + lastLoginDate: '4/16/2022', + lastLockoutDate: '4/17/2022', + lastPasswordChangeDate: '7/14/2022', + updateDate: '12/30/2021', + createDate: '1/19/2022', + failedLoginAttempts: 78, + }, + { + id: 72, + key: '745e0d21-44a6-4df1-81a0-d796ff7e6801', + name: 'Asa Kase', + email: 'akase1z@scribd.com', + language: 'Irish Gaelic', + status: 'Invited', + updateDate: '7/16/2022', + createDate: '10/23/2021', + failedLoginAttempts: 790, + }, + { + id: 73, + key: 'e0fc930c-6ed5-4064-a039-9e2c3b0dc644', + name: 'Emmerich Sisey', + email: 'esisey20@baidu.com', + language: 'Tetum', + status: 'Active', + lastLoginDate: '5/22/2022', + lastLockoutDate: '6/26/2022', + lastPasswordChangeDate: '5/22/2022', + updateDate: '5/8/2022', + createDate: '9/20/2022', + failedLoginAttempts: 10, + }, + { + id: 74, + key: '0f36289e-abce-4fa9-a524-49664389c2ef', + name: 'Trish Cerith', + email: 'tcerith21@tuttocitta.it', + language: 'Spanish', + status: 'Invited', + lastLoginDate: '1/11/2022', + lastLockoutDate: '9/1/2022', + lastPasswordChangeDate: '1/29/2022', + updateDate: '10/16/2021', + createDate: '1/13/2022', + failedLoginAttempts: 417, + }, + { + id: 75, + key: 'c7a02de0-2eb6-461d-8036-e163b12ef2b5', + name: 'Netty Rudge', + email: 'nrudge22@xinhuanet.com', + language: 'Fijian', + status: 'Active', + lastLoginDate: '4/21/2022', + lastLockoutDate: '7/21/2022', + lastPasswordChangeDate: '11/6/2021', + updateDate: '11/12/2021', + createDate: '4/4/2022', + failedLoginAttempts: 214, + }, + { + id: 76, + key: 'dfa94377-3eb7-4318-804c-892f125cdb65', + name: 'Joane Kuhne', + email: 'jkuhne23@opera.com', + language: 'Danish', + status: 'Active', + lastLoginDate: '1/10/2022', + lastLockoutDate: '9/18/2022', + lastPasswordChangeDate: '9/6/2022', + updateDate: '2/9/2022', + createDate: '4/14/2022', + failedLoginAttempts: 735, + }, + { + id: 77, + key: '34114a3c-b6a9-41e4-ad65-377abb1f2fbd', + name: 'Sheilah Nattrass', + email: 'snattrass24@sbwire.com', + language: 'Korean', + status: 'Invited', + lastLoginDate: '5/7/2022', + lastLockoutDate: '10/20/2021', + lastPasswordChangeDate: '11/13/2021', + updateDate: '12/6/2021', + createDate: '6/25/2022', + failedLoginAttempts: 480, + }, + { + id: 78, + key: 'c9a62d42-9b32-441b-b758-283526c749b1', + name: "Luella O'Geaney", + email: 'logeaney25@foxnews.com', + language: 'Arabic', + status: 'Disabled', + lastLoginDate: '10/21/2021', + lastLockoutDate: '8/12/2022', + lastPasswordChangeDate: '7/20/2022', + updateDate: '5/11/2022', + createDate: '5/19/2022', + failedLoginAttempts: 828, + }, + { + id: 79, + key: '4c54110a-5768-4979-adf0-c8e52a2ae6a6', + name: 'Cyrille Curm', + email: 'ccurm26@forbes.com', + language: 'Icelandic', + status: 'Active', + lastLoginDate: '12/17/2021', + lastLockoutDate: '8/9/2022', + lastPasswordChangeDate: '10/14/2021', + updateDate: '5/19/2022', + createDate: '5/5/2022', + failedLoginAttempts: 840, + }, + { + id: 80, + key: '86bdee19-c4a6-412c-9c38-173232993952', + name: 'Leonard Vitall', + email: 'lvitall27@clickbank.net', + language: 'Haitian Creole', + status: 'Inactive', + lastLoginDate: '8/12/2022', + lastLockoutDate: '2/26/2022', + lastPasswordChangeDate: '10/2/2022', + updateDate: '12/31/2021', + createDate: '1/13/2022', + failedLoginAttempts: 588, + }, + { + id: 81, + key: '0961184f-5b1a-4e21-b598-c2e4fda4b498', + name: 'Nickie Bronger', + email: 'nbronger28@xrea.com', + language: 'West Frisian', + status: 'Active', + lastLoginDate: '8/5/2022', + lastLockoutDate: '1/21/2022', + lastPasswordChangeDate: '4/8/2022', + updateDate: '5/11/2022', + createDate: '10/12/2021', + failedLoginAttempts: 639, + }, + { + id: 82, + key: '7cc8803f-9c20-44aa-9399-d4ec5e52e008', + name: 'Annie Butterworth', + email: 'abutterworth29@marketwatch.com', + language: 'Bulgarian', + status: 'Active', + lastLoginDate: '10/30/2021', + lastLockoutDate: '10/5/2021', + lastPasswordChangeDate: '5/3/2022', + updateDate: '4/4/2022', + createDate: '1/25/2022', + failedLoginAttempts: 912, + }, + { + id: 83, + key: '61ec70a3-6a8d-42fe-88f3-c866328c4a9c', + name: 'Dasi Ughi', + email: 'dughi2a@vimeo.com', + language: 'Yiddish', + status: 'Disabled', + lastLoginDate: '10/14/2021', + lastLockoutDate: '1/11/2022', + lastPasswordChangeDate: '8/1/2022', + updateDate: '10/31/2021', + createDate: '7/2/2022', + failedLoginAttempts: 494, + }, + { + id: 84, + key: '21bbdd96-ea8d-463c-8d10-fd6d016bf4e0', + name: 'Lawrence Cansfield', + email: 'lcansfield2b@istockphoto.com', + language: 'Estonian', + status: 'Disabled', + lastLoginDate: '3/24/2022', + lastLockoutDate: '10/11/2021', + lastPasswordChangeDate: '5/20/2022', + updateDate: '12/1/2021', + createDate: '10/26/2021', + failedLoginAttempts: 258, + }, + { + id: 85, + key: 'f897a981-0452-4c06-b875-dab80109051b', + name: 'Gal Lyster', + email: 'glyster2c@google.cn', + language: 'Indonesian', + status: 'Disabled', + lastLoginDate: '8/29/2022', + lastLockoutDate: '9/25/2022', + lastPasswordChangeDate: '10/16/2021', + updateDate: '4/16/2022', + createDate: '3/17/2022', + failedLoginAttempts: 103, + }, + { + id: 86, + key: '1f8d4217-3037-444e-b91a-0e18f20b3919', + name: 'Caron Crolly', + email: 'ccrolly2d@jalbum.net', + language: 'Italian', + status: 'Disabled', + lastLoginDate: '7/12/2022', + lastLockoutDate: '3/20/2022', + lastPasswordChangeDate: '1/4/2022', + updateDate: '11/26/2021', + createDate: '6/5/2022', + failedLoginAttempts: 211, + }, + { + id: 87, + key: 'f4449cde-ef12-4068-9f13-6104d281e494', + name: 'Juliana Clorley', + email: 'jclorley2e@mail.ru', + language: 'Luxembourgish', + status: 'Active', + lastLoginDate: '10/17/2021', + lastLockoutDate: '8/4/2022', + lastPasswordChangeDate: '12/23/2021', + updateDate: '2/23/2022', + createDate: '8/22/2022', + failedLoginAttempts: 208, + }, + { + id: 88, + key: 'ac75e813-22bc-4d42-8f98-a4ba6f19bdf8', + name: 'Kylynn Falvey', + email: 'kfalvey2f@com.com', + language: 'Zulu', + status: 'Inactive', + lastLoginDate: '3/4/2022', + lastLockoutDate: '6/4/2022', + lastPasswordChangeDate: '6/9/2022', + updateDate: '2/14/2022', + createDate: '1/30/2022', + failedLoginAttempts: 75, + }, + { + id: 89, + key: 'ba9caf4c-aeee-48e8-a7d7-3ff2239c0186', + name: 'Marty Shurrock', + email: 'mshurrock2g@hhs.gov', + language: 'Danish', + status: 'Inactive', + lastLoginDate: '10/2/2022', + lastLockoutDate: '9/16/2022', + lastPasswordChangeDate: '12/3/2021', + updateDate: '5/26/2022', + createDate: '4/30/2022', + failedLoginAttempts: 40, + }, + { + id: 90, + key: '924e087c-b0b5-4c59-a8b8-a71ad112c4b0', + name: 'Goldia Crates', + email: 'gcrates2h@privacy.gov.au', + language: 'Pashto', + status: 'Inactive', + lastLoginDate: '9/27/2022', + lastLockoutDate: '2/7/2022', + lastPasswordChangeDate: '12/9/2021', + updateDate: '5/5/2022', + createDate: '9/25/2022', + failedLoginAttempts: 710, + }, + { + id: 91, + key: '909154d4-5c84-461d-b256-552f358a0d68', + name: 'Ted Stratley', + email: 'tstratley2i@tinypic.com', + language: 'Mongolian', + status: 'Inactive', + lastLoginDate: '4/19/2022', + lastLockoutDate: '9/24/2022', + lastPasswordChangeDate: '10/24/2021', + updateDate: '7/29/2022', + createDate: '2/7/2022', + failedLoginAttempts: 730, + }, + { + id: 92, + key: '284e7d5a-1b10-4814-a5fd-da17180c1753', + name: 'Rubia Collecott', + email: 'rcollecott2j@oaic.gov.au', + language: 'Somali', + status: 'Inactive', + updateDate: '1/27/2022', + createDate: '3/7/2022', + failedLoginAttempts: 250, + }, + { + id: 93, + key: '91205c6e-3be9-47fc-b5f3-01c89306dcd5', + name: 'Nilson Britland', + email: 'nbritland2k@facebook.com', + language: 'Ndebele', + status: 'Disabled', + lastLoginDate: '8/25/2022', + lastLockoutDate: '12/31/2021', + lastPasswordChangeDate: '8/15/2022', + updateDate: '8/14/2022', + createDate: '11/17/2021', + failedLoginAttempts: 360, + }, + { + id: 94, + key: 'da108699-76d9-4691-9dbd-c11a16cf3514', + name: 'Johannes Slucock', + email: 'jslucock2l@buzzfeed.com', + language: 'Malagasy', + status: 'Inactive', + lastLoginDate: '1/5/2022', + lastLockoutDate: '10/11/2021', + lastPasswordChangeDate: '2/17/2022', + updateDate: '6/13/2022', + createDate: '7/19/2022', + failedLoginAttempts: 397, + }, + { + id: 95, + key: '7469307b-a87b-49b9-8dab-100d7d7e31d0', + name: 'Rodrick Twelftree', + email: 'rtwelftree2m@nbcnews.com', + language: 'Luxembourgish', + status: 'Active', + lastLoginDate: '5/23/2022', + lastLockoutDate: '6/21/2022', + lastPasswordChangeDate: '8/27/2022', + updateDate: '10/20/2021', + createDate: '10/24/2021', + failedLoginAttempts: 104, + }, + { + id: 96, + key: 'cc7c8bbb-580f-445e-8af5-c3bf14b4a560', + name: 'Liesa Arnoll', + email: 'larnoll2n@webnode.com', + language: 'Hebrew', + status: 'Active', + lastLoginDate: '9/13/2022', + lastLockoutDate: '7/14/2022', + lastPasswordChangeDate: '2/28/2022', + updateDate: '6/20/2022', + createDate: '11/5/2021', + failedLoginAttempts: 78, + }, + { + id: 97, + key: '1c75ef97-b3f2-4194-b109-fd5c82efe9de', + name: 'Cindra Simkiss', + email: 'csimkiss2o@google.es', + language: 'Gagauz', + status: 'Disabled', + lastLoginDate: '4/18/2022', + lastLockoutDate: '9/2/2022', + lastPasswordChangeDate: '5/5/2022', + updateDate: '4/30/2022', + createDate: '9/25/2022', + failedLoginAttempts: 887, + }, + { + id: 98, + key: 'a010a09d-2e23-4403-806c-16fcfe70fcd4', + name: 'Belle Conrard', + email: 'bconrard2p@mozilla.org', + language: 'Hindi', + status: 'Invited', + lastLoginDate: '7/18/2022', + lastLockoutDate: '6/25/2022', + lastPasswordChangeDate: '2/21/2022', + updateDate: '7/18/2022', + createDate: '4/12/2022', + failedLoginAttempts: 477, + }, + { + id: 99, + key: '8c9bfaac-098f-43a4-91ee-a9eaf5dfe5ea', + name: 'Tremain Minor', + email: 'tminor2q@storify.com', + language: 'Chinese', + status: 'Invited', + lastLoginDate: '7/31/2022', + lastLockoutDate: '5/11/2022', + lastPasswordChangeDate: '11/10/2021', + updateDate: '8/9/2022', + createDate: '7/24/2022', + failedLoginAttempts: 160, + }, + { + id: 100, + key: 'ecb0ced9-c1c1-486d-a317-5f2b320859bd', + name: 'Isador Tibbles', + email: 'itibbles2r@cafepress.com', + language: 'Assamese', + status: 'Active', + lastLoginDate: '4/7/2022', + lastLockoutDate: '2/4/2022', + lastPasswordChangeDate: '11/14/2021', + updateDate: '4/14/2022', + createDate: '11/16/2021', + failedLoginAttempts: 932, + }, +];