+
+## About Laravel
+
+Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:
+
+- [Simple, fast routing engine](https://laravel.com/docs/routing).
+- [Powerful dependency injection container](https://laravel.com/docs/container).
+- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage.
+- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent).
+- Database agnostic [schema migrations](https://laravel.com/docs/migrations).
+- [Robust background job processing](https://laravel.com/docs/queues).
+- [Real-time event broadcasting](https://laravel.com/docs/broadcasting).
+
+Laravel is accessible, powerful, and provides tools required for large, robust applications.
+
+## Learning Laravel
+
+Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework.
+
+If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains over 1500 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.
+
+## Laravel Sponsors
+
+We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the Laravel [Patreon page](https://patreon.com/taylorotwell).
+
+- **[Vehikl](https://vehikl.com/)**
+- **[Tighten Co.](https://tighten.co)**
+- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)**
+- **[64 Robots](https://64robots.com)**
+- **[Cubet Techno Labs](https://cubettech.com)**
+- **[Cyber-Duck](https://cyber-duck.co.uk)**
+- **[British Software Development](https://www.britishsoftware.co)**
+- **[Webdock, Fast VPS Hosting](https://www.webdock.io/en)**
+- **[DevSquad](https://devsquad.com)**
+- [UserInsights](https://userinsights.com)
+- [Fragrantica](https://www.fragrantica.com)
+- [SOFTonSOFA](https://softonsofa.com/)
+- [User10](https://user10.com)
+- [Soumettre.fr](https://soumettre.fr/)
+- [CodeBrisk](https://codebrisk.com)
+- [1Forge](https://1forge.com)
+- [TECPRESSO](https://tecpresso.co.jp/)
+- [Runtime Converter](http://runtimeconverter.com/)
+- [WebL'Agence](https://weblagence.com/)
+- [Invoice Ninja](https://www.invoiceninja.com)
+- [iMi digital](https://www.imi-digital.de/)
+- [Earthlink](https://www.earthlink.ro/)
+- [Steadfast Collective](https://steadfastcollective.com/)
+- [We Are The Robots Inc.](https://watr.mx/)
+- [Understand.io](https://www.understand.io/)
+- [Abdel Elrafa](https://abdelelrafa.com)
+- [Hyper Host](https://hyper.host)
+- [Appoly](https://www.appoly.co.uk)
+- [OP.GG](https://op.gg)
+
+## Contributing
+
+Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions).
+
+## Code of Conduct
+
+In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct).
+
+## Security Vulnerabilities
+
+If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed.
+
+## License
+
+The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php
new file mode 100644
index 0000000..69914e9
--- /dev/null
+++ b/app/Console/Kernel.php
@@ -0,0 +1,41 @@
+command('inspire')->hourly();
+ }
+
+ /**
+ * Register the commands for the application.
+ *
+ * @return void
+ */
+ protected function commands()
+ {
+ $this->load(__DIR__.'/Commands');
+
+ require base_path('routes/console.php');
+ }
+}
diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php
new file mode 100644
index 0000000..56943da
--- /dev/null
+++ b/app/Exceptions/Handler.php
@@ -0,0 +1,68 @@
+route('login');
+ }
+ return parent::render($request, $exception);
+ }
+
+ protected function unauthenticated($request, AuthenticationException $exception)
+ {
+ if ($request->expectsJson()) {
+ return response()->json(['error' => 'Unauthenticated.'], 401);
+ }
+
+ return redirect()->guest(route('login'));
+ }
+}
diff --git a/app/Exports/LaporanProject.php b/app/Exports/LaporanProject.php
new file mode 100644
index 0000000..cea7df3
--- /dev/null
+++ b/app/Exports/LaporanProject.php
@@ -0,0 +1,14 @@
+param = $param;
+ }
+
+ public function view(): View
+ {
+ $param = $this->param;
+ $path = $param['path'];
+
+ if ($path == 'new') {
+ $data = DB::select("select mpt.*, rs.definition as status, rcl.definition as lvlurgent, mp.project_name, mu.full_name as implementor
+ from master_project_task mpt
+ join master_project mp on mp.id = mpt.project_id
+ left join master_user mu on mu.id = mpt.user_imp_id
+ left join ref_status rs on rs.id = mpt.status_id
+ left join ref_critical_level rcl on rcl.id = mpt.critical_level_id
+ where mpt.status_id = 7
+ order by created_at desc");
+ } else if($path == 'op') {
+ $data = DB::select("select mpt.*, rs.definition as status, rcl.definition as lvlurgent, mp.project_name, mu.full_name as implementor
+ from master_project_task mpt
+ join master_project mp on mp.id = mpt.project_id
+ left join master_user mu on mu.id = mpt.user_imp_id
+ left join ref_status rs on rs.id = mpt.status_id
+ left join ref_critical_level rcl on rcl.id = mpt.critical_level_id
+ where mpt.status_id in (1,2,3,4)
+ order by created_at desc");
+ } else if($path == 'cancel') {
+ $data = DB::select("select mpt.*, rs.definition as status, rcl.definition as lvlurgent, mp.project_name, mu.full_name as implementor
+ from master_project_task mpt
+ join master_project mp on mp.id = mpt.project_id
+ left join master_user mu on mu.id = mpt.user_imp_id
+ left join ref_status rs on rs.id = mpt.status_id
+ left join ref_critical_level rcl on rcl.id = mpt.critical_level_id
+ where mpt.status_id in (6, 8)
+ order by created_at desc");
+ } else if($path == 'overdue') {
+ $data = DB::select("select mpt.*, rs.definition as status, rcl.definition as lvlurgent, mp.project_name, mu.full_name as implementor
+ from master_project_task mpt
+ join master_project mp on mp.id = mpt.project_id
+ left join master_user mu on mu.id = mpt.user_imp_id
+ left join ref_status rs on rs.id = mpt.status_id
+ left join ref_critical_level rcl on rcl.id = mpt.critical_level_id
+ where mpt.status_id not in (5,6,7,8) and (DATE_PART('day', mpt.date_deadline::timestamp - CURRENT_DATE::timestamp)) >=0
+ order by created_at desc");
+ } else if($path == 'done') {
+ $data = DB::select("select mpt.*, rs.definition as status, rcl.definition as lvlurgent, mp.project_name, mu.full_name as implementor
+ from master_project_task mpt
+ join master_project mp on mp.id = mpt.project_id
+ left join master_user mu on mu.id = mpt.user_imp_id
+ left join ref_status rs on rs.id = mpt.status_id
+ left join ref_critical_level rcl on rcl.id = mpt.critical_level_id
+ where mpt.status_id = 5 and mpt.status_approve = true
+ order by created_at desc");
+ } else {
+ $data = DB::select("select mpt.*, rs.definition as status, rcl.definition as lvlurgent, mp.project_name, mu.full_name as implementor
+ from master_project_task mpt
+ join master_project mp on mp.id = mpt.project_id
+ left join master_user mu on mu.id = mpt.user_imp_id
+ left join ref_status rs on rs.id = mpt.status_id
+ left join ref_critical_level rcl on rcl.id = mpt.critical_level_id
+ order by created_at desc");
+ }
+
+ return view('content.others.laporan_project', ['data' => $data, 'path' => $path]);
+ }
+}
\ No newline at end of file
diff --git a/app/Exports/LaporanProjectExports.php b/app/Exports/LaporanProjectExports.php
new file mode 100644
index 0000000..cea7df3
--- /dev/null
+++ b/app/Exports/LaporanProjectExports.php
@@ -0,0 +1,14 @@
+middleware('auth');
+ }
+}
diff --git a/app/Http/Controllers/Auth/ForgotPasswordController.php b/app/Http/Controllers/Auth/ForgotPasswordController.php
new file mode 100644
index 0000000..465c39c
--- /dev/null
+++ b/app/Http/Controllers/Auth/ForgotPasswordController.php
@@ -0,0 +1,22 @@
+middleware('guest')->except('logout');
+ }
+}
diff --git a/app/Http/Controllers/Auth/RegisterController.php b/app/Http/Controllers/Auth/RegisterController.php
new file mode 100644
index 0000000..c6a6de6
--- /dev/null
+++ b/app/Http/Controllers/Auth/RegisterController.php
@@ -0,0 +1,73 @@
+middleware('guest');
+ }
+
+ /**
+ * Get a validator for an incoming registration request.
+ *
+ * @param array $data
+ * @return \Illuminate\Contracts\Validation\Validator
+ */
+ protected function validator(array $data)
+ {
+ return Validator::make($data, [
+ 'name' => ['required', 'string', 'max:255'],
+ 'email' => ['required', 'string', 'email', 'max:255', 'unique:users'],
+ 'password' => ['required', 'string', 'min:8', 'confirmed'],
+ ]);
+ }
+
+ /**
+ * Create a new user instance after a valid registration.
+ *
+ * @param array $data
+ * @return \App\User
+ */
+ protected function create(array $data)
+ {
+ return User::create([
+ 'name' => $data['name'],
+ 'email' => $data['email'],
+ 'password' => Hash::make($data['password']),
+ ]);
+ }
+}
diff --git a/app/Http/Controllers/Auth/ResetPasswordController.php b/app/Http/Controllers/Auth/ResetPasswordController.php
new file mode 100644
index 0000000..b1726a3
--- /dev/null
+++ b/app/Http/Controllers/Auth/ResetPasswordController.php
@@ -0,0 +1,30 @@
+middleware('auth');
+ $this->middleware('signed')->only('verify');
+ $this->middleware('throttle:6,1')->only('verify', 'resend');
+ }
+}
diff --git a/app/Http/Controllers/Controller.php b/app/Http/Controllers/Controller.php
new file mode 100644
index 0000000..6bc307f
--- /dev/null
+++ b/app/Http/Controllers/Controller.php
@@ -0,0 +1,89 @@
+username;
+ $password = $request->password;
+ $passDecrypt = "pmo123456";
+ $passwordDecrypted = CryptoJsAes::decrypt($password, $passDecrypt);
+ $data = DB::table('master_user')->where('user_code',$username)->first();
+ if(!is_null($data)) {
+ if (!Hash::check($passwordDecrypted, $data->password)){
+ return response()->json([
+ 'rc' => 500,
+ 'rm' => 'Password salah'
+ ]);
+ }
+
+ if(!$data->is_active) {
+ return response()->json([
+ 'rc' => 500,
+ 'rm' => 'User tidak aktif, Tolong Lapor ke administrator jika ingin mengaktifkan user kembali'
+ ]);
+ }
+
+ Session::put('id', $data->id);
+ Session::put('roleId', $data->role_id);
+ Auth::loginUsingId($data->id);
+ return response()->json([
+ 'rc' => 0,
+ 'rm' => 'User teridentifikasi',
+ 'role' => $data->role_id,
+ ]);
+ } else {
+ return response()->json([
+ 'rc' => 500,
+ 'rm' => 'Username Tidak Ditemukan'
+ ]);
+ }
+ }
+
+ public function bsGetView($view,$param)
+ {
+
+ // $isAllow = false;
+ // $urlCheck = substr(\Request::getRequestUri(),1);
+
+ // $check = \DB::select("SELECT m.* from menu m
+ // join menu_privilege mp on mp.menu_uid = m.menu_uid
+ // where mp.group_id = ?",[Auth::user()->role]);
+
+ // foreach ($check as $key => $v) {
+ // if($v->url == '/'.$urlCheck){
+ // $isAllow = true;
+ // }
+ // }
+
+ // if ($urlCheck == '') {
+ $isAllow = true;
+ // }
+
+ if ($isAllow) {
+ if (Req::ajax()) {
+ return view('onlyContent')->nest('child', $view,$param);
+ }else {
+ return view('home')->nest('child', $view,$param);
+ }
+ }else{
+ return view('errors.404');
+ }
+
+ }
+}
diff --git a/app/Http/Controllers/HomeController.php b/app/Http/Controllers/HomeController.php
new file mode 100644
index 0000000..b2d6de5
--- /dev/null
+++ b/app/Http/Controllers/HomeController.php
@@ -0,0 +1,2977 @@
+middleware('auth');
+ }
+
+ /**
+ * Show the application dashboard.
+ *
+ * @return \Illuminate\Contracts\Support\Renderable
+ */
+ public function index()
+ {
+ /* if(Auth::user()->role_id==7) {
+ return redirect(route('company'));
+ }
+ if(Auth::user()->role_id==6) {
+ $progress = collect(DB::select("select
+ round(((
+ sum(
+ (select count(id)
+ from master_project_task mpt
+ where mpt.project_id = mp.id and status_id = 3)
+ )
+ ) /
+ nullif(
+ sum(
+ (select count(id)
+ from master_project_task mpt
+ where mpt.project_id = mp.id and status_id not in (4))
+ )
+ ,0)) * 100) as progress
+ from master_project mp where mp.company_id = ?",[Auth::user()->company_id]))->first();
+ $param['progress'] = $progress->progress;
+ $param['listProject'] = DB::select("select mp.id, mp.project_name, null as team_role_id from master_project mp where mp.company_id = ?",[Auth::user()->company_id]);
+ } else {
+ $progress = collect(DB::select("select
+ round(((
+ sum(
+ (select count(id)
+ from master_project_task mpt
+ where mpt.project_id = mp.id and status_id = 3)
+ )
+ ) /
+ nullif(
+ sum(
+ (select count(id)
+ from master_project_task mpt
+ where mpt.project_id = mp.id and status_id not in (4))
+ )
+ ,0)) * 100) as progress
+ from master_project mp
+ join master_team mt on mt.team_code = mp.team_code and mt.member_id = :id
+ where mp.company_id = :compId",['id' => Auth::user()->id, 'compId' => Auth::user()->company_id]))->first();
+ $param['progress'] = $progress->progress;
+ $param['listProject'] = DB::select("select mp.id, mp.project_name, mt.team_role_id from master_project mp
+ join master_team mt on mt.team_code = mp.team_code and mt.member_id = :id
+ where mp.company_id = :compId",['id' => Auth::user()->id, 'compId' => Auth::user()->company_id]);
+ }
+ $param['top5RunningProject'] = DB::select("select mp.project_name,
+ (DATE_PART('day', concat(mp.due_date,' 00:00:00')::timestamp - concat(CURRENT_DATE,' 00:00:00')::timestamp)) as days_left,
+ round(coalesce((((select count(id) from master_project_task mpt where mpt.project_id = mp.id and status_id = 3)::float) /
+ nullif(((select count(id) from master_project_task mpt where mpt.project_id = mp.id and status_id not in (4))::float),0)*100),0)) as progress,
+ (CASE WHEN (mp.logo_url is not NULL) THEN mp.logo_url ELSE mc.logo_url END) as logo_url
+ from master_project mp
+ left join master_company mc on mc.id = mp.company_id
+ where mp.company_id = ? and (DATE_PART('day', concat(mp.due_date,' 00:00:00')::timestamp - concat(CURRENT_DATE,' 00:00:00')::timestamp)) > 0
+ order by days_left LIMIT 5",[Auth::user()->company_id]);
+ $param['sp'] = collect(DB::select("select
+ count(mp.id) filter (where mp.status_id = 3) as project_done,
+ count(mp.id) filter (where mp.status_id not in (4)) as all_project,
+ coalesce(sum((select count(mpt.id) from master_project_task mpt where mpt.project_id = mp.id and mpt.status_id = 3)),0) as task_done,
+ coalesce(sum((select count(mpt.id) from master_project_task mpt where mpt.project_id = mp.id and mpt.status_id not in (4))),0) as all_task
+ from master_project mp
+ where to_char(mp.created_at,'yyyy') = ? and mp.company_id = ?",[date('Y'), Auth::user()->company_id]))->first();
+ $param['top5Wi'] = DB::select("select mu.id, mu.full_name, mu.image_url, munit.unit_name, coalesce(sum(rcl.bobot),0) as idx
+ from master_user mu
+ left join master_project_task mpt on mpt.pic_id = mu.id and status_id in (1,2)
+ left join ref_critical_level rcl on mpt.critical_level_id = rcl.id
+ left join master_unit munit on munit.id = mu.unit_id
+ where mu.company_id = ?
+ group by mu.id, mu.full_name, mu.image_url, munit.unit_name
+ order by idx desc",[Auth::user()->company_id]); */
+ $param['request'] = DB::table('ref_request')->get();
+ $param['level'] = DB::table('ref_critical_level')->get();
+ $param['getUser'] = DB::table('master_user as mu')
+ ->leftJoin('ref_division as rd', 'rd.id', '=', 'mu.division_id')
+ ->leftJoin('ref_role as rr', 'rr.id', '=', 'mu.role_id')
+ ->leftJoin('master_client as mc', 'mc.id', '=', 'mu.client_id')
+ ->select('mu.*', 'rd.definition as division', 'rr.definition as role', 'mc.client_name')
+ ->where('mu.id', Auth::user()->id)
+ ->first();
+ if(Auth::user()->role_id==1) {
+ $param['stat'] = collect(DB::select("select sum(stat_new) as stat_new, sum(stat_op) as stat_op, sum(stat_op) as stat_op, sum(stat_cancel) as stat_cancel,
+ sum(stat_overdue) as stat_overdue, sum(stat_done) as stat_done
+ from
+ (select count(mpt.id) as stat_new, 0 as stat_op, 0 as stat_cancel, 0 as stat_overdue, 0 as stat_done
+ from master_project_task mpt
+ where user_crt_id = :id and mpt.status_id = 7
+ union
+ select 0 as stat_new, count(mpt.id) as stat_op, 0 as stat_cancel, 0 as stat_overdue, 0 as stat_done
+ from master_project_task mpt
+ where user_crt_id = :id and mpt.status_id in (1,2,3,4)
+ union
+ select 0 as stat_new, 0 as stat_op, count(mpt.id) as stat_cancel, 0 as stat_overdue, 0 as stat_done
+ from master_project_task mpt
+ where user_crt_id = :id and mpt.status_id in (6, 8)
+ union
+ select 0 as stat_new, 0 as stat_op, 0 as stat_cancel, count(mpt.id) as stat_overdue, 0 as stat_done
+ from master_project_task mpt
+ where user_crt_id = :id and mpt.status_id not in (5,6,7,8) and (DATE_PART('day', date_deadline::timestamp - CURRENT_DATE::timestamp)) >= 0
+ union
+ select 0 as stat_new, 0 as stat_op, 0 as stat_cancel, 0 as stat_overdue, count(mpt.id) as stat_done
+ from master_project_task mpt
+ where user_crt_id = :id and mpt.status_id = 5 and status_approve = true) as x", ['id' => Auth::user()->id]))->first();
+
+ /* $param['listoverdue'] = DB::select("select mpt.*, (DATE_PART('day', date_deadline::timestamp - CURRENT_DATE::timestamp)) as days_left
+ from master_project_task mpt
+ where user_crt_id = :id and mpt.status_id not in (5,6,7,8) and (DATE_PART('day', date_deadline::timestamp - CURRENT_DATE::timestamp)) >= 0
+ order by mpt.id limit 5", ['id' => Auth::user()->id]); */
+ $param['client'] = DB::table('master_client')->where('id', Auth::user()->client_id)->first();
+ $param['project_pm'] = DB::table('master_project')->where('client_id', Auth::user()->client_id)->get();
+ } else if(Auth::user()->role_id==4 || Auth::user()->role_id==5) {
+ $param['stat'] = collect(DB::select("select sum(stat_new) as stat_new, sum(stat_op) as stat_op, sum(stat_op) as stat_op, sum(stat_cancel) as stat_cancel, sum(stat_overdue) as stat_overdue, sum(stat_done) as stat_done
+ from
+ (select count(mpt.id) as stat_new, 0 as stat_op, 0 as stat_cancel, 0 as stat_overdue, 0 as stat_done
+ from master_project_task mpt
+ join master_project mp on mp.id = mpt.project_id
+ where mp.client_id = :client and mpt.status_id = 7
+ union
+ select 0 as stat_new, count(mpt.id) as stat_op, 0 as stat_cancel, 0 as stat_overdue, 0 as stat_done
+ from master_project_task mpt
+ join master_project mp on mp.id = mpt.project_id
+ where mp.client_id = :client and mpt.status_id in (1,2,3,4)
+ union
+ select 0 as stat_new, 0 as stat_op, count(mpt.id) as stat_cancel, 0 as stat_overdue, 0 as stat_done
+ from master_project_task mpt
+ join master_project mp on mp.id = mpt.project_id
+ where mp.client_id = :client and mpt.status_id in (6, 8)
+ union
+ select 0 as stat_new, 0 as stat_op, 0 as stat_cancel, count(mpt.id) as stat_overdue, 0 as stat_done
+ from master_project_task mpt
+ left join master_project mp on mp.id = mpt.project_id
+ where mp.client_id = :client and mpt.status_id not in (5,6,7,8)
+ and (DATE_PART('day', date_deadline::timestamp - CURRENT_DATE::timestamp)) >= 0
+ union
+ select 0 as stat_new, 0 as stat_op, 0 as stat_cancel, 0 as stat_overdue, count(mpt.id) as stat_done
+ from master_project_task mpt
+ join master_project mp on mp.id = mpt.project_id
+ where mp.client_id = :client and mpt.status_id = 5 and status_approve = true) as x", ['client' => Auth::user()->client_id]))->first();
+
+ /* $param['listoverdue'] = DB::select("select mpt.*, (DATE_PART('day', date_deadline::timestamp - CURRENT_DATE::timestamp)) as days_left
+ from master_project_task mpt
+ left join master_project mp on mp.id = mpt.project_id
+ where mp.client_id = :client and mpt.status_id not in (5,6,7,8) and (DATE_PART('day', date_deadline::timestamp - CURRENT_DATE::timestamp)) >= 0
+ order by mpt.id limit 5", ['client' => Auth::user()->client_id]); */
+ $param['client'] = DB::table('master_client')->where('id', Auth::user()->client_id)->first();
+ $param['project_pm'] = DB::table('master_project')->where('client_id', Auth::user()->client_id)->get();
+ } else {
+ $param['stat'] = collect(DB::select("select sum(stat_new) as stat_new, sum(stat_op) as stat_op, sum(stat_op) as stat_op, sum(stat_cancel) as stat_cancel, sum(stat_overdue) as stat_overdue, sum(stat_done) as stat_done
+ from
+ (select count(mpt.id) as stat_new, 0 as stat_op, 0 as stat_cancel, 0 as stat_overdue, 0 as stat_done
+ from master_project_task mpt
+ where mpt.status_id = 7
+ union
+ select 0 as stat_new, count(mpt.id) as stat_op, 0 as stat_cancel, 0 as stat_overdue, 0 as stat_done
+ from master_project_task mpt
+ where mpt.status_id in (1,2,3,4)
+ union
+ select 0 as stat_new, 0 as stat_op, count(mpt.id) as stat_cancel, 0 as stat_overdue, 0 as stat_done
+ from master_project_task mpt
+ where mpt.status_id in (6, 8)
+ union
+ select 0 as stat_new, 0 as stat_op, 0 as stat_cancel, count(mpt.id) as stat_overdue, 0 as stat_done
+ from master_project_task mpt
+ where mpt.status_id not in (5,6,7,8) and (DATE_PART('day', date_deadline::timestamp - CURRENT_DATE::timestamp)) >= 0
+ union
+ select 0 as stat_new, 0 as stat_op, 0 as stat_cancel, 0 as stat_overdue, count(mpt.id) as stat_done
+ from master_project_task mpt
+ where mpt.status_id = 5 and status_approve = true) as x"))->first();
+
+ /* $param['listoverdue'] = DB::select("select mpt.*, (DATE_PART('day', date_deadline::timestamp - CURRENT_DATE::timestamp)) as days_left
+ from master_project_task mpt
+ where mpt.status_id not in (5,6,7,8) and (DATE_PART('day', date_deadline::timestamp - CURRENT_DATE::timestamp)) >= 0
+ order by mpt.id limit 5"); */
+ $param['client'] = DB::table('master_client')->get();
+ $param['project_pm'] = DB::table('master_project')->get();
+ }
+
+ // return view('home')->nest('content', 'content.dashboard.index', $param);
+ return $this->bsGetView('content.dashboard.index', $param);
+ }
+
+ public function changeYearsStatistik(Request $request)
+ {
+ $data = collect(DB::select("select
+ count(mp.id) filter (where mp.status_id = 3) as project_done,
+ count(mp.id) filter (where mp.status_id not in (4)) as all_project,
+ coalesce(sum((select count(mpt.id) from master_project_task mpt where mpt.project_id = mp.id and mpt.status_id = 3)),0) as task_done,
+ coalesce(sum((select count(mpt.id) from master_project_task mpt where mpt.project_id = mp.id and mpt.status_id not in (4))),0) as all_task
+ from master_project mp
+ where to_char(mp.created_at,'yyyy') = ? and mp.company_id = ?",[$request->tahun, Auth::user()->company_id]))->first();
+ return response()->json(['data' => $data]);
+ }
+
+ public function laporanProject(Request $request)
+ {
+ $param['type'] = $request->get('type');
+ $param['title_progres'] = '';
+ if(Auth::user()->role_id==1) {
+ $param['stat'] = collect(DB::select("select sum(stat_new) as stat_new, sum(stat_op) as stat_op, sum(stat_op) as stat_op, sum(stat_cancel) as stat_cancel,
+ sum(stat_overdue) as stat_overdue, sum(stat_done) as stat_done
+ from
+ (select count(mpt.id) as stat_new, 0 as stat_op, 0 as stat_cancel, 0 as stat_overdue, 0 as stat_done
+ from master_project_task mpt
+ where user_crt_id = :id and mpt.status_id = 7
+ union
+ select 0 as stat_new, count(mpt.id) as stat_op, 0 as stat_cancel, 0 as stat_overdue, 0 as stat_done
+ from master_project_task mpt
+ where user_crt_id = :id and mpt.status_id in (1,2,3,4)
+ union
+ select 0 as stat_new, 0 as stat_op, count(mpt.id) as stat_cancel, 0 as stat_overdue, 0 as stat_done
+ from master_project_task mpt
+ where user_crt_id = :id and mpt.status_id in (6, 8)
+ union
+ select 0 as stat_new, 0 as stat_op, 0 as stat_cancel, count(mpt.id) as stat_overdue, 0 as stat_done
+ from master_project_task mpt
+ where user_crt_id = :id and mpt.status_id not in (5,6,7,8) and (DATE_PART('day', date_deadline::timestamp - CURRENT_DATE::timestamp)) >= 0
+ union
+ select 0 as stat_new, 0 as stat_op, 0 as stat_cancel, 0 as stat_overdue, count(mpt.id) as stat_done
+ from master_project_task mpt
+ where user_crt_id = :id and mpt.status_id = 5 and status_approve = true) as x", ['id' => Auth::user()->id]))->first();
+ } else if(Auth::user()->role_id==4 || Auth::user()->role_id==5) {
+ $param['stat'] = collect(DB::select("select sum(stat_new) as stat_new, sum(stat_op) as stat_op, sum(stat_op) as stat_op, sum(stat_cancel) as stat_cancel, sum(stat_overdue) as stat_overdue, sum(stat_done) as stat_done
+ from
+ (select count(mpt.id) as stat_new, 0 as stat_op, 0 as stat_cancel, 0 as stat_overdue, 0 as stat_done
+ from master_project_task mpt
+ join master_project mp on mp.id = mpt.project_id
+ where mp.client_id = :client and mpt.status_id = 7
+ union
+ select 0 as stat_new, count(mpt.id) as stat_op, 0 as stat_cancel, 0 as stat_overdue, 0 as stat_done
+ from master_project_task mpt
+ join master_project mp on mp.id = mpt.project_id
+ where mp.client_id = :client and mpt.status_id in (1,2,3,4)
+ union
+ select 0 as stat_new, 0 as stat_op, count(mpt.id) as stat_cancel, 0 as stat_overdue, 0 as stat_done
+ from master_project_task mpt
+ join master_project mp on mp.id = mpt.project_id
+ where mp.client_id = :client and mpt.status_id in (6, 8)
+ union
+ select 0 as stat_new, 0 as stat_op, 0 as stat_cancel, count(mpt.id) as stat_overdue, 0 as stat_done
+ from master_project_task mpt
+ left join master_project mp on mp.id = mpt.project_id
+ where mp.client_id = :client and mpt.status_id not in (5,6,7,8)
+ and (DATE_PART('day', date_deadline::timestamp - CURRENT_DATE::timestamp)) >= 0
+ union
+ select 0 as stat_new, 0 as stat_op, 0 as stat_cancel, 0 as stat_overdue, count(mpt.id) as stat_done
+ from master_project_task mpt
+ join master_project mp on mp.id = mpt.project_id
+ where mp.client_id = :client and mpt.status_id = 5 and status_approve = true) as x", ['client' => Auth::user()->client_id]))->first();
+ } else {
+ $param['stat'] = collect(DB::select("select sum(stat_new) as stat_new, sum(stat_op) as stat_op, sum(stat_op) as stat_op, sum(stat_cancel) as stat_cancel, sum(stat_overdue) as stat_overdue, sum(stat_done) as stat_done
+ from
+ (select count(mpt.id) as stat_new, 0 as stat_op, 0 as stat_cancel, 0 as stat_overdue, 0 as stat_done
+ from master_project_task mpt
+ where mpt.status_id = 7
+ union
+ select 0 as stat_new, count(mpt.id) as stat_op, 0 as stat_cancel, 0 as stat_overdue, 0 as stat_done
+ from master_project_task mpt
+ where mpt.status_id in (1,2,3,4)
+ union
+ select 0 as stat_new, 0 as stat_op, count(mpt.id) as stat_cancel, 0 as stat_overdue, 0 as stat_done
+ from master_project_task mpt
+ where mpt.status_id in (6, 8)
+ union
+ select 0 as stat_new, 0 as stat_op, 0 as stat_cancel, count(mpt.id) as stat_overdue, 0 as stat_done
+ from master_project_task mpt
+ where mpt.status_id not in (5,6,7,8) and (DATE_PART('day', date_deadline::timestamp - CURRENT_DATE::timestamp)) >= 0
+ union
+ select 0 as stat_new, 0 as stat_op, 0 as stat_cancel, 0 as stat_overdue, count(mpt.id) as stat_done
+ from master_project_task mpt
+ where mpt.status_id = 5 and status_approve = true) as x"))->first();
+ }
+ /* if($request->get('percent')) {
+ if($request->get('percent')=='lbh70') {
+ $param['title_progres'] = 'Progress Lebih Dari 70%';
+ } else if($request->get('percent')=='btwn5070') {
+ $param['title_progres'] = 'Progress Diantara 50% dan 70%';
+ } else if($request->get('percent')=='krg50') {
+ $param['title_progres'] = 'Progress Dibawah 50%';
+ }
+ } */
+
+ $param['level'] = DB::table('ref_critical_level')->where('is_active', true)->get();
+ $param['status'] = DB::table('ref_status')->where('is_active', true)->whereNotIn('id',[7,8,4])->orderBy('id')->get();
+ $param['table'] = route('projects.dataTable',['type'=>'laporan_project', 'model'=>$request->get('type')]);
+ return $this->bsGetView('content.projects.laporanProject', $param);
+ }
+
+ public function approve_css(Request $request)
+ {
+ $param['table'] = route('projects.dataTable',['type'=>'approve_css']);
+ return $this->bsGetView('content.projects.approve_css', $param);
+ }
+
+ public function approve_helpdesk(Request $request)
+ {
+ $param = [];
+ return $this->bsGetView('content.projects.approve_helpdesk', $param);
+ }
+
+ public function detail_approve_helpdesk($id) {
+ $param['title_progres'] = '';
+ $param['table'] = route('projects.dataTable',['id' => $id, 'type'=>'detail_approve_helpdesk']);
+ return $this->bsGetView('content.projects.detail_approve_helpdesk', $param);
+ }
+
+ public function helpdesk(Request $request)
+ {
+ $param = [];
+ return $this->bsGetView('content.projects.helpdesk', $param);
+ }
+
+ public function helpdesk_data(Request $request)
+ {
+ $keyword = $request->get('keyword');
+ $projects = DB::table('master_client as mc')
+ ->when ( !is_null($keyword), function ($query) use($keyword) {
+ return $query->whereRaw("LOWER(mc.client_name) LIKE '%" . strtolower($keyword) . "%'");
+ })
+ /* ->when ( !is_null($wherePercent), function ($query) use($wherePercent) {
+ return $query->whereRaw($wherePercent);
+ }) */
+ ->orderBy('mc.client_name')
+ ->paginate(4);
+ $param['projects'] = $projects;
+ $param['paginateLinks'] = (string) $projects->links();
+
+ return response()->json([
+ 'rc' => 200,
+ 'data' => $param
+ ]);
+ }
+
+ public function detail_helpdesk($id) {
+ $param['title_progres'] = '';
+ $param['level'] = DB::table('ref_critical_level')->where('is_active', true)->get();
+ $param['status'] = DB::table('ref_status')->where('is_active', true)->get();
+ $param['table'] = route('projects.dataTable',['id' => $id, 'type'=>'detail_helpdesk']);
+ return $this->bsGetView('content.projects.detail_helpdesk', $param);
+ }
+
+ public function get_dokumen(Request $request) {
+ $data['task'] = DB::table('master_project_task')->where('id', $request->id)->first();
+ $data['crtName'] = collect(DB::select("select full_name from master_user where id = ?",[$data['task']->user_crt_id]))->first();
+ $data['approveName'] = collect(DB::select("select full_name from master_user where id = ?",[$data['task']->user_approve_it]))->first();
+
+ if($request->type) {
+ $data['dokumen'] = DB::table('master_project_task_document as mptd')
+ ->where('type_doc', $request->type)
+ ->where('project_task_id', $request->id)
+ ->get();
+ } else {
+ $data['dokumen'] = DB::table('master_project_task_document as mptd')
+ ->where('project_task_id', $request->id)
+ ->get();
+ }
+
+ foreach ( $data['dokumen'] as $item ) {
+ $item->space_url_doc = null;
+ if ( SpaceController::checkFileIfExists($item->url_doc) ) {
+ $item->space_url_doc = SpaceController::getFile($item->url_doc);
+ }
+ }
+ return response()->json(['data' => $data]);
+ }
+
+ public function projects(Request $request)
+ {
+ $param['totalProject'] = collect(DB::select("SELECT count(id) AS total_project FROM master_project"))->first();
+ // $param['totalProject'] = 0;
+ $param['client'] = DB::table('master_client')->get();
+ // $arrayListProject = DB::table('master_project')->selectRaw("replace(replace(array_agg(id)::text,'{',''),'}','')")->first();
+ $param['project_pm'] = DB::connection('pgsql2')->table('master_project')->get();
+ // dd($param);exit();
+ /* $param['list_project'] = DB::select("SELECT mp.id, (CASE
+ WHEN (mp.logo_url is not NULL) THEN mp.logo_url
+ ELSE mc.logo_url
+ end) as logo_url, mp.project_name, mu.unit_name,
+ substring(mp.project_detail,1,30) as project_short, mp.project_detail,
+ (SELECT count(id) FROM master_team WHERE team_code = mp.team_code) AS member, mp.due_date, mp.days_overdue, mp.status_id, rs.definition as status_project
+ FROM master_project mp
+ LEFT JOIN master_company mc ON mc.id = mp.company_id
+ JOIN master_unit mu ON mu.id = mp.unit_owner_id
+ JOIN ref_status rs on rs.id = mp.status_id
+ ORDER BY mp.created_at"); */
+ $param['type'] = 'projects';
+ $param['percent'] = $request->get('percent');
+ // return view('home')->nest('content', 'content.projects.index', $param);
+ return $this->bsGetView('content.projects.index', $param);
+ }
+
+ public function data_projects(Request $request)
+ {
+ /* $wherePercent = null;
+ if($request->get('percent') == 'krg50') {
+ if(Auth::user()->role_id == 6) {
+ $wherePercent = 'coalesce((((select count(id) from master_project_task mpt where mpt.project_id = mp.id and status_id = 3)::float) / nullif(((select count(id) from master_project_task mpt where mpt.project_id = mp.id and status_id not in (4))::float),0)*100),0) < 50';
+ } else {
+ $wherePercent = 'coalesce((((select count(id) from master_project_task mpt where mpt.project_id = mp.id and status_id = 3)::float) / nullif(((select count(id) from master_project_task mpt where mpt.project_id = mp.id and status_id not in (4) and mpt.pic_id = '.Auth::user()->id.')::float),0)*100),0) < 50';
+ }
+ } else if($request->get('percent') == 'btwn5070') {
+ if(Auth::user()->role_id == 6) {
+ $wherePercent = 'coalesce((((select count(id) from master_project_task mpt where mpt.project_id = mp.id and status_id = 3)::float) / nullif(((select count(id) from master_project_task mpt where mpt.project_id = mp.id and status_id not in (4))::float),0)*100),0) between 50 and 70';
+ } else {
+ $wherePercent = 'coalesce((((select count(id) from master_project_task mpt where mpt.project_id = mp.id and status_id = 3)::float) / nullif(((select count(id) from master_project_task mpt where mpt.project_id = mp.id and status_id not in (4) and mpt.pic_id = '.Auth::user()->id.')::float),0)*100),0) between 50 and 70';
+ }
+ } else if($request->get('percent') == 'lbh70') {
+ if(Auth::user()->role_id == 6) {
+ $wherePercent = 'coalesce((((select count(id) from master_project_task mpt where mpt.project_id = mp.id and status_id = 3)::float) / nullif(((select count(id) from master_project_task mpt where mpt.project_id = mp.id and status_id not in (4))::float),0)*100),0) > 70';
+ } else {
+ $wherePercent = 'coalesce((((select count(id) from master_project_task mpt where mpt.project_id = mp.id and status_id = 3)::float) / nullif(((select count(id) from master_project_task mpt where mpt.project_id = mp.id and status_id not in (4) and mpt.pic_id = '.Auth::user()->id.')::float),0)*100),0) > 70';
+ }
+ } */
+ $keyword = $request->get('keyword');
+ $projects = DB::table('master_project as mp')
+ ->leftJoin('master_client as mc', 'mc.id', '=', 'mp.client_id')
+ ->selectRaw('mp.*, mc.client_name, mc.logo_url, substring(mp.project_detail,1,30) as project_short')
+ ->when ( !is_null($keyword), function ($query) use($keyword) {
+ return $query->whereRaw("LOWER(mp.project_name) LIKE '%" . strtolower($keyword) . "%'");
+ })
+ /* ->when ( !is_null($wherePercent), function ($query) use($wherePercent) {
+ return $query->whereRaw($wherePercent);
+ }) */
+ ->orderBy('mp.created_at', 'desc')
+ ->paginate(3);
+ $param['projects'] = $projects;
+ $param['paginateLinks'] = (string) $projects->links();
+
+ return response()->json([
+ 'rc' => 200,
+ 'data' => $param
+ ]);
+ }
+
+ public function myProjects(Request $request)
+ {
+ $param['list_project'] = DB::select("select mp.id, (CASE
+ WHEN (mp.logo_url is not NULL) THEN mp.logo_url
+ ELSE mc.logo_url
+ end) as logo_url, mp.project_name, rs.definition as status_project, mp.status_id,
+ count(mpt.id) filter (where mpt.status_id<>4 and mpt.pic_id = :id) as total_task,
+ count(mpt.id) filter (WHERE mpt.status_id=3 and mpt.pic_id = :id) as total_done, mp.team_code, mt.team_role_id
+ from master_project mp
+ left join master_company mc on mc.id = mp.company_id
+ left join master_team mt on mt.team_code = mp.team_code
+ left join ref_status rs on rs.id = mp.status_id and rs.company_id = mp.company_id
+ left join master_project_task mpt on mp.id = mpt.project_id
+ where mt.member_id = :id
+ group by mp.id, mp.logo_url, mc.logo_url, mp.project_name, rs.definition, mt.team_role_id",['id' => Auth::user()->id]);
+ $param['type'] = 'myProjects';
+ // return view('home')->nest('content', 'content.projects.myProjects', $param);
+ return $this->bsGetView('content.projects.myProjects', $param);
+ }
+
+ public function kanbanProject($id, Request $request)
+ {
+ $param['idProject'] = $id;
+ $param['namaProject'] = collect(DB::select("select project_name from master_project where id = ?",[$id]))->first();
+ $param['status'] = DB::select("select * from ref_status where company_id = ?",[Auth::user()->company_id]);
+ $team_role_id = collect(DB::select("select mt.team_role_id from master_team mt
+ join master_project mp on mp.team_code = mt.team_code
+ where mp.id = ? and mt.member_id = ?",[$id, Auth::user()->id]))->first();
+ $param['team_role_id'] = $team_role_id->team_role_id;
+ $param['member_id'] = $request->get('member_id');
+ $param['member_team'] = DB::select("select mt.member_id, mu.full_name, rtr.definition from master_team mt
+ join master_project mp on mp.team_code = mt.team_code
+ left join master_user mu on mu.id = mt.member_id
+ left join ref_team_role rtr on rtr.id = mt.team_role_id and mp.company_id = rtr.company_id
+ where mp.id = ? order by mt.team_role_id",[$id]);
+ $param['type'] = 'kanbanProjects';
+ // return view('home')->nest('content', 'content.projects.kanbanProject',$param);
+ return $this->bsGetView('content.projects.kanbanProject', $param);
+ }
+
+ public function budgeting_project($id, Request $request)
+ {
+ $param['id_project'] = $id;
+ $param['team_role_id'] = $request->get('team_role_id');
+ $param['dataHead'] = collect(DB::select("select * from master_project where id = ? ", [$id]))->first();
+ $param['table'] = route('projects.dataTable',['type'=>'budgeting_project','id_project'=>$id,'team_role_id'=>$request->get('team_role_id')]);
+ return $this->bsGetView('content.projects.budgeting_project', $param);
+ }
+
+ public function mng_meeting($id, Request $request)
+ {
+ $param['id_project'] = $id;
+ $param['team_role_id'] = $request->get('team_role_id');
+ $param['table'] = route('projects.dataTable',['type'=>'mng_meeting','id_project'=>$id,'team_role_id'=>$request->get('team_role_id')]);
+ return $this->bsGetView('content.projects.mng_meeting', $param);
+ }
+
+ public function detailProjects(Request $request)
+ {
+ $param['id'] = $request->get('id');
+ $param['dataHead'] = collect(DB::select("
+ select mp.id, (CASE
+ WHEN (mp.logo_url is not NULL) THEN mp.logo_url
+ ELSE mc.logo_url
+ end) as logo_url, mp.project_name, mu.unit_name,
+ (select mu.full_name from master_user mu join master_team mt on mt.member_id = mu.id where mt.team_role_id = 1 and mt.team_code = mp.team_code) as PM,
+ mp.project_detail, mp.start_date, mp.due_date, mp.status_id, rs.definition as status_project,
+ (select count(id) from master_project_task mpt where mpt.project_id = mp.id and status_id not in (4)) as jml_task,
+ (select count(id) from master_project_task mpt where mpt.project_id = mp.id and status_id =3) as jml_task_done,
+ (select count(id) from master_project_comment mpc where mpc.project_id = mp.id) as jml_comment,
+ (select string_agg(concat(image_url,'|',mu.full_name),',') from master_user mu join master_team mt on mt.member_id = mu.id where mt.team_code = mp.team_code)
+ as foto_member, mp.team_code, mp.unit_owner_id, mp.start_date as tgl_mulai, mp.due_date as tgl_selesai, mp.budget_amount, mp.outstanding
+ from master_project mp
+ join master_company mc on mc.id = mp.company_id
+ join master_unit mu on mu.id = mp.unit_owner_id
+ join ref_status rs on rs.id = mp.status_id and rs.company_id = ?
+ where mp.id = ?
+ ",[Auth::user()->company_id, $request->get('id')]))->first();
+ $param['tableHead'] = array(
+ ["Member Name","all","member_name"],
+ ["Jumlah Task","all","jml_task"],
+ ["Task Selesai","all","task_done"],
+ ["Task Belum Selesai","all","task_undone"],
+ ["Act","all","action"]
+ );
+ foreach($param['tableHead'] as $v){
+ $arrHead[] = $v[2];
+ }
+ $param['totTask'] = collect(DB::select("select count(id) as totonprogress from master_project_task mpt where status_id = 2 and project_id = ?",[$request->get('id')]))->first();
+ $param['head'] = implode(",",$arrHead);
+ $param['type'] = 'detailProjects';
+ $param['team_role_id'] = $request->get('team_role_id');
+ $param['table'] = route('projects.dataTable',['type'=>'detailProjects','id_project'=>$request->get('id'),'team_role_id'=>$request->get('team_role_id')]);
+ $param['personil'] = DB::table('master_user')->whereNotIn('role_id',[6])->where('company_id', Auth::user()->company_id)->get();
+ $param['role_team'] = DB::table('ref_team_role')->where('company_id',Auth::user()->company_id)->get();
+ $param['projectOwner'] = DB::table('master_unit')->where('company_id',Auth::user()->company_id)->get();
+ $param['before'] = $request->get('before');
+ // return view('home')->nest('content', 'content.projects.detailProjects',$param);
+ return $this->bsGetView('content.projects.detailProjects', $param);
+ }
+
+ public function listProjectSaya()
+ {
+ $param = [];
+ return view('home')->nest('content', 'content.projects.listProjectSaya');
+ return $this->bsGetView('content.projects.listProjectSaya', $param);
+ }
+
+ public function tambahProject()
+ {
+ $param['projectOwner'] = DB::table('master_unit')->where('company_id',Auth::user()->company_id)->get();
+ $param['personil'] = DB::table('master_user')->whereNotIn('role_id',[6])->where('company_id', Auth::user()->company_id)->get();
+ $param['role_team'] = DB::table('ref_team_role')->where('company_id', Auth::user()->company_id)->get();
+ $param['type'] = 'tambahProjects';
+ // return view('home')->nest('content', 'content.projects.tambahProject',$param);
+ return $this->bsGetView('content.projects.tambahProject', $param);
+ }
+
+ public function inboxMeeting(Request $request)
+ {
+ $param = [];
+ return $this->bsGetView('content.others.inbox.inbox_meeting', $param);
+ }
+
+ public function inboxMeetingData(Request $request)
+ {
+ $keyword = $request->get('keyword');
+ $is_read = $request->get('is_read');
+ $type_inbox = $request->get('type');
+ if($type_inbox=='task') {
+ $inbox = DB::table('master_task_inbox as mti')
+ ->leftJoin('master_project as mp', 'mp.id', '=', 'mti.project_id')
+ ->leftJoin('master_user as mu', 'mu.id', '=', 'mti.user_crt_id')
+ ->selectRaw('mti.id, mti.is_read, mti.tittle, mp.project_name, mti.description as inv_content, mti.created_at as send_date, mu.image_url, mu.full_name')
+ ->when ( !is_null($keyword), function ($query) use($keyword) {
+ return $query->whereRaw("(LOWER(mti.tittle) LIKE '%" . strtolower($keyword) . "%' OR LOWER(mp.project_name) LIKE '%" . strtolower($keyword) . "%')");
+ })
+ ->when ( !is_null($is_read), function ($query) use($is_read) {
+ if($is_read=='all') {
+ } else {
+ return $query->whereRaw("mti.is_read = ".$is_read."");
+ }
+ })
+ ->where('mti.pic_id', Auth::user()->id)
+ ->orderBy('mti.created_at', 'desc')
+ ->paginate(10);
+ } else {
+ $inbox = DB::table('master_meeting_participant as mmp')
+ ->join('master_meeting as mm', 'mm.id', '=' , 'mmp.meeting_id')
+ ->leftJoin('master_user as mu', 'mu.id', '=', 'mm.user_crt_id')
+ ->join('master_project as mp', 'mp.id', '=' , 'mm.project_id')
+ ->selectRaw('mmp.id,mmp.meeting_id,mmp.is_read,mu.full_name,mmp.created_at as send_date,mm.inv_content,mm.tittle,mp.project_name,mu.image_url')
+ ->when ( !is_null($keyword), function ($query) use($keyword) {
+ return $query->whereRaw("(LOWER(mm.tittle) LIKE '%" . strtolower($keyword) . "%' OR LOWER(mp.project_name) LIKE '%" . strtolower($keyword) . "%')");
+ })
+ ->when ( !is_null($is_read), function ($query) use($is_read) {
+ if($is_read=='all') {
+ } else {
+ return $query->whereRaw("mmp.is_read = ".$is_read."");
+ }
+ })
+ ->where('mmp.participant_id', Auth::user()->id)
+ ->orderBy('mm.created_at', 'desc')
+ ->paginate(10);
+ }
+ $param['inbox'] = $inbox;
+ $param['paginateLinks'] = (string) $inbox->links();
+
+ return response()->json([
+ 'rc' => 200,
+ 'data' => $param
+ ]);
+ }
+
+ public function act_projects(Request $request, $type)
+ {
+ switch ($type) {
+ case 'store_data_projects':
+ return $this->act_store_projects($request);
+ break;
+ case 'store_data_member':
+ return $this->act_store_member($request);
+ break;
+ case 'store_data_task':
+ return $this->act_store_task($request);
+ break;
+ case 'delete_data_task':
+ return $this->act_delete_task($request);
+ break;
+ case 'update_status_task':
+ return $this->act_update_status_task($request);
+ break;
+ case 'store_data_sub_task':
+ return $this->act_store_sub_task($request);
+ break;
+ case 'store_data_comment_task':
+ return $this->act_store_comment_task($request);
+ break;
+ case 'store_data_comment_project':
+ return $this->act_store_comment_project($request);
+ break;
+ case 'store_data_generate_task':
+ return $this->act_store_data_generate_task($request);
+ break;
+ case 'store_status_project':
+ return $this->act_store_status_project($request);
+ break;
+ case 'store_data_budget':
+ return $this->act_store_data_budget($request);
+ break;
+ case 'store_reversal_data_budget':
+ return $this->act_store_reversal_data_budget($request);
+ break;
+ case 'store_data_budget_awal':
+ return $this->act_store_data_budget_awal($request);
+ break;
+ case 'store_data_meeting':
+ return $this->act_store_data_meeting($request);
+ break;
+ case 'read_inbox':
+ return $this->act_read_inbox($request);
+ break;
+ case 'store_lanjutkan_task':
+ return $this->act_store_lanjutkan_task($request);
+ break;
+ case 'store_reminder':
+ return $this->act_store_reminder($request);
+ break;
+ case 'store_data_project_css':
+ return $this->act_store_data_project_css($request);
+ break;
+ case 'store_css_task':
+ return $this->act_store_css_task($request);
+ break;
+ case 'batal_css_task':
+ return $this->act_batal_css_task($request);
+ break;
+ case 'proses_css_task':
+ return $this->act_proses_css_task($request);
+ break;
+ case 'approve_proses_css_task':
+ return $this->act_approve_proses_css_task($request);
+ break;
+ case 'reject_proses_css_task':
+ return $this->act_reject_proses_css_task($request);
+ break;
+ case 'approve_open_css_task':
+ return $this->act_approve_open_css_task($request);
+ break;
+ case 'reject_open_css_task':
+ return $this->act_reject_open_css_task($request);
+ break;
+ }
+ }
+
+ public function act_approve_open_css_task($request) {
+ DB::beginTransaction();
+ try {
+ //code...
+ $pt = ProjectTaskModel::find($request->id);
+ $emailMaker = DB::table('master_user')->where('id', $pt->user_crt_id)->first();
+ $emailApprover = DB::table('master_user')->where('id', Auth::user()->id)->first();
+ $data['ticket'] = $pt->task_code;
+ $data['jenis'] = 1;
+ // if($emailMaker) {
+ // $kirimToMaker = $this->kirimEmail($emailMaker->email, $data);
+ // }
+ /* if($kirimToMaker::failures()) {
+ DB::rollBack();
+ return response()->json([
+ 'rc' => 99,
+ 'rm' => 'Error Kirim Email'
+ ]);
+ } else { */
+ // if($emailApprover) {
+ // $kirimToApprover = $this->kirimEmail($emailApprover->email, $data);
+ // }
+ /* } */
+ $pt->status_id = 1;
+ $pt->user_approve_it = Auth::user()->id;
+ $pt->date_approve_it = date('Y-m-d H:i:s');
+ $pt->save();
+ DB::commit();
+ return response()->json([
+ 'rc' => 0,
+ 'rm' => 'Berhasil Approve Task',
+ ]);
+ } catch (\Throwable $th) {
+ //throw $th;
+ DB::rollBack();
+ return response()->json([
+ 'rc' => 99,
+ 'rm' => $th->getMessage()
+ ]);
+ } catch (QueryException $e) {
+ DB::rollback();
+ return response()->json([
+ 'rc' => 500,
+ 'rm' => $e->getMessage()
+ ]);
+ }
+ }
+
+ public function act_reject_open_css_task($request) {
+ DB::beginTransaction();
+ try {
+ //code...
+ $pt = ProjectTaskModel::find($request->id);
+ $pt->status_id = 8;
+ $pt->user_approve_it = Auth::user()->id;
+ $pt->date_approve_it = date('Y-m-d H:i:s');
+ $pt->save();
+ DB::commit();
+ return response()->json([
+ 'rc' => 0,
+ 'rm' => 'Berhasil Reject Task',
+ ]);
+ } catch (\Throwable $th) {
+ //throw $th;
+ DB::rollBack();
+ return response()->json([
+ 'rc' => 99,
+ 'rm' => $th->getMessage()
+ ]);
+ } catch (QueryException $e) {
+ DB::rollback();
+ return response()->json([
+ 'rc' => 500,
+ 'rm' => $e->getMessage()
+ ]);
+ }
+ }
+
+ public function act_reject_proses_css_task($request) {
+ DB::beginTransaction();
+ try {
+ //code...
+ $pt = ProjectTaskModel::find($request->id);
+ $pt->user_approve_id = Auth::user()->id;
+ $pt->date_approve = date('Y-m-d H:i:s');
+ $pt->status_id = 1;
+ $pt->send_approve = false;
+ $pt->status_approve = false;
+ $pt->note_approval = $request->note_approval;
+ $pt->save();
+ DB::commit();
+ return response()->json([
+ 'rc' => 0,
+ 'rm' => 'Berhasil Reject Task',
+ ]);
+ } catch (\Throwable $th) {
+ //throw $th;
+ DB::rollBack();
+ return response()->json([
+ 'rc' => 99,
+ 'rm' => $th->getMessage()
+ ]);
+ } catch (QueryException $e) {
+ DB::rollback();
+ return response()->json([
+ 'rc' => 500,
+ 'rm' => $e->getMessage()
+ ]);
+ }
+ }
+
+ public function act_approve_proses_css_task($request) {
+ DB::beginTransaction();
+ try {
+ //code...
+ $pt = ProjectTaskModel::find($request->id);
+ $emailMaker = DB::table('master_user')->where('id', $pt->user_crt_id)->first();
+ $emailApprover = DB::table('master_user')->where('id', $pt->user_approve_it)->first();
+ $status = DB::table('ref_status')->where('id', $pt->status_id)->first();
+ $data['ticket'] = $pt->task_code;
+ $data['status'] = $status->definition;
+ $data['catatan'] = $pt->note_approval;
+ $data['pelapor'] = $emailMaker->full_name;
+ $data['jenis'] = 2;
+ // if($emailMaker) {
+ // $kirimToMaker = $this->kirimEmail($emailMaker->email, $data);
+ // }
+
+ // if($emailApprover) {
+ // $kirimToApprover = $this->kirimEmail($emailApprover->email, $data);
+ // }
+
+ $pt->user_approve_id = null;
+ $pt->date_approve = date('Y-m-d H:i:s');
+ $pt->user_upd_id = Auth::user()->id;
+ $pt->status_id = 5;
+ $pt->send_approve = false;
+ $pt->status_approve = true;
+ $pt->note_approval = $request->note_approval;
+ $pt->save();
+ DB::commit();
+ return response()->json([
+ 'rc' => 0,
+ 'rm' => 'Berhasil Approve Task',
+ ]);
+ } catch (\Throwable $th) {
+ //throw $th;
+ DB::rollBack();
+ return response()->json([
+ 'rc' => 99,
+ 'rm' => $th->getMessage()
+ ]);
+ } catch (QueryException $e) {
+ DB::rollback();
+ return response()->json([
+ 'rc' => 500,
+ 'rm' => $e->getMessage()
+ ]);
+ }
+ }
+
+ public function act_proses_css_task($request) {
+ DB::beginTransaction();
+ try {
+ //code...
+ $pt = ProjectTaskModel::find($request->id);
+
+
+ $emailMaker = DB::table('master_user')->where('id', $pt->user_crt_id)->first();
+ $emailApprover = DB::table('master_user')->where('id', $pt->user_approve_it)->first();
+ $status = DB::table('ref_status')->where('id', $pt->status_id)->first();
+ $data['ticket'] = $pt->task_code;
+ $data['status'] = $status->definition;
+ $data['catatan'] = $pt->notes_imp;
+ $data['pelapor'] = $emailMaker->full_name;
+ $data['jenis'] = 2;
+
+ $pt->user_imp_id = Auth::user()->id;
+ $pt->notes_imp = $request->notes_imp;
+ $pt->critical_level_id = $request->critical_level_id;
+ $pt->date_deadline = date('Y-m-d', strtotime($request->date_deadline));
+ if($request->status_id==5) {
+ $pt->status_id = 4;
+ $pt->send_approve = true;
+ } else {
+ $pt->status_id = $request->status_id;
+ $pt->send_approve = false;
+ }
+ $pt->save();
+
+ // $kirimToMaker = $this->kirimEmail($emailMaker->email, $data);
+ // if(!empty($emailApprover)) {
+ // $kirimToApprover = $this->kirimEmail($emailApprover->email, $data);
+ // }
+
+
+ if($request->hasFile('dok_helpdesk')){
+
+
+ $destination_path = public_path('dokumen');
+ $files = $request->file('dok_helpdesk');
+ $urlDoc = SpaceController::uploadFile($files, 'dokumen', []);
+
+
+ // $filename = 'Dokumen_'.date('Ymd')."_".date('His').'.'.$files->getClientOriginalExtension();
+ // $upload_success = $files->move($destination_path, $filename);
+
+
+ $ptd = new ProjectTaskDocument();
+ $ptd->project_task_id = $pt->id;
+ $ptd->url_doc = $urlDoc;
+ $ptd->user_crt_id = Auth::user()->id;
+ $ptd->type_doc = 2;
+ $ptd->save();
+ }
+ DB::commit();
+ return response()->json([
+ 'rc' => 0,
+ 'rm' => 'Berhasil Kirim Approval Task',
+ ]);
+ } catch (\Throwable $th) {
+ //throw $th;
+ DB::rollBack();
+ return response()->json([
+ 'rc' => 99,
+ 'rm' => $th->getMessage()
+ ]);
+ } catch (QueryException $e) {
+ DB::rollback();
+ return response()->json([
+ 'rc' => 500,
+ 'rm' => $e->getMessage()
+ ]);
+ }
+ }
+
+ public function act_batal_css_task($request) {
+ DB::beginTransaction();
+ try {
+ //code...
+ $pt = ProjectTaskModel::find($request->id);
+ $pt->status_id = 6;
+ $pt->save();
+ DB::commit();
+ return response()->json([
+ 'rc' => 0,
+ 'rm' => 'Berhasil Batalkan Task',
+ ]);
+ } catch (\Throwable $th) {
+ //throw $th;
+ DB::rollBack();
+ return response()->json([
+ 'rc' => 99,
+ 'rm' => $th->getMessage()
+ ]);
+ } catch (QueryException $e) {
+ DB::rollback();
+ return response()->json([
+ 'rc' => 500,
+ 'rm' => $e->getMessage()
+ ]);
+ }
+ }
+
+ public function act_store_css_task($request) {
+ // dd($request->all());exit();
+ DB::beginTransaction();
+ try {
+ //code...
+ $checkRole = DB::table('ref_role')->where('id', Auth::user()->role_id)->first();
+
+ $mp = ProjectsModel::find($request->project_id_modal_);
+ $get = collect(DB::select("select max(id) as max_id from master_project_task"))->first();
+ $codeGenerate = str_pad($get->max_id+1, 5, 0, STR_PAD_LEFT);
+ $pt = new ProjectTaskModel();
+ $pt->project_id = $request->project_id_modal_;
+ $pt->project_id_pm = $mp->project_id_pm;
+ $pt->task_name = $request->judul_;
+ $pt->task_code = date('Ymd').$codeGenerate;
+ $pt->task_note = $request->deskripsi_;
+ if($checkRole) {
+ if($checkRole->is_external) {
+ $pt->status_id = 7;
+ } else {
+ $pt->status_id = 1;
+ }
+ } else {
+ $pt->status_id = 7;
+ }
+ $pt->critical_level_id = $request->level_;
+ $pt->user_crt_id = Auth::user()->id;
+ $pt->client_id = $request->client_id_modal_;
+ if($pt->save()) {
+ for ($i=1; $i <= $request->row_file ; $i++) {
+ # code...
+ if($request->hasFile('file_input_'.$i.'_')){
+ $destination_path = public_path('dokumen');
+ $files = $request->file('file_input_'.$i.'_');
+ $urlDoc = SpaceController::uploadFile($files, 'dokumen', []);
+
+ // $filename = 'Dokumen_'.date('Ymd')."_".date('His').'.'.$files->getClientOriginalExtension();
+ // $upload_success = $files->move($destination_path, $filename);
+
+ $ptd = new ProjectTaskDocument();
+ $ptd->project_task_id = $pt->id;
+ $ptd->url_doc = $urlDoc;
+ $ptd->user_crt_id = Auth::user()->id;
+ $ptd->type_doc = 1;
+ $ptd->save();
+ }
+ }
+ }
+ $emailMaker = DB::table('master_user')->whereIn('id', [13, 21, 14])->get()->toArray();
+ $status = DB::table('ref_status')->where('id', $pt->status_id)->first();
+ $data['ticket'] = $pt->task_code;
+ $data['status'] = $status->definition;
+ $data['catatan'] = $pt->notes_imp;
+ $data['jenis'] = 2;
+ if(!empty($emailMaker)) {
+ foreach($emailMaker as $em) {
+ $data['pelapor'] = $em->full_name;
+ if($em->email) {
+ // $kirimToMaker = $this->kirimEmail($em->email, $data);
+ }
+ }
+ }
+
+ DB::commit();
+ return response()->json([
+ 'rc' => 0,
+ 'rm' => 'Success Add Task',
+ ]);
+ } catch (\Throwable $th) {
+ //throw $th;
+ DB::rollBack();
+ return response()->json([
+ 'rc' => 99,
+ 'rm' => $th->getMessage()
+ ]);
+ } catch (QueryException $e) {
+ DB::rollback();
+ return response()->json([
+ 'rc' => 500,
+ 'rm' => $e->getMessage()
+ ]);
+ }
+ }
+
+ public function act_store_data_project_css($request) {
+ DB::beginTransaction();
+ try {
+ //code...
+ $id = $request->input('get_id');
+ if($id == '') {
+ $mp = new ProjectsModel();
+ $mp->user_crt_id = Auth::user()->id;
+ } else {
+ $mp = ProjectsModel::findOrFail($id);
+ $mp->user_upd_id = Auth::user()->id;
+ DB::connection('pgsql2')->table('master_project')->where('id', $mp->project_id_pm)->update([
+ 'project_id_css' => null,
+ 'client_id_css' => null
+ ]);
+ }
+
+ $mp->project_name = $request->project_name;
+ $mp->project_detail = $request->info_detail_project;
+ $mp->client_id = $request->client_project;
+ $mp->project_id_pm = $request->project_id;
+ if($mp->save()) {
+ DB::connection('pgsql2')->table('master_project')->where('id', $request->project_id)->update([
+ 'project_id_css' => $mp->id,
+ 'client_id_css' => $request->client_project
+ ]);
+ }
+
+ DB::commit();
+ return response()->json([
+ 'rc' => 0,
+ 'rm' => 'Success Add Project'
+ ]);
+ } catch (\Throwable $th) {
+ //throw $th;
+ DB::rollBack();
+ return response()->json([
+ 'rc' => 99,
+ 'rm' => $th->getMessage()
+ ]);
+ } catch (QueryException $e) {
+ DB::rollback();
+ return response()->json([
+ 'rc' => 500,
+ 'rm' => $e->getMessage()
+ ]);
+ }
+ }
+
+ public function act_store_reminder($request) {
+ $key_demo ='88749978e47dcff1496c29213cbb9b8964fd677f7a6dd17d';
+ $mpt = ProjectTaskModel::findOrFail($request->id);
+ $message = 'Kamu mendapatkan task baru untuk Project '.$request->project_name.' : \n'. $mpt->task_name . '\n\nUntuk melihat detail task silahkan akses ke: \nhttp://quince-project.basys.co.id';
+ $number = substr_replace(trim($request->phone_number),'62',0,1);
+ $data = array(
+ "phone_no"=> $number,
+ "key" => $key_demo,
+ "message" => $message,
+ );
+
+ $result = $this->sendWA($data);
+ if($result == 'Success') {
+ return response()->json([
+ 'rc' => 0,
+ 'rm' => 'sukses'
+ ]);
+ } else {
+ return response()->json([
+ 'rc' => 500,
+ 'rm' => $result
+ ]);
+ }
+ // return $result;
+ }
+
+ public function sendWA($data)
+ {
+ $url='http://116.203.191.58/api/send_message';
+
+ $data_string = json_encode($data,1);
+ $ch = curl_init($url);
+ curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
+ curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
+ curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
+ curl_setopt($ch, CURLOPT_VERBOSE, 0);
+ curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 0);
+ curl_setopt($ch, CURLOPT_TIMEOUT, 360);
+ curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
+ curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
+ curl_setopt($ch, CURLOPT_HTTPHEADER, array(
+ 'Content-Type: application/json',
+ 'Content-Length: ' . strlen($data_string),
+ 'Authorization: Basic dXNtYW5ydWJpYW50b3JvcW9kcnFvZHJiZWV3b293YToyNjM3NmVkeXV3OWUwcmkzNDl1ZA=='
+ ));
+ $res=curl_exec($ch);
+ curl_close($ch);
+
+ return $res;
+ } // end function
+
+ public function act_store_lanjutkan_task (Request $request) {
+ DB::beginTransaction();
+ try {
+ $mpt = ProjectTaskModel::findOrFail($request->id_task_lanjutkan);
+
+ $newMpt = new ProjectTaskModel();
+ $newMpt->project_id = $mpt->project_id;
+ $newMpt->task_name = '[Forward Task] - '.$mpt->task_name;
+ $newMpt->task_code = $mpt->task_code;
+ $newMpt->task_note = '[Forward Task] - '.$mpt->task_note;
+ $newMpt->pic_id = $request->personil_task_pilihan;
+ $newMpt->start_date = $mpt->start_date;
+ $newMpt->due_date = $mpt->due_date;
+ $newMpt->status_id = 1;
+ $newMpt->critical_level_id = $mpt->critical_level_id;
+ $newMpt->user_crt_id = Auth::user()->id;
+ $newMpt->company_id = $mpt->company_id;
+ $newMpt->save();
+
+ $mit = new TaskInboxModel();
+ $mit->project_id = $newMpt->project_id;
+ $mit->project_task_id = $newMpt->id;
+ $mit->tittle = $newMpt->task_name;
+ $mit->description = $newMpt->task_note;
+ $mit->pic_id = $request->personil_task_pilihan;
+ $mit->is_read = false;
+ $mit->user_crt_id = Auth::user()->id;
+ $mit->save();
+ DB::commit();
+ return response()->json([
+ 'rc' => 0,
+ 'rm' => 'Success Add Task',
+ ]);
+ } catch (\Throwable $th) {
+ //throw $th;
+ DB::rollBack();
+ return response()->json([
+ 'rc' => 99,
+ 'rm' => $th->getMessage()
+ ]);
+ } catch (QueryException $e) {
+ DB::rollback();
+ return response()->json([
+ 'rc' => 500,
+ 'rm' => $e->getMessage()
+ ]);
+ }
+ }
+
+ public function act_read_inbox(Request $request) {
+ DB::beginTransaction();
+ try {
+ if($request->type=='meetings') {
+ $mmp = MeetingParticipantModel::findOrFail($request->id);
+ $mmp->is_read = true;
+ $mmp->save();
+ } else {
+ $mmp = TaskInboxModel::findOrFail($request->id);
+ $mmp->is_read = true;
+ $mmp->save();
+ }
+
+ DB::commit();
+ return response()->json([
+ 'rc' => 0,
+ 'rm' => 'Berhasil',
+ ]);
+ } catch (\Throwable $th) {
+ //throw $th;
+ DB::rollBack();
+ return response()->json([
+ 'rc' => 99,
+ 'rm' => $th->getMessage()
+ ]);
+ } catch (QueryException $e) {
+ DB::rollback();
+ return response()->json([
+ 'rc' => 500,
+ 'rm' => $e->getMessage()
+ ]);
+ }
+ }
+
+ public function act_store_data_meeting(Request $request) {
+ DB::beginTransaction();
+ try {
+ //code...
+ $id = $request->get_id;
+ if($id) {
+ $mm = MeetingModel::findOrFail($id);
+ $mm->mom_content = $request->mom_content;
+ $mm->is_done = $request->is_done_edit;
+ if($request->hasFile('mom_doc_url')){
+ $destination_path = public_path('dok_meeting');
+ // $image_path = public_path($mm->mom_doc_url);
+ // if(File::exists($image_path)) {
+ // File::delete($image_path);
+ // }
+
+ SpaceController::deleteFile($mm->mom_doc_url);
+ $files = $request->file('mom_doc_url');
+ $mm->mom_doc_url = SpaceController::uploadFile($files, 'meeting', []);
+
+ // $filename = 'dok_'.date('Ymd')."_".date('His').'.'.$files->getClientOriginalExtension();
+ // $upload_success = $files->move($destination_path, $filename);
+ // $mm->mom_doc_url = '/dok_meeting/'.$filename;
+
+
+ }
+ $mm->user_upd_id = Auth::user()->id;
+ $mm->save();
+ if($request->row_anggota > 0) {
+ for ($i=1; $i <= $request->row_anggota ; $i++) {
+ $mp = MeetingParticipantModel::findOrFail($request->input('mp_id'.$i));
+ $mp->is_present = $request->input('hadir'.$i)=='true'?true:false;
+ $mp->notes = $request->input('ket'.$i)?$request->input('ket'.$i):null;
+ $mp->user_upd_id = Auth::user()->id;
+ $mp->save();
+ }
+ }
+ } else {
+ // $getMm = DB::table('master_meeting')->max('id');
+ // $getMmp = DB::table('master_meeting_participant')->max('id');
+ $mm = new MeetingModel();
+ // $mm->id = $getMm+1;
+ $mm->project_id = $request->id_project;
+ $mm->tittle = $request->title;
+ $mm->start_date = date('Y-m-d', strtotime($request->start_date));
+ $mm->start_time = $request->start_time;
+ $mm->end_time = $request->end_time;
+ $mm->is_done = false;
+ $mm->inv_content = $request->inv_content;
+ $mm->user_crt_id = Auth::user()->id;
+ $mm->save();
+ $dataMm = [];
+ for($i=1; $i<=$request->row_anggota;$i++) {
+ array_push($dataMm, array(
+ // 'id' => $getMmp + $i,
+ 'meeting_id' => $mm->id,
+ 'participant_id' => $request->input('personil_id_'.$i),
+ 'is_present' => null,
+ 'is_read' => false,
+ 'user_crt_id' => Auth::user()->id,
+ 'created_at' => Carbon::now(),
+ 'updated_at' => Carbon::now(),
+ ));
+ }
+
+ MeetingParticipantModel::insert($dataMm);
+ }
+ DB::commit();
+ return response()->json([
+ 'rc' => 0,
+ 'rm' => 'Berhasil',
+ ]);
+ } catch (\Throwable $th) {
+ //throw $th;
+ DB::rollBack();
+ return response()->json([
+ 'rc' => 99,
+ 'rm' => $th->getMessage()
+ ]);
+ } catch (QueryException $e) {
+ DB::rollback();
+ return response()->json([
+ 'rc' => 500,
+ 'rm' => $e->getMessage()
+ ]);
+ }
+ }
+
+ public function act_store_data_budget_awal(Request $request) {
+ DB::beginTransaction();
+ try {
+ //code...
+ $amount_tx = str_replace('.','',$request->amount_tx_ba);
+ // $get = BudgetRealModel::all()->last();
+ // if($get) {
+ // $idNow = $get->id + 1;
+ // } else {
+ // $idNow = 1;
+ // }
+ $mbr = new BudgetRealModel();
+ // $mbr->id = $idNow;
+ $mbr->project_id = $request->project_id;
+ $mbr->budget_type = 1;
+ $mbr->amount_tx = $amount_tx;
+ $mbr->tx_note = 'Budgeting Awal Project';
+ $mbr->tx_date = date('Y-m-d');
+ $mbr->created_at = date('Y-m-d');
+ $mbr->user_crt_id = Auth::user()->id;
+ $mbr->company_id = Auth::user()->company_id;
+ $mbr->outstanding = $amount_tx;
+ $mbr->save();
+
+ $mp = ProjectsModel::findOrFail($request->project_id);
+ $mp->budget_amount = $amount_tx;
+ $mp->outstanding = $amount_tx;
+ $mp->save();
+
+ DB::commit();
+ return response()->json([
+ 'rc' => 0,
+ 'rm' => 'Berhasil',
+ 'budget_awal' => $amount_tx
+ ]);
+ } catch (\Throwable $th) {
+ //throw $th;
+ DB::rollBack();
+ return response()->json([
+ 'rc' => 99,
+ 'rm' => $th->getMessage()
+ ]);
+ } catch (QueryException $e) {
+ DB::rollback();
+ return response()->json([
+ 'rc' => 500,
+ 'rm' => $e->getMessage()
+ ]);
+ }
+ }
+
+ public function act_store_reversal_data_budget(Request $request) {
+ DB::beginTransaction();
+ try {
+ //code...
+ $bt = DB::table('ref_budget_type')->where('id', $request->typeBudget)->where('company_id', Auth::user()->company_id)->first();
+ $rev_operator = $bt->rev_operator;
+ $mbr = BudgetRealModel::findOrFail($request->idBudget);
+ $amount_tx = $mbr->amount_tx;
+ $project_id = $mbr->project_id;
+ $mp = ProjectsModel::findOrFail($project_id);
+ $outstandingPr = $mp->outstanding;
+ $budgetPr = $mp->budget_amount;
+ if($rev_operator=='-') {
+ $outstanding = $outstandingPr - $amount_tx;
+ $budget = $budgetPr - $amount_tx;
+ } else {
+ $outstanding = $outstandingPr + $amount_tx;
+ $budget = $budgetPr + $amount_tx;
+ }
+
+ if($request->typeBudget==1) {
+ $mp->budget_amount = $outstanding;
+ } else if($request->typeBudget==8 || $request->typeBudget==9) {
+ $mp->budget_amount = $budget;
+ }
+
+ $mp->outstanding = $outstanding;
+
+ $mp->save();
+
+ BudgetRealModel::findOrFail($request->idBudget)->delete();
+
+ DB::commit();
+ return response()->json([
+ 'rc' => 0,
+ 'rm' => 'Berhasil',
+ 'budget' => $mp->budget_amount,
+ 'outstanding' => $outstanding
+ ]);
+ } catch (\Throwable $th) {
+ //throw $th;
+ DB::rollBack();
+ return response()->json([
+ 'rc' => 99,
+ 'rm' => $th->getMessage()
+ ]);
+ } catch (QueryException $e) {
+ DB::rollback();
+ return response()->json([
+ 'rc' => 500,
+ 'rm' => $e->getMessage()
+ ]);
+ }
+ }
+
+ public function act_store_data_budget(Request $request) {
+ DB::beginTransaction();
+ try {
+ //code...
+ $mp = ProjectsModel::findOrFail($request->project_id);
+ $outstandingLast = $mp->outstanding;
+ $budgetLast = $mp->budget_amount;
+ if($request->operator=='-') {
+ $outstanding = $outstandingLast - str_replace('.','',$request->amount_tx);
+ $budget = $budgetLast - str_replace('.','',$request->amount_tx);
+ } else {
+ $outstanding = $outstandingLast + str_replace('.','',$request->amount_tx);
+ $budget = $budgetLast + str_replace('.','',$request->amount_tx);
+ }
+ // $get = BudgetRealModel::all()->last()->id;
+ $mbr = new BudgetRealModel();
+ // $mbr->id = $get + 1;
+ $mbr->project_id = $request->project_id;
+ $mbr->budget_type = $request->budget_type;
+ $mbr->amount_tx = str_replace('.','',$request->amount_tx);
+ $mbr->tx_note = $request->tx_note;
+ $mbr->tx_date = date('Y-m-d', strtotime($request->tx_date));
+ $mbr->created_at = date('Y-m-d');
+ $mbr->user_crt_id = Auth::user()->id;
+ $mbr->company_id = Auth::user()->company_id;
+ $mbr->outstanding = $outstanding;
+ $mbr->save();
+ if($request->budget_type==8 || $request->budget_type==9) {
+ $mp->budget_amount = $budget;
+ }
+ $mp->outstanding = $outstanding;
+ $mp->save();
+ DB::commit();
+ return response()->json([
+ 'rc' => 0,
+ 'rm' => 'Berhasil',
+ 'budget' => $mp->budget_amount,
+ 'outstanding' => $outstanding
+ ]);
+ } catch (\Throwable $th) {
+ //throw $th;
+ DB::rollBack();
+ return response()->json([
+ 'rc' => 99,
+ 'rm' => $th->getMessage()
+ ]);
+ } catch (QueryException $e) {
+ DB::rollback();
+ return response()->json([
+ 'rc' => 500,
+ 'rm' => $e->getMessage()
+ ]);
+ }
+ }
+
+ public function act_store_status_project(Request $request) {
+ DB::beginTransaction();
+ try {
+ $mp = ProjectsModel::find($request->id_project);
+ $mp->status_id = $request->pilih_status_project;
+ $mp->save();
+ //code...
+ DB::commit();
+ return response()->json([
+ 'rc' => 0,
+ 'rm' => 'Success Add Comment Task',
+ ]);
+ } catch (\Throwable $th) {
+ //throw $th;
+ DB::rollBack();
+ return response()->json([
+ 'rc' => 99,
+ 'rm' => $th->getMessage()
+ ]);
+ } catch (QueryException $e) {
+ DB::rollback();
+ return response()->json([
+ 'rc' => 500,
+ 'rm' => $e->getMessage()
+ ]);
+ }
+ }
+
+ public function act_store_comment_project(Request $request) {
+ DB::beginTransaction();
+ try {
+ $mpt = new ProjectCommentModel();
+ $mpt->project_id = $request->id_project;
+ $mpt->comment_note = $request->comment_note;
+ $mpt->user_crt_id = Auth::user()->id;
+ $mpt->created_at = date('Y-m-d H:i:s');
+ $mpt->company_id = Auth::user()->company_id;
+ $mpt->save();
+ $jmlComment = collect(DB::select("select count(id) as jmlcomment from master_project_comment mpc where mpc.project_id = ?",[$request->id_project]))->first();
+ //code...
+ DB::commit();
+ return response()->json([
+ 'rc' => 0,
+ 'rm' => 'Success Add Comment Task',
+ 'jmlComment' => $jmlComment->jmlcomment
+ ]);
+ } catch (\Throwable $th) {
+ //throw $th;
+ DB::rollBack();
+ return response()->json([
+ 'rc' => 99,
+ 'rm' => $th->getMessage()
+ ]);
+ } catch (QueryException $e) {
+ DB::rollback();
+ return response()->json([
+ 'rc' => 500,
+ 'rm' => $e->getMessage()
+ ]);
+ }
+ }
+
+ public function act_store_comment_task(Request $request){
+ DB::beginTransaction();
+ try {
+ $mpt = new TaskCommentModel();
+ $mpt->project_id = $request->id_project;
+ $mpt->task_id = $request->id_task;
+ $mpt->comment_note = $request->comment_task_note;
+ $mpt->user_crt_id = Auth::user()->id;
+ $mpt->created_at = date('Y-m-d H:i:s');
+ $mpt->company_id = Auth::user()->company_id;
+ $mpt->save();
+ //code...
+ DB::commit();
+ return response()->json([
+ 'rc' => 0,
+ 'rm' => 'Success Add Comment Task',
+ ]);
+ } catch (\Throwable $th) {
+ //throw $th;
+ DB::rollBack();
+ return response()->json([
+ 'rc' => 99,
+ 'rm' => $th->getMessage()
+ ]);
+ } catch (QueryException $e) {
+ DB::rollback();
+ return response()->json([
+ 'rc' => 500,
+ 'rm' => $e->getMessage()
+ ]);
+ }
+ }
+
+ public function act_store_sub_task(Request $request) {
+ DB::beginTransaction();
+ try {
+ if($request->get_id) {
+ $mpt = ProjectSubTaskModel::find($request->get_id);
+ $mpt->user_upd_id = Auth::user()->id;
+ } else {
+ $mpt = new ProjectSubTaskModel();
+ // $get = collect(DB::select("select max(id) as max_id from master_project_subtask"))->first();
+ // $mpt->id = $get->max_id + 1;
+ $mpt->user_crt_id = Auth::user()->id;
+ }
+ $mpt->task_id = $request->task_id;
+ $mpt->subtask_detail = $request->subtask_detail;
+ $mpt->status_id = $request->status_id_st;
+ $mpt->company_id = Auth::user()->company_id;
+ $mpt->save();
+ //code...
+ DB::commit();
+ return response()->json([
+ 'rc' => 0,
+ 'rm' => 'Success Add Sub Task',
+ ]);
+ } catch (\Throwable $th) {
+ //throw $th;
+ DB::rollBack();
+ return response()->json([
+ 'rc' => 99,
+ 'rm' => $th->getMessage()
+ ]);
+ } catch (QueryException $e) {
+ DB::rollback();
+ return response()->json([
+ 'rc' => 500,
+ 'rm' => $e->getMessage()
+ ]);
+ }
+ }
+
+ public function act_update_status_task(Request $request) {
+ DB::beginTransaction();
+ try {
+ //code...
+ $mpt = ProjectTaskModel::find($request->id);
+ $mpt->status_id = $request->status_id;
+ $mpt->save();
+ DB::commit();
+ return response()->json([
+ 'rc' => 0,
+ 'rm' => 'Success Add Task',
+ ]);
+ } catch (\Throwable $th) {
+ //throw $th;
+ DB::rollBack();
+ return response()->json([
+ 'rc' => 99,
+ 'rm' => $th->getMessage()
+ ]);
+ } catch (QueryException $e) {
+ DB::rollback();
+ return response()->json([
+ 'rc' => 500,
+ 'rm' => $e->getMessage()
+ ]);
+ }
+ }
+
+ public function act_store_task(Request $request) {
+ DB::beginTransaction();
+ try {
+ if($request->get_id) {
+ $mpt = ProjectTaskModel::find($request->get_id);
+ $mpt->user_upd_id = Auth::user()->id;
+ } else {
+ $mpt = new ProjectTaskModel();
+ $get = collect(DB::select("select max(id) as max_id from master_project_task"))->first();
+ // $mpt->id = $get->max_id + 1;
+ $mpt->user_crt_id = Auth::user()->id;
+ $companyCode = collect(DB::select("select company_code from master_company mc where id = ?",[Auth::user()->company_id]))->first();
+ $codeGenerate = str_pad($get->max_id+1, 5, 0, STR_PAD_LEFT);
+ $codeTask = $companyCode->company_code.$request->project_id.$request->pic_id.$codeGenerate;
+ $mpt->task_code = $codeTask;
+ }
+
+ if($request->hasFile('dok_task')){
+ $destination_path = public_path('dokumen');
+ $image_path = public_path($mpt->url_doc);
+ if(File::exists($image_path)) {
+ File::delete($image_path);
+ }
+ $files = $request->file('dok_task');
+ $urlDoc = SpaceController::uploadFile($files, 'dokumen', []);
+
+ // $filename = 'Dokumen_'.date('Ymd')."_".date('His').'.'.$files->getClientOriginalExtension();
+ // $upload_success = $files->move($destination_path, $filename);
+
+ $mpt->url_doc = $urlDoc;
+ }
+
+ $mpt->project_id = $request->project_id;
+ $mpt->task_name = $request->task_name;
+ $mpt->task_note = $request->task_note;
+ $mpt->pic_id = $request->pic_id;
+ $mpt->start_date = date('Y-m-d', strtotime($request->start_date));
+ $mpt->due_date = date('Y-m-d', strtotime($request->due_date));
+ $mpt->status_id = $request->status_id;
+ $mpt->critical_level_id = $request->critical_level_id;
+ $mpt->company_id = Auth::user()->company_id;
+ $mpt->save();
+
+ if($request->get_id) {
+ $mit = TaskInboxModel::where('project_task_id')->first();
+ $mit->tittle = $request->task_name;
+ $mit->description = $request->task_note;
+ $mit->user_upd_id = Auth::user()->id;
+ $mit->save();
+ } else {
+ $mit = new TaskInboxModel();
+ $mit->project_id = $request->project_id;
+ $mit->project_task_id = $mpt->id;
+ $mit->tittle = $request->task_name;
+ $mit->description = $request->task_note;
+ $mit->pic_id = $request->pic_id;
+ $mit->is_read = false;
+ $mit->user_crt_id = Auth::user()->id;
+ $mit->save();
+ }
+
+ $jml_task = collect(DB::select("select count(id) as jml_task from master_project_task where project_id = ? and status_id not in (4)",[$request->project_id]))->first();
+ $task_on_progress = collect(DB::select("select count(id) as totonprogress from master_project_task mpt where status_id = 2 and project_id = ?",[$request->project_id]))->first();
+ //code...
+ DB::commit();
+ return response()->json([
+ 'rc' => 0,
+ 'rm' => 'Success Add Task',
+ 'jml_task' => $jml_task,
+ 'task_on_progress' => $task_on_progress
+ ]);
+ } catch (\Throwable $th) {
+ //throw $th;
+ DB::rollBack();
+ return response()->json([
+ 'rc' => 99,
+ 'rm' => $th->getMessage()
+ ]);
+ } catch (QueryException $e) {
+ DB::rollback();
+ return response()->json([
+ 'rc' => 500,
+ 'rm' => $e->getMessage()
+ ]);
+ }
+ }
+
+ public function act_store_data_generate_task(Request $request) {
+ DB::beginTransaction();
+ try {
+ for($i=1; $i<=$request->row_modeling; $i++) {
+ $mpt = new ProjectTaskModel();
+ $get = collect(DB::select("select max(id) as max_id from master_project_task"))->first();
+ // $mpt->id = $get->max_id + 1;
+ $mpt->user_crt_id = Auth::user()->id;
+ $companyCode = collect(DB::select("select company_code from master_company mc where id = ?",[Auth::user()->company_id]))->first();
+ $codeGenerate = str_pad($get->max_id+1, 5, 0, STR_PAD_LEFT);
+ $codeTask = $companyCode->company_code.$request->id_project.$request->input('pic_id_generate'.$i).$codeGenerate;
+ $mpt->project_id = $request->id_project;
+ $mpt->task_name = $request->input('task_name_generate'.$i);
+ $mpt->task_code = $codeTask;
+ $mpt->task_note = $request->input('task_note_generate'.$i);
+ $mpt->pic_id = $request->input('pic_id_generate'.$i);
+ $mpt->start_date = date('Y-m-d', strtotime($request->input('start_date_generate'.$i)));
+ $mpt->due_date = date('Y-m-d', strtotime($request->input('due_date_generate'.$i)));
+ $mpt->status_id = $request->input('status_id_generate'.$i);
+ $mpt->critical_level_id = $request->input('critical_level_id_generate'.$i);
+ $mpt->company_id = Auth::user()->company_id;
+ $mpt->save();
+ }
+
+ $jml_task = collect(DB::select("select count(id) as jml_task from master_project_task where project_id = ? and status_id not in (4)",[$request->id_project]))->first();
+ $task_on_progress = collect(DB::select("select count(id) as totonprogress from master_project_task mpt where status_id = 2 and project_id = ?",[$request->id_project]))->first();
+ //code...
+ DB::commit();
+ return response()->json([
+ 'rc' => 0,
+ 'rm' => 'Success Add Task',
+ 'jml_task' => $jml_task,
+ 'task_on_progress' => $task_on_progress
+ ]);
+ } catch (\Throwable $th) {
+ //throw $th;
+ DB::rollBack();
+ return response()->json([
+ 'rc' => 99,
+ 'rm' => $th->getMessage()
+ ]);
+ } catch (QueryException $e) {
+ DB::rollback();
+ return response()->json([
+ 'rc' => 500,
+ 'rm' => $e->getMessage()
+ ]);
+ }
+ }
+
+ public function act_delete_task(Request $request) {
+ DB::beginTransaction();
+ try {
+ $mpt = ProjectTaskModel::find($request->id);
+ $mpt->status_id = 4;
+ $mpt->save();
+
+ // $mit = TaskInboxModel::where('project_task_id', $request->id)->delete();
+
+ $jml_task = collect(DB::select("select count(id) as jml_task from master_project_task where project_id = ? and status_id not in (4)",[$request->project_id]))->first();
+ $task_on_progress = collect(DB::select("select count(id) as totonprogress from master_project_task mpt where status_id = 2 and project_id = ?",[$request->project_id]))->first();
+ DB::commit();
+ return response()->json([
+ 'rc' => 0,
+ 'rm' => 'Success Add Task',
+ 'jml_task' => $jml_task,
+ 'task_on_progress' => $task_on_progress
+ ]);
+ } catch (\Throwable $th) {
+ //throw $th;
+ DB::rollBack();
+ return response()->json([
+ 'rc' => 99,
+ 'rm' => $th->getMessage()
+ ]);
+ } catch (QueryException $e) {
+ DB::rollback();
+ return response()->json([
+ 'rc' => 500,
+ 'rm' => $e->getMessage()
+ ]);
+ }
+ }
+
+ public function act_store_projects(Request $request) {
+ DB::beginTransaction();
+ try {
+ //code...
+ $min = 5;
+ $get = collect(DB::select("SELECT max(id::int) as max_id FROM master_project"))->first();
+ $getTC = collect(DB::select("SELECT coalesce(max(substr(team_code,5,".$min.")::int),0) as max_number FROM master_team WHERE company_id = ?",[Auth::user()->company_id]))->first();
+ $getTCId = collect(DB::select("SELECT max(id::int) as max_id FROM master_team"))->first();
+ // $getMbrId = collect(DB::select("SELECT max(id::int) as max_id FROM master_budget_real"))->first();
+ $arrayTeam = [];
+ $id = $request->input('get_id');
+ if($id=='') {
+ $mp = new ProjectsModel();
+ $mt = new TeamModel();
+ $mbr = new BudgetRealModel();
+ // $mp->id = $get->max_id + 1;
+ $mp->project_name = $request->nama_project;
+ $mp->unit_owner_id = $request->project_owner;
+ $mp->start_date = date('Y-m-d', strtotime($request->tgl_mulai));
+ $mp->due_date = date('Y-m-d', strtotime($request->tgl_selesai));
+ $mp->days_overdue = round((strtotime($request->tgl_selesai)-strtotime($request->tgl_mulai))/60/60/40);
+ $mp->status_id = 1;
+ $mp->project_detail = $request->info_detail_project;
+ $mp->budget_amount = str_replace('.','',$request->budget_amount);
+ $mp->outstanding = str_replace('.','',$request->budget_amount);
+ // sementara pantek dulu karna blm ada login
+ $mp->user_crt_id = Auth::user()->id;
+ $mp->company_id = Auth::user()->company_id;
+
+ if($request->hasFile('logo_project')){
+ $destination_path = public_path('gallery');
+ $files = $request->file('logo_project');
+ $urlDoc = SpaceController::uploadFile($files, 'logo', []);
+
+
+ // $filename = 'Logo_'.date('Ymd')."_".date('His').'.'.$files->getClientOriginalExtension();
+ // $upload_success = $files->move($destination_path, $filename);
+ $mp->logo_url = $urlDoc;
+ }
+
+ $team_code = $getTC->max_number + 1;
+ if(strlen($team_code) <= $min) {
+ $addZero = str_pad($team_code,5,"0",STR_PAD_LEFT);
+ } else {
+ $batas = strlen($team_code);
+ $addZero = str_pad($team_code,$batas,"0",STR_PAD_LEFT);
+ }
+
+ if($request->row_anggota > 0) {
+ // $idTeam = $getTCId->max_id;
+ for ($i=1; $i <= $request->row_anggota ; $i++) {
+ # code...
+ // $arrayTeam[$i]['id'] = $idTeam+$i;
+ $arrayTeam[$i]['member_id'] = $request->input('personil_id_'.$i);
+ $arrayTeam[$i]['team_role_id'] = $request->input('team_role_id_'.$i);
+ $arrayTeam[$i]['team_code'] = 'TM0'.Auth::user()->company_id.$addZero;
+ $arrayTeam[$i]['is_active'] = true;
+ $arrayTeam[$i]['created_at'] = date('Y-m-d H:i:s');
+ // sementara pantek dulu karna blm ada login
+ $arrayTeam[$i]['user_crt_id'] = Auth::user()->id;
+ $arrayTeam[$i]['company_id'] = Auth::user()->company_id;
+ }
+ }
+ $mt::insert($arrayTeam);
+ $numberOfCode = str_pad($get->max_id + 1,5,"0",STR_PAD_LEFT);
+ $codeProject = 'PRJ'.$numberOfCode.'TM0'.Auth::user()->company_id.$addZero;
+ $mp->project_code = $codeProject;
+ $mp->team_code = 'TM0'.Auth::user()->company_id.$addZero;
+ $mp->save();
+
+ // $mbr->id = $getMbrId->max_id + 1;
+ $mbr->project_id = $mp->id;
+ $mbr->budget_type = 1;
+ $mbr->amount_tx = str_replace('.','',$request->budget_amount);
+ $mbr->outstanding = str_replace('.','',$request->budget_amount);
+ $mbr->tx_date = date('Y-m-d');
+ $mbr->tx_note = 'Budgeting Awal Project';
+ $mbr->created_at = Carbon::now();
+ $mbr->user_crt_id = Auth::user()->id;
+ $mbr->company_id = Auth::user()->company_id;
+ $mbr->save();
+ } else {
+ $mp = ProjectsModel::findOrFail($id);
+ if($request->hasFile('logo_project')){
+ $destination_path = public_path('gallery');
+ // $image_path = public_path($mp->logo_url);
+ // if(File::exists($image_path)) {
+ // File::delete($image_path);
+ // }
+
+ SpaceController::deleteFile($mp->logo_url);
+ $files = $request->file('logo_project');
+ $urlDoc = SpaceController::uploadFile($files, 'logo', []);
+
+ // $filename = 'Logo_'.date('Ymd')."_".date('His').'.'.$files->getClientOriginalExtension();
+ // $upload_success = $files->move($destination_path, $filename);
+
+ $mp->logo_url = $urlDoc;
+ }
+ $mp->project_name = $request->nama_project;
+ $mp->unit_owner_id = $request->project_owner;
+ $mp->start_date = date('Y-m-d', strtotime($request->tgl_mulai));
+ $mp->due_date = date('Y-m-d', strtotime($request->tgl_selesai));
+ $mp->days_overdue = round((strtotime($request->tgl_selesai)-strtotime($request->tgl_mulai))/60/60/40);
+ $mp->project_detail = $request->info_detail_project;
+ $mp->user_upd_id = Auth::user()->id;
+ $mp->save();
+ // $mp->company_id = Auth::user()->company_id;
+ }
+
+ DB::commit();
+ return response()->json([
+ 'rc' => 0,
+ 'rm' => 'Success Add Project'
+ ]);
+ } catch (\Throwable $th) {
+ //throw $th;
+ DB::rollBack();
+ return response()->json([
+ 'rc' => 99,
+ 'rm' => $th->getMessage()
+ ]);
+ } catch (QueryException $e) {
+ DB::rollback();
+ return response()->json([
+ 'rc' => 500,
+ 'rm' => $e->getMessage()
+ ]);
+ }
+ }
+
+ public function act_store_member(Request $request) {
+ DB::beginTransaction();
+ try {
+ //code...
+ // $get = collect(DB::select("SELECT max(id::int) as max_id FROM master_team"))->first();
+ $mt = new TeamModel();
+ // $mt->id = $get->max_id+1;
+ $mt->member_id = $request->input('pilih_personil');
+ $mt->team_role_id = $request->input('pilih_team_role');
+ $mt->team_code = $request->input('team_code');
+ $mt->is_active = true;
+ $mt->created_at = date('Y-m-d H:i:s');
+ // sementara pantek dulu karna blm ada login
+ $mt->user_crt_id = Auth::user()->id;
+ $mt->company_id = Auth::user()->company_id;
+ $mt->save();
+ $dataMember = DB::select("select mu.full_name, mu.image_url from master_user mu
+ join master_team mt on mt.member_id = mu.id
+ where mt.team_code = ? order by mt.id",[$request->input('team_code')]);
+ DB::commit();
+ return response()->json([
+ 'rc' => 0,
+ 'rm' => 'Berhasil Tambah Member',
+ 'data' => $dataMember,
+ ]);
+ } catch (\Throwable $th) {
+ //throw $th;
+ DB::rollBack();
+ return response()->json([
+ 'rc' => 99,
+ 'rm' => $th->getMessage()
+ ]);
+ } catch (QueryException $e) {
+ DB::rollback();
+ return response()->json([
+ 'rc' => 500,
+ 'rm' => $e->getMessage()
+ ]);
+ }
+ }
+
+ public function act_get_projects(Request $request, $type)
+ {
+ switch ($type) {
+ case 'get_member_not_in_project':
+ $data = DB::select("select mu.id, mu.full_name from master_user mu
+ where mu.id not in (select member_id from master_team where team_code = ?) and mu.role_id not in (6) and mu.company_id = ?",[$request->input('team_code'), Auth::user()->company_id]);
+ # code...
+ break;
+ case 'get_team_role_not_in_project':
+ $data = DB::select("select rtr.* from ref_team_role rtr
+ where rtr.id not in (select team_role_id from master_team where team_role_id <> 3 and team_code = ?) and rtr.company_id = ?",[$request->input('team_code'), Auth::user()->company_id]);
+ # code...
+ break;
+ case 'data_task_member':
+ $data = DB::select("select mpt.id, mpt.project_id, mpt.task_name, mpt.task_code, mpt.due_date,
+ mp.project_name, rs.definition as status_task
+ from master_project_task mpt
+ left join master_project mp on mp.id = mpt.project_id
+ left join ref_status rs on rs.id = mpt.status_id and rs.company_id = mpt.company_id
+ where mpt.project_id = ? and pic_id = ?",[$request->id_project, $request->member_id]);
+ break;
+ case 'get_status':
+ $data = DB::select("select * from ref_status where company_id = ? and is_active=true and id not in (4)",[Auth::user()->company_id]);
+ break;
+ case 'get_status_project':
+ $data = DB::select("select * from ref_status where company_id = ? and is_active=true",[Auth::user()->company_id]);
+ break;
+ case 'get_critical_level':
+ $data = DB::select("select * from ref_critical_level where company_id = ? and is_active=true",[Auth::user()->company_id]);
+ break;
+ case 'get_data_task':
+ $data = DB::select("select * from master_project_task where id = ? ",[$request->get('id')]);
+ break;
+ case 'data_kanban_task':
+ $data = [];
+ $status = DB::select("select * from ref_status where company_id = ? and is_active = true order by id",[Auth::user()->company_id]);
+ $color = ['info', 'warning', 'success', 'danger'];
+ foreach ($status as $key => $value) {
+ # code...
+ $data[$key]['id'] = '_'.$value->id;
+ $data[$key]['title'] = $value->definition;
+ $data[$key]['class'] = 'light-'.$color[$key];
+ // $data[$key]['dragTo'] = [$value->id + 1];
+ $data[$key]['item'] = [];
+ if($request->input('member_id')) {
+ $item = DB::select("select mpt.*, rcl.definition as critical_name, mu.full_name from master_project_task mpt
+ left join ref_critical_level rcl on rcl.id = mpt.critical_level_id and rcl.company_id = mpt.company_id
+ left join master_user mu on mu.id = mpt.pic_id where pic_id = ? and status_id = ? and project_id = ? order by mpt.id",[$request->input('member_id'), $value->id, $request->input('id')]);
+ } else {
+ $item = DB::select("select mpt.*, rcl.definition as critical_name, mu.full_name from master_project_task mpt
+ left join ref_critical_level rcl on rcl.id = mpt.critical_level_id and rcl.company_id = mpt.company_id
+ left join master_user mu on mu.id = mpt.pic_id where project_id = ? and status_id = ?",[$request->input('id'), $value->id]);
+ }
+ $colorTask = ['info', 'warning', 'success', 'danger'];
+ foreach ($item as $k => $itemVal) {
+ # code...
+ $data[$key]['item'][$k]['id'] = '_'.$itemVal->id;
+ $data[$key]['item'][$k]['statusid'] = $value->id;
+ $data[$key]['item'][$k]['title'] = $itemVal->task_name.' Code: ('.$itemVal->task_code.') Level: '.$itemVal->critical_name.'
'.$itemVal->full_name.'';
+ $data[$key]['item'][$k]['class'] = $colorTask[$value->id-1];
+ }
+ }
+ break;
+ case 'get_data_detail_task':
+ $data = [];
+ $data['task'] = collect(DB::select("select mpt.*, rs.definition as status, rcl.definition as critical_level, mu.phone_number from master_project_task mpt
+ left join ref_status rs on rs.id = mpt.status_id and rs.company_id = mpt.company_id
+ left join ref_critical_level rcl on rcl.id = mpt.critical_level_id and rcl.company_id = mpt.company_id
+ left join master_user mu on mu.id = mpt.pic_id
+ where mpt.id = ? ",[$request->get('id')]))->first();
+ $data['subTask'] = DB::select("select mps.*, rs.definition as status from master_project_subtask mps
+ left join ref_status rs on rs.id = mps.status_id and rs.company_id = mps.company_id
+ where task_id = ?",[$request->get('id')]);
+ $data['commentTask'] = DB::select("select mtc.comment_note, mu.full_name, mtc.user_crt_id, mu.image_url , mtc.created_at
+ from master_task_comment mtc
+ left join master_user mu on mu.id = mtc.user_crt_id where task_id = ? and project_id = ?
+ order by mtc.created_at",[$request->get('id'),$request->get('id_project')]);
+ break;
+ case 'data_sub_task':
+ $data = DB::select("select mps.*, rs.definition as status from master_project_subtask mps
+ left join ref_status rs on rs.id = mps.status_id and rs.company_id = mps.company_id
+ where task_id = ? order by mps.id",[$request->get('id')]);
+ break;
+ case 'data_comment_task':
+ $data = DB::select("select mtc.comment_note, mu.full_name, mtc.user_crt_id, mu.image_url , mtc.created_at
+ from master_task_comment mtc
+ left join master_user mu on mu.id = mtc.user_crt_id
+ where task_id = ? and project_id = ?
+ order by mtc.created_at",[$request->get('task_id'),$request->get('id_project')]);
+ break;
+ case 'data_project_comment':
+ $data = DB::select("select mtc.comment_note, mu.full_name, mtc.user_crt_id, mu.image_url , mtc.created_at
+ from master_project_comment mtc
+ left join master_user mu on mu.id = mtc.user_crt_id where project_id = ?
+ order by mtc.created_at",[$request->get('id')]);
+ break;
+ case 'get_member_project':
+ $data = DB::select("select mt.member_id, mu.full_name, rtr.definition from master_team mt
+ left join master_project mp on mp.team_code = mt.team_code
+ left join master_user mu on mu.id = mt.member_id and mu.company_id = mt.company_id
+ left join ref_team_role rtr on rtr.id = mt.team_role_id and mp.company_id = rtr.company_id
+ where mp.id = ?
+ order by mt.team_role_id",[$request->get('id')]);
+ break;
+ case 'get_model_task':
+ $data = DB::select("select * from master_model where is_active = true and company_id = ?",[Auth::user()->company_id]);
+ break;
+ case 'get_model_task_detail':
+ $data = DB::select("select rmt.task_id, rt.task_name from rel_model_task rmt
+ left join ref_task rt on rt.id = rmt.task_id
+ where rmt.model_id = ?",[$request->get('id')]);
+ break;
+ case 'detail_meeting':
+ $data['meeting'] = collect(DB::select("select * from master_meeting where id = ? ", [$request->get('id')]))->first();
+ $data['meetingParticipant'] = DB::select("select mmp.*, mu.full_name from master_meeting_participant mmp join master_user mu on mu.id = mmp.participant_id where mmp.meeting_id = ?", [$request->get('id')]);
+ break;
+ case 'get_det_inbox':
+ if($request->type=='meetings') {
+ $data = collect(DB::select("select mmp.id,mmp.meeting_id,mmp.is_read,mu.full_name,mmp.created_at as send_date,mm.inv_content,mm.tittle,mp.project_name,mu.image_url
+ from master_meeting_participant mmp
+ join master_meeting mm on mm.id = mmp.meeting_id
+ left join master_user mu on mu.id = mm.user_crt_id
+ join master_project mp on mp.id = mm.project_id
+ where mmp.id = ? order by mm.created_at desc",[$request->id]))->first();
+ } else {
+ $data = collect(DB::select("select mti.id, mti.is_read, mti.tittle, mp.project_name,
+ mti.description as inv_content, mti.created_at as send_date, mu.image_url, mu.full_name
+ from master_task_inbox mti
+ left join master_project mp on mp.id = mti.project_id
+ left join master_user mu on mu.id = mti.user_crt_id
+ where mti.id = ?
+ order by mti.created_at desc",[$request->id]))->first();
+ }
+ break;
+ case 'get_data_project':
+ $data = DB::table('master_project')->where('id', $request->id)->first();
+ break;
+ case 'get_project':
+ $data = DB::table('master_project')->where('client_id', $request->client)->get();
+ break;
+ }
+
+
+ return response()->json(['data' => $data]);
+ }
+
+ public function dataTable(Request $request) {
+ $type = $request->get('type');
+ switch ($type) {
+ case 'detailProjects':
+ $whereTri = '';
+ $array = [Auth::user()->company_id, $request->get('id_project')];
+ if($request->get('team_role_id')) {
+ if($request->get('team_role_id')!=1 && $request->get('team_role_id')!=2) {
+ $whereTri = 'and mt.member_id = ?';
+ $array = [Auth::user()->company_id, $request->get('id_project'), Auth::user()->id];
+ }
+ }
+ $data = DB::select("select
+ (select count(id) from master_project_task
+ where pic_id = mt.member_id and project_id = mp.id and status_id not in (4)) as jml_task,
+ (select count(id) from master_project_task
+ where status_id = 3 and pic_id = mt.member_id and project_id = mp.id) as task_done,
+ (select count(id) from master_project_task
+ where status_id in (1,2) and pic_id = mt.member_id and project_id = mp.id) as task_undone,
+ mu.full_name, rtr.definition as team_role_name, mu.image_url, mp.id as id_project, mt.member_id, mt.team_code from master_team mt
+ join master_project mp on mp.team_code = mt.team_code
+ left join master_user mu on mu.id = mt.member_id
+ left join ref_team_role rtr on rtr.id = mt.team_role_id and rtr.company_id = ?
+ where mp.id = ? ".$whereTri."
+ order by mt.team_role_id", $array);
+ # code...
+ break;
+ case 'data_task_member':
+ $data = DB::select("select mpt.id, mpt.project_id, mpt.task_name, mpt.task_code, mpt.due_date,
+ mp.project_name, rs.definition as status_task, mp.status_id as status_id_project
+ from master_project_task mpt
+ left join master_project mp on mp.id = mpt.project_id
+ left join ref_status rs on rs.id = mpt.status_id and rs.company_id = mpt.company_id
+ where mpt.project_id = ? and mpt.pic_id = ? and mpt.status_id not in (4)
+ order by mpt.id",[$request->id_project, $request->member_id]);
+ break;
+ case 'budgeting_project':
+ $data = DB::select("select
+ mbr.id,
+ mbr.tx_date,
+ rbt.definition as budget_name,
+ rbt.tx_type,
+ mbr.tx_note,
+ mbr.amount_tx,
+ mbr.outstanding,
+ mbr.budget_type
+ from
+ master_budget_real mbr
+ join master_project mp on
+ mp.id = mbr.project_id
+ left join ref_budget_type rbt on
+ rbt.id = mbr.budget_type
+ and mbr.company_id = rbt.company_id
+ where mbr.project_id = ?",[$request->get('amp;id_project')]);
+ break;
+ case 'mng_meeting':
+ $data = DB::select("select * from master_meeting where project_id = ?",[$request->get('amp;id_project')]);
+ break;
+ case 'laporan_project':
+ $model = $request->get('model');
+ if(Auth::user()->role_id==1) {
+ if($model=='new') {
+ $data = DB::select("select mpt.*, rs.definition as status, rcl.definition as lvlurgent, mp.project_name, mu.full_name as implementor
+ from master_project_task mpt
+ join master_project mp on mp.id = mpt.project_id
+ left join master_user mu on mu.id = mpt.user_imp_id
+ left join ref_status rs on rs.id = mpt.status_id
+ left join ref_critical_level rcl on rcl.id = mpt.critical_level_id
+ where mpt.user_crt_id = :id and mpt.status_id = 7
+ order by created_at desc", ['id' => Auth::user()->id]);
+ } else if($model=='op') {
+ $data = DB::select("select mpt.*, rs.definition as status, rcl.definition as lvlurgent, mp.project_name, mu.full_name as implementor
+ from master_project_task mpt
+ join master_project mp on mp.id = mpt.project_id
+ left join master_user mu on mu.id = mpt.user_imp_id
+ left join ref_status rs on rs.id = mpt.status_id
+ left join ref_critical_level rcl on rcl.id = mpt.critical_level_id
+ where mpt.user_crt_id = :id and mpt.status_id in (1,2,3,4)
+ order by created_at desc", ['id' => Auth::user()->id]);
+ } else if($model=='cancel') {
+ $data = DB::select("select mpt.*, rs.definition as status, rcl.definition as lvlurgent, mp.project_name, mu.full_name as implementor
+ from master_project_task mpt
+ join master_project mp on mp.id = mpt.project_id
+ left join master_user mu on mu.id = mpt.user_imp_id
+ left join ref_status rs on rs.id = mpt.status_id
+ left join ref_critical_level rcl on rcl.id = mpt.critical_level_id
+ where mpt.user_crt_id = :id and mpt.status_id in (6, 8)
+ order by created_at desc", ['id' => Auth::user()->id]);
+ } else if($model=='overdue') {
+ $data = DB::select("select mpt.*, rs.definition as status, rcl.definition as lvlurgent, mp.project_name, mu.full_name as implementor
+ from master_project_task mpt
+ join master_project mp on mp.id = mpt.project_id
+ left join master_user mu on mu.id = mpt.user_imp_id
+ left join ref_status rs on rs.id = mpt.status_id
+ left join ref_critical_level rcl on rcl.id = mpt.critical_level_id
+ where mpt.user_crt_id = :id and mpt.status_id not in (5,6,7,8) and (DATE_PART('day', mpt.date_deadline::timestamp - CURRENT_DATE::timestamp)) >=0
+ order by created_at desc", ['id' => Auth::user()->id]);
+ } else if($model=='done') {
+ $data = DB::select("select mpt.*, rs.definition as status, rcl.definition as lvlurgent, mp.project_name, mu.full_name as implementor
+ from master_project_task mpt
+ join master_project mp on mp.id = mpt.project_id
+ left join master_user mu on mu.id = mpt.user_imp_id
+ left join ref_status rs on rs.id = mpt.status_id
+ left join ref_critical_level rcl on rcl.id = mpt.critical_level_id
+ where mpt.user_crt_id = :id and mpt.status_id = 5 and mpt.status_approve = true
+ order by created_at desc", ['id' => Auth::user()->id]);
+ } else {
+ $data = DB::select("select mpt.*, rs.definition as status, rcl.definition as lvlurgent, mp.project_name, mu.full_name as implementor
+ from master_project_task mpt
+ join master_project mp on mp.id = mpt.project_id
+ left join master_user mu on mu.id = mpt.user_imp_id
+ left join ref_status rs on rs.id = mpt.status_id
+ left join ref_critical_level rcl on rcl.id = mpt.critical_level_id
+ where mpt.user_crt_id = :id
+ order by created_at desc", ['id' => Auth::user()->id]);
+ }
+ } else {
+ if($model=='new') {
+ $data = DB::select("select mpt.*, rs.definition as status, rcl.definition as lvlurgent, mp.project_name, mu.full_name as implementor
+ from master_project_task mpt
+ join master_project mp on mp.id = mpt.project_id
+ left join master_user mu on mu.id = mpt.user_imp_id
+ left join ref_status rs on rs.id = mpt.status_id
+ left join ref_critical_level rcl on rcl.id = mpt.critical_level_id
+ where mpt.status_id = 7
+ order by created_at desc");
+ } else if($model=='op') {
+ $data = DB::select("select mpt.*, rs.definition as status, rcl.definition as lvlurgent, mp.project_name, mu.full_name as implementor
+ from master_project_task mpt
+ join master_project mp on mp.id = mpt.project_id
+ left join master_user mu on mu.id = mpt.user_imp_id
+ left join ref_status rs on rs.id = mpt.status_id
+ left join ref_critical_level rcl on rcl.id = mpt.critical_level_id
+ where mpt.status_id in (1,2,3,4)
+ order by created_at desc");
+ } else if($model=='cancel') {
+ $data = DB::select("select mpt.*, rs.definition as status, rcl.definition as lvlurgent, mp.project_name, mu.full_name as implementor
+ from master_project_task mpt
+ join master_project mp on mp.id = mpt.project_id
+ left join master_user mu on mu.id = mpt.user_imp_id
+ left join ref_status rs on rs.id = mpt.status_id
+ left join ref_critical_level rcl on rcl.id = mpt.critical_level_id
+ where mpt.status_id in (6, 8)
+ order by created_at desc");
+ } else if($model=='overdue') {
+ $data = DB::select("select mpt.*, rs.definition as status, rcl.definition as lvlurgent, mp.project_name, mu.full_name as implementor
+ from master_project_task mpt
+ join master_project mp on mp.id = mpt.project_id
+ left join master_user mu on mu.id = mpt.user_imp_id
+ left join ref_status rs on rs.id = mpt.status_id
+ left join ref_critical_level rcl on rcl.id = mpt.critical_level_id
+ where mpt.status_id not in (5,6,7,8) and (DATE_PART('day', mpt.date_deadline::timestamp - CURRENT_DATE::timestamp)) >=0
+ order by created_at desc");
+ } else if($model=='done') {
+ $data = DB::select("select mpt.*, rs.definition as status, rcl.definition as lvlurgent, mp.project_name, mu.full_name as implementor
+ from master_project_task mpt
+ join master_project mp on mp.id = mpt.project_id
+ left join master_user mu on mu.id = mpt.user_imp_id
+ left join ref_status rs on rs.id = mpt.status_id
+ left join ref_critical_level rcl on rcl.id = mpt.critical_level_id
+ where mpt.status_id = 5 and mpt.status_approve = true
+ order by created_at desc");
+ } else {
+ $data = DB::select("select mpt.*, rs.definition as status, rcl.definition as lvlurgent, mp.project_name, mu.full_name as implementor
+ from master_project_task mpt
+ join master_project mp on mp.id = mpt.project_id
+ left join master_user mu on mu.id = mpt.user_imp_id
+ left join ref_status rs on rs.id = mpt.status_id
+ left join ref_critical_level rcl on rcl.id = mpt.critical_level_id
+ order by created_at desc");
+ }
+ }
+ break;
+ case 'detail_helpdesk':
+ $data = DB::select("select mpt.*, rs.definition as status, rcl.definition as lvlurgent, mp.project_name
+ from master_project_task mpt
+ join master_project mp on mp.id = mpt.project_id
+ left join ref_status rs on rs.id = mpt.status_id
+ left join ref_critical_level rcl on rcl.id = mpt.critical_level_id
+ where mpt.client_id = :id and mpt.status_id not in (6,7,8) and mpt.send_approve = false and mpt.status_approve = false
+ order by created_at desc", ['id' => $request->get('id')]);
+ break;
+ case 'detail_approve_helpdesk':
+ $data = DB::select("select mpt.*, rs.definition as status, rcl.definition as lvlurgent, mp.project_name, mu.full_name
+ from master_project_task mpt
+ join master_project mp on mp.id = mpt.project_id
+ left join ref_status rs on rs.id = mpt.status_id
+ left join ref_critical_level rcl on rcl.id = mpt.critical_level_id
+ left join master_user mu on mu.id = mpt.user_imp_id
+ where mpt.client_id = :id and mpt.status_id not in (6,7,8) and mpt.send_approve = true and mpt.status_approve = false
+ order by created_at desc", ['id' => $request->get('id')]);
+ break;
+ case 'approve_css':
+ $data = DB::select("select mpt.*, rs.definition as status, rcl.definition as lvlurgent, mp.project_name,
+ concat(mu.full_name,' - ',rd.definition) as name_divisi
+ from master_project_task mpt
+ join master_project mp on mp.id = mpt.project_id
+ left join ref_status rs on rs.id = mpt.status_id
+ left join ref_critical_level rcl on rcl.id = mpt.critical_level_id
+ left join master_user mu on mu.id = mpt.user_crt_id
+ left join ref_division rd on rd.id = mu.division_id
+ where mpt.client_id = :id and mpt.status_id = 7
+ order by created_at desc", ['id' => Auth::user()->client_id]);
+ break;
+ }
+ return DataTables::of($data)
+ ->addIndexColumn()
+ ->addColumn('member_name',function($data) use ($type) {
+ if($type=='detailProjects') {
+ return '
+
\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t'}},{width:"75px",targets:8,render:function(t,a,l,e){var s={1:{title:"Pending",class:"label-light-primary"},2:{title:"Delivered",class:" label-light-danger"},3:{title:"Canceled",class:" label-light-primary"},4:{title:"Success",class:" label-light-success"},5:{title:"Info",class:" label-light-info"},6:{title:"Danger",class:" label-light-danger"},7:{title:"Warning",class:" label-light-warning"}};return void 0===s[t]?t:''+s[t].title+""}},{width:"75px",targets:9,render:function(t,a,l,e){var s={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return void 0===s[t]?t:''+s[t].title+""}}]})}};jQuery(document).ready(function(){KTDatatablesDataSourceHtml.init()});
\ No newline at end of file
diff --git a/public/assets/js/pages/crud/datatables/data-sources/javascript.js b/public/assets/js/pages/crud/datatables/data-sources/javascript.js
new file mode 100644
index 0000000..4f40ffb
--- /dev/null
+++ b/public/assets/js/pages/crud/datatables/data-sources/javascript.js
@@ -0,0 +1,59 @@
+"use strict";
+var KTDatatablesDataSourceHtml = function() {
+
+ var dataJSONArray = JSON.parse(
+ '[[1,"54473-251","GT","San Pedro Ayampuc","Sanford-Halvorson","897 Magdeline Park","sgormally0@dot.gov","Shandra Gormally","Eichmann, Upton and Homenick","GTQ","sit amet cursus id turpis integer aliquet massa id lobortis convallis","Computers","house.gov","14.78667","-90.45111","5/21/2016","America/Guatemala",1,2],[2,"41250-308","ID","Langensari","Denesik-Langosh","9 Brickson Park Junction","eivanonko1@over-blog.com","Estele Ivanonko","Lowe, Batz and Purdy","IDR","lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet","Baby","arizona.edu","-6.4222","105.9425","4/19/2016","Asia/Jakarta",1,3],[3,"0615-7571","HR","Slatina","Kunze, Schneider and Cronin","35712 Sundown Parkway","sbettley2@gmpg.org","Stephine Bettley","Bernier, Weimann and Wuckert","HRK","cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus vivamus","Toys","rakuten.co.jp","45.70333","17.70278","4/7/2016","Europe/Zagreb",6,3],[4,"49349-551","RU","Novo-Peredelkino","Jacobi-Ankunding","481 Sage Park","dmartijn3@printfriendly.com","Damara Martijn","Tromp-Hegmann","RUB","cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus etiam","Baby","t-online.de","55.64528","37.33583","2/15/2016","Europe/Moscow",4,2],[5,"59779-750","ID","Bombu","Johns-Kunze","59 Marcy Hill","hpelzer4@friendfeed.com","Helsa Pelzer","Walker LLC","IDR","non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit","Toys","xrea.com","-8.6909","120.5162","1/30/2017","Asia/Makassar",4,3],[6,"63777-145","CN","Kaiyuan","Kris, Keeling and Weimann","122 Evergreen Street","sheugel5@mysql.com","Sigismundo Heugel","D\'Amore-Johnston","CNY","tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in","Tools","gravatar.com","42.53306","124.04028","10/22/2016","Asia/Harbin",3,3],[7,"57520-0136","GR","Tríkala","Effertz Inc","328 8th Avenue","cewell6@reverbnation.com","Clarinda Ewell","Jakubowski and Sons","EUR","magnis dis parturient montes nascetur ridiculus mus vivamus vestibulum sagittis sapien","Music","msu.edu","40.59814","22.55733","9/3/2016","Europe/Athens",4,1],[8,"0093-5200","SE","Köping","West-Ullrich","48 Sommers Junction","adevenny7@webnode.com","Ariel Devenny","Goldner, Bartoletti and Towne","SEK","mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed sagittis nam congue risus","Jewelery","flavors.me","59.514","15.9926","2/10/2016","Europe/Stockholm",2,3],[9,"14783-319","ID","Ujung","Stiedemann-Kemmer","10625 Dixon Road","bplewright8@mashable.com","Buck Plewright","Boyer and Sons","IDR","habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id mauris vulputate elementum","Music","odnoklassniki.ru","-8.2137","114.3818","11/11/2016","Asia/Makassar",2,3],[10,"59011-454","CO","Salento","Daniel-Feest","48004 Mariners Cove Circle","gliddon9@wordpress.org","Gilberta Liddon","Nienow-Dickens","COP","dolor sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit","Electronics","deliciousdays.com","4.6375","-75.57028","12/15/2016","America/Bogota",6,2],[11,"0268-1530","ID","Sarkanjut","Mraz-Parisian","9630 Scoville Road","oheusticea@buzzfeed.com","Odetta Heustice","Gorczany-Mohr","IDR","interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue vivamus","Electronics","pagesperso-orange.fr","-7.10896","107.94173","7/28/2016","Asia/Jakarta",5,3],[12,"53057-012","CN","Baiguo","Reinger, Roberts and Medhurst","29238 Waywood Road","blillistoneb@ftc.gov","Brittne Lillistone","Schimmel, Bauch and Ortiz","CNY","ultrices posuere cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a feugiat","Toys","typepad.com","29.8841","110.45615","9/23/2016","Asia/Chongqing",5,3],[13,"58232-9814","PL","Wołczyn","Stanton-Davis","63 Dwight Junction","oharlinc@whitehouse.gov","Oralia Harlin","Hagenes, Dicki and Rowe","PLN","felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed","Jewelery","usnews.com","51.01845","18.04994","1/15/2017","Europe/Warsaw",2,2],[14,"41163-369","CA","Lanigan","Abbott, Lockman and Roberts","02 Florence Trail","ffultond@omniture.com","Flinn Fulton","Jaskolski, O\'Kon and Crona","CAD","congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed","Clothing","biblegateway.com","51.85006","-105.03443","9/17/2016","America/Regina",2,3],[15,"63824-302","GR","Patitírion","Klein-Tillman","0 Londonderry Crossing","jitzkovskye@un.org","Jessey Itzkovsky","Blanda Inc","EUR","eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium","Grocery","opensource.org","39.14657","23.86494","2/13/2016","Europe/Athens",5,2],[16,"55670-109","RU","Ozëry","Buckridge, Klein and Williamson","00 Fremont Point","ddiggf@epa.gov","Deidre Digg","Miller, Morissette and Klocko","RUB","montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque","Grocery","google.ca","54.85998","38.55062","5/23/2016","Europe/Moscow",6,1],[17,"29500-9090","CN","Dingshu","Yundt Inc","538 Saint Paul Plaza","haldcorneg@salon.com","Hilliary Aldcorne","MacGyver-Goyette","CNY","vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus dolor vel est donec","Games","spotify.com","31.2573","119.84881","11/25/2016","Asia/Shanghai",1,2],[18,"49349-872","UA","Manevychi","Kris, Bahringer and Kerluke","2873 Pearson Trail","kramalheteh@163.com","Kare Ramalhete","Doyle, Lowe and Greenholt","UAH","magnis dis parturient montes nascetur ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida","Games","utexas.edu","51.29405","25.53436","9/19/2016","Europe/Uzhgorod",6,3],[19,"41163-368","JP","Fukushima-shi","Kemmer-Padberg","9748 Graedel Point","dcadigani@pagesperso-orange.fr","Devan Cadigan","Botsford, Larkin and Brekke","JPY","at dolor quis odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi nam","Beauty","feedburner.com","37.75","140.46778","12/6/2016","Asia/Tokyo",2,1],[20,"49999-844","AM","Malishka","Aufderhar Group","25198 Lotheville Alley","opettusj@ehow.com","Ole Pettus","Schultz and Sons","AMD","phasellus in felis donec semper sapien a libero nam dui proin leo odio porttitor id","Games","usda.gov","39.73758","45.39004","6/24/2016","Asia/Baku",2,3],[21,"37000-106","CN","Jincheng","Paucek, Towne and Lind","573 Hovde Way","hhickeringillk@discuz.net","Harwell Hickeringill","Kreiger Inc","CNY","elementum nullam varius nulla facilisi cras non velit nec nisi","Garden","google.it","25.50147","102.40058","1/5/2017","Asia/Chongqing",6,3],[22,"42023-169","JM","New Kingston","Halvorson-Greenfelder","055 Maryland Point","cwaszczykl@stumbleupon.com","Claire Waszczyk","Halvorson and Sons","JMD","duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac nibh","Music","ustream.tv","18.00747","-76.78319","9/14/2016","America/Jamaica",5,3],[23,"57520-0581","BR","Formosa do Rio Preto","Heaney LLC","1 Fordem Junction","hcominettim@phoca.cz","Hettie Cominetti","Nikolaus LLC","BRL","integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in","Home","irs.gov","-11.04833","-45.19306","6/4/2016","America/Bahia",1,1],[24,"57520-0625","CN","Tushi","Hayes, Considine and Kohler","502 Kennedy Junction","despinon@msn.com","Doroteya Espino","Macejkovic, Schaden and Terry","CNY","posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor","Health","live.com","28.91746","108.86704","2/12/2016","Asia/Chongqing",2,1],[25,"37000-616","SE","Hallstahammar","Bartoletti and Sons","4756 Tony Terrace","kgeorgesono@ucsd.edu","Klement Georgeson","Ernser Group","SEK","rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut","Automotive","ezinearticles.com","59.6139","16.2285","12/28/2016","Europe/Stockholm",5,2],[26,"35356-933","RU","Koshki","Adams-Kohler","16912 Forest Run Circle","rbengerp@comsenz.com","Ricoriki Benger","Dickinson, Adams and Thiel","RUB","nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin","Garden","chicagotribune.com","54.20914","50.46767","11/27/2016","Europe/Moscow",1,3],[27,"36987-2295","FI","Piippola","Bayer Inc","5479 Oakridge Parkway","rgawthropeq@imdb.com","Raeann Gawthrope","Greenholt-Rosenbaum","EUR","justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas","Computers","google.com.hk","64.16667","25.96667","4/1/2016","Europe/Helsinki",4,3],[28,"36987-1170","VN","Thanh Chương","Murray-Wiegand","5604 Harper Lane","eweekleyr@narod.ru","Enrichetta Weekley","Stark, Weimann and Hickle","VND","elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget semper","Outdoors","yahoo.co.jp","18.77877","105.33356","6/1/2016","Asia/Ho_Chi_Minh",5,2],[29,"65597-101","JP","Takasaki","Doyle-McDermott","71 Victoria Alley","predfernes@ox.ac.uk","Phoebe Redferne","Paucek, Kutch and Pfannerstill","JPY","nibh in lectus pellentesque at nulla suspendisse potenti cras in purus eu magna vulputate luctus","Clothing","newyorker.com","36.33333","139.01667","8/23/2016","Asia/Tokyo",4,1],[30,"49035-350","PE","Charat","Gislason Inc","67308 Dixon Street","mdabernottt@buzzfeed.com","Milka Dabernott","Weimann-Schoen","PEN","nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat","Games","list-manage.com","-7.83333","-78.45","7/11/2016","America/Lima",6,3],[31,"49839-200","CN","Haoxue","Thompson Group","78 Pond Circle","gcolatonu@freewebs.com","Gale Colaton","Krajcik, Koch and Bayer","CNY","porttitor id consequat in consequat ut nulla sed accumsan felis ut","Home","devhub.com","30.04761","112.46759","1/13/2017","Asia/Chongqing",3,3],[32,"62699-1114","UY","Santa Catalina","Koch Inc","43 Hintze Street","sstronachv@npr.org","Sula Stronach","Boyle and Sons","UYU","dolor vel est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum","Clothing","homestead.com","-33.75","-57.48333","7/22/2016","America/Montevideo",4,1],[33,"45802-257","FR","Toulouse","McLaughlin LLC","997 Redwing Place","jmcilennaw@accuweather.com","Jena McIlenna","Blanda Group","EUR","morbi ut odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit","Baby","msu.edu","43.6043","1.4437","12/4/2016","Europe/Paris",6,2],[34,"52125-212","CU","Niquero","Cole Group","2 Sugar Hill","mosannex@sakura.ne.jp","Myrtia Osanne","Price-Goyette","CUP","tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus","Clothing","netlog.com","20.04478","-77.5851","8/8/2016","America/Havana",3,1],[35,"16590-745","PE","Tacna","Bernier Inc","9883 Nancy Alley","sjobey@phoca.cz","Sammie Jobe","Tromp LLC","PEN","non sodales sed tincidunt eu felis fusce posuere felis sed lacus","Shoes","arstechnica.com","-18.01465","-70.25362","11/21/2016","America/Lima",2,2],[36,"60505-0132","PH","Capissayan Sur","Volkman-Hickle","76 Linden Terrace","gpoliz@weibo.com","Gaby Poli","Metz, Herman and Leannon","PHP","nibh fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a","Music","squarespace.com","18.0509","121.8177","8/8/2016","Asia/Manila",1,3],[37,"68428-071","KW","Janūb as Surrah","Kuhlman, Berge and Jacobi","68942 Crowley Lane","gmoir10@va.gov","Garrard Moir","Bosco and Sons","KWD","lobortis ligula sit amet eleifend pede libero quis orci nullam molestie nibh in lectus","Grocery","aol.com","29.26917","47.97806","3/27/2016","Asia/Kuwait",6,2],[38,"61543-7772","CN","Quanling","Considine-Russel","0 Duke Court","upoag11@livejournal.com","Ulrick Poag","Murazik and Sons","CNY","erat quisque erat eros viverra eget congue eget semper rutrum nulla nunc purus phasellus in felis donec semper","Home","netscape.com","28.37799","116.07202","11/23/2016","Asia/Shanghai",2,2],[39,"63941-449","RS","Doroslovo","Langworth Inc","0 Bashford Point","odanskine12@whitehouse.gov","Osgood Danskine","Rau, Abshire and Waelchi","RSD","orci pede venenatis non sodales sed tincidunt eu felis fusce posuere","Tools","cornell.edu","45.60699","19.18868","8/13/2016","Europe/Belgrade",4,3],[40,"34954-014","BR","São José","Zieme, Witting and Haley","763 Dunning Road","cianson13@google.com.hk","Chloris Ianson","Krajcik, Balistreri and Hammes","BRL","sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh in","Music","ucsd.edu","-28.21171","-49.1632","6/11/2016","America/Sao_Paulo",2,1],[41,"21695-709","RU","Spirovo","Bode and Sons","126 Meadow Vale Terrace","ctomasik14@nps.gov","Claire Tomasik","Orn Group","RUB","eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante","Baby","over-blog.com","57.41905","34.97658","4/18/2016","Europe/Moscow",1,2],[42,"0054-3566","CZ","Hostouň","Pfeffer Inc","08 Crowley Center","pknewstubb15@jugem.jp","Paton Knewstubb","Kiehn, Goyette and Oberbrunner","CZK","condimentum curabitur in libero ut massa volutpat convallis morbi odio odio elementum eu interdum eu tincidunt in leo maecenas","Home","bloglines.com","49.55971","12.77147","1/14/2017","Europe/Berlin",3,2],[43,"61787-499","PL","Siewierz","Anderson, Gottlieb and Grimes","743 Clove Circle","hhartshorne16@angelfire.com","Hedvig Hartshorne","Kihn-Nitzsche","PLN","nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed","Beauty","blogspot.com","50.46657","19.23028","7/3/2016","Europe/Warsaw",6,3],[44,"0944-2963","PL","Kaniów","Herman, Tromp and Hansen","1403 Hansons Terrace","dsisland17@census.gov","Deva Sisland","Bogan Inc","PLN","nulla suspendisse potenti cras in purus eu magna vulputate luctus cum","Shoes","ocn.ne.jp","50.98577","20.66391","1/2/2017","Europe/Warsaw",4,1],[45,"10356-831","MN","Erdenet","Heidenreich-Simonis","85 Columbus Trail","cboneham18@barnesandnoble.com","Christophorus Boneham","Wuckert Inc","MNT","pharetra magna ac consequat metus sapien ut nunc vestibulum ante","Automotive","cafepress.com","48.94877","99.53665","11/5/2016","Asia/Ulaanbaatar",4,2],[46,"51630-003","CN","Zhongshi","Harvey, Halvorson and Howe","0 Pine View Avenue","tbone19@yahoo.co.jp","Teresa Bone","Macejkovic-Ryan","CNY","vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra","Books","hubpages.com","25.38746","115.41678","5/23/2016","Asia/Chongqing",2,2],[47,"53942-243","AR","Anguil","Mante, Huels and Considine","87 Corscot Street","hcoupe1a@dagondesign.com","Harmon Coupe","Hand, Hoppe and Eichmann","ARS","sed justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam","Electronics","posterous.com","-36.52567","-64.01025","3/14/2016","America/Argentina/Salta",1,3],[48,"67544-889","RU","Losevo","Cruickshank, Botsford and Johns","94653 Granby Court","bvalentino1b@fda.gov","Bobbe Valentino","Weimann-Beier","RUB","non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam","Sports","aboutads.info","50.67667","40.045","1/1/2017","Europe/Moscow",3,2],[49,"21130-352","ID","Dinjo","Trantow, Halvorson and Jacobs","076 Johnson Park","rtissington1c@desdev.cn","Rollins Tissington","West-Douglas","IDR","nisl nunc nisl duis bibendum felis sed interdum venenatis turpis","Music","blogger.com","-9.5942","119.0138","7/13/2016","Asia/Makassar",4,3],[50,"42291-625","GR","Agía Triáda","Collins, Hamill and Schneider","74661 Myrtle Junction","vwoolford1d@cmu.edu","Vasilis Woolford","Koelpin, Dietrich and Wilkinson","EUR","sit amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus","Books","netscape.com","40.50003","22.87351","11/5/2016","Europe/Athens",1,2],[51,"68327-006","GE","Bolnisi","Farrell and Sons","38 Melrose Way","gmcrorie1e@techcrunch.com","Galina McRorie","Yundt, Johns and Kuphal","GEL","nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in","Jewelery","samsung.com","41.44794","44.53838","6/24/2016","Asia/Tbilisi",1,3],[52,"55154-6125","ID","Menanga","Jerde-Carroll","3 Forster Lane","fharpin1f@merriam-webster.com","Fran Harpin","Gleason Inc","IDR","aliquam non mauris morbi non lectus aliquam sit amet diam","Books","desdev.cn","-8.436","123.0868","2/22/2016","Asia/Makassar",2,1],[53,"52125-217","PT","Monte Novo","Cremin Group","46 Homewood Junction","lrose1g@google.com.hk","Lorelle Rose","Franecki-Littel","EUR","odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est","Computers","e-recht24.de","38.15","-8.8167","5/25/2016","Europe/Lisbon",1,2],[54,"50346-003","CN","Lincuo","Gerhold and Sons","450 Mallard Court","dshugg1h@japanpost.jp","Dori Shugg","Weimann, Kohler and Rosenbaum","CNY","velit donec diam neque vestibulum eget vulputate ut ultrices vel","Electronics","mtv.com","23.66062","117.25946","11/28/2016","Asia/Shanghai",4,2],[55,"65954-014","ID","Nusajaya","Kutch Group","66 Hagan Alley","llaughnan1i@wsj.com","Laird Laughnan","Botsford Inc","IDR","rutrum rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut","Baby","npr.org","-8.4817","118.3064","3/12/2016","Asia/Makassar",4,3],[56,"49738-116","HR","Bistrinci","Marks-Treutel","37 Randy Park","sslidders1j@lycos.com","Suzanna Slidders","Macejkovic, Miller and Cartwright","HRK","quam nec dui luctus rutrum nulla tellus in sagittis dui vel","Garden","tripod.com","45.69167","18.39861","12/29/2016","Europe/Zagreb",2,3],[57,"59667-0069","FR","Paris 12","Mayer-Ernser","81 Killdeer Road","lgravatt1k@nps.gov","Lewes Gravatt","Brown, Ryan and Quitzon","EUR","arcu sed augue aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac habitasse platea","Beauty","redcross.org","48.8412","2.3876","7/12/2016","Europe/Paris",5,1],[58,"63739-547","VN","Trảng Bom","McLaughlin LLC","00 Barnett Place","mkroin1l@webeden.co.uk","Marina Kroin","Robel and Sons","VND","luctus rutrum nulla tellus in sagittis dui vel nisl duis","Automotive","ustream.tv","10.95358","107.00589","4/3/2016","Asia/Ho_Chi_Minh",3,2],[59,"54569-0909","CN","Lizi","Lowe-Sauer","4 Park Meadow Trail","bcannam1m@scientificamerican.com","Bobby Cannam","Sipes-Stiedemann","CNY","lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas","Toys","technorati.com","29.81127","107.92447","8/5/2016","Asia/Chongqing",5,1],[60,"54868-5657","AL","Patos Fshat","Kris and Sons","51 Talisman Alley","bheymann1n@ihg.com","Bunny Heymann","Abernathy, Luettgen and Becker","ALL","vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus semper","Grocery","guardian.co.uk","40.64278","19.65083","3/25/2016","Europe/Tirane",3,3],[61,"49288-0467","CN","Kouqian","Morar-Lynch","77 Tomscot Alley","bbriance1o@furl.net","Barbara Briance","Zulauf-Kihn","CNY","odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede","Books","icio.us","43.63914","126.45784","6/11/2016","Asia/Harbin",2,1],[62,"14783-455","PL","Niemodlin","Spinka, Hackett and Leannon","45 Orin Plaza","vgapp1p@pinterest.com","Vikky Gapp","Williamson, Champlin and Zieme","PLN","cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes","Games","wisc.edu","50.642","17.61932","9/30/2016","Europe/Warsaw",2,3],[63,"58232-0029","CN","Zhoukou","Wyman, Swift and Homenick","111 Banding Street","jann1q@drupal.org","Jo ann Henzer","Wolff, Halvorson and Ebert","CNY","metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci","Health","mozilla.com","27.69684","118.91938","7/23/2016","Asia/Shanghai",5,1],[64,"54868-5397","CN","Baima","Schaefer Group","26078 Goodland Circle","eironmonger1r@weather.com","Ernest Ironmonger","Boyle, Schowalter and Jast","CNY","nisl aenean lectus pellentesque eget nunc donec quis orci eget orci vehicula condimentum","Baby","google.de","31.58261","119.17219","3/6/2016","Asia/Shanghai",3,2],[65,"69069-101","US","Stamford","Runte-Champlin","7 Portage Court","kjacop1s@prlog.org","Karylin Jacop","Kuphal Group","USD","at vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis","Industrial","upenn.edu","41.0888","-73.5435","5/1/2016","America/New_York",5,3],[66,"30142-022","ID","Tebanah","Hudson-Fay","75 Mendota Parkway","cmoncrefe1t@craigslist.org","Cherise Moncrefe","Block Group","IDR","orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor","Outdoors","is.gd","-6.9213","113.2043","7/8/2016","Asia/Jakarta",5,2],[67,"16729-115","ID","Tracal","Beier and Sons","93758 Gale Street","celfes1u@usa.gov","Clarie Elfes","Heidenreich Group","IDR","tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet","Grocery","usatoday.com","-6.9824","112.3381","6/27/2016","Asia/Jakarta",3,2],[68,"51147-5010","RU","Volzhsk","Beatty Group","11023 Barnett Park","ibehnecken1v@linkedin.com","Isadore Behnecken","Gottlieb-Douglas","RUB","lobortis ligula sit amet eleifend pede libero quis orci nullam","Shoes","weather.com","55.86638","48.3594","7/8/2016","Europe/Moscow",2,2],[69,"57520-0435","CU","Venezuela","Mante-Kunze","7137 Sutteridge Place","gclemmey1w@hud.gov","Gerty Clemmey","Schulist, Blanda and Donnelly","CUP","donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac","Automotive","ocn.ne.jp","21.73528","-78.79639","4/24/2016","America/Havana",1,2],[70,"41250-990","ID","Kepel","Rogahn and Sons","350 Continental Alley","jogle1x@dot.gov","Jay Ogle","Botsford LLC","IDR","nulla suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient","Music","angelfire.com","-8.1157","112.4289","4/28/2016","Asia/Jakarta",3,3],[71,"52125-726","MA","Riah","Friesen, O\'Connell and Volkman","72001 3rd Point","bdutnell1y@stumbleupon.com","Beverie Dutnell","Lowe, Pacocha and Grimes","MAD","ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec","Kids","chronoengine.com","33.15122","-7.37504","6/9/2016","Africa/Casablanca",3,2],[72,"68645-478","GB","Milton","Kohler-Wolff","674 Texas Plaza","cduddin1z@blogtalkradio.com","Carin Duddin","Feil, Wolf and Nicolas","GBP","sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis","Beauty","storify.com","53.1805","-0.9766","2/19/2016","Europe/London",4,2],[73,"53942-503","TH","Khok Sung","Denesik-Dach","3 Eastwood Hill","uluety20@parallels.com","Ulrika Luety","Halvorson-Koch","THB","dolor sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum","Kids","virginia.edu","13.83824","102.62254","8/29/2016","Asia/Bangkok",4,2],[74,"10742-8123","CN","Yilkiqi","Little Group","2039 Katie Circle","hblazic21@tripod.com","Hugh Blazic","Kunze Inc","CNY","tristique fusce congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed augue aliquam erat volutpat","Jewelery","biglobe.ne.jp","37.96111","77.24917","11/12/2016","Asia/Kashgar",4,2],[75,"11523-7313","MX","Vicente Guerrero","Larson Inc","14 Fieldstone Alley","apinke22@apple.com","Antonie Pinke","Gislason, Hessel and Heaney","MXN","lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus sit amet sem","Tools","slideshare.net","19.058","-97.818","7/4/2016","America/Mexico_City",3,3],[76,"0406-9959","YE","Ash Sharyah","Huel-Bednar","880 Florence Hill","cdust23@is.gd","Corbie Dust","Cummerata LLC","YER","purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur","Electronics","booking.com","14.35659","45.02244","8/15/2016","Asia/Aden",4,1],[77,"63824-479","CO","La Argentina","Okuneva Inc","9346 Jana Alley","sde24@bigcartel.com","Sidonnie De Avenell","Raynor-Feil","COP","quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a pede posuere","Tools","goo.ne.jp","2.19611","-75.98","2/13/2016","America/Bogota",6,1],[78,"53329-410","CN","Jieshipu","Cummings Inc","276 Continental Drive","ykneaphsey25@csmonitor.com","Yorker Kneaphsey","Bergstrom, Oberbrunner and Jenkins","CNY","nunc rhoncus dui vel sem sed sagittis nam congue risus semper porta volutpat quam pede lobortis ligula sit amet eleifend","Automotive","utexas.edu","35.61073","105.53784","8/5/2016","Asia/Chongqing",6,2],[79,"0498-2420","JP","Watari","Murazik, Herman and Klein","5 Harbort Place","blockier26@bigcartel.com","Brenn Lockier","Fahey-Schiller","JPY","neque libero convallis eget eleifend luctus ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum","Kids","narod.ru","38.035","140.85111","5/31/2016","Asia/Tokyo",5,1],[80,"69106-070","UZ","Navoiy","Torphy-Kunde","80628 Mcguire Hill","wjery27@dot.gov","Walliw Jery","Will, Fahey and Bernier","UZS","cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus vivamus","Sports","facebook.com","40.08444","65.37917","10/15/2016","Asia/Samarkand",2,2],[81,"49852-006","SI","Ravne","Hettinger-Klocko","636 Village Green Circle","qderell28@cnn.com","Quintus Derell","Moen-Greenfelder","EUR","sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar","Tools","typepad.com","46.41413","15.06087","5/28/2016","Europe/Ljubljana",1,1],[82,"67253-232","PH","Cabadiangan","Beier LLC","01753 Wayridge Point","alyburn29@latimes.com","Annamaria Lyburn","Terry-Weber","PHP","ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices","Electronics","scientificamerican.com","9.7534","122.4739","11/11/2016","Asia/Manila",6,3],[83,"54868-6333","RU","Nakhabino","Krajcik Inc","77 Atwood Place","dvarnam2a@ft.com","Dall Varnam","Metz-Hoeger","RUB","varius ut blandit non interdum in ante vestibulum ante ipsum primis in faucibus orci luctus et ultrices","Music","marriott.com","55.84854","37.17788","6/9/2016","Europe/Moscow",3,2],[84,"0496-0883","VE","El Cafetal","Durgan LLC","722 Orin Trail","kbirkby2b@sciencedaily.com","Kort Birkby","Brekke-Crooks","VEF","massa volutpat convallis morbi odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet","Grocery","github.io","10.46941","-66.83063","5/4/2016","America/Caracas",1,1],[85,"59011-410","CN","Shaxi","Leuschke Inc","0 Scott Parkway","bbaildon2c@apache.org","Booth Baildon","Schumm-Turner","CNY","euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis","Garden","squidoo.com","24.61694","113.67068","2/27/2016","Asia/Chongqing",5,1],[86,"10578-002","CN","Xinpu","Crist-Mayert","6 Lakewood Gardens Plaza","ahaslewood2d@simplemachines.org","Amber Haslewood","Hammes Group","CNY","nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus","Sports","google.ca","30.98227","113.98035","11/12/2016","Asia/Chongqing",2,3],[87,"0591-5454","PH","Busay","Cummerata Inc","52409 Bultman Point","dkorejs2e@census.gov","Domeniga Korejs","Green-Bashirian","PHP","nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh in quis justo","Automotive","amazon.com","10.5378","122.886","4/2/2016","Asia/Manila",2,1],[88,"24385-998","FI","Juupajoki","Aufderhar, Borer and Berge","06 Everett Hill","bvitall2f@qq.com","Belva Vitall","Kassulke, Kub and Parker","EUR","vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus","Movies","yahoo.com","61.79901","24.36939","7/28/2016","Europe/Helsinki",6,3],[89,"42507-484","IR","Kīsh","Purdy, Prosacco and Stamm","07 Morningstar Drive","nbreede2g@delicious.com","Netti Breede","Conroy-Schmitt","IRR","morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id","Music","networkadvertising.org","26.55778","54.01944","3/21/2016","Asia/Tehran",1,1],[90,"0904-6010","BA","Bužim","Howell Inc","57 Anhalt Center","rezzy2h@senate.gov","Rosella Ezzy","Heller-Turcotte","BAM","vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet","Tools","dyndns.org","45.05361","16.03254","6/11/2016","Europe/Sarajevo",3,3],[91,"65044-5285","CR","San Francisco","Orn LLC","979 Quincy Place","lnairy2i@wikia.com","Lyn Nairy","Hermann, Heathcote and Blick","CRC","phasellus in felis donec semper sapien a libero nam dui proin leo odio porttitor id consequat in consequat ut nulla","Industrial","goo.ne.jp","9.99299","-84.12934","10/23/2016","America/Costa_Rica",3,3],[92,"33261-045","TZ","Dongobesh","Haag Inc","5 Rigney Center","avanyakin2j@edublogs.org","Abba Vanyakin","Buckridge, O\'Kon and Cassin","TZS","ligula sit amet eleifend pede libero quis orci nullam molestie nibh in lectus pellentesque at nulla suspendisse","Automotive","weather.com","-4.06667","35.38333","3/8/2016","Africa/Dar_es_Salaam",6,3],[93,"42507-300","CL","Puerto Montt","Rogahn-McClure","9 Scoville Place","edobrovolny2k@ycombinator.com","Estella Dobrovolny","Labadie, Hilll and Ryan","CLP","fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet","Jewelery","vk.com","-41.46574","-72.94289","4/15/2016","America/Santiago",1,2],[94,"58118-2013","PL","Gąsocin","Kris LLC","0 Park Meadow Hill","mhryniewicz2l@dot.gov","Maurizia Hryniewicz","Koss LLC","PLN","vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam","Movies","edublogs.org","52.73754","20.7118","11/16/2016","Europe/Warsaw",4,1],[95,"55504-0500","ID","Besah","Dibbert-Batz","53 Jackson Pass","rdowrey2m@foxnews.com","Robena Dowrey","Stehr, Effertz and Goldner","IDR","diam erat fermentum justo nec condimentum neque sapien placerat ante nulla justo aliquam quis turpis","Jewelery","e-recht24.de","-7.1358","111.6394","6/29/2016","Asia/Jakarta",1,1],[96,"52316-190","TH","Yala","McCullough Group","35 Cordelia Alley","aovett2n@java.com","Agatha Ovett","Schultz, Dooley and Metz","THB","congue eget semper rutrum nulla nunc purus phasellus in felis donec semper sapien a libero nam dui","Books","mashable.com","6.53995","101.28128","10/4/2016","Asia/Bangkok",4,3],[97,"49288-0451","ID","Karangduren Dua","Heller Group","2169 Dixon Center","pkillner2o@fastcompany.com","Padraic Killner","Cruickshank and Sons","IDR","semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero quis orci nullam molestie nibh in lectus","Jewelery","cisco.com","-8.2717","113.4939","8/22/2016","Asia/Jakarta",6,1],[98,"63824-478","KI","Tabwakea Village","Crona LLC","109 Bobwhite Park","jgonsalvo2p@bizjournals.com","Jacquelyn Gonsalvo","Ondricka, Bergnaum and Pfannerstill","AUD","tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc","Toys","networkadvertising.org","2.01643","-157.48773","6/11/2016","Pacific/Honolulu",2,2],[99,"0641-6045","FR","Étampes","Roberts-Wilderman","2950 North Circle","mfeld2q@mayoclinic.com","Mathilda Feld","Satterfield-Keebler","EUR","porta volutpat erat quisque erat eros viverra eget congue eget semper rutrum nulla nunc purus phasellus in felis donec","Grocery","printfriendly.com","48.4333","2.15","7/12/2016","Europe/Paris",2,2],[100,"50436-0124","PL","Drobin","Batz-McLaughlin","66031 Comanche Center","bheaseman2r@theglobeandmail.com","Brita Heaseman","Feeney-Kutch","PLN","id lobortis convallis tortor risus dapibus augue vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero","Beauty","netlog.com","52.73775","19.98928","11/22/2016","Europe/Warsaw",2,1]]');
+
+ var initTable1 = function() {
+ var table = $('#kt_datatable');
+
+ // begin first table
+ table.DataTable({
+ responsive: true,
+ data: dataJSONArray,
+ columnDefs: [
+ {
+ targets: -1,
+ title: 'Actions',
+ orderable: false,
+ render: function(data, type, full, meta) {
+ return '\
+
\
+ \
+ \
+ \
+ \
+ \
+ \
+ ';
+ },
+ },
+ ],
+ });
+ };
+
+ return {
+
+ //main function to initiate the module
+ init: function() {
+ initTable1();
+ },
+
+ };
+
+}();
+
+jQuery(document).ready(function() {
+ KTDatatablesDataSourceHtml.init();
+});
diff --git a/public/assets/js/pages/crud/datatables/data-sources/javascript.min.js b/public/assets/js/pages/crud/datatables/data-sources/javascript.min.js
new file mode 100644
index 0000000..6ca5ac3
--- /dev/null
+++ b/public/assets/js/pages/crud/datatables/data-sources/javascript.min.js
@@ -0,0 +1 @@
+"use strict";var KTDatatablesDataSourceHtml=function(){var e=JSON.parse('[[1,"54473-251","GT","San Pedro Ayampuc","Sanford-Halvorson","897 Magdeline Park","sgormally0@dot.gov","Shandra Gormally","Eichmann, Upton and Homenick","GTQ","sit amet cursus id turpis integer aliquet massa id lobortis convallis","Computers","house.gov","14.78667","-90.45111","5/21/2016","America/Guatemala",1,2],[2,"41250-308","ID","Langensari","Denesik-Langosh","9 Brickson Park Junction","eivanonko1@over-blog.com","Estele Ivanonko","Lowe, Batz and Purdy","IDR","lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet","Baby","arizona.edu","-6.4222","105.9425","4/19/2016","Asia/Jakarta",1,3],[3,"0615-7571","HR","Slatina","Kunze, Schneider and Cronin","35712 Sundown Parkway","sbettley2@gmpg.org","Stephine Bettley","Bernier, Weimann and Wuckert","HRK","cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus vivamus","Toys","rakuten.co.jp","45.70333","17.70278","4/7/2016","Europe/Zagreb",6,3],[4,"49349-551","RU","Novo-Peredelkino","Jacobi-Ankunding","481 Sage Park","dmartijn3@printfriendly.com","Damara Martijn","Tromp-Hegmann","RUB","cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus etiam","Baby","t-online.de","55.64528","37.33583","2/15/2016","Europe/Moscow",4,2],[5,"59779-750","ID","Bombu","Johns-Kunze","59 Marcy Hill","hpelzer4@friendfeed.com","Helsa Pelzer","Walker LLC","IDR","non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit","Toys","xrea.com","-8.6909","120.5162","1/30/2017","Asia/Makassar",4,3],[6,"63777-145","CN","Kaiyuan","Kris, Keeling and Weimann","122 Evergreen Street","sheugel5@mysql.com","Sigismundo Heugel","D\'Amore-Johnston","CNY","tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in","Tools","gravatar.com","42.53306","124.04028","10/22/2016","Asia/Harbin",3,3],[7,"57520-0136","GR","Tríkala","Effertz Inc","328 8th Avenue","cewell6@reverbnation.com","Clarinda Ewell","Jakubowski and Sons","EUR","magnis dis parturient montes nascetur ridiculus mus vivamus vestibulum sagittis sapien","Music","msu.edu","40.59814","22.55733","9/3/2016","Europe/Athens",4,1],[8,"0093-5200","SE","Köping","West-Ullrich","48 Sommers Junction","adevenny7@webnode.com","Ariel Devenny","Goldner, Bartoletti and Towne","SEK","mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed sagittis nam congue risus","Jewelery","flavors.me","59.514","15.9926","2/10/2016","Europe/Stockholm",2,3],[9,"14783-319","ID","Ujung","Stiedemann-Kemmer","10625 Dixon Road","bplewright8@mashable.com","Buck Plewright","Boyer and Sons","IDR","habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id mauris vulputate elementum","Music","odnoklassniki.ru","-8.2137","114.3818","11/11/2016","Asia/Makassar",2,3],[10,"59011-454","CO","Salento","Daniel-Feest","48004 Mariners Cove Circle","gliddon9@wordpress.org","Gilberta Liddon","Nienow-Dickens","COP","dolor sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit","Electronics","deliciousdays.com","4.6375","-75.57028","12/15/2016","America/Bogota",6,2],[11,"0268-1530","ID","Sarkanjut","Mraz-Parisian","9630 Scoville Road","oheusticea@buzzfeed.com","Odetta Heustice","Gorczany-Mohr","IDR","interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue vivamus","Electronics","pagesperso-orange.fr","-7.10896","107.94173","7/28/2016","Asia/Jakarta",5,3],[12,"53057-012","CN","Baiguo","Reinger, Roberts and Medhurst","29238 Waywood Road","blillistoneb@ftc.gov","Brittne Lillistone","Schimmel, Bauch and Ortiz","CNY","ultrices posuere cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a feugiat","Toys","typepad.com","29.8841","110.45615","9/23/2016","Asia/Chongqing",5,3],[13,"58232-9814","PL","Wołczyn","Stanton-Davis","63 Dwight Junction","oharlinc@whitehouse.gov","Oralia Harlin","Hagenes, Dicki and Rowe","PLN","felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed","Jewelery","usnews.com","51.01845","18.04994","1/15/2017","Europe/Warsaw",2,2],[14,"41163-369","CA","Lanigan","Abbott, Lockman and Roberts","02 Florence Trail","ffultond@omniture.com","Flinn Fulton","Jaskolski, O\'Kon and Crona","CAD","congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed","Clothing","biblegateway.com","51.85006","-105.03443","9/17/2016","America/Regina",2,3],[15,"63824-302","GR","Patitírion","Klein-Tillman","0 Londonderry Crossing","jitzkovskye@un.org","Jessey Itzkovsky","Blanda Inc","EUR","eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium","Grocery","opensource.org","39.14657","23.86494","2/13/2016","Europe/Athens",5,2],[16,"55670-109","RU","Ozëry","Buckridge, Klein and Williamson","00 Fremont Point","ddiggf@epa.gov","Deidre Digg","Miller, Morissette and Klocko","RUB","montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque","Grocery","google.ca","54.85998","38.55062","5/23/2016","Europe/Moscow",6,1],[17,"29500-9090","CN","Dingshu","Yundt Inc","538 Saint Paul Plaza","haldcorneg@salon.com","Hilliary Aldcorne","MacGyver-Goyette","CNY","vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus dolor vel est donec","Games","spotify.com","31.2573","119.84881","11/25/2016","Asia/Shanghai",1,2],[18,"49349-872","UA","Manevychi","Kris, Bahringer and Kerluke","2873 Pearson Trail","kramalheteh@163.com","Kare Ramalhete","Doyle, Lowe and Greenholt","UAH","magnis dis parturient montes nascetur ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida","Games","utexas.edu","51.29405","25.53436","9/19/2016","Europe/Uzhgorod",6,3],[19,"41163-368","JP","Fukushima-shi","Kemmer-Padberg","9748 Graedel Point","dcadigani@pagesperso-orange.fr","Devan Cadigan","Botsford, Larkin and Brekke","JPY","at dolor quis odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi nam","Beauty","feedburner.com","37.75","140.46778","12/6/2016","Asia/Tokyo",2,1],[20,"49999-844","AM","Malishka","Aufderhar Group","25198 Lotheville Alley","opettusj@ehow.com","Ole Pettus","Schultz and Sons","AMD","phasellus in felis donec semper sapien a libero nam dui proin leo odio porttitor id","Games","usda.gov","39.73758","45.39004","6/24/2016","Asia/Baku",2,3],[21,"37000-106","CN","Jincheng","Paucek, Towne and Lind","573 Hovde Way","hhickeringillk@discuz.net","Harwell Hickeringill","Kreiger Inc","CNY","elementum nullam varius nulla facilisi cras non velit nec nisi","Garden","google.it","25.50147","102.40058","1/5/2017","Asia/Chongqing",6,3],[22,"42023-169","JM","New Kingston","Halvorson-Greenfelder","055 Maryland Point","cwaszczykl@stumbleupon.com","Claire Waszczyk","Halvorson and Sons","JMD","duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac nibh","Music","ustream.tv","18.00747","-76.78319","9/14/2016","America/Jamaica",5,3],[23,"57520-0581","BR","Formosa do Rio Preto","Heaney LLC","1 Fordem Junction","hcominettim@phoca.cz","Hettie Cominetti","Nikolaus LLC","BRL","integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in","Home","irs.gov","-11.04833","-45.19306","6/4/2016","America/Bahia",1,1],[24,"57520-0625","CN","Tushi","Hayes, Considine and Kohler","502 Kennedy Junction","despinon@msn.com","Doroteya Espino","Macejkovic, Schaden and Terry","CNY","posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor","Health","live.com","28.91746","108.86704","2/12/2016","Asia/Chongqing",2,1],[25,"37000-616","SE","Hallstahammar","Bartoletti and Sons","4756 Tony Terrace","kgeorgesono@ucsd.edu","Klement Georgeson","Ernser Group","SEK","rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut","Automotive","ezinearticles.com","59.6139","16.2285","12/28/2016","Europe/Stockholm",5,2],[26,"35356-933","RU","Koshki","Adams-Kohler","16912 Forest Run Circle","rbengerp@comsenz.com","Ricoriki Benger","Dickinson, Adams and Thiel","RUB","nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin","Garden","chicagotribune.com","54.20914","50.46767","11/27/2016","Europe/Moscow",1,3],[27,"36987-2295","FI","Piippola","Bayer Inc","5479 Oakridge Parkway","rgawthropeq@imdb.com","Raeann Gawthrope","Greenholt-Rosenbaum","EUR","justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas","Computers","google.com.hk","64.16667","25.96667","4/1/2016","Europe/Helsinki",4,3],[28,"36987-1170","VN","Thanh Chương","Murray-Wiegand","5604 Harper Lane","eweekleyr@narod.ru","Enrichetta Weekley","Stark, Weimann and Hickle","VND","elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget semper","Outdoors","yahoo.co.jp","18.77877","105.33356","6/1/2016","Asia/Ho_Chi_Minh",5,2],[29,"65597-101","JP","Takasaki","Doyle-McDermott","71 Victoria Alley","predfernes@ox.ac.uk","Phoebe Redferne","Paucek, Kutch and Pfannerstill","JPY","nibh in lectus pellentesque at nulla suspendisse potenti cras in purus eu magna vulputate luctus","Clothing","newyorker.com","36.33333","139.01667","8/23/2016","Asia/Tokyo",4,1],[30,"49035-350","PE","Charat","Gislason Inc","67308 Dixon Street","mdabernottt@buzzfeed.com","Milka Dabernott","Weimann-Schoen","PEN","nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat","Games","list-manage.com","-7.83333","-78.45","7/11/2016","America/Lima",6,3],[31,"49839-200","CN","Haoxue","Thompson Group","78 Pond Circle","gcolatonu@freewebs.com","Gale Colaton","Krajcik, Koch and Bayer","CNY","porttitor id consequat in consequat ut nulla sed accumsan felis ut","Home","devhub.com","30.04761","112.46759","1/13/2017","Asia/Chongqing",3,3],[32,"62699-1114","UY","Santa Catalina","Koch Inc","43 Hintze Street","sstronachv@npr.org","Sula Stronach","Boyle and Sons","UYU","dolor vel est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum","Clothing","homestead.com","-33.75","-57.48333","7/22/2016","America/Montevideo",4,1],[33,"45802-257","FR","Toulouse","McLaughlin LLC","997 Redwing Place","jmcilennaw@accuweather.com","Jena McIlenna","Blanda Group","EUR","morbi ut odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit","Baby","msu.edu","43.6043","1.4437","12/4/2016","Europe/Paris",6,2],[34,"52125-212","CU","Niquero","Cole Group","2 Sugar Hill","mosannex@sakura.ne.jp","Myrtia Osanne","Price-Goyette","CUP","tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus","Clothing","netlog.com","20.04478","-77.5851","8/8/2016","America/Havana",3,1],[35,"16590-745","PE","Tacna","Bernier Inc","9883 Nancy Alley","sjobey@phoca.cz","Sammie Jobe","Tromp LLC","PEN","non sodales sed tincidunt eu felis fusce posuere felis sed lacus","Shoes","arstechnica.com","-18.01465","-70.25362","11/21/2016","America/Lima",2,2],[36,"60505-0132","PH","Capissayan Sur","Volkman-Hickle","76 Linden Terrace","gpoliz@weibo.com","Gaby Poli","Metz, Herman and Leannon","PHP","nibh fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a","Music","squarespace.com","18.0509","121.8177","8/8/2016","Asia/Manila",1,3],[37,"68428-071","KW","Janūb as Surrah","Kuhlman, Berge and Jacobi","68942 Crowley Lane","gmoir10@va.gov","Garrard Moir","Bosco and Sons","KWD","lobortis ligula sit amet eleifend pede libero quis orci nullam molestie nibh in lectus","Grocery","aol.com","29.26917","47.97806","3/27/2016","Asia/Kuwait",6,2],[38,"61543-7772","CN","Quanling","Considine-Russel","0 Duke Court","upoag11@livejournal.com","Ulrick Poag","Murazik and Sons","CNY","erat quisque erat eros viverra eget congue eget semper rutrum nulla nunc purus phasellus in felis donec semper","Home","netscape.com","28.37799","116.07202","11/23/2016","Asia/Shanghai",2,2],[39,"63941-449","RS","Doroslovo","Langworth Inc","0 Bashford Point","odanskine12@whitehouse.gov","Osgood Danskine","Rau, Abshire and Waelchi","RSD","orci pede venenatis non sodales sed tincidunt eu felis fusce posuere","Tools","cornell.edu","45.60699","19.18868","8/13/2016","Europe/Belgrade",4,3],[40,"34954-014","BR","São José","Zieme, Witting and Haley","763 Dunning Road","cianson13@google.com.hk","Chloris Ianson","Krajcik, Balistreri and Hammes","BRL","sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh in","Music","ucsd.edu","-28.21171","-49.1632","6/11/2016","America/Sao_Paulo",2,1],[41,"21695-709","RU","Spirovo","Bode and Sons","126 Meadow Vale Terrace","ctomasik14@nps.gov","Claire Tomasik","Orn Group","RUB","eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante","Baby","over-blog.com","57.41905","34.97658","4/18/2016","Europe/Moscow",1,2],[42,"0054-3566","CZ","Hostouň","Pfeffer Inc","08 Crowley Center","pknewstubb15@jugem.jp","Paton Knewstubb","Kiehn, Goyette and Oberbrunner","CZK","condimentum curabitur in libero ut massa volutpat convallis morbi odio odio elementum eu interdum eu tincidunt in leo maecenas","Home","bloglines.com","49.55971","12.77147","1/14/2017","Europe/Berlin",3,2],[43,"61787-499","PL","Siewierz","Anderson, Gottlieb and Grimes","743 Clove Circle","hhartshorne16@angelfire.com","Hedvig Hartshorne","Kihn-Nitzsche","PLN","nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed","Beauty","blogspot.com","50.46657","19.23028","7/3/2016","Europe/Warsaw",6,3],[44,"0944-2963","PL","Kaniów","Herman, Tromp and Hansen","1403 Hansons Terrace","dsisland17@census.gov","Deva Sisland","Bogan Inc","PLN","nulla suspendisse potenti cras in purus eu magna vulputate luctus cum","Shoes","ocn.ne.jp","50.98577","20.66391","1/2/2017","Europe/Warsaw",4,1],[45,"10356-831","MN","Erdenet","Heidenreich-Simonis","85 Columbus Trail","cboneham18@barnesandnoble.com","Christophorus Boneham","Wuckert Inc","MNT","pharetra magna ac consequat metus sapien ut nunc vestibulum ante","Automotive","cafepress.com","48.94877","99.53665","11/5/2016","Asia/Ulaanbaatar",4,2],[46,"51630-003","CN","Zhongshi","Harvey, Halvorson and Howe","0 Pine View Avenue","tbone19@yahoo.co.jp","Teresa Bone","Macejkovic-Ryan","CNY","vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra","Books","hubpages.com","25.38746","115.41678","5/23/2016","Asia/Chongqing",2,2],[47,"53942-243","AR","Anguil","Mante, Huels and Considine","87 Corscot Street","hcoupe1a@dagondesign.com","Harmon Coupe","Hand, Hoppe and Eichmann","ARS","sed justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam","Electronics","posterous.com","-36.52567","-64.01025","3/14/2016","America/Argentina/Salta",1,3],[48,"67544-889","RU","Losevo","Cruickshank, Botsford and Johns","94653 Granby Court","bvalentino1b@fda.gov","Bobbe Valentino","Weimann-Beier","RUB","non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam","Sports","aboutads.info","50.67667","40.045","1/1/2017","Europe/Moscow",3,2],[49,"21130-352","ID","Dinjo","Trantow, Halvorson and Jacobs","076 Johnson Park","rtissington1c@desdev.cn","Rollins Tissington","West-Douglas","IDR","nisl nunc nisl duis bibendum felis sed interdum venenatis turpis","Music","blogger.com","-9.5942","119.0138","7/13/2016","Asia/Makassar",4,3],[50,"42291-625","GR","Agía Triáda","Collins, Hamill and Schneider","74661 Myrtle Junction","vwoolford1d@cmu.edu","Vasilis Woolford","Koelpin, Dietrich and Wilkinson","EUR","sit amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus","Books","netscape.com","40.50003","22.87351","11/5/2016","Europe/Athens",1,2],[51,"68327-006","GE","Bolnisi","Farrell and Sons","38 Melrose Way","gmcrorie1e@techcrunch.com","Galina McRorie","Yundt, Johns and Kuphal","GEL","nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in","Jewelery","samsung.com","41.44794","44.53838","6/24/2016","Asia/Tbilisi",1,3],[52,"55154-6125","ID","Menanga","Jerde-Carroll","3 Forster Lane","fharpin1f@merriam-webster.com","Fran Harpin","Gleason Inc","IDR","aliquam non mauris morbi non lectus aliquam sit amet diam","Books","desdev.cn","-8.436","123.0868","2/22/2016","Asia/Makassar",2,1],[53,"52125-217","PT","Monte Novo","Cremin Group","46 Homewood Junction","lrose1g@google.com.hk","Lorelle Rose","Franecki-Littel","EUR","odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est","Computers","e-recht24.de","38.15","-8.8167","5/25/2016","Europe/Lisbon",1,2],[54,"50346-003","CN","Lincuo","Gerhold and Sons","450 Mallard Court","dshugg1h@japanpost.jp","Dori Shugg","Weimann, Kohler and Rosenbaum","CNY","velit donec diam neque vestibulum eget vulputate ut ultrices vel","Electronics","mtv.com","23.66062","117.25946","11/28/2016","Asia/Shanghai",4,2],[55,"65954-014","ID","Nusajaya","Kutch Group","66 Hagan Alley","llaughnan1i@wsj.com","Laird Laughnan","Botsford Inc","IDR","rutrum rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut","Baby","npr.org","-8.4817","118.3064","3/12/2016","Asia/Makassar",4,3],[56,"49738-116","HR","Bistrinci","Marks-Treutel","37 Randy Park","sslidders1j@lycos.com","Suzanna Slidders","Macejkovic, Miller and Cartwright","HRK","quam nec dui luctus rutrum nulla tellus in sagittis dui vel","Garden","tripod.com","45.69167","18.39861","12/29/2016","Europe/Zagreb",2,3],[57,"59667-0069","FR","Paris 12","Mayer-Ernser","81 Killdeer Road","lgravatt1k@nps.gov","Lewes Gravatt","Brown, Ryan and Quitzon","EUR","arcu sed augue aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac habitasse platea","Beauty","redcross.org","48.8412","2.3876","7/12/2016","Europe/Paris",5,1],[58,"63739-547","VN","Trảng Bom","McLaughlin LLC","00 Barnett Place","mkroin1l@webeden.co.uk","Marina Kroin","Robel and Sons","VND","luctus rutrum nulla tellus in sagittis dui vel nisl duis","Automotive","ustream.tv","10.95358","107.00589","4/3/2016","Asia/Ho_Chi_Minh",3,2],[59,"54569-0909","CN","Lizi","Lowe-Sauer","4 Park Meadow Trail","bcannam1m@scientificamerican.com","Bobby Cannam","Sipes-Stiedemann","CNY","lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas","Toys","technorati.com","29.81127","107.92447","8/5/2016","Asia/Chongqing",5,1],[60,"54868-5657","AL","Patos Fshat","Kris and Sons","51 Talisman Alley","bheymann1n@ihg.com","Bunny Heymann","Abernathy, Luettgen and Becker","ALL","vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus semper","Grocery","guardian.co.uk","40.64278","19.65083","3/25/2016","Europe/Tirane",3,3],[61,"49288-0467","CN","Kouqian","Morar-Lynch","77 Tomscot Alley","bbriance1o@furl.net","Barbara Briance","Zulauf-Kihn","CNY","odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede","Books","icio.us","43.63914","126.45784","6/11/2016","Asia/Harbin",2,1],[62,"14783-455","PL","Niemodlin","Spinka, Hackett and Leannon","45 Orin Plaza","vgapp1p@pinterest.com","Vikky Gapp","Williamson, Champlin and Zieme","PLN","cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes","Games","wisc.edu","50.642","17.61932","9/30/2016","Europe/Warsaw",2,3],[63,"58232-0029","CN","Zhoukou","Wyman, Swift and Homenick","111 Banding Street","jann1q@drupal.org","Jo ann Henzer","Wolff, Halvorson and Ebert","CNY","metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci","Health","mozilla.com","27.69684","118.91938","7/23/2016","Asia/Shanghai",5,1],[64,"54868-5397","CN","Baima","Schaefer Group","26078 Goodland Circle","eironmonger1r@weather.com","Ernest Ironmonger","Boyle, Schowalter and Jast","CNY","nisl aenean lectus pellentesque eget nunc donec quis orci eget orci vehicula condimentum","Baby","google.de","31.58261","119.17219","3/6/2016","Asia/Shanghai",3,2],[65,"69069-101","US","Stamford","Runte-Champlin","7 Portage Court","kjacop1s@prlog.org","Karylin Jacop","Kuphal Group","USD","at vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis","Industrial","upenn.edu","41.0888","-73.5435","5/1/2016","America/New_York",5,3],[66,"30142-022","ID","Tebanah","Hudson-Fay","75 Mendota Parkway","cmoncrefe1t@craigslist.org","Cherise Moncrefe","Block Group","IDR","orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor","Outdoors","is.gd","-6.9213","113.2043","7/8/2016","Asia/Jakarta",5,2],[67,"16729-115","ID","Tracal","Beier and Sons","93758 Gale Street","celfes1u@usa.gov","Clarie Elfes","Heidenreich Group","IDR","tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet","Grocery","usatoday.com","-6.9824","112.3381","6/27/2016","Asia/Jakarta",3,2],[68,"51147-5010","RU","Volzhsk","Beatty Group","11023 Barnett Park","ibehnecken1v@linkedin.com","Isadore Behnecken","Gottlieb-Douglas","RUB","lobortis ligula sit amet eleifend pede libero quis orci nullam","Shoes","weather.com","55.86638","48.3594","7/8/2016","Europe/Moscow",2,2],[69,"57520-0435","CU","Venezuela","Mante-Kunze","7137 Sutteridge Place","gclemmey1w@hud.gov","Gerty Clemmey","Schulist, Blanda and Donnelly","CUP","donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac","Automotive","ocn.ne.jp","21.73528","-78.79639","4/24/2016","America/Havana",1,2],[70,"41250-990","ID","Kepel","Rogahn and Sons","350 Continental Alley","jogle1x@dot.gov","Jay Ogle","Botsford LLC","IDR","nulla suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient","Music","angelfire.com","-8.1157","112.4289","4/28/2016","Asia/Jakarta",3,3],[71,"52125-726","MA","Riah","Friesen, O\'Connell and Volkman","72001 3rd Point","bdutnell1y@stumbleupon.com","Beverie Dutnell","Lowe, Pacocha and Grimes","MAD","ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec","Kids","chronoengine.com","33.15122","-7.37504","6/9/2016","Africa/Casablanca",3,2],[72,"68645-478","GB","Milton","Kohler-Wolff","674 Texas Plaza","cduddin1z@blogtalkradio.com","Carin Duddin","Feil, Wolf and Nicolas","GBP","sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis","Beauty","storify.com","53.1805","-0.9766","2/19/2016","Europe/London",4,2],[73,"53942-503","TH","Khok Sung","Denesik-Dach","3 Eastwood Hill","uluety20@parallels.com","Ulrika Luety","Halvorson-Koch","THB","dolor sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum","Kids","virginia.edu","13.83824","102.62254","8/29/2016","Asia/Bangkok",4,2],[74,"10742-8123","CN","Yilkiqi","Little Group","2039 Katie Circle","hblazic21@tripod.com","Hugh Blazic","Kunze Inc","CNY","tristique fusce congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed augue aliquam erat volutpat","Jewelery","biglobe.ne.jp","37.96111","77.24917","11/12/2016","Asia/Kashgar",4,2],[75,"11523-7313","MX","Vicente Guerrero","Larson Inc","14 Fieldstone Alley","apinke22@apple.com","Antonie Pinke","Gislason, Hessel and Heaney","MXN","lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus sit amet sem","Tools","slideshare.net","19.058","-97.818","7/4/2016","America/Mexico_City",3,3],[76,"0406-9959","YE","Ash Sharyah","Huel-Bednar","880 Florence Hill","cdust23@is.gd","Corbie Dust","Cummerata LLC","YER","purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur","Electronics","booking.com","14.35659","45.02244","8/15/2016","Asia/Aden",4,1],[77,"63824-479","CO","La Argentina","Okuneva Inc","9346 Jana Alley","sde24@bigcartel.com","Sidonnie De Avenell","Raynor-Feil","COP","quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a pede posuere","Tools","goo.ne.jp","2.19611","-75.98","2/13/2016","America/Bogota",6,1],[78,"53329-410","CN","Jieshipu","Cummings Inc","276 Continental Drive","ykneaphsey25@csmonitor.com","Yorker Kneaphsey","Bergstrom, Oberbrunner and Jenkins","CNY","nunc rhoncus dui vel sem sed sagittis nam congue risus semper porta volutpat quam pede lobortis ligula sit amet eleifend","Automotive","utexas.edu","35.61073","105.53784","8/5/2016","Asia/Chongqing",6,2],[79,"0498-2420","JP","Watari","Murazik, Herman and Klein","5 Harbort Place","blockier26@bigcartel.com","Brenn Lockier","Fahey-Schiller","JPY","neque libero convallis eget eleifend luctus ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum","Kids","narod.ru","38.035","140.85111","5/31/2016","Asia/Tokyo",5,1],[80,"69106-070","UZ","Navoiy","Torphy-Kunde","80628 Mcguire Hill","wjery27@dot.gov","Walliw Jery","Will, Fahey and Bernier","UZS","cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus vivamus","Sports","facebook.com","40.08444","65.37917","10/15/2016","Asia/Samarkand",2,2],[81,"49852-006","SI","Ravne","Hettinger-Klocko","636 Village Green Circle","qderell28@cnn.com","Quintus Derell","Moen-Greenfelder","EUR","sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar","Tools","typepad.com","46.41413","15.06087","5/28/2016","Europe/Ljubljana",1,1],[82,"67253-232","PH","Cabadiangan","Beier LLC","01753 Wayridge Point","alyburn29@latimes.com","Annamaria Lyburn","Terry-Weber","PHP","ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices","Electronics","scientificamerican.com","9.7534","122.4739","11/11/2016","Asia/Manila",6,3],[83,"54868-6333","RU","Nakhabino","Krajcik Inc","77 Atwood Place","dvarnam2a@ft.com","Dall Varnam","Metz-Hoeger","RUB","varius ut blandit non interdum in ante vestibulum ante ipsum primis in faucibus orci luctus et ultrices","Music","marriott.com","55.84854","37.17788","6/9/2016","Europe/Moscow",3,2],[84,"0496-0883","VE","El Cafetal","Durgan LLC","722 Orin Trail","kbirkby2b@sciencedaily.com","Kort Birkby","Brekke-Crooks","VEF","massa volutpat convallis morbi odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet","Grocery","github.io","10.46941","-66.83063","5/4/2016","America/Caracas",1,1],[85,"59011-410","CN","Shaxi","Leuschke Inc","0 Scott Parkway","bbaildon2c@apache.org","Booth Baildon","Schumm-Turner","CNY","euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis","Garden","squidoo.com","24.61694","113.67068","2/27/2016","Asia/Chongqing",5,1],[86,"10578-002","CN","Xinpu","Crist-Mayert","6 Lakewood Gardens Plaza","ahaslewood2d@simplemachines.org","Amber Haslewood","Hammes Group","CNY","nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus","Sports","google.ca","30.98227","113.98035","11/12/2016","Asia/Chongqing",2,3],[87,"0591-5454","PH","Busay","Cummerata Inc","52409 Bultman Point","dkorejs2e@census.gov","Domeniga Korejs","Green-Bashirian","PHP","nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh in quis justo","Automotive","amazon.com","10.5378","122.886","4/2/2016","Asia/Manila",2,1],[88,"24385-998","FI","Juupajoki","Aufderhar, Borer and Berge","06 Everett Hill","bvitall2f@qq.com","Belva Vitall","Kassulke, Kub and Parker","EUR","vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus","Movies","yahoo.com","61.79901","24.36939","7/28/2016","Europe/Helsinki",6,3],[89,"42507-484","IR","Kīsh","Purdy, Prosacco and Stamm","07 Morningstar Drive","nbreede2g@delicious.com","Netti Breede","Conroy-Schmitt","IRR","morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id","Music","networkadvertising.org","26.55778","54.01944","3/21/2016","Asia/Tehran",1,1],[90,"0904-6010","BA","Bužim","Howell Inc","57 Anhalt Center","rezzy2h@senate.gov","Rosella Ezzy","Heller-Turcotte","BAM","vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet","Tools","dyndns.org","45.05361","16.03254","6/11/2016","Europe/Sarajevo",3,3],[91,"65044-5285","CR","San Francisco","Orn LLC","979 Quincy Place","lnairy2i@wikia.com","Lyn Nairy","Hermann, Heathcote and Blick","CRC","phasellus in felis donec semper sapien a libero nam dui proin leo odio porttitor id consequat in consequat ut nulla","Industrial","goo.ne.jp","9.99299","-84.12934","10/23/2016","America/Costa_Rica",3,3],[92,"33261-045","TZ","Dongobesh","Haag Inc","5 Rigney Center","avanyakin2j@edublogs.org","Abba Vanyakin","Buckridge, O\'Kon and Cassin","TZS","ligula sit amet eleifend pede libero quis orci nullam molestie nibh in lectus pellentesque at nulla suspendisse","Automotive","weather.com","-4.06667","35.38333","3/8/2016","Africa/Dar_es_Salaam",6,3],[93,"42507-300","CL","Puerto Montt","Rogahn-McClure","9 Scoville Place","edobrovolny2k@ycombinator.com","Estella Dobrovolny","Labadie, Hilll and Ryan","CLP","fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet","Jewelery","vk.com","-41.46574","-72.94289","4/15/2016","America/Santiago",1,2],[94,"58118-2013","PL","Gąsocin","Kris LLC","0 Park Meadow Hill","mhryniewicz2l@dot.gov","Maurizia Hryniewicz","Koss LLC","PLN","vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam","Movies","edublogs.org","52.73754","20.7118","11/16/2016","Europe/Warsaw",4,1],[95,"55504-0500","ID","Besah","Dibbert-Batz","53 Jackson Pass","rdowrey2m@foxnews.com","Robena Dowrey","Stehr, Effertz and Goldner","IDR","diam erat fermentum justo nec condimentum neque sapien placerat ante nulla justo aliquam quis turpis","Jewelery","e-recht24.de","-7.1358","111.6394","6/29/2016","Asia/Jakarta",1,1],[96,"52316-190","TH","Yala","McCullough Group","35 Cordelia Alley","aovett2n@java.com","Agatha Ovett","Schultz, Dooley and Metz","THB","congue eget semper rutrum nulla nunc purus phasellus in felis donec semper sapien a libero nam dui","Books","mashable.com","6.53995","101.28128","10/4/2016","Asia/Bangkok",4,3],[97,"49288-0451","ID","Karangduren Dua","Heller Group","2169 Dixon Center","pkillner2o@fastcompany.com","Padraic Killner","Cruickshank and Sons","IDR","semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero quis orci nullam molestie nibh in lectus","Jewelery","cisco.com","-8.2717","113.4939","8/22/2016","Asia/Jakarta",6,1],[98,"63824-478","KI","Tabwakea Village","Crona LLC","109 Bobwhite Park","jgonsalvo2p@bizjournals.com","Jacquelyn Gonsalvo","Ondricka, Bergnaum and Pfannerstill","AUD","tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc","Toys","networkadvertising.org","2.01643","-157.48773","6/11/2016","Pacific/Honolulu",2,2],[99,"0641-6045","FR","Étampes","Roberts-Wilderman","2950 North Circle","mfeld2q@mayoclinic.com","Mathilda Feld","Satterfield-Keebler","EUR","porta volutpat erat quisque erat eros viverra eget congue eget semper rutrum nulla nunc purus phasellus in felis donec","Grocery","printfriendly.com","48.4333","2.15","7/12/2016","Europe/Paris",2,2],[100,"50436-0124","PL","Drobin","Batz-McLaughlin","66031 Comanche Center","bheaseman2r@theglobeandmail.com","Brita Heaseman","Feeney-Kutch","PLN","id lobortis convallis tortor risus dapibus augue vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero","Beauty","netlog.com","52.73775","19.98928","11/22/2016","Europe/Warsaw",2,1]]');return{init:function(){$("#kt_datatable").DataTable({responsive:!0,data:e,columnDefs:[{targets:-1,title:"Actions",orderable:!1,render:function(e,a,i,n){return'\t\t\t\t\t\t\t
';
+
+ return html;
+ } catch (err) {}
+ }
+ },
+ transformTag: function(tagData) {
+ tagData.class = 'tagify__tag tagify__tag--primary';
+ },
+ dropdown : {
+ classname : "color-blue",
+ enabled : 1,
+ maxItems : 5
+ }
+ });
+ }
+
+ return {
+ // public functions
+ init: function() {
+ demo1();
+ demo1Readonly();
+
+ demo2();
+ demo3();
+ demo4();
+ demo5();
+ }
+ };
+}();
+
+jQuery(document).ready(function() {
+ KTTagifyDemos.init();
+});
diff --git a/public/assets/js/pages/crud/forms/widgets/tagify.min.js b/public/assets/js/pages/crud/forms/widgets/tagify.min.js
new file mode 100644
index 0000000..3db4299
--- /dev/null
+++ b/public/assets/js/pages/crud/forms/widgets/tagify.min.js
@@ -0,0 +1 @@
+var KTTagifyDemos={init:function(){var e,a;!function(){var e=document.getElementById("kt_tagify_1"),a=new Tagify(e,{whitelist:["A# .NET","A# (Axiom)","A-0 System","A+","A++","ABAP","ABC","ABC ALGOL","ABSET","ABSYS","ACC","Accent","Ace DASL","ACL2","Avicsoft","ACT-III","Action!","ActionScript","Ada","Adenine","Agda","Agilent VEE","Agora","AIMMS","Alef","ALF","ALGOL 58","ALGOL 60","ALGOL 68","ALGOL W","Alice","Alma-0","AmbientTalk","Amiga E","AMOS","AMPL","Apex (Salesforce.com)","APL","AppleScript","Arc","ARexx","Argus","AspectJ","Assembly language","ATS","Ateji PX","AutoHotkey","Autocoder","AutoIt","AutoLISP / Visual LISP","Averest","AWK","Axum","Active Server Pages","ASP.NET","B","Babbage","Bash","BASIC","bc","BCPL","BeanShell","Batch (Windows/Dos)","Bertrand","BETA","Bigwig","Bistro","BitC","BLISS","Blockly","BlooP","Blue","Boo","Boomerang","Bourne shell (including bash and ksh)","BREW","BPEL","B","C--","C++ – ISO/IEC 14882","C# – ISO/IEC 23270","C/AL","Caché ObjectScript","C Shell","Caml","Cayenne","CDuce","Cecil","Cesil","Céu","Ceylon","CFEngine","CFML","Cg","Ch","Chapel","Charity","Charm","Chef","CHILL","CHIP-8","chomski","ChucK","CICS","Cilk","Citrine (programming language)","CL (IBM)","Claire","Clarion","Clean","Clipper","CLIPS","CLIST","Clojure","CLU","CMS-2","COBOL – ISO/IEC 1989","CobolScript – COBOL Scripting language","Cobra","CODE","CoffeeScript","ColdFusion","COMAL","Combined Programming Language (CPL)","COMIT","Common Intermediate Language (CIL)","Common Lisp (also known as CL)","COMPASS","Component Pascal","Constraint Handling Rules (CHR)","COMTRAN","Converge","Cool","Coq","Coral 66","Corn","CorVision","COWSEL","CPL","CPL","Cryptol","csh","Csound","CSP","CUDA","Curl","Curry","Cybil","Cyclone","Cython","Java","Javascript","M2001","M4","M#","Machine code","MAD (Michigan Algorithm Decoder)","MAD/I","Magik","Magma","make","Maple","MAPPER now part of BIS","MARK-IV now VISION:BUILDER","Mary","MASM Microsoft Assembly x86","MATH-MATIC","Mathematica","MATLAB","Maxima (see also Macsyma)","Max (Max Msp – Graphical Programming Environment)","Maya (MEL)","MDL","Mercury","Mesa","Metafont","Microcode","MicroScript","MIIS","Milk (programming language)","MIMIC","Mirah","Miranda","MIVA Script","ML","Model 204","Modelica","Modula","Modula-2","Modula-3","Mohol","MOO","Mortran","Mouse","MPD","Mathcad","MSIL – deprecated name for CIL","MSL","MUMPS","Mystic Programming L"],blacklist:[".NET","PHP"]});document.getElementById("kt_tagify_1_remove").addEventListener("click",a.removeAllTags.bind(a)),a.on("add",function i(o){console.log("onAddTag: ",o.detail),console.log("original input value: ",e.value),a.off("add",i)}).on("remove",function(e){console.log(e.detail),console.log("tagify instance value:",a.value)}).on("input",function(e){console.log(e.detail),console.log("onInput: ",e.detail)}).on("edit",function(e){console.log("onTagEdit: ",e.detail)}).on("invalid",function(e){console.log("onInvalidTag: ",e.detail)}).on("click",function(e){console.log(e.detail),console.log("onTagClick: ",e.detail)}).on("dropdown:show",function(e){console.log("onDropdownShow: ",e.detail)}).on("dropdown:hide",function(e){console.log("onDropdownHide: ",e.detail)})}(),e=document.getElementById("kt_tagify_1_1"),new Tagify(e).addTags([{value:"laravel",color:"yellow",readonly:!0}]),function(){var e=document.getElementById("kt_tagify_2");new Tagify(e,{enforceWhitelist:!0,whitelist:["The Shawshank Redemption","The Godfather","The Godfather: Part II","The Dark Knight","12 Angry Men","Schindler's List","Pulp Fiction","The Lord of the Rings: The Return of the King","The Good, the Bad and the Ugly","Fight Club","The Lord of the Rings: The Fellowship of the Ring","Star Wars: Episode V - The Empire Strikes Back","Forrest Gump","Inception","The Lord of the Rings: The Two Towers","One Flew Over the Cuckoo's Nest","Goodfellas","The Matrix","Seven Samurai","Star Wars: Episode IV - A New Hope","City of God","Se7en","The Silence of the Lambs","It's a Wonderful Life","The Usual Suspects","Life Is Beautiful","Léon: The Professional","Spirited Away","Saving Private Ryan","La La Land","Once Upon a Time in the West","American History X","Interstellar","Casablanca","Psycho","City Lights","The Green Mile","Raiders of the Lost Ark","The Intouchables","Modern Times","Rear Window","The Pianist","The Departed","Terminator 2: Judgment Day","Back to the Future","Whiplash","Gladiator","Memento","Apocalypse Now","The Prestige","The Lion King","Alien","Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb","Sunset Boulevard","The Great Dictator","Cinema Paradiso","The Lives of Others","Paths of Glory","Grave of the Fireflies","Django Unchained","The Shining","WALL·E","American Beauty","The Dark Knight Rises","Princess Mononoke","Aliens","Oldboy","Once Upon a Time in America","Citizen Kane","Das Boot","Witness for the Prosecution","North by Northwest","Vertigo","Star Wars: Episode VI - Return of the Jedi","Reservoir Dogs","M","Braveheart","Amélie","Requiem for a Dream","A Clockwork Orange","Taxi Driver","Lawrence of Arabia","Like Stars on Earth","Double Indemnity","To Kill a Mockingbird","Eternal Sunshine of the Spotless Mind","Toy Story 3","Amadeus","My Father and My Son","Full Metal Jacket","The Sting","2001: A Space Odyssey","Singin' in the Rain","Bicycle Thieves","Toy Story","Dangal","The Kid","Inglourious Basterds","Snatch","Monty Python and the Holy Grail","Hacksaw Ridge","3 Idiots","L.A. Confidential","For a Few Dollars More","Scarface","Rashomon","The Apartment","The Hunt","Good Will Hunting","Indiana Jones and the Last Crusade","A Separation","Metropolis","Yojimbo","All About Eve","Batman Begins","Up","Some Like It Hot","The Treasure of the Sierra Madre","Unforgiven","Downfall","Raging Bull","The Third Man","Die Hard","Children of Heaven","The Great Escape","Heat","Chinatown","Inside Out","Pan's Labyrinth","Ikiru","My Neighbor Totoro","On the Waterfront","Room","Ran","The Gold Rush","The Secret in Their Eyes","The Bridge on the River Kwai","Blade Runner","Mr. Smith Goes to Washington","The Seventh Seal","Howl's Moving Castle","Lock, Stock and Two Smoking Barrels","Judgment at Nuremberg","Casino","The Bandit","Incendies","A Beautiful Mind","A Wednesday","The General","The Elephant Man","Wild Strawberries","Arrival","V for Vendetta","Warrior","The Wolf of Wall Street","Manchester by the Sea","Sunrise","The Passion of Joan of Arc","Gran Torino","Rang De Basanti","Trainspotting","Dial M for Murder","The Big Lebowski","The Deer Hunter","Tokyo Story","Gone with the Wind","Fargo","Finding Nemo","The Sixth Sense","The Thing","Hera Pheri","Cool Hand Luke","Andaz Apna Apna","Rebecca","No Country for Old Men","How to Train Your Dragon","Munna Bhai M.B.B.S.","Sholay","Kill Bill: Vol. 1","Into the Wild","Mary and Max","Gone Girl","There Will Be Blood","Come and See","It Happened One Night","Life of Brian","Rush","Hotel Rwanda","Platoon","Shutter Island","Network","The Wages of Fear","Stand by Me","Wild Tales","In the Name of the Father","Spotlight","Star Wars: The Force Awakens","The Nights of Cabiria","The 400 Blows","Butch Cassidy and the Sundance Kid","Mad Max: Fury Road","The Maltese Falcon","12 Years a Slave","Ben-Hur","The Grand Budapest Hotel","Persona","Million Dollar Baby","Amores Perros","Jurassic Park","The Princess Bride","Hachi: A Dog's Tale","Memories of Murder","Stalker","Nausicaä of the Valley of the Wind","Drishyam","The Truman Show","The Grapes of Wrath","Before Sunrise","Touch of Evil","Annie Hall","The Message","Rocky","Gandhi","Harry Potter and the Deathly Hallows: Part 2","The Bourne Ultimatum","Diabolique","Donnie Darko","Monsters, Inc.","Prisoners","8½","The Terminator","The Wizard of Oz","Catch Me If You Can","Groundhog Day","Twelve Monkeys","Zootopia","La Haine","Barry Lyndon","Jaws","The Best Years of Our Lives","Infernal Affairs","Udaan","The Battle of Algiers","Strangers on a Train","Dog Day Afternoon","Sin City","Kind Hearts and Coronets","Gangs of Wasseypur","The Help"],callbacks:{add:console.log,remove:console.log}})}(),function(){var e=document.getElementById("kt_tagify_3"),a=new Tagify(e);a.DOM.input.classList.add("form-control"),a.DOM.input.setAttribute("placeholder","enter tag..."),a.DOM.scope.parentNode.insertBefore(a.DOM.input,a.DOM.scope)}(),function(){var e=document.getElementById("kt_tagify_4"),a=new Tagify(e,{pattern:/^.{0,20}$/,delimiters:", ",maxTags:6,blacklist:["fuck","shit","pussy"],keepInvalidTags:!0,whitelist:["temple","stun","detective","sign","passion","routine","deck","discriminate","relaxation","fraud","attractive","soft","forecast","point","thank","stage","eliminate","effective","flood","passive","skilled","separation","contact","compromise","reality","district","nationalist","leg","porter","conviction","worker","vegetable","commerce","conception","particle","honor","stick","tail","pumpkin","core","mouse","egg","population","unique","behavior","onion","disaster","cute","pipe","sock","dialect","horse","swear","owner","cope","global","improvement","artist","shed","constant","bond","brink","shower","spot","inject","bowel","homosexual","trust","exclude","tough","sickness","prevalence","sister","resolution","cattle","cultural","innocent","burial","bundle","thaw","respectable","thirsty","exposure","team","creed","facade","calendar","filter","utter","dominate","predator","discover","theorist","hospitality","damage","woman","rub","crop","unpleasant","halt","inch","birthday","lack","throne","maximum","pause","digress","fossil","policy","instrument","trunk","frame","measure","hall","support","convenience","house","partnership","inspector","looting","ranch","asset","rally","explicit","leak","monarch","ethics","applied","aviation","dentist","great","ethnic","sodium","truth","constellation","lease","guide","break","conclusion","button","recording","horizon","council","paradox","bride","weigh","like","noble","transition","accumulation","arrow","stitch","academy","glimpse","case","researcher","constitutional","notion","bathroom","revolutionary","soldier","vehicle","betray","gear","pan","quarter","embarrassment","golf","shark","constitution","club","college","duty","eaux","know","collection","burst","fun","animal","expectation","persist","insure","tick","account","initiative","tourist","member","example","plant","river","ratio","view","coast","latest","invite","help","falsify","allocation","degree","feel","resort","means","excuse","injury","pupil","shaft","allow","ton","tube","dress","speaker","double","theater","opposed","holiday","screw","cutting","picture","laborer","conservation","kneel","miracle","primary","nomination","characteristic","referral","carbon","valley","hot","climb","wrestle","motorist","update","loot","mosquito","delivery","eagle","guideline","hurt","feedback","finish","traffic","competence","serve","archive","feeling","hope","seal","ear","oven","vote","ballot","study","negative","declaration","particular","pattern","suburb","intervention","brake","frequency","drink","affair","contemporary","prince","dry","mole","lazy","undermine","radio","legislation","circumstance","bear","left","pony","industry","mastermind","criticism","sheep","failure","chain","depressed","launch","script","green","weave","please","surprise","doctor","revive","banquet","belong","correction","door","image","integrity","intermediate","sense","formal","cane","gloom","toast","pension","exception","prey","random","nose","predict","needle","satisfaction","establish","fit","vigorous","urgency","X-ray","equinox","variety","proclaim","conceive","bulb","vegetarian","available","stake","publicity","strikebreaker","portrait","sink","frog","ruin","studio","match","electron","captain","channel","navy","set","recommend","appoint","liberal","missile","sample","result","poor","efflux","glance","timetable","advertise","personality","aunt","dog"],transformTag:function(e){e.class="tagify__tag tagify__tag--"+["success","primary","danger","success","warning","dark","primary","info"][KTUtil.getRandomInt(0,7)],"shit"==e.value.toLowerCase()&&(e.value="s✲✲t")},dropdown:{enabled:3}});a.on("add",function(e){console.log(e.detail)}),a.on("invalid",function(e){console.log(e,e.detail)})}(),a=document.getElementById("kt_tagify_5"),new Tagify(a,{delimiters:", ",maxTags:10,blacklist:["fuck","shit","pussy"],keepInvalidTags:!0,whitelist:[{value:"Chris Muller",email:"chris.muller@wix.com",initials:"",initialsState:"",pic:"./assets/media/users/100_11.jpg",class:"tagify__tag--primary"},{value:"Nick Bold",email:"nick.seo@gmail.com",initials:"SS",initialsState:"warning",pic:""},{value:"Alon Silko",email:"alon@keenthemes.com",initials:"",initialsState:"",pic:"./assets/media/users/100_6.jpg"},{value:"Sam Seanic",email:"sam.senic@loop.com",initials:"",initialsState:"",pic:"./assets/media/users/100_8.jpg"},{value:"Sara Loran",email:"sara.loran@tilda.com",initials:"",initialsState:"",pic:"./assets/media/users/100_9.jpg"},{value:"Eric Davok",email:"davok@mix.com",initials:"",initialsState:"",pic:"./assets/media/users/100_13.jpg"},{value:"Sam Seanic",email:"sam.senic@loop.com",initials:"",initialsState:"",pic:"./assets/media/users/100_13.jpg"},{value:"Lina Nilson",email:"lina.nilson@loop.com",initials:"LN",initialsState:"danger",pic:"./assets/media/users/100_15.jpg"}],templates:{dropdownItem:function(e){try{var a="";return a+='
\t \t \t \t \t \t \t \t \t \t \t '}}]}),$("#kt_datatable_search_status").on("change",function(){t.search($(this).val().toLowerCase(),"Status")}),$("#kt_datatable_search_type").on("change",function(){t.search($(this).val().toLowerCase(),"Type")}),$("#kt_datatable_search_status, #kt_datatable_search_type").selectpicker()}};jQuery(document).ready(function(){KTDefaultDatatableDemo.init()});
\ No newline at end of file
diff --git a/public/assets/js/pages/crud/ktdatatable/advanced/modal.js b/public/assets/js/pages/crud/ktdatatable/advanced/modal.js
new file mode 100644
index 0000000..c9e411d
--- /dev/null
+++ b/public/assets/js/pages/crud/ktdatatable/advanced/modal.js
@@ -0,0 +1,849 @@
+'use strict';
+// Class definition
+
+var KTDatatableModal = function() {
+
+ var initDatatable = function() {
+ var el = $('#kt_datatable');
+
+ var datatable = el.KTDatatable({
+ // datasource definition
+ data: {
+ type: 'remote',
+ source: {
+ read: {
+ url: HOST_URL + '/api/datatables/demos/customers.php',
+ },
+ },
+ pageSize: 10, // display 20 records per page
+ serverPaging: true,
+ serverFiltering: false,
+ serverSorting: true,
+ },
+
+ // layout definition
+ layout: {
+ theme: 'default',
+ scroll: false,
+ height: null,
+ footer: false,
+ },
+
+ // column sorting
+ sortable: true,
+
+ pagination: true,
+
+ search: {
+ input: el.find('#kt_datatable_search_query'),
+ key: 'generalSearch'
+ },
+
+ // columns definition
+ columns: [{
+ field: 'RecordID',
+ title: '',
+ sortable: false,
+ width: 30,
+ textAlign: 'center',
+ }, {
+ field: 'FirstName',
+ title: 'First Name',
+ sortable: 'asc',
+ }, {
+ field: 'LastName',
+ title: 'Last Name',
+ }, {
+ field: 'Company',
+ title: 'Company',
+ }, {
+ field: 'Email',
+ title: 'Email',
+ }, {
+ field: 'Phone',
+ title: 'Phone',
+ }, {
+ field: 'Status',
+ title: 'Status',
+ // callback function support for column rendering
+ template: function(row) {
+ var status = {
+ 1: {
+ 'title': 'Pending',
+ 'class': 'label-light-primary'
+ },
+ 2: {
+ 'title': 'Delivered',
+ 'class': ' label-light-success'
+ },
+ 3: {
+ 'title': 'Canceled',
+ 'class': ' label-light-primary'
+ },
+ 4: {
+ 'title': 'Success',
+ 'class': ' label-light-success'
+ },
+ 5: {
+ 'title': 'Info',
+ 'class': ' label-light-info'
+ },
+ 6: {
+ 'title': 'Danger',
+ 'class': ' label-light-danger'
+ },
+ 7: {
+ 'title': 'Warning',
+ 'class': ' label-light-warning'
+ },
+ };
+ return '' + status[row.Status].title + '';
+ },
+ }, {
+ field: 'Type',
+ title: 'Type',
+ autoHide: false,
+ // callback function support for column rendering
+ template: function(row) {
+ var status = {
+ 1: {
+ 'title': 'Online',
+ 'state': 'danger'
+ },
+ 2: {
+ 'title': 'Retail',
+ 'state': 'primary'
+ },
+ 3: {
+ 'title': 'Direct',
+ 'state': 'accent'
+ },
+ };
+ return '' +
+ status[row.Type].title + '';
+ },
+ }, {
+ field: 'Actions',
+ width: 130,
+ title: 'Actions',
+ sortable: false,
+ overflow: 'visible',
+ textAlign: 'left',
+ autoHide: false,
+ template: function(row) {
+ return '\
+ ';
+ },
+ }],
+ });
+
+ var card = datatable.closest('.card');
+
+ $('#kt_datatable_search_status').on('change', function() {
+ datatable.search($(this).val().toLowerCase(), 'Status');
+ });
+
+ $('#kt_datatable_search_type').on('change', function() {
+ datatable.search($(this).val().toLowerCase(), 'Type');
+ });
+
+ $('#kt_datatable_search_status, #kt_datatable_search_type').selectpicker();
+
+ datatable.on('click', '[data-record-id]', function() {
+ initSubDatatable($(this).data('record-id'));
+ $('#kt_datatable_modal').modal('show');
+ });
+ };
+
+ var initSubDatatable = function(id) {
+ var el = $('#kt_datatable_sub');
+ var datatable = el.KTDatatable({
+ data: {
+ type: 'remote',
+ source: {
+ read: {
+ url: HOST_URL + '/api/datatables/demos/orders.php',
+ params: {
+ query: {
+ generalSearch: '',
+ CustomerID: id,
+ },
+ },
+ },
+ },
+ pageSize: 10,
+ serverPaging: true,
+ serverFiltering: false,
+ serverSorting: true,
+ },
+
+ // layout definition
+ layout: {
+ theme: 'default',
+ scroll: true,
+ height: 350,
+ footer: false,
+ },
+
+ search: {
+ input: el.find('#kt_datatable_search_query_2'),
+ key: 'generalSearch'
+ },
+
+ sortable: true,
+
+ // columns definition
+ columns: [{
+ field: 'RecordID',
+ title: '#',
+ sortable: false,
+ width: 30,
+ }, {
+ field: 'OrderID',
+ title: 'Order ID',
+ template: function(row) {
+ return '' + row.OrderID + ' - ' + row.ShipCountry + '';
+ },
+ }, {
+ field: 'ShipCountry',
+ title: 'Country',
+ width: 100,
+ }, {
+ field: 'ShipAddress',
+ title: 'Ship Address',
+ }, {
+ field: 'ShipName',
+ title: 'Ship Name',
+ autoHide: false,
+ }, {
+ field: 'TotalPayment',
+ title: 'Payment',
+ type: 'number',
+ }, {
+ field: 'Status',
+ title: 'Status',
+ // callback function support for column rendering
+ template: function(row) {
+ var status = {
+ 1: {
+ 'title': 'Pending',
+ 'class': 'label-primary'
+ },
+ 2: {
+ 'title': 'Delivered',
+ 'class': ' label-success'
+ },
+ 3: {
+ 'title': 'Canceled',
+ 'class': ' label-primary'
+ },
+ 4: {
+ 'title': 'Success',
+ 'class': ' label-success'
+ },
+ 5: {
+ 'title': 'Info',
+ 'class': ' label-info'
+ },
+ 6: {
+ 'title': 'Danger',
+ 'class': ' label-danger'
+ },
+ 7: {
+ 'title': 'Warning',
+ 'class': ' label-warning'
+ },
+ };
+ return '' + status[row.Status].title + '';
+ },
+ }, {
+ field: 'Type',
+ title: 'Type',
+ autoHide: false,
+ // callback function support for column rendering
+ template: function(row) {
+ var status = {
+ 1: {
+ 'title': 'Online',
+ 'state': 'danger'
+ },
+ 2: {
+ 'title': 'Retail',
+ 'state': 'primary'
+ },
+ 3: {
+ 'title': 'Direct',
+ 'state': 'accent'
+ },
+ };
+ return ' ' +
+ status[row.Type].title + '';
+ },
+ }],
+ });
+
+ var modal = datatable.closest('.modal');
+
+ $('#kt_datatable_search_status_2').on('change', function() {
+ datatable.search($(this).val().toLowerCase(), 'Status');
+ });
+
+ $('#kt_datatable_search_type_2').on('change', function() {
+ datatable.search($(this).val().toLowerCase(), 'Type');
+ });
+
+ $('#kt_datatable_search_status_2, #kt_datatable_search_type_2').selectpicker();
+
+ // fix datatable layout after modal shown
+ datatable.hide();
+ modal.on('shown.bs.modal', function() {
+ var modalContent = $(this).find('.modal-content');
+ datatable.spinnerCallback(true, modalContent);
+ datatable.spinnerCallback(false, modalContent);
+ }).on('hidden.bs.modal', function() {
+ el.KTDatatable('destroy');
+ });
+
+ datatable.on('datatable-on-layout-updated', function() {
+ datatable.show();
+ datatable.redraw();
+ });
+ };
+
+ var initDatatableModal2 = function() {
+ var dataJSONArray = JSON.parse(
+ '[{"id":1,"employee_id":"463978155-5","first_name":"Carroll","last_name":"Maharry","email":"cmaharry0@topsy.com","phone":"420-935-0970","gender":"Male","department":"Legal","address":"72460 Bunting Trail","hire_date":"3/18/2018","website":"https://gmpg.org","notes":"euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis","status":6,"type":2,"salary":"$339.37"}, {"id":2,"employee_id":"590410601-7","first_name":"Jae","last_name":"Frammingham","email":"jframmingham1@ucoz.com","phone":"377-986-0708","gender":"Male","department":"Human Resources","address":"976 Eagle Crest Junction","hire_date":"10/22/2017","website":"https://telegraph.co.uk","notes":"consequat metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia","status":5,"type":2,"salary":"$1568.00"}, {"id":3,"employee_id":"562079447-4","first_name":"Natalie","last_name":"Stuchberry","email":"nstuchberry2@jimdo.com","phone":"718-320-9991","gender":"Female","department":"Legal","address":"9971 Rigney Pass","hire_date":"6/1/2018","website":"http://nbcnews.com","notes":"tempus sit amet sem fusce consequat nulla nisl nunc nisl duis","status":1,"type":1,"salary":"$2014.50"}, {"id":4,"employee_id":"078485871-3","first_name":"Abran","last_name":"Ivett","email":"aivett3@pinterest.com","phone":"784-922-2482","gender":"Male","department":"Accounting","address":"9 Mesta Court","hire_date":"2/6/2018","website":"http://wikipedia.org","notes":"vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra","status":2,"type":1,"salary":"$1205.64"}, {"id":5,"employee_id":"048140516-X","first_name":"Viola","last_name":"Ends","email":"vends4@squarespace.com","phone":"613-457-5253","gender":"Female","department":"Research and Development","address":"2 Paget Court","hire_date":"3/16/2018","website":"https://dot.gov","notes":"id pretium iaculis diam erat fermentum justo nec condimentum neque sapien placerat ante nulla justo aliquam quis turpis eget elit","status":2,"type":2,"salary":"$1376.93"}, {"id":6,"employee_id":"115191539-4","first_name":"Marabel","last_name":"Foystone","email":"mfoystone5@example.com","phone":"731-391-3134","gender":"Female","department":"Support","address":"2498 Tennyson Way","hire_date":"5/10/2018","website":"http://booking.com","notes":"nulla suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis","status":1,"type":1,"salary":"$1498.25"}, {"id":7,"employee_id":"053408526-1","first_name":"Maiga","last_name":"Frogley","email":"mfrogley6@flavors.me","phone":"559-339-1188","gender":"Female","department":"Legal","address":"6 Sage Circle","hire_date":"10/24/2017","website":"http://ustream.tv","notes":"in ante vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur","status":4,"type":1,"salary":"$2420.50"}, {"id":8,"employee_id":"996172199-3","first_name":"Leia","last_name":"Rapelli","email":"lrapelli7@amazonaws.com","phone":"882-958-3554","gender":"Female","department":"Training","address":"5 Bellgrove Park","hire_date":"3/11/2018","website":"https://va.gov","notes":"ullamcorper purus sit amet nulla quisque arcu libero rutrum ac lobortis vel dapibus","status":5,"type":3,"salary":"$479.73"}, {"id":9,"employee_id":"290771439-2","first_name":"Lilias","last_name":"Stollsteiner","email":"lstollsteiner8@opensource.org","phone":"725-615-6480","gender":"Female","department":"Product Management","address":"5 Shoshone Park","hire_date":"4/26/2018","website":"http://163.com","notes":"blandit nam nulla integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem","status":6,"type":3,"salary":"$815.69"}, {"id":10,"employee_id":"475138305-1","first_name":"Chrissie","last_name":"Trenouth","email":"ctrenouth9@addtoany.com","phone":"653-550-6039","gender":"Male","department":"Product Management","address":"6753 Fulton Drive","hire_date":"4/5/2018","website":"https://nifty.com","notes":"erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi nulla ac enim in","status":5,"type":2,"salary":"$1011.26"}, {"id":11,"employee_id":"909173505-8","first_name":"Tisha","last_name":"Timewell","email":"ttimewella@photobucket.com","phone":"372-765-5253","gender":"Female","department":"Legal","address":"5142 7th Terrace","hire_date":"3/21/2018","website":"https://360.cn","notes":"dolor morbi vel lectus in quam fringilla rhoncus mauris enim","status":4,"type":1,"salary":"$1169.55"}, {"id":12,"employee_id":"930860193-7","first_name":"Abie","last_name":"Adamec","email":"aadamecb@ask.com","phone":"728-535-2654","gender":"Male","department":"Marketing","address":"7 Prentice Point","hire_date":"6/28/2018","website":"https://epa.gov","notes":"mauris vulputate elementum nullam varius nulla facilisi cras non velit nec nisi","status":4,"type":1,"salary":"$256.18"}, {"id":13,"employee_id":"302125353-9","first_name":"Saidee","last_name":"Christol","email":"schristolc@reverbnation.com","phone":"575-573-3469","gender":"Female","department":"Sales","address":"753 Moose Road","hire_date":"1/9/2018","website":"https://soup.io","notes":"erat fermentum justo nec condimentum neque sapien placerat ante nulla","status":1,"type":1,"salary":"$1888.02"}, {"id":14,"employee_id":"264870457-4","first_name":"Merna","last_name":"Studman","email":"mstudmand@bloomberg.com","phone":"301-593-9922","gender":"Female","department":"Sales","address":"32617 Merchant Park","hire_date":"12/14/2017","website":"https://dyndns.org","notes":"risus semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero quis","status":2,"type":1,"salary":"$525.89"}, {"id":15,"employee_id":"458961353-0","first_name":"Carey","last_name":"De Paepe","email":"cdepaepee@vistaprint.com","phone":"437-166-5682","gender":"Male","department":"Business Development","address":"57299 Hintze Terrace","hire_date":"3/5/2018","website":"https://ed.gov","notes":"etiam justo etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut","status":4,"type":3,"salary":"$380.12"}, {"id":16,"employee_id":"668397107-2","first_name":"Elana","last_name":"Fontel","email":"efontelf@ox.ac.uk","phone":"295-591-0290","gender":"Female","department":"Legal","address":"6 Lyons Alley","hire_date":"2/23/2018","website":"http://amazon.co.uk","notes":"in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis","status":1,"type":2,"salary":"$557.74"}, {"id":17,"employee_id":"633477701-7","first_name":"Martyn","last_name":"Palethorpe","email":"mpalethorpeg@hhs.gov","phone":"602-830-1929","gender":"Male","department":"Human Resources","address":"82 Johnson Trail","hire_date":"6/11/2018","website":"http://domainmarket.com","notes":"metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque","status":4,"type":3,"salary":"$692.98"}, {"id":18,"employee_id":"649247266-7","first_name":"Banky","last_name":"Scrafton","email":"bscraftonh@rakuten.co.jp","phone":"582-430-5651","gender":"Male","department":"Business Development","address":"9931 Charing Cross Road","hire_date":"10/8/2017","website":"http://com.com","notes":"morbi odio odio elementum eu interdum eu tincidunt in leo","status":3,"type":2,"salary":"$2251.69"}, {"id":19,"employee_id":"353134888-4","first_name":"Carl","last_name":"Cartlidge","email":"ccartlidgei@topsy.com","phone":"788-594-5978","gender":"Male","department":"Support","address":"01023 Loftsgordon Court","hire_date":"6/10/2018","website":"https://w3.org","notes":"montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis","status":5,"type":2,"salary":"$1098.95"}, {"id":20,"employee_id":"217229894-8","first_name":"Cecil","last_name":"Dovidaitis","email":"cdovidaitisj@friendfeed.com","phone":"871-276-5383","gender":"Male","department":"Accounting","address":"47936 Park Meadow Place","hire_date":"10/19/2017","website":"http://archive.org","notes":"interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien","status":5,"type":1,"salary":"$2023.29"}, {"id":21,"employee_id":"502127380-9","first_name":"Charlene","last_name":"Pulsford","email":"cpulsfordk@google.es","phone":"334-897-8875","gender":"Female","department":"Support","address":"0622 Ronald Regan Junction","hire_date":"5/1/2018","website":"http://forbes.com","notes":"ipsum dolor sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit","status":5,"type":1,"salary":"$2125.68"}, {"id":22,"employee_id":"954387630-4","first_name":"Agnes","last_name":"Eslinger","email":"aeslingerl@ucsd.edu","phone":"127-200-2804","gender":"Female","department":"Engineering","address":"1372 John Wall Terrace","hire_date":"1/6/2018","website":"http://pagesperso-orange.fr","notes":"diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus","status":1,"type":3,"salary":"$429.41"}, {"id":23,"employee_id":"332655163-0","first_name":"Felic","last_name":"Mathiasen","email":"fmathiasenm@pagesperso-orange.fr","phone":"563-844-1190","gender":"Male","department":"Business Development","address":"9416 Little Fleur Pass","hire_date":"10/21/2017","website":"http://feedburner.com","notes":"fusce congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed augue aliquam","status":1,"type":3,"salary":"$1501.00"}, {"id":24,"employee_id":"281704570-X","first_name":"Stephani","last_name":"Rowell","email":"srowelln@ucla.edu","phone":"159-771-9442","gender":"Female","department":"Training","address":"10 Aberg Circle","hire_date":"2/13/2018","website":"http://nydailynews.com","notes":"vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin","status":2,"type":2,"salary":"$637.61"}, {"id":25,"employee_id":"757531800-3","first_name":"Jackson","last_name":"Kettlestring","email":"jkettlestringo@prnewswire.com","phone":"411-365-5414","gender":"Male","department":"Marketing","address":"0 Dorton Plaza","hire_date":"12/15/2017","website":"http://fda.gov","notes":"purus phasellus in felis donec semper sapien a libero nam dui proin leo odio porttitor id consequat","status":5,"type":3,"salary":"$1777.79"}, {"id":26,"employee_id":"687935758-X","first_name":"Marius","last_name":"Bembrick","email":"mbembrickp@jigsy.com","phone":"386-209-3865","gender":"Male","department":"Research and Development","address":"6 Nancy Plaza","hire_date":"9/4/2017","website":"https://apple.com","notes":"orci luctus et ultrices posuere cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a feugiat","status":1,"type":1,"salary":"$508.32"}, {"id":27,"employee_id":"676433511-7","first_name":"Darnell","last_name":"Edes","email":"dedesq@surveymonkey.com","phone":"500-702-1594","gender":"Male","department":"Support","address":"373 Maryland Drive","hire_date":"12/10/2017","website":"http://walmart.com","notes":"euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc","status":6,"type":3,"salary":"$2139.18"}, {"id":28,"employee_id":"336040872-1","first_name":"Margaux","last_name":"O\'Feeny","email":"mofeenyr@amazon.co.jp","phone":"114-808-0574","gender":"Female","department":"Support","address":"59849 Packers Point","hire_date":"9/21/2017","website":"http://tmall.com","notes":"at nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem","status":1,"type":3,"salary":"$909.79"}, {"id":29,"employee_id":"736038403-6","first_name":"Ly","last_name":"Blaszkiewicz","email":"lblaszkiewiczs@live.com","phone":"193-583-6061","gender":"Male","department":"Research and Development","address":"8 Prentice Place","hire_date":"6/18/2018","website":"https://prweb.com","notes":"purus aliquet at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a odio in","status":5,"type":1,"salary":"$1789.96"}, {"id":30,"employee_id":"599372101-4","first_name":"Dayle","last_name":"Rablin","email":"drablint@jugem.jp","phone":"639-124-8424","gender":"Female","department":"Services","address":"35 Kenwood Point","hire_date":"6/30/2018","website":"https://csmonitor.com","notes":"vestibulum quam sapien varius ut blandit non interdum in ante vestibulum ante","status":3,"type":1,"salary":"$1594.26"}, {"id":31,"employee_id":"306503794-7","first_name":"Jaquenette","last_name":"Laurence","email":"jlaurenceu@topsy.com","phone":"809-291-9012","gender":"Female","department":"Product Management","address":"1 Holy Cross Circle","hire_date":"5/15/2018","website":"http://cornell.edu","notes":"turpis a pede posuere nonummy integer non velit donec diam neque vestibulum","status":3,"type":1,"salary":"$541.85"}, {"id":32,"employee_id":"708872496-0","first_name":"Bryn","last_name":"Gaukrodge","email":"bgaukrodgev@1688.com","phone":"197-490-4415","gender":"Male","department":"Product Management","address":"88036 Springs Center","hire_date":"3/12/2018","website":"https://bing.com","notes":"lectus pellentesque at nulla suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque","status":3,"type":3,"salary":"$1433.56"}, {"id":33,"employee_id":"820772036-0","first_name":"Quintina","last_name":"Tromans","email":"qtromansw@t.co","phone":"150-592-4259","gender":"Female","department":"Business Development","address":"503 Grim Junction","hire_date":"1/30/2018","website":"https://dagondesign.com","notes":"nullam molestie nibh in lectus pellentesque at nulla suspendisse potenti","status":4,"type":2,"salary":"$1763.79"}, {"id":34,"employee_id":"306191423-4","first_name":"North","last_name":"Linforth","email":"nlinforthx@devhub.com","phone":"311-987-2066","gender":"Male","department":"Human Resources","address":"46 Spenser Drive","hire_date":"6/16/2018","website":"https://delicious.com","notes":"mi sit amet lobortis sapien sapien non mi integer ac neque duis bibendum morbi non quam nec","status":6,"type":3,"salary":"$1598.27"}, {"id":35,"employee_id":"896478886-9","first_name":"Abbie","last_name":"Clampe","email":"aclampey@ameblo.jp","phone":"829-922-0897","gender":"Female","department":"Services","address":"0 Alpine Pass","hire_date":"10/31/2017","website":"http://nationalgeographic.com","notes":"sed justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est","status":3,"type":2,"salary":"$918.46"}, {"id":36,"employee_id":"345166971-4","first_name":"Ivonne","last_name":"Benstead","email":"ibensteadz@ftc.gov","phone":"239-904-6612","gender":"Female","department":"Human Resources","address":"32 Utah Avenue","hire_date":"3/27/2018","website":"http://sitemeter.com","notes":"curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend","status":6,"type":3,"salary":"$939.94"}, {"id":37,"employee_id":"271776454-2","first_name":"Brennen","last_name":"Duplain","email":"bduplain10@paginegialle.it","phone":"847-233-6429","gender":"Male","department":"Support","address":"64832 Sutherland Avenue","hire_date":"10/25/2017","website":"http://goo.gl","notes":"donec posuere metus vitae ipsum aliquam non mauris morbi non","status":1,"type":2,"salary":"$2153.00"}, {"id":38,"employee_id":"159362791-2","first_name":"Floris","last_name":"Rowntree","email":"frowntree11@goodreads.com","phone":"145-701-7289","gender":"Female","department":"Human Resources","address":"1 Prairieview Terrace","hire_date":"1/22/2018","website":"https://wordpress.com","notes":"sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat","status":1,"type":2,"salary":"$1469.21"}, {"id":39,"employee_id":"591823535-3","first_name":"Arlette","last_name":"Neumann","email":"aneumann12@google.it","phone":"626-427-8715","gender":"Female","department":"Legal","address":"5 Comanche Terrace","hire_date":"9/15/2017","website":"https://drupal.org","notes":"cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum","status":3,"type":1,"salary":"$2285.73"}, {"id":40,"employee_id":"760095255-6","first_name":"Jasper","last_name":"Blennerhassett","email":"jblennerhassett13@ovh.net","phone":"493-589-6952","gender":"Male","department":"Services","address":"48770 Hansons Center","hire_date":"6/3/2018","website":"http://imdb.com","notes":"integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna","status":3,"type":3,"salary":"$1261.12"}, {"id":41,"employee_id":"293876593-2","first_name":"Daniela","last_name":"Cauley","email":"dcauley14@si.edu","phone":"913-991-1546","gender":"Female","department":"Training","address":"327 Waubesa Pass","hire_date":"2/13/2018","website":"https://techcrunch.com","notes":"accumsan tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a","status":5,"type":3,"salary":"$1354.71"}, {"id":42,"employee_id":"754195998-7","first_name":"Allsun","last_name":"Cosin","email":"acosin15@seattletimes.com","phone":"890-332-0597","gender":"Female","department":"Business Development","address":"19242 Forest Dale Avenue","hire_date":"10/8/2017","website":"http://yellowbook.com","notes":"eu mi nulla ac enim in tempor turpis nec euismod scelerisque quam turpis","status":1,"type":1,"salary":"$463.81"}, {"id":43,"employee_id":"874856299-8","first_name":"Shalne","last_name":"Abramow","email":"sabramow16@1688.com","phone":"859-996-2703","gender":"Female","department":"Support","address":"678 Cardinal Trail","hire_date":"10/22/2017","website":"http://meetup.com","notes":"mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis","status":3,"type":3,"salary":"$2143.95"}, {"id":44,"employee_id":"274796603-8","first_name":"Britt","last_name":"Brameld","email":"bbrameld17@wiley.com","phone":"844-159-2313","gender":"Female","department":"Business Development","address":"01741 Truax Way","hire_date":"7/12/2018","website":"https://digg.com","notes":"a feugiat et eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id","status":2,"type":1,"salary":"$2400.44"}, {"id":45,"employee_id":"383491864-4","first_name":"Tammy","last_name":"Cordrey","email":"tcordrey18@photobucket.com","phone":"609-503-1223","gender":"Male","department":"Training","address":"3 Leroy Junction","hire_date":"8/6/2017","website":"https://aol.com","notes":"sapien sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus","status":5,"type":2,"salary":"$1838.70"}, {"id":46,"employee_id":"981710394-3","first_name":"Vanya","last_name":"Stygall","email":"vstygall19@comsenz.com","phone":"347-830-1157","gender":"Female","department":"Sales","address":"49 Twin Pines Alley","hire_date":"2/23/2018","website":"https://istockphoto.com","notes":"quis lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus","status":4,"type":1,"salary":"$1612.69"}, {"id":47,"employee_id":"859972565-3","first_name":"Ilene","last_name":"Longden","email":"ilongden1a@seesaa.net","phone":"367-599-8104","gender":"Female","department":"Research and Development","address":"3317 Chinook Drive","hire_date":"4/16/2018","website":"http://time.com","notes":"condimentum curabitur in libero ut massa volutpat convallis morbi odio odio elementum eu interdum eu tincidunt in leo","status":3,"type":3,"salary":"$377.64"}, {"id":48,"employee_id":"969985171-6","first_name":"Chrysler","last_name":"Havick","email":"chavick1b@reference.com","phone":"878-108-5011","gender":"Female","department":"Accounting","address":"0 Buena Vista Crossing","hire_date":"11/18/2017","website":"https://weather.com","notes":"odio cras mi pede malesuada in imperdiet et commodo vulputate justo in","status":1,"type":3,"salary":"$778.85"}, {"id":49,"employee_id":"216013804-5","first_name":"Fifine","last_name":"Haggus","email":"fhaggus1c@oaic.gov.au","phone":"633-912-8346","gender":"Female","department":"Research and Development","address":"520 Tomscot Avenue","hire_date":"6/18/2018","website":"https://mozilla.org","notes":"vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti in","status":5,"type":1,"salary":"$635.37"}, {"id":50,"employee_id":"966655811-4","first_name":"Ali","last_name":"Chue","email":"achue1d@vkontakte.ru","phone":"605-172-0203","gender":"Male","department":"Business Development","address":"0 Lyons Pass","hire_date":"8/2/2017","website":"http://springer.com","notes":"volutpat convallis morbi odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet erat","status":4,"type":2,"salary":"$2110.01"}, {"id":51,"employee_id":"861821671-2","first_name":"Celene","last_name":"Ledes","email":"cledes1e@opera.com","phone":"271-211-2956","gender":"Female","department":"Services","address":"9 Manley Terrace","hire_date":"4/27/2018","website":"http://4shared.com","notes":"libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum","status":3,"type":2,"salary":"$996.88"}, {"id":52,"employee_id":"416647881-8","first_name":"Luciano","last_name":"Lighterness","email":"llighterness1f@bizjournals.com","phone":"808-427-6621","gender":"Male","department":"Sales","address":"1 Bluejay Plaza","hire_date":"1/30/2018","website":"http://hud.gov","notes":"sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi","status":4,"type":2,"salary":"$2194.47"}, {"id":53,"employee_id":"716498565-0","first_name":"Oren","last_name":"Rixon","email":"orixon1g@paypal.com","phone":"640-688-8978","gender":"Male","department":"Research and Development","address":"03588 Randy Circle","hire_date":"12/16/2017","website":"http://tripod.com","notes":"sed nisl nunc rhoncus dui vel sem sed sagittis nam congue risus semper porta volutpat quam pede lobortis","status":4,"type":1,"salary":"$1590.74"}, {"id":54,"employee_id":"846826707-4","first_name":"Pearce","last_name":"Stark","email":"pstark1h@vk.com","phone":"724-173-2759","gender":"Male","department":"Marketing","address":"9134 Del Mar Alley","hire_date":"6/6/2018","website":"http://wp.com","notes":"fermentum donec ut mauris eget massa tempor convallis nulla neque libero convallis eget","status":1,"type":3,"salary":"$369.47"}, {"id":55,"employee_id":"817466406-8","first_name":"Paco","last_name":"Halden","email":"phalden1i@cbsnews.com","phone":"142-137-8107","gender":"Male","department":"Training","address":"9 Pennsylvania Place","hire_date":"3/31/2018","website":"http://gov.uk","notes":"ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla","status":6,"type":3,"salary":"$644.30"}, {"id":56,"employee_id":"486286979-3","first_name":"Merissa","last_name":"Tindle","email":"mtindle1j@sina.com.cn","phone":"645-520-7142","gender":"Female","department":"Sales","address":"672 Onsgard Way","hire_date":"4/4/2018","website":"http://oracle.com","notes":"id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac diam cras","status":5,"type":2,"salary":"$1821.01"}, {"id":57,"employee_id":"165434032-4","first_name":"Montague","last_name":"Coventon","email":"mcoventon1k@sbwire.com","phone":"933-259-7571","gender":"Male","department":"Training","address":"8 Lakeland Court","hire_date":"8/14/2017","website":"https://geocities.com","notes":"ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac","status":5,"type":3,"salary":"$1533.95"}, {"id":58,"employee_id":"154965026-2","first_name":"Kristel","last_name":"La Croce","email":"klacroce1l@noaa.gov","phone":"405-768-8955","gender":"Female","department":"Services","address":"630 Marcy Drive","hire_date":"10/17/2017","website":"http://ucsd.edu","notes":"vivamus in felis eu sapien cursus vestibulum proin eu mi nulla","status":6,"type":1,"salary":"$572.43"}, {"id":59,"employee_id":"531973169-8","first_name":"Felecia","last_name":"Aishford","email":"faishford1m@surveymonkey.com","phone":"308-335-5646","gender":"Female","department":"Marketing","address":"4169 Spenser Lane","hire_date":"1/14/2018","website":"https://accuweather.com","notes":"vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula","status":2,"type":2,"salary":"$535.61"}, {"id":60,"employee_id":"398015522-6","first_name":"Gabbey","last_name":"Faunch","email":"gfaunch1n@lulu.com","phone":"312-420-7864","gender":"Female","department":"Marketing","address":"66 Del Sol Crossing","hire_date":"10/12/2017","website":"https://tinypic.com","notes":"vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec","status":5,"type":3,"salary":"$454.67"}, {"id":61,"employee_id":"811193945-0","first_name":"Kiah","last_name":"MacGragh","email":"kmacgragh1o@nih.gov","phone":"585-387-4897","gender":"Female","department":"Accounting","address":"0082 8th Street","hire_date":"10/21/2017","website":"http://unblog.fr","notes":"turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a","status":3,"type":1,"salary":"$1998.31"}, {"id":62,"employee_id":"768660578-7","first_name":"Mireielle","last_name":"Danilishin","email":"mdanilishin1p@go.com","phone":"772-806-1933","gender":"Female","department":"Support","address":"9475 Transport Pass","hire_date":"8/12/2017","website":"https://i2i.jp","notes":"elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit","status":1,"type":3,"salary":"$332.09"}, {"id":63,"employee_id":"087657628-5","first_name":"Kaitlin","last_name":"Slowley","email":"kslowley1q@etsy.com","phone":"857-196-0908","gender":"Female","department":"Product Management","address":"136 Harbort Way","hire_date":"6/28/2018","website":"https://umn.edu","notes":"eget eleifend luctus ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum","status":6,"type":2,"salary":"$2008.41"}, {"id":64,"employee_id":"247247211-0","first_name":"Ellissa","last_name":"Bench","email":"ebench1r@issuu.com","phone":"770-716-1929","gender":"Female","department":"Support","address":"07536 Atwood Street","hire_date":"1/17/2018","website":"https://goo.gl","notes":"egestas metus aenean fermentum donec ut mauris eget massa tempor convallis nulla","status":3,"type":1,"salary":"$662.94"}, {"id":65,"employee_id":"229767685-9","first_name":"Renato","last_name":"Loftie","email":"rloftie1s@photobucket.com","phone":"806-232-0956","gender":"Male","department":"Legal","address":"49603 Hanover Drive","hire_date":"9/4/2017","website":"https://apache.org","notes":"nunc proin at turpis a pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut ultrices vel","status":5,"type":1,"salary":"$315.88"}, {"id":66,"employee_id":"303250444-9","first_name":"Eamon","last_name":"Chater","email":"echater1t@github.io","phone":"843-377-6351","gender":"Male","department":"Support","address":"1 Gina Lane","hire_date":"6/27/2018","website":"https://bravesites.com","notes":"id luctus nec molestie sed justo pellentesque viverra pede ac diam cras pellentesque volutpat","status":6,"type":2,"salary":"$575.88"}, {"id":67,"employee_id":"118110309-6","first_name":"Jeramey","last_name":"Guye","email":"jguye1u@bloglines.com","phone":"966-388-3378","gender":"Male","department":"Research and Development","address":"7141 Forest Dale Plaza","hire_date":"5/13/2018","website":"http://blogspot.com","notes":"habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur","status":4,"type":1,"salary":"$883.94"}, {"id":68,"employee_id":"604717575-9","first_name":"Ermentrude","last_name":"Caygill","email":"ecaygill1v@posterous.com","phone":"325-412-1846","gender":"Female","department":"Research and Development","address":"8 Vahlen Road","hire_date":"8/23/2017","website":"http://pinterest.com","notes":"vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci","status":4,"type":2,"salary":"$1261.05"}, {"id":69,"employee_id":"354395696-5","first_name":"Tyler","last_name":"Bearward","email":"tbearward1w@stanford.edu","phone":"264-480-4084","gender":"Male","department":"Engineering","address":"0 Oakridge Pass","hire_date":"9/23/2017","website":"http://toplist.cz","notes":"tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra","status":2,"type":2,"salary":"$1916.86"}, {"id":70,"employee_id":"448117293-2","first_name":"Cordelia","last_name":"Dod","email":"cdod1x@google.nl","phone":"904-991-9112","gender":"Female","department":"Services","address":"1 Oak Trail","hire_date":"5/19/2018","website":"http://nifty.com","notes":"at vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci eget orci","status":2,"type":1,"salary":"$728.99"}, {"id":71,"employee_id":"078622063-5","first_name":"Jud","last_name":"Hugonnet","email":"jhugonnet1y@bravesites.com","phone":"793-605-5368","gender":"Male","department":"Human Resources","address":"2 Blue Bill Park Crossing","hire_date":"3/5/2018","website":"http://theatlantic.com","notes":"rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus","status":4,"type":3,"salary":"$1122.09"}, {"id":72,"employee_id":"177821412-6","first_name":"Bliss","last_name":"Wormell","email":"bwormell1z@google.es","phone":"923-926-7137","gender":"Female","department":"Services","address":"97487 Vernon Way","hire_date":"2/9/2018","website":"https://slashdot.org","notes":"turpis a pede posuere nonummy integer non velit donec diam neque vestibulum","status":6,"type":3,"salary":"$1325.37"}, {"id":73,"employee_id":"167412899-1","first_name":"Pennie","last_name":"Miles","email":"pmiles20@wikipedia.org","phone":"402-175-4814","gender":"Female","department":"Accounting","address":"25 Calypso Street","hire_date":"8/25/2017","website":"https://networkadvertising.org","notes":"orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet","status":3,"type":1,"salary":"$1857.52"}, {"id":74,"employee_id":"766232726-4","first_name":"Alethea","last_name":"Kubis","email":"akubis21@nytimes.com","phone":"195-533-0554","gender":"Female","department":"Research and Development","address":"7 Badeau Junction","hire_date":"12/20/2017","website":"https://columbia.edu","notes":"congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu","status":2,"type":1,"salary":"$1731.13"}, {"id":75,"employee_id":"148106817-2","first_name":"Niven","last_name":"Leckey","email":"nleckey22@rediff.com","phone":"419-694-8836","gender":"Male","department":"Research and Development","address":"41429 Texas Pass","hire_date":"8/22/2017","website":"https://chron.com","notes":"maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac diam cras pellentesque volutpat","status":2,"type":3,"salary":"$835.59"}, {"id":76,"employee_id":"218188716-0","first_name":"Gav","last_name":"Denkin","email":"gdenkin23@phoca.cz","phone":"109-349-2084","gender":"Male","department":"Product Management","address":"866 Vermont Parkway","hire_date":"12/27/2017","website":"https://nytimes.com","notes":"eleifend donec ut dolor morbi vel lectus in quam fringilla rhoncus mauris","status":1,"type":1,"salary":"$2271.20"}, {"id":77,"employee_id":"949856193-1","first_name":"Haroun","last_name":"McDermott","email":"hmcdermott24@gnu.org","phone":"650-332-8136","gender":"Male","department":"Legal","address":"18 Farragut Junction","hire_date":"1/12/2018","website":"https://techcrunch.com","notes":"orci pede venenatis non sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet","status":3,"type":1,"salary":"$555.57"}, {"id":78,"employee_id":"816956055-1","first_name":"Enrico","last_name":"Marzelli","email":"emarzelli25@elegantthemes.com","phone":"931-285-9268","gender":"Male","department":"Services","address":"8 Stephen Center","hire_date":"7/16/2018","website":"https://cyberchimps.com","notes":"dui maecenas tristique est et tempus semper est quam pharetra magna ac consequat metus sapien ut nunc","status":2,"type":2,"salary":"$820.63"}, {"id":79,"employee_id":"135814107-X","first_name":"Shermy","last_name":"Tersay","email":"stersay26@scientificamerican.com","phone":"459-559-9053","gender":"Male","department":"Engineering","address":"280 Muir Trail","hire_date":"8/31/2017","website":"https://facebook.com","notes":"sapien sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus","status":3,"type":1,"salary":"$314.22"}, {"id":80,"employee_id":"214238400-5","first_name":"Kimberley","last_name":"Slorach","email":"kslorach27@ovh.net","phone":"408-346-4135","gender":"Female","department":"Legal","address":"33408 Dryden Center","hire_date":"4/18/2018","website":"https://live.com","notes":"congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus","status":2,"type":3,"salary":"$1960.21"}, {"id":81,"employee_id":"364281767-X","first_name":"Shirlee","last_name":"Heugel","email":"sheugel28@jiathis.com","phone":"823-228-8386","gender":"Female","department":"Research and Development","address":"4825 Autumn Leaf Junction","hire_date":"7/26/2017","website":"http://goodreads.com","notes":"est lacinia nisi venenatis tristique fusce congue diam id ornare","status":6,"type":1,"salary":"$1122.94"}, {"id":82,"employee_id":"197212989-9","first_name":"Lazar","last_name":"Fryatt","email":"lfryatt29@smugmug.com","phone":"529-726-0197","gender":"Male","department":"Business Development","address":"7434 Stephen Park","hire_date":"5/5/2018","website":"http://businessinsider.com","notes":"risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in ante vestibulum ante","status":2,"type":2,"salary":"$1950.44"}, {"id":83,"employee_id":"184011545-9","first_name":"Ainslie","last_name":"Dobbings","email":"adobbings2a@newsvine.com","phone":"543-769-3230","gender":"Female","department":"Accounting","address":"9670 Parkside Way","hire_date":"5/18/2018","website":"https://seattletimes.com","notes":"facilisi cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla","status":5,"type":3,"salary":"$1025.26"}, {"id":84,"employee_id":"550071613-1","first_name":"Nola","last_name":"Dolder","email":"ndolder2b@nationalgeographic.com","phone":"660-563-6589","gender":"Female","department":"Sales","address":"41 Harper Trail","hire_date":"11/7/2017","website":"http://intel.com","notes":"donec quis orci eget orci vehicula condimentum curabitur in libero ut massa volutpat","status":4,"type":3,"salary":"$658.49"}, {"id":85,"employee_id":"549482172-2","first_name":"Stacy","last_name":"Flanaghan","email":"sflanaghan2c@prlog.org","phone":"803-731-1786","gender":"Female","department":"Sales","address":"9884 Carberry Terrace","hire_date":"3/30/2018","website":"https://dropbox.com","notes":"sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum","status":2,"type":3,"salary":"$2020.80"}, {"id":86,"employee_id":"367901888-6","first_name":"Uri","last_name":"Langdridge","email":"ulangdridge2d@sciencedaily.com","phone":"514-481-8237","gender":"Male","department":"Research and Development","address":"1873 Sunnyside Circle","hire_date":"3/25/2018","website":"https://hubpages.com","notes":"vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus dapibus augue vel accumsan","status":6,"type":3,"salary":"$369.40"}, {"id":87,"employee_id":"131679327-3","first_name":"Magdalena","last_name":"Rivelin","email":"mrivelin2e@123-reg.co.uk","phone":"475-989-2264","gender":"Female","department":"Engineering","address":"11 Pleasure Terrace","hire_date":"7/26/2017","website":"https://photobucket.com","notes":"justo eu massa donec dapibus duis at velit eu est congue elementum in hac habitasse","status":1,"type":3,"salary":"$802.14"}, {"id":88,"employee_id":"962685709-9","first_name":"Seana","last_name":"Lackeye","email":"slackeye2f@w3.org","phone":"870-403-9921","gender":"Female","department":"Engineering","address":"1688 Northland Lane","hire_date":"7/8/2018","website":"https://topsy.com","notes":"turpis a pede posuere nonummy integer non velit donec diam neque vestibulum","status":3,"type":3,"salary":"$639.17"}, {"id":89,"employee_id":"031798299-0","first_name":"Marshal","last_name":"Kelf","email":"mkelf2g@vkontakte.ru","phone":"680-707-7861","gender":"Male","department":"Accounting","address":"87835 Kropf Circle","hire_date":"1/21/2018","website":"https://mit.edu","notes":"nulla quisque arcu libero rutrum ac lobortis vel dapibus at","status":1,"type":1,"salary":"$1644.11"}, {"id":90,"employee_id":"666187814-2","first_name":"Olag","last_name":"Suffield","email":"osuffield2h@topsy.com","phone":"920-122-4995","gender":"Male","department":"Human Resources","address":"00792 Buhler Place","hire_date":"5/5/2018","website":"https://hubpages.com","notes":"sed tincidunt eu felis fusce posuere felis sed lacus morbi","status":3,"type":1,"salary":"$1405.49"}, {"id":91,"employee_id":"972507663-X","first_name":"Andy","last_name":"Elgram","email":"aelgram2i@utexas.edu","phone":"198-157-8848","gender":"Female","department":"Support","address":"42 Garrison Point","hire_date":"10/1/2017","website":"http://mapy.cz","notes":"nam dui proin leo odio porttitor id consequat in consequat ut nulla sed accumsan felis","status":5,"type":2,"salary":"$684.75"}, {"id":92,"employee_id":"950510229-1","first_name":"Lennard","last_name":"Amberson","email":"lamberson2j@artisteer.com","phone":"611-164-2821","gender":"Male","department":"Engineering","address":"5985 Merry Drive","hire_date":"10/7/2017","website":"http://mysql.com","notes":"donec posuere metus vitae ipsum aliquam non mauris morbi non","status":2,"type":1,"salary":"$1537.93"}, {"id":93,"employee_id":"391601599-0","first_name":"Lucina","last_name":"Sinclaire","email":"lsinclaire2k@sitemeter.com","phone":"900-419-3471","gender":"Female","department":"Research and Development","address":"1 Mallard Court","hire_date":"12/19/2017","website":"http://woothemes.com","notes":"curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non","status":4,"type":2,"salary":"$1682.97"}, {"id":94,"employee_id":"780789784-8","first_name":"Zilvia","last_name":"Hessing","email":"zhessing2l@ca.gov","phone":"786-487-2292","gender":"Female","department":"Training","address":"8 Hanover Trail","hire_date":"4/11/2018","website":"http://hhs.gov","notes":"in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam","status":2,"type":1,"salary":"$1264.21"}, {"id":95,"employee_id":"154091500-X","first_name":"Randie","last_name":"Duplan","email":"rduplan2m@ox.ac.uk","phone":"254-881-3750","gender":"Female","department":"Human Resources","address":"7 Gerald Alley","hire_date":"1/27/2018","website":"https://slideshare.net","notes":"ultrices mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue a","status":4,"type":3,"salary":"$1338.17"}, {"id":96,"employee_id":"269765014-8","first_name":"Rose","last_name":"Luter","email":"rluter2n@marketplace.net","phone":"960-532-6752","gender":"Female","department":"Research and Development","address":"99 Tony Drive","hire_date":"8/19/2017","website":"https://marriott.com","notes":"sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi","status":1,"type":1,"salary":"$1901.64"}, {"id":97,"employee_id":"985484449-8","first_name":"Carmencita","last_name":"Burdis","email":"cburdis2o@comcast.net","phone":"636-450-6253","gender":"Female","department":"Product Management","address":"976 Fieldstone Terrace","hire_date":"3/2/2018","website":"https://google.ru","notes":"amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus","status":3,"type":3,"salary":"$1799.42"}, {"id":98,"employee_id":"803354276-4","first_name":"Martguerita","last_name":"Buckerfield","email":"mbuckerfield2p@businessinsider.com","phone":"994-400-4021","gender":"Female","department":"Research and Development","address":"92 Ridge Oak Terrace","hire_date":"6/13/2018","website":"http://wordpress.org","notes":"sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum","status":1,"type":1,"salary":"$677.13"}, {"id":99,"employee_id":"326728049-4","first_name":"Lorene","last_name":"Biffen","email":"lbiffen2q@bbb.org","phone":"638-745-7652","gender":"Female","department":"Support","address":"46 Alpine Road","hire_date":"3/29/2018","website":"http://ucoz.ru","notes":"integer aliquet massa id lobortis convallis tortor risus dapibus augue vel accumsan tellus","status":2,"type":3,"salary":"$899.25"}, {"id":100,"employee_id":"607725913-6","first_name":"Magdaia","last_name":"Nickels","email":"mnickels2r@edublogs.org","phone":"546-128-7946","gender":"Female","department":"Services","address":"0 Schiller Pass","hire_date":"3/27/2018","website":"http://networksolutions.com","notes":"scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis","status":6,"type":3,"salary":"$1578.12"}, {"id":101,"employee_id":"972393712-3","first_name":"Deloria","last_name":"Bamfield","email":"dbamfield2s@nbcnews.com","phone":"470-379-7670","gender":"Female","department":"Accounting","address":"8 Sundown Way","hire_date":"12/20/2017","website":"https://multiply.com","notes":"diam in magna bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu","status":1,"type":2,"salary":"$1657.96"}, {"id":102,"employee_id":"885692265-7","first_name":"Aime","last_name":"Wiggins","email":"awiggins2t@de.vu","phone":"517-672-9432","gender":"Female","department":"Legal","address":"687 Oak Trail","hire_date":"8/12/2017","website":"http://alibaba.com","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae","status":5,"type":3,"salary":"$595.54"}, {"id":103,"employee_id":"261177042-5","first_name":"Luz","last_name":"Leuren","email":"lleuren2u@php.net","phone":"944-752-0631","gender":"Female","department":"Sales","address":"870 Holmberg Terrace","hire_date":"1/2/2018","website":"https://un.org","notes":"fermentum donec ut mauris eget massa tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu nibh quisque","status":1,"type":1,"salary":"$1431.61"}, {"id":104,"employee_id":"705056567-9","first_name":"Herminia","last_name":"Vint","email":"hvint2v@addthis.com","phone":"215-746-1315","gender":"Female","department":"Product Management","address":"2 Jay Point","hire_date":"8/21/2017","website":"http://macromedia.com","notes":"faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel lectus in quam","status":5,"type":1,"salary":"$925.04"}, {"id":105,"employee_id":"499919735-9","first_name":"Julita","last_name":"Durie","email":"jdurie2w@guardian.co.uk","phone":"476-162-6690","gender":"Female","department":"Engineering","address":"63 Arapahoe Street","hire_date":"5/19/2018","website":"http://istockphoto.com","notes":"sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus","status":5,"type":3,"salary":"$983.78"}, {"id":106,"employee_id":"513095556-0","first_name":"Saleem","last_name":"Montel","email":"smontel2x@people.com.cn","phone":"228-261-6358","gender":"Male","department":"Training","address":"86472 Commercial Hill","hire_date":"3/4/2018","website":"https://hp.com","notes":"neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio","status":2,"type":2,"salary":"$280.05"}, {"id":107,"employee_id":"510722692-2","first_name":"Jecho","last_name":"Grayshon","email":"jgrayshon2y@loc.gov","phone":"698-125-3058","gender":"Male","department":"Engineering","address":"4 Norway Maple Pass","hire_date":"5/23/2018","website":"https://wordpress.com","notes":"quis orci eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi","status":2,"type":1,"salary":"$765.18"}, {"id":108,"employee_id":"950399045-9","first_name":"Joaquin","last_name":"Drakeford","email":"jdrakeford2z@census.gov","phone":"394-664-8952","gender":"Male","department":"Sales","address":"2885 Banding Street","hire_date":"9/16/2017","website":"https://indiatimes.com","notes":"integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem","status":4,"type":1,"salary":"$1887.22"}, {"id":109,"employee_id":"128592509-2","first_name":"Alvina","last_name":"Robiou","email":"arobiou30@meetup.com","phone":"276-927-2841","gender":"Female","department":"Services","address":"3709 Sunfield Alley","hire_date":"7/30/2017","website":"https://state.tx.us","notes":"non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac nulla sed vel enim sit amet nunc viverra","status":5,"type":3,"salary":"$2197.02"}, {"id":110,"employee_id":"641762765-9","first_name":"Kimberly","last_name":"Blewmen","email":"kblewmen31@xrea.com","phone":"993-555-5822","gender":"Female","department":"Support","address":"841 Spenser Trail","hire_date":"3/11/2018","website":"http://economist.com","notes":"et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor lacus at turpis donec posuere","status":4,"type":3,"salary":"$1403.80"}, {"id":111,"employee_id":"743230811-X","first_name":"Germain","last_name":"Liddell","email":"gliddell32@usda.gov","phone":"210-527-0995","gender":"Male","department":"Business Development","address":"273 Gale Hill","hire_date":"3/12/2018","website":"https://netscape.com","notes":"ipsum integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis","status":4,"type":2,"salary":"$1841.60"}, {"id":112,"employee_id":"280357534-5","first_name":"Wittie","last_name":"Crothers","email":"wcrothers33@bbc.co.uk","phone":"595-268-1541","gender":"Male","department":"Accounting","address":"0615 8th Hill","hire_date":"8/29/2017","website":"https://issuu.com","notes":"quam a odio in hac habitasse platea dictumst maecenas ut massa","status":6,"type":3,"salary":"$2349.82"}, {"id":113,"employee_id":"297744337-1","first_name":"Ruth","last_name":"Moxon","email":"rmoxon34@blog.com","phone":"311-809-6177","gender":"Female","department":"Support","address":"71749 Esker Crossing","hire_date":"9/8/2017","website":"https://tiny.cc","notes":"nunc rhoncus dui vel sem sed sagittis nam congue risus semper porta","status":1,"type":1,"salary":"$2469.12"}, {"id":114,"employee_id":"627965147-9","first_name":"Shaw","last_name":"Jeafferson","email":"sjeafferson35@dedecms.com","phone":"402-419-6081","gender":"Male","department":"Training","address":"28 Kropf Lane","hire_date":"9/16/2017","website":"https://amazon.co.jp","notes":"urna ut tellus nulla ut erat id mauris vulputate elementum nullam","status":2,"type":1,"salary":"$725.96"}, {"id":115,"employee_id":"200221976-1","first_name":"Stern","last_name":"Newbery","email":"snewbery36@berkeley.edu","phone":"592-100-2732","gender":"Male","department":"Product Management","address":"64762 Luster Street","hire_date":"3/7/2018","website":"http://simplemachines.org","notes":"ipsum dolor sit amet consectetuer adipiscing elit proin risus praesent lectus","status":1,"type":2,"salary":"$2391.21"}, {"id":116,"employee_id":"683010400-9","first_name":"Jeffry","last_name":"Chessil","email":"jchessil37@sogou.com","phone":"350-222-1842","gender":"Male","department":"Human Resources","address":"499 Nelson Lane","hire_date":"8/24/2017","website":"https://marketwatch.com","notes":"sapien placerat ante nulla justo aliquam quis turpis eget elit","status":5,"type":2,"salary":"$1186.46"}, {"id":117,"employee_id":"492536862-1","first_name":"Darla","last_name":"Letson","email":"dletson38@squarespace.com","phone":"576-354-3003","gender":"Female","department":"Product Management","address":"5237 Division Plaza","hire_date":"10/2/2017","website":"http://networkadvertising.org","notes":"suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris","status":1,"type":2,"salary":"$771.69"}, {"id":118,"employee_id":"471683625-8","first_name":"Gavra","last_name":"Backhurst","email":"gbackhurst39@tripadvisor.com","phone":"196-599-4507","gender":"Female","department":"Research and Development","address":"07263 Buhler Crossing","hire_date":"6/23/2018","website":"http://altervista.org","notes":"aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse","status":4,"type":3,"salary":"$263.67"}, {"id":119,"employee_id":"348201330-6","first_name":"Adam","last_name":"Bavridge","email":"abavridge3a@typepad.com","phone":"867-811-3866","gender":"Male","department":"Legal","address":"00 Katie Crossing","hire_date":"7/24/2017","website":"http://friendfeed.com","notes":"maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac diam cras","status":2,"type":1,"salary":"$958.84"}, {"id":120,"employee_id":"738568347-9","first_name":"Hillard","last_name":"Khomich","email":"hkhomich3b@mtv.com","phone":"567-127-1119","gender":"Male","department":"Legal","address":"188 Steensland Point","hire_date":"4/23/2018","website":"http://bloomberg.com","notes":"et commodo vulputate justo in blandit ultrices enim lorem ipsum","status":4,"type":3,"salary":"$314.28"}, {"id":121,"employee_id":"025483363-2","first_name":"Fiona","last_name":"Bingell","email":"fbingell3c@360.cn","phone":"331-537-3139","gender":"Female","department":"Legal","address":"96 Talisman Park","hire_date":"5/20/2018","website":"http://canalblog.com","notes":"augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa id","status":5,"type":3,"salary":"$2374.45"}, {"id":122,"employee_id":"960974875-9","first_name":"Sigmund","last_name":"Crampsy","email":"scrampsy3d@opera.com","phone":"152-487-2700","gender":"Male","department":"Human Resources","address":"7 Sutherland Street","hire_date":"12/9/2017","website":"https://washingtonpost.com","notes":"montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis","status":5,"type":2,"salary":"$332.45"}, {"id":123,"employee_id":"926752427-5","first_name":"Rasla","last_name":"Middell","email":"rmiddell3e@columbia.edu","phone":"868-976-3698","gender":"Female","department":"Services","address":"2 Gina Hill","hire_date":"11/23/2017","website":"http://timesonline.co.uk","notes":"pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut","status":2,"type":2,"salary":"$1018.57"}, {"id":124,"employee_id":"806699807-4","first_name":"Iorgo","last_name":"Rigmond","email":"irigmond3f@google.it","phone":"746-546-5211","gender":"Male","department":"Accounting","address":"842 Pearson Pass","hire_date":"9/7/2017","website":"http://digg.com","notes":"luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend","status":3,"type":1,"salary":"$2010.96"}, {"id":125,"employee_id":"155788341-6","first_name":"Tessa","last_name":"Rohan","email":"trohan3g@cbslocal.com","phone":"630-293-4519","gender":"Female","department":"Product Management","address":"1 Reinke Crossing","hire_date":"12/10/2017","website":"http://google.com","notes":"vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna pretium nisl","status":3,"type":3,"salary":"$1384.49"}, {"id":126,"employee_id":"682416426-7","first_name":"Solly","last_name":"Kellet","email":"skellet3h@google.fr","phone":"377-570-8318","gender":"Male","department":"Support","address":"468 Marquette Pass","hire_date":"11/24/2017","website":"https://china.com.cn","notes":"nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum","status":5,"type":1,"salary":"$956.94"}, {"id":127,"employee_id":"612351588-8","first_name":"Jarret","last_name":"O\'Halloran","email":"johalloran3i@indiatimes.com","phone":"154-312-7232","gender":"Male","department":"Support","address":"199 Orin Road","hire_date":"10/20/2017","website":"http://nytimes.com","notes":"elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium","status":5,"type":2,"salary":"$2463.22"}, {"id":128,"employee_id":"655867342-8","first_name":"Annnora","last_name":"Soles","email":"asoles3j@cafepress.com","phone":"158-251-8502","gender":"Female","department":"Human Resources","address":"59 Fordem Lane","hire_date":"12/15/2017","website":"http://loc.gov","notes":"odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices enim lorem ipsum dolor sit amet","status":5,"type":2,"salary":"$859.89"}, {"id":129,"employee_id":"373591806-9","first_name":"Flory","last_name":"Dabinett","email":"fdabinett3k@cmu.edu","phone":"809-718-7259","gender":"Female","department":"Human Resources","address":"5711 Maywood Parkway","hire_date":"10/28/2017","website":"http://apple.com","notes":"diam in magna bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce posuere","status":6,"type":3,"salary":"$2060.00"}, {"id":130,"employee_id":"959199127-4","first_name":"Brigham","last_name":"Winch","email":"bwinch3l@prweb.com","phone":"942-871-6319","gender":"Male","department":"Sales","address":"641 Kings Trail","hire_date":"3/17/2018","website":"http://topsy.com","notes":"non velit donec diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis","status":4,"type":1,"salary":"$1022.05"}, {"id":131,"employee_id":"961903930-0","first_name":"Siusan","last_name":"Megahey","email":"smegahey3m@myspace.com","phone":"357-588-1304","gender":"Female","department":"Human Resources","address":"5 Ludington Road","hire_date":"6/22/2018","website":"http://shareasale.com","notes":"tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis","status":2,"type":3,"salary":"$1406.53"}, {"id":132,"employee_id":"900687666-6","first_name":"Ax","last_name":"Kores","email":"akores3n@tripadvisor.com","phone":"439-825-2783","gender":"Male","department":"Business Development","address":"63271 Pierstorff Crossing","hire_date":"5/14/2018","website":"http://hibu.com","notes":"tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum","status":2,"type":2,"salary":"$1135.64"}, {"id":133,"employee_id":"466975330-4","first_name":"Sander","last_name":"Chinnick","email":"schinnick3o@cbslocal.com","phone":"374-645-5030","gender":"Male","department":"Accounting","address":"37 Darwin Circle","hire_date":"2/7/2018","website":"http://histats.com","notes":"mi nulla ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis","status":1,"type":3,"salary":"$381.91"}, {"id":134,"employee_id":"408416234-5","first_name":"Keir","last_name":"Coulling","email":"kcoulling3p@usa.gov","phone":"118-443-0247","gender":"Male","department":"Legal","address":"4376 Kings Center","hire_date":"10/3/2017","website":"http://omniture.com","notes":"lorem ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id","status":5,"type":2,"salary":"$2378.33"}, {"id":135,"employee_id":"531987885-0","first_name":"Sid","last_name":"Tenaunt","email":"stenaunt3q@phpbb.com","phone":"295-386-3775","gender":"Male","department":"Sales","address":"222 Blaine Terrace","hire_date":"6/27/2018","website":"http://nationalgeographic.com","notes":"justo etiam pretium iaculis justo in hac habitasse platea dictumst","status":5,"type":1,"salary":"$927.08"}, {"id":136,"employee_id":"010876438-9","first_name":"Hunfredo","last_name":"Bastone","email":"hbastone3r@gmpg.org","phone":"509-962-4856","gender":"Male","department":"Services","address":"2 Cambridge Terrace","hire_date":"11/22/2017","website":"http://hc360.com","notes":"condimentum neque sapien placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet","status":1,"type":2,"salary":"$1542.99"}, {"id":137,"employee_id":"673641606-X","first_name":"Virgil","last_name":"Mallabon","email":"vmallabon3s@mysql.com","phone":"412-268-6506","gender":"Male","department":"Business Development","address":"9 Havey Trail","hire_date":"3/26/2018","website":"https://fc2.com","notes":"non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci pede venenatis","status":1,"type":2,"salary":"$533.91"}, {"id":138,"employee_id":"674583602-5","first_name":"Raimund","last_name":"Garthshore","email":"rgarthshore3t@i2i.jp","phone":"690-495-5929","gender":"Male","department":"Support","address":"9 Toban Pass","hire_date":"7/4/2018","website":"https://icq.com","notes":"cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum","status":4,"type":3,"salary":"$1455.67"}, {"id":139,"employee_id":"669103553-4","first_name":"Velvet","last_name":"Chaffey","email":"vchaffey3u@mit.edu","phone":"751-664-7048","gender":"Female","department":"Human Resources","address":"24 Dexter Avenue","hire_date":"6/29/2018","website":"https://eepurl.com","notes":"sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed","status":6,"type":2,"salary":"$1608.14"}, {"id":140,"employee_id":"603845266-4","first_name":"Warren","last_name":"Course","email":"wcourse3v@who.int","phone":"714-691-0830","gender":"Male","department":"Research and Development","address":"1 Stoughton Trail","hire_date":"12/7/2017","website":"http://dedecms.com","notes":"ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent","status":2,"type":3,"salary":"$1183.79"}, {"id":141,"employee_id":"653433959-5","first_name":"Bobina","last_name":"Stroyan","email":"bstroyan3w@spotify.com","phone":"247-343-7540","gender":"Female","department":"Product Management","address":"127 Westerfield Way","hire_date":"8/20/2017","website":"https://unicef.org","notes":"pretium iaculis diam erat fermentum justo nec condimentum neque sapien placerat ante nulla justo","status":2,"type":2,"salary":"$1289.19"}, {"id":142,"employee_id":"713131534-6","first_name":"Ulrich","last_name":"Monsey","email":"umonsey3x@google.co.jp","phone":"585-711-5479","gender":"Male","department":"Business Development","address":"638 Birchwood Pass","hire_date":"7/2/2018","website":"http://earthlink.net","notes":"at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet","status":3,"type":3,"salary":"$1350.77"}, {"id":143,"employee_id":"411238844-6","first_name":"Darrell","last_name":"Kelson","email":"dkelson3y@aol.com","phone":"755-795-2495","gender":"Male","department":"Support","address":"2 Eagan Center","hire_date":"11/1/2017","website":"http://cpanel.net","notes":"vel est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac est lacinia nisi","status":6,"type":3,"salary":"$543.19"}, {"id":144,"employee_id":"341336740-4","first_name":"Brook","last_name":"Temblett","email":"btemblett3z@unesco.org","phone":"985-734-8064","gender":"Male","department":"Marketing","address":"370 Garrison Street","hire_date":"1/16/2018","website":"https://devhub.com","notes":"rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed","status":3,"type":1,"salary":"$354.44"}, {"id":145,"employee_id":"387002802-5","first_name":"Portia","last_name":"Wybern","email":"pwybern40@example.com","phone":"239-713-0899","gender":"Female","department":"Services","address":"7 Tennessee Point","hire_date":"5/28/2018","website":"http://163.com","notes":"rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis","status":2,"type":1,"salary":"$2208.41"}, {"id":146,"employee_id":"595244490-3","first_name":"Debi","last_name":"Grady","email":"dgrady41@icio.us","phone":"959-988-3108","gender":"Female","department":"Business Development","address":"18955 Doe Crossing Place","hire_date":"3/10/2018","website":"http://cam.ac.uk","notes":"in felis donec semper sapien a libero nam dui proin leo odio porttitor id consequat in consequat ut","status":4,"type":2,"salary":"$1167.37"}, {"id":147,"employee_id":"877613651-5","first_name":"Moise","last_name":"Garnson","email":"mgarnson42@dailymail.co.uk","phone":"402-162-8313","gender":"Male","department":"Training","address":"14 Grayhawk Way","hire_date":"2/3/2018","website":"http://t.co","notes":"nulla ut erat id mauris vulputate elementum nullam varius nulla facilisi cras non velit nec nisi","status":5,"type":2,"salary":"$2274.95"}, {"id":148,"employee_id":"057397050-5","first_name":"Val","last_name":"Berthomier","email":"vberthomier43@mozilla.com","phone":"952-537-2739","gender":"Male","department":"Engineering","address":"0 Hanson Junction","hire_date":"2/23/2018","website":"http://smh.com.au","notes":"quam pharetra magna ac consequat metus sapien ut nunc vestibulum ante ipsum primis in","status":3,"type":1,"salary":"$2268.10"}, {"id":149,"employee_id":"594276612-6","first_name":"Brynn","last_name":"Cosgry","email":"bcosgry44@wikimedia.org","phone":"897-152-4927","gender":"Female","department":"Legal","address":"68483 Bowman Pass","hire_date":"6/11/2018","website":"http://unblog.fr","notes":"elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie","status":2,"type":1,"salary":"$304.63"}, {"id":150,"employee_id":"353613312-6","first_name":"Vitoria","last_name":"Crickmoor","email":"vcrickmoor45@taobao.com","phone":"607-928-5380","gender":"Female","department":"Human Resources","address":"77 Browning Avenue","hire_date":"11/20/2017","website":"http://e-recht24.de","notes":"enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis","status":5,"type":3,"salary":"$924.79"}, {"id":151,"employee_id":"291902769-7","first_name":"Carrissa","last_name":"Brownell","email":"cbrownell46@answers.com","phone":"128-824-6498","gender":"Female","department":"Services","address":"32386 Di Loreto Park","hire_date":"1/14/2018","website":"https://cbslocal.com","notes":"praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in","status":4,"type":2,"salary":"$2130.86"}, {"id":152,"employee_id":"842513206-1","first_name":"Dyann","last_name":"Pentecost","email":"dpentecost47@scientificamerican.com","phone":"558-509-9826","gender":"Female","department":"Human Resources","address":"9 Ridgeview Lane","hire_date":"3/25/2018","website":"https://irs.gov","notes":"vitae quam suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris morbi non","status":6,"type":3,"salary":"$954.81"}, {"id":153,"employee_id":"878064554-2","first_name":"Waldo","last_name":"Bessey","email":"wbessey48@auda.org.au","phone":"986-291-1320","gender":"Male","department":"Business Development","address":"18 Roxbury Lane","hire_date":"4/2/2018","website":"https://biglobe.ne.jp","notes":"sagittis dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti in","status":5,"type":3,"salary":"$2452.02"}, {"id":154,"employee_id":"845261853-0","first_name":"Jaymee","last_name":"Longstaffe","email":"jlongstaffe49@comsenz.com","phone":"986-707-1097","gender":"Female","department":"Human Resources","address":"4998 Dakota Drive","hire_date":"7/2/2018","website":"http://comcast.net","notes":"morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl","status":1,"type":1,"salary":"$2401.60"}, {"id":155,"employee_id":"133467041-2","first_name":"Gui","last_name":"Treuge","email":"gtreuge4a@eventbrite.com","phone":"446-433-2464","gender":"Female","department":"Accounting","address":"44 Meadow Ridge Parkway","hire_date":"2/19/2018","website":"http://amazon.com","notes":"vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget","status":3,"type":2,"salary":"$1260.96"}, {"id":156,"employee_id":"430655033-8","first_name":"Robinet","last_name":"Pilpovic","email":"rpilpovic4b@clickbank.net","phone":"719-201-5508","gender":"Female","department":"Business Development","address":"73 Talmadge Terrace","hire_date":"12/14/2017","website":"http://fda.gov","notes":"tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus","status":3,"type":3,"salary":"$996.17"}, {"id":157,"employee_id":"273670127-5","first_name":"Dominique","last_name":"Pinnion","email":"dpinnion4c@myspace.com","phone":"588-678-9990","gender":"Male","department":"Accounting","address":"0 Columbus Parkway","hire_date":"1/16/2018","website":"http://fastcompany.com","notes":"nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget semper rutrum nulla","status":6,"type":1,"salary":"$2052.55"}, {"id":158,"employee_id":"514667447-7","first_name":"Nichole","last_name":"Sneesby","email":"nsneesby4d@google.com.hk","phone":"535-321-5685","gender":"Female","department":"Services","address":"84 Forest Run Trail","hire_date":"6/2/2018","website":"http://ibm.com","notes":"mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean","status":6,"type":3,"salary":"$517.69"}, {"id":159,"employee_id":"959381289-X","first_name":"Evvie","last_name":"Jurek","email":"ejurek4e@dailymail.co.uk","phone":"933-940-5953","gender":"Female","department":"Legal","address":"9807 Hagan Road","hire_date":"1/30/2018","website":"http://jigsy.com","notes":"dui proin leo odio porttitor id consequat in consequat ut","status":6,"type":3,"salary":"$475.90"}, {"id":160,"employee_id":"997401253-8","first_name":"Susana","last_name":"Tessier","email":"stessier4f@ox.ac.uk","phone":"723-896-2166","gender":"Female","department":"Sales","address":"9 Chive Place","hire_date":"4/3/2018","website":"https://google.com.br","notes":"orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum","status":3,"type":3,"salary":"$579.03"}, {"id":161,"employee_id":"252276663-5","first_name":"Kellyann","last_name":"Mangham","email":"kmangham4g@mtv.com","phone":"688-720-2536","gender":"Female","department":"Marketing","address":"70 Muir Court","hire_date":"7/31/2017","website":"https://baidu.com","notes":"non quam nec dui luctus rutrum nulla tellus in sagittis","status":6,"type":1,"salary":"$1833.96"}, {"id":162,"employee_id":"684537562-3","first_name":"Reta","last_name":"Downham","email":"rdownham4h@columbia.edu","phone":"805-542-6622","gender":"Female","department":"Training","address":"3 Sage Hill","hire_date":"10/7/2017","website":"https://cloudflare.com","notes":"erat id mauris vulputate elementum nullam varius nulla facilisi cras non velit nec nisi","status":2,"type":1,"salary":"$254.59"}, {"id":163,"employee_id":"755134881-6","first_name":"Abbe","last_name":"Didsbury","email":"adidsbury4i@usda.gov","phone":"911-906-3632","gender":"Female","department":"Support","address":"3527 Scofield Drive","hire_date":"3/27/2018","website":"http://webs.com","notes":"maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie","status":1,"type":2,"salary":"$1163.39"}, {"id":164,"employee_id":"983150152-7","first_name":"Bobbe","last_name":"Le Frank","email":"blefrank4j@youtube.com","phone":"777-324-7190","gender":"Female","department":"Accounting","address":"56607 Oneill Hill","hire_date":"8/18/2017","website":"http://salon.com","notes":"erat tortor sollicitudin mi sit amet lobortis sapien sapien non mi integer ac neque duis bibendum","status":1,"type":2,"salary":"$2173.86"}, {"id":165,"employee_id":"204907720-3","first_name":"Cal","last_name":"Scothorn","email":"cscothorn4k@miibeian.gov.cn","phone":"194-212-1904","gender":"Male","department":"Training","address":"468 Grim Street","hire_date":"5/19/2018","website":"https://ftc.gov","notes":"vehicula consequat morbi a ipsum integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id","status":4,"type":2,"salary":"$2034.27"}, {"id":166,"employee_id":"697540250-7","first_name":"Lolly","last_name":"Treneman","email":"ltreneman4l@paypal.com","phone":"632-859-5314","gender":"Female","department":"Marketing","address":"72009 Riverside Lane","hire_date":"5/29/2018","website":"https://va.gov","notes":"in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt","status":5,"type":3,"salary":"$753.35"}, {"id":167,"employee_id":"115690768-3","first_name":"Cecilla","last_name":"Lapenna","email":"clapenna4m@123-reg.co.uk","phone":"628-961-1692","gender":"Female","department":"Human Resources","address":"9280 Kings Junction","hire_date":"9/29/2017","website":"https://desdev.cn","notes":"accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor","status":1,"type":1,"salary":"$2311.77"}, {"id":168,"employee_id":"571951854-1","first_name":"Dulcia","last_name":"Salthouse","email":"dsalthouse4n@woothemes.com","phone":"908-491-4688","gender":"Female","department":"Accounting","address":"46165 Lukken Plaza","hire_date":"11/12/2017","website":"https://hostgator.com","notes":"vulputate justo in blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris non","status":6,"type":1,"salary":"$822.82"}, {"id":169,"employee_id":"977337629-X","first_name":"Terrijo","last_name":"Creegan","email":"tcreegan4o@sogou.com","phone":"482-913-3726","gender":"Female","department":"Product Management","address":"4717 Hayes Hill","hire_date":"7/26/2017","website":"https://google.fr","notes":"nulla suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus et","status":6,"type":1,"salary":"$484.63"}, {"id":170,"employee_id":"027232140-0","first_name":"Edsel","last_name":"Coward","email":"ecoward4p@hatena.ne.jp","phone":"612-293-5449","gender":"Male","department":"Product Management","address":"3 Westerfield Plaza","hire_date":"8/8/2017","website":"http://prweb.com","notes":"suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus","status":1,"type":3,"salary":"$592.46"}, {"id":171,"employee_id":"263088468-6","first_name":"Ansel","last_name":"Monteith","email":"amonteith4q@deliciousdays.com","phone":"570-559-5834","gender":"Male","department":"Marketing","address":"3596 Elka Alley","hire_date":"12/15/2017","website":"http://paypal.com","notes":"luctus et ultrices posuere cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a","status":3,"type":3,"salary":"$1449.66"}, {"id":172,"employee_id":"530835369-7","first_name":"Adler","last_name":"Medford","email":"amedford4r@ucsd.edu","phone":"595-468-9382","gender":"Male","department":"Training","address":"87 Namekagon Road","hire_date":"3/13/2018","website":"http://princeton.edu","notes":"sit amet lobortis sapien sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla","status":2,"type":1,"salary":"$399.65"}, {"id":173,"employee_id":"607099253-9","first_name":"Kira","last_name":"Berford","email":"kberford4s@lulu.com","phone":"572-891-2967","gender":"Female","department":"Accounting","address":"414 Ruskin Terrace","hire_date":"1/16/2018","website":"http://instagram.com","notes":"et tempus semper est quam pharetra magna ac consequat metus sapien","status":1,"type":3,"salary":"$1928.81"}, {"id":174,"employee_id":"798630883-4","first_name":"Vivyanne","last_name":"Furzey","email":"vfurzey4t@ca.gov","phone":"278-121-5340","gender":"Female","department":"Human Resources","address":"94 Esch Park","hire_date":"5/17/2018","website":"https://amazon.de","notes":"faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices","status":6,"type":2,"salary":"$2375.11"}, {"id":175,"employee_id":"681999959-3","first_name":"Nikoletta","last_name":"Robelow","email":"nrobelow4u@smugmug.com","phone":"360-351-4307","gender":"Female","department":"Engineering","address":"5 Starling Trail","hire_date":"8/20/2017","website":"https://barnesandnoble.com","notes":"odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi","status":4,"type":2,"salary":"$250.80"}, {"id":176,"employee_id":"011864426-2","first_name":"Mathew","last_name":"Battyll","email":"mbattyll4v@over-blog.com","phone":"321-386-3766","gender":"Male","department":"Research and Development","address":"65072 Carey Crossing","hire_date":"5/15/2018","website":"http://ibm.com","notes":"vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat","status":2,"type":2,"salary":"$636.70"}, {"id":177,"employee_id":"570137655-9","first_name":"Forrest","last_name":"Cowderoy","email":"fcowderoy4w@ask.com","phone":"618-278-7932","gender":"Male","department":"Sales","address":"351 Buell Hill","hire_date":"12/26/2017","website":"https://123-reg.co.uk","notes":"magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet lobortis sapien sapien non mi","status":5,"type":3,"salary":"$699.94"}, {"id":178,"employee_id":"418945567-9","first_name":"Ax","last_name":"Brum","email":"abrum4x@ox.ac.uk","phone":"850-631-2124","gender":"Male","department":"Product Management","address":"261 Evergreen Parkway","hire_date":"8/31/2017","website":"http://narod.ru","notes":"non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in","status":1,"type":2,"salary":"$257.02"}, {"id":179,"employee_id":"848896179-0","first_name":"Travers","last_name":"Francecione","email":"tfrancecione4y@yelp.com","phone":"812-741-5424","gender":"Male","department":"Business Development","address":"425 Redwing Street","hire_date":"10/18/2017","website":"https://examiner.com","notes":"nibh fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse","status":6,"type":3,"salary":"$2117.44"}, {"id":180,"employee_id":"819724851-6","first_name":"Eamon","last_name":"McGarrie","email":"emcgarrie4z@upenn.edu","phone":"778-137-8339","gender":"Male","department":"Accounting","address":"1045 Crest Line Way","hire_date":"8/18/2017","website":"http://whitehouse.gov","notes":"justo eu massa donec dapibus duis at velit eu est congue elementum in hac habitasse platea","status":2,"type":1,"salary":"$493.98"}, {"id":181,"employee_id":"194192430-1","first_name":"Jenda","last_name":"Butts","email":"jbutts50@privacy.gov.au","phone":"396-649-0972","gender":"Female","department":"Research and Development","address":"25264 Sugar Alley","hire_date":"10/16/2017","website":"https://adobe.com","notes":"pede venenatis non sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi","status":1,"type":2,"salary":"$957.15"}, {"id":182,"employee_id":"750517497-5","first_name":"Batsheva","last_name":"O\'Hoey","email":"bohoey51@linkedin.com","phone":"545-981-9250","gender":"Female","department":"Services","address":"83 Swallow Circle","hire_date":"10/20/2017","website":"https://army.mil","notes":"duis at velit eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id","status":1,"type":1,"salary":"$1379.67"}, {"id":183,"employee_id":"222948193-2","first_name":"Garrick","last_name":"Coale","email":"gcoale52@blogspot.com","phone":"891-244-1372","gender":"Male","department":"Research and Development","address":"8 Lien Circle","hire_date":"10/14/2017","website":"https://qq.com","notes":"ligula sit amet eleifend pede libero quis orci nullam molestie nibh in lectus pellentesque at nulla suspendisse potenti cras in","status":4,"type":2,"salary":"$1818.60"}, {"id":184,"employee_id":"006801712-X","first_name":"Cody","last_name":"Myhan","email":"cmyhan53@hc360.com","phone":"271-326-1892","gender":"Male","department":"Sales","address":"1993 Forest Run Pass","hire_date":"3/23/2018","website":"http://vinaora.com","notes":"orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi","status":6,"type":3,"salary":"$1057.20"}, {"id":185,"employee_id":"093515326-8","first_name":"Osbert","last_name":"Musla","email":"omusla54@eventbrite.com","phone":"480-152-0632","gender":"Male","department":"Product Management","address":"032 Annamark Terrace","hire_date":"3/26/2018","website":"http://bbc.co.uk","notes":"neque libero convallis eget eleifend luctus ultricies eu nibh quisque","status":4,"type":2,"salary":"$1241.07"}, {"id":186,"employee_id":"532269185-5","first_name":"Ranice","last_name":"Lebond","email":"rlebond55@google.co.jp","phone":"157-709-4371","gender":"Female","department":"Legal","address":"2 Randy Junction","hire_date":"7/10/2018","website":"https://diigo.com","notes":"ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit","status":3,"type":1,"salary":"$1139.94"}, {"id":187,"employee_id":"820600310-X","first_name":"Guthrie","last_name":"Bandey","email":"gbandey56@studiopress.com","phone":"543-161-2237","gender":"Male","department":"Research and Development","address":"0 Pine View Circle","hire_date":"6/28/2018","website":"https://auda.org.au","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae","status":5,"type":2,"salary":"$2236.51"}, {"id":188,"employee_id":"665284501-6","first_name":"Launce","last_name":"Geldard","email":"lgeldard57@yandex.ru","phone":"506-333-2822","gender":"Male","department":"Accounting","address":"17 Haas Center","hire_date":"12/9/2017","website":"https://newsvine.com","notes":"ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed sagittis nam congue","status":4,"type":1,"salary":"$1815.94"}, {"id":189,"employee_id":"782377092-X","first_name":"Connie","last_name":"Toope","email":"ctoope58@mediafire.com","phone":"651-464-3542","gender":"Female","department":"Training","address":"3 Russell Center","hire_date":"12/14/2017","website":"https://unblog.fr","notes":"eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio odio elementum eu interdum eu tincidunt","status":5,"type":2,"salary":"$1736.72"}, {"id":190,"employee_id":"251188287-6","first_name":"Lawton","last_name":"Prigmore","email":"lprigmore59@cnet.com","phone":"738-575-3587","gender":"Male","department":"Legal","address":"050 Eastlawn Avenue","hire_date":"9/4/2017","website":"http://uol.com.br","notes":"adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue vivamus metus arcu","status":1,"type":1,"salary":"$1670.77"}, {"id":191,"employee_id":"219193763-2","first_name":"Barbara","last_name":"Aleksankin","email":"baleksankin5a@tiny.cc","phone":"224-597-1015","gender":"Female","department":"Engineering","address":"1 Gerald Crossing","hire_date":"6/14/2018","website":"http://soundcloud.com","notes":"imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce posuere","status":3,"type":1,"salary":"$2209.41"}, {"id":192,"employee_id":"643523768-9","first_name":"Bab","last_name":"Vallack","email":"bvallack5b@slashdot.org","phone":"900-188-1943","gender":"Female","department":"Marketing","address":"43013 Rutledge Avenue","hire_date":"5/14/2018","website":"http://addtoany.com","notes":"sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque eget","status":3,"type":1,"salary":"$975.83"}, {"id":193,"employee_id":"524396310-0","first_name":"Billi","last_name":"Palia","email":"bpalia5c@google.de","phone":"328-700-9101","gender":"Female","department":"Marketing","address":"66 Pearson Court","hire_date":"3/5/2018","website":"http://trellian.com","notes":"pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est","status":3,"type":2,"salary":"$1311.25"}, {"id":194,"employee_id":"666722147-1","first_name":"Gallard","last_name":"Gough","email":"ggough5d@comcast.net","phone":"943-155-0838","gender":"Male","department":"Marketing","address":"742 Eliot Street","hire_date":"11/2/2017","website":"http://latimes.com","notes":"consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel lectus in quam fringilla rhoncus mauris enim leo","status":6,"type":3,"salary":"$1869.81"}, {"id":195,"employee_id":"433807272-5","first_name":"Matty","last_name":"Lante","email":"mlante5e@netscape.com","phone":"423-832-1948","gender":"Male","department":"Product Management","address":"33278 Northport Center","hire_date":"4/14/2018","website":"https://cornell.edu","notes":"quisque ut erat curabitur gravida nisi at nibh in hac habitasse","status":6,"type":3,"salary":"$1511.57"}, {"id":196,"employee_id":"082774740-3","first_name":"Niki","last_name":"Surgen","email":"nsurgen5f@unc.edu","phone":"235-964-4962","gender":"Female","department":"Sales","address":"477 Maryland Park","hire_date":"6/3/2018","website":"https://stumbleupon.com","notes":"posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel","status":6,"type":3,"salary":"$1742.42"}, {"id":197,"employee_id":"496412396-0","first_name":"Erek","last_name":"Devereu","email":"edevereu5g@nydailynews.com","phone":"988-854-5635","gender":"Male","department":"Marketing","address":"4222 Gateway Junction","hire_date":"12/2/2017","website":"http://purevolume.com","notes":"posuere cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin","status":3,"type":1,"salary":"$2213.58"}, {"id":198,"employee_id":"815701353-4","first_name":"Ange","last_name":"Bassill","email":"abassill5h@odnoklassniki.ru","phone":"573-589-2234","gender":"Female","department":"Business Development","address":"7450 Maywood Crossing","hire_date":"12/18/2017","website":"http://time.com","notes":"a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis","status":2,"type":3,"salary":"$2381.50"}, {"id":199,"employee_id":"079850265-7","first_name":"Robena","last_name":"Jiggins","email":"rjiggins5i@comcast.net","phone":"202-269-3768","gender":"Female","department":"Accounting","address":"81 Golf View Circle","hire_date":"7/28/2017","website":"http://constantcontact.com","notes":"lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet et","status":6,"type":1,"salary":"$2227.40"}, {"id":200,"employee_id":"710192734-3","first_name":"Lari","last_name":"Sweetenham","email":"lsweetenham5j@amazon.co.jp","phone":"838-858-2584","gender":"Female","department":"Business Development","address":"1021 Mesta Hill","hire_date":"8/11/2017","website":"https://typepad.com","notes":"sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in","status":1,"type":1,"salary":"$1540.09"}, {"id":201,"employee_id":"651581571-9","first_name":"Gaelan","last_name":"Schuh","email":"gschuh5k@1688.com","phone":"745-173-2305","gender":"Male","department":"Support","address":"1 Pennsylvania Parkway","hire_date":"7/10/2018","website":"http://vk.com","notes":"interdum in ante vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus","status":6,"type":2,"salary":"$621.44"}, {"id":202,"employee_id":"396937197-X","first_name":"Valentino","last_name":"Vela","email":"vvela5l@t-online.de","phone":"549-694-5062","gender":"Male","department":"Support","address":"132 Mosinee Court","hire_date":"10/13/2017","website":"http://theglobeandmail.com","notes":"ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae","status":6,"type":2,"salary":"$1570.87"}, {"id":203,"employee_id":"455201347-5","first_name":"Paxton","last_name":"Westwood","email":"pwestwood5m@mashable.com","phone":"404-552-2652","gender":"Male","department":"Research and Development","address":"13644 Pepper Wood Road","hire_date":"4/14/2018","website":"http://amazon.co.uk","notes":"non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque","status":6,"type":1,"salary":"$307.42"}, {"id":204,"employee_id":"963542216-4","first_name":"Gianina","last_name":"Dragon","email":"gdragon5n@cmu.edu","phone":"478-617-0604","gender":"Female","department":"Legal","address":"30 Golf Course Court","hire_date":"10/20/2017","website":"http://taobao.com","notes":"amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus semper interdum","status":1,"type":2,"salary":"$2042.72"}, {"id":205,"employee_id":"005186075-9","first_name":"Patricio","last_name":"Jentges","email":"pjentges5o@cyberchimps.com","phone":"632-971-4495","gender":"Male","department":"Sales","address":"68 Clemons Alley","hire_date":"5/14/2018","website":"http://squidoo.com","notes":"ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam","status":1,"type":3,"salary":"$1983.72"}, {"id":206,"employee_id":"596930988-5","first_name":"Bogey","last_name":"Heisler","email":"bheisler5p@mashable.com","phone":"731-748-1811","gender":"Male","department":"Business Development","address":"58943 Meadow Valley Alley","hire_date":"5/11/2018","website":"http://economist.com","notes":"ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem","status":1,"type":1,"salary":"$1040.61"}, {"id":207,"employee_id":"499909156-9","first_name":"Spenser","last_name":"Pyle","email":"spyle5q@plala.or.jp","phone":"566-843-7913","gender":"Male","department":"Support","address":"900 Fordem Plaza","hire_date":"2/10/2018","website":"https://tinyurl.com","notes":"luctus ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci","status":3,"type":3,"salary":"$2133.09"}, {"id":208,"employee_id":"401266959-1","first_name":"Rayna","last_name":"Crepin","email":"rcrepin5r@webeden.co.uk","phone":"592-304-8987","gender":"Female","department":"Training","address":"469 Dovetail Plaza","hire_date":"7/3/2018","website":"https://ezinearticles.com","notes":"rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus dapibus","status":5,"type":3,"salary":"$1671.45"}, {"id":209,"employee_id":"166602922-X","first_name":"Nathalie","last_name":"Gall","email":"ngall5s@is.gd","phone":"801-654-6290","gender":"Female","department":"Human Resources","address":"4719 Stuart Plaza","hire_date":"3/22/2018","website":"http://blogspot.com","notes":"sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et","status":6,"type":1,"salary":"$1524.49"}, {"id":210,"employee_id":"284177230-6","first_name":"Ransell","last_name":"Ammer","email":"rammer5t@cnet.com","phone":"610-711-4680","gender":"Male","department":"Business Development","address":"48 Thierer Center","hire_date":"2/3/2018","website":"https://e-recht24.de","notes":"ante vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis","status":1,"type":2,"salary":"$892.45"}, {"id":211,"employee_id":"741216645-X","first_name":"Chrissie","last_name":"Devereu","email":"cdevereu5u@chron.com","phone":"763-146-3697","gender":"Male","department":"Research and Development","address":"90 Hansons Point","hire_date":"5/7/2018","website":"https://ebay.co.uk","notes":"sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula","status":2,"type":3,"salary":"$391.22"}, {"id":212,"employee_id":"837406761-6","first_name":"Odell","last_name":"Sherwood","email":"osherwood5v@umich.edu","phone":"959-550-4031","gender":"Male","department":"Sales","address":"04 Talmadge Lane","hire_date":"2/27/2018","website":"https://slideshare.net","notes":"in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum","status":4,"type":3,"salary":"$857.07"}, {"id":213,"employee_id":"411808497-X","first_name":"Baudoin","last_name":"Cesco","email":"bcesco5w@linkedin.com","phone":"416-193-4592","gender":"Male","department":"Legal","address":"1510 Michigan Point","hire_date":"8/1/2017","website":"http://simplemachines.org","notes":"vestibulum quam sapien varius ut blandit non interdum in ante vestibulum","status":1,"type":2,"salary":"$1358.70"}, {"id":214,"employee_id":"261229472-4","first_name":"Carree","last_name":"Edlington","email":"cedlington5x@ebay.com","phone":"194-150-1659","gender":"Female","department":"Research and Development","address":"30 Grayhawk Park","hire_date":"10/14/2017","website":"http://fc2.com","notes":"rutrum nulla nunc purus phasellus in felis donec semper sapien a libero nam dui proin leo","status":4,"type":3,"salary":"$1284.88"}, {"id":215,"employee_id":"929963538-2","first_name":"Mordecai","last_name":"Hatherley","email":"mhatherley5y@amazon.de","phone":"858-490-5169","gender":"Male","department":"Research and Development","address":"13854 Independence Court","hire_date":"8/24/2017","website":"https://sciencedaily.com","notes":"convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel lectus in","status":4,"type":2,"salary":"$2417.62"}, {"id":216,"employee_id":"037752030-6","first_name":"Melosa","last_name":"Overstone","email":"moverstone5z@canalblog.com","phone":"318-948-9174","gender":"Female","department":"Product Management","address":"61986 Emmet Avenue","hire_date":"4/19/2018","website":"http://blogspot.com","notes":"fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet","status":1,"type":2,"salary":"$2259.01"}, {"id":217,"employee_id":"532713055-X","first_name":"Shelden","last_name":"Dinnis","email":"sdinnis60@tinypic.com","phone":"333-186-8762","gender":"Male","department":"Accounting","address":"7255 Utah Way","hire_date":"3/14/2018","website":"https://4shared.com","notes":"libero rutrum ac lobortis vel dapibus at diam nam tristique tortor eu pede","status":3,"type":3,"salary":"$1840.38"}, {"id":218,"employee_id":"967102811-X","first_name":"Loydie","last_name":"Pavese","email":"lpavese61@a8.net","phone":"434-133-4789","gender":"Male","department":"Human Resources","address":"02602 Lien Point","hire_date":"1/4/2018","website":"https://jalbum.net","notes":"donec dapibus duis at velit eu est congue elementum in","status":6,"type":3,"salary":"$434.26"}, {"id":219,"employee_id":"460645399-0","first_name":"Alasteir","last_name":"Swetland","email":"aswetland62@amazon.co.jp","phone":"361-389-4622","gender":"Male","department":"Human Resources","address":"65 Basil Parkway","hire_date":"6/16/2018","website":"https://wikimedia.org","notes":"tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat","status":5,"type":2,"salary":"$1861.28"}, {"id":220,"employee_id":"099453213-X","first_name":"Gabbie","last_name":"McGroarty","email":"gmcgroarty63@ox.ac.uk","phone":"322-282-2538","gender":"Male","department":"Training","address":"686 Hudson Court","hire_date":"7/20/2017","website":"https://telegraph.co.uk","notes":"tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim","status":2,"type":3,"salary":"$1303.59"}, {"id":221,"employee_id":"697803051-1","first_name":"Maryanna","last_name":"McCrossan","email":"mmccrossan64@wsj.com","phone":"830-955-6927","gender":"Female","department":"Services","address":"3 Monument Lane","hire_date":"2/16/2018","website":"https://usda.gov","notes":"suscipit a feugiat et eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare","status":3,"type":2,"salary":"$1091.51"}, {"id":222,"employee_id":"808718144-1","first_name":"Doreen","last_name":"Hutt","email":"dhutt65@jugem.jp","phone":"374-621-0333","gender":"Female","department":"Product Management","address":"198 Sherman Alley","hire_date":"1/16/2018","website":"http://goo.gl","notes":"platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum praesent blandit lacinia","status":4,"type":1,"salary":"$1640.43"}, {"id":223,"employee_id":"749600110-4","first_name":"Valle","last_name":"Toulamain","email":"vtoulamain66@mail.ru","phone":"179-127-8460","gender":"Male","department":"Human Resources","address":"305 North Plaza","hire_date":"10/25/2017","website":"http://blogtalkradio.com","notes":"erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi","status":5,"type":1,"salary":"$2476.02"}, {"id":224,"employee_id":"897432026-6","first_name":"Tymon","last_name":"Melody","email":"tmelody67@discovery.com","phone":"864-587-4461","gender":"Male","department":"Support","address":"9 Pine View Avenue","hire_date":"6/27/2018","website":"http://harvard.edu","notes":"nec sem duis aliquam convallis nunc proin at turpis a pede posuere nonummy integer","status":2,"type":1,"salary":"$722.08"}, {"id":225,"employee_id":"091778125-2","first_name":"Kent","last_name":"Erridge","email":"kerridge68@usnews.com","phone":"608-307-1349","gender":"Male","department":"Marketing","address":"939 Cardinal Street","hire_date":"12/19/2017","website":"http://prlog.org","notes":"curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla","status":6,"type":2,"salary":"$333.09"}, {"id":226,"employee_id":"344788325-1","first_name":"Pincus","last_name":"Bartolomeu","email":"pbartolomeu69@ft.com","phone":"880-734-9013","gender":"Male","department":"Legal","address":"99645 Darwin Terrace","hire_date":"10/7/2017","website":"https://shutterfly.com","notes":"cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec","status":5,"type":2,"salary":"$1874.99"}, {"id":227,"employee_id":"278130480-8","first_name":"Leonardo","last_name":"Gilluley","email":"lgilluley6a@csmonitor.com","phone":"849-982-1955","gender":"Male","department":"Engineering","address":"27 Independence Lane","hire_date":"12/24/2017","website":"https://sitemeter.com","notes":"neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac","status":1,"type":1,"salary":"$805.37"}, {"id":228,"employee_id":"457121251-8","first_name":"Kordula","last_name":"Ebbitt","email":"kebbitt6b@cdc.gov","phone":"683-473-0530","gender":"Female","department":"Support","address":"615 Summerview Street","hire_date":"7/15/2018","website":"http://independent.co.uk","notes":"est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum justo","status":6,"type":3,"salary":"$1696.80"}, {"id":229,"employee_id":"235196309-1","first_name":"Odey","last_name":"Antonelli","email":"oantonelli6c@reddit.com","phone":"454-671-7595","gender":"Male","department":"Engineering","address":"01219 Ronald Regan Parkway","hire_date":"6/11/2018","website":"http://hud.gov","notes":"ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna ac consequat metus sapien","status":4,"type":3,"salary":"$1566.40"}, {"id":230,"employee_id":"741630871-2","first_name":"Terrance","last_name":"Southers","email":"tsouthers6d@aol.com","phone":"892-170-8181","gender":"Male","department":"Research and Development","address":"08453 Jay Junction","hire_date":"9/21/2017","website":"https://cbslocal.com","notes":"odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet","status":2,"type":2,"salary":"$491.31"}, {"id":231,"employee_id":"075615199-6","first_name":"Dina","last_name":"Hazell","email":"dhazell6e@sogou.com","phone":"457-105-6727","gender":"Female","department":"Services","address":"7666 Dovetail Crossing","hire_date":"12/6/2017","website":"http://google.com.br","notes":"vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci eget","status":3,"type":1,"salary":"$1164.56"}, {"id":232,"employee_id":"331046072-X","first_name":"Blake","last_name":"Dove","email":"bdove6f@sphinn.com","phone":"829-670-5501","gender":"Male","department":"Accounting","address":"3 Meadow Ridge Way","hire_date":"1/19/2018","website":"http://nymag.com","notes":"quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a","status":4,"type":2,"salary":"$395.04"}, {"id":233,"employee_id":"211173290-7","first_name":"Chanda","last_name":"Ramsby","email":"cramsby6g@mail.ru","phone":"708-724-7807","gender":"Female","department":"Marketing","address":"21160 Superior Drive","hire_date":"8/24/2017","website":"https://rakuten.co.jp","notes":"habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id mauris vulputate elementum nullam varius","status":6,"type":3,"salary":"$1579.73"}, {"id":234,"employee_id":"581993169-6","first_name":"Kristoforo","last_name":"Palin","email":"kpalin6h@google.fr","phone":"650-336-9896","gender":"Male","department":"Support","address":"7 Mandrake Drive","hire_date":"6/21/2018","website":"http://amazonaws.com","notes":"vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus etiam vel augue","status":5,"type":2,"salary":"$2428.10"}, {"id":235,"employee_id":"508052012-4","first_name":"Dorene","last_name":"Sedman","email":"dsedman6i@squidoo.com","phone":"816-321-8528","gender":"Female","department":"Accounting","address":"34650 Packers Place","hire_date":"7/21/2017","website":"http://fastcompany.com","notes":"suspendisse ornare consequat lectus in est risus auctor sed tristique in","status":2,"type":3,"salary":"$428.63"}, {"id":236,"employee_id":"086709374-9","first_name":"Britney","last_name":"Lefwich","email":"blefwich6j@cyberchimps.com","phone":"924-496-7148","gender":"Female","department":"Human Resources","address":"58387 Waubesa Way","hire_date":"8/15/2017","website":"http://bing.com","notes":"neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel","status":1,"type":1,"salary":"$832.43"}, {"id":237,"employee_id":"826923163-0","first_name":"Dulcea","last_name":"Butchart","email":"dbutchart6k@gnu.org","phone":"644-248-4778","gender":"Female","department":"Product Management","address":"29 Atwood Avenue","hire_date":"2/20/2018","website":"http://boston.com","notes":"nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat","status":2,"type":2,"salary":"$1885.23"}, {"id":238,"employee_id":"161696725-0","first_name":"Rance","last_name":"Moorey","email":"rmoorey6l@wiley.com","phone":"800-827-1401","gender":"Male","department":"Accounting","address":"957 Oak Pass","hire_date":"2/26/2018","website":"https://usda.gov","notes":"viverra eget congue eget semper rutrum nulla nunc purus phasellus in felis","status":1,"type":1,"salary":"$822.53"}, {"id":239,"employee_id":"902700180-4","first_name":"Dody","last_name":"Bissiker","email":"dbissiker6m@ezinearticles.com","phone":"557-955-0252","gender":"Female","department":"Product Management","address":"41 Main Court","hire_date":"11/23/2017","website":"http://theatlantic.com","notes":"sit amet sem fusce consequat nulla nisl nunc nisl duis","status":5,"type":3,"salary":"$1749.03"}, {"id":240,"employee_id":"599787707-8","first_name":"Borden","last_name":"Pagram","email":"bpagram6n@bluehost.com","phone":"612-878-1566","gender":"Male","department":"Support","address":"66497 Longview Court","hire_date":"10/2/2017","website":"https://cocolog-nifty.com","notes":"vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci eget orci vehicula condimentum curabitur in","status":1,"type":1,"salary":"$1261.51"}, {"id":241,"employee_id":"448140376-4","first_name":"Gill","last_name":"Scotson","email":"gscotson6o@wisc.edu","phone":"111-522-6972","gender":"Female","department":"Engineering","address":"3 Katie Place","hire_date":"6/2/2018","website":"https://jimdo.com","notes":"velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus","status":1,"type":2,"salary":"$2332.46"}, {"id":242,"employee_id":"615821017-X","first_name":"Colan","last_name":"Beardsdale","email":"cbeardsdale6p@shutterfly.com","phone":"392-912-6568","gender":"Male","department":"Legal","address":"2 Maple Wood Trail","hire_date":"5/29/2018","website":"http://networksolutions.com","notes":"arcu sed augue aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac habitasse","status":4,"type":2,"salary":"$1949.49"}, {"id":243,"employee_id":"154724310-4","first_name":"Shane","last_name":"Worgen","email":"sworgen6q@prweb.com","phone":"827-972-7207","gender":"Male","department":"Training","address":"4 Meadow Ridge Center","hire_date":"4/14/2018","website":"http://wordpress.com","notes":"posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus","status":2,"type":2,"salary":"$1464.06"}, {"id":244,"employee_id":"026255598-0","first_name":"Kennie","last_name":"Verrier","email":"kverrier6r@reddit.com","phone":"857-439-9419","gender":"Male","department":"Training","address":"1009 Burrows Hill","hire_date":"6/18/2018","website":"https://homestead.com","notes":"a feugiat et eros vestibulum ac est lacinia nisi venenatis","status":4,"type":1,"salary":"$710.71"}, {"id":245,"employee_id":"617423589-0","first_name":"Nora","last_name":"Tiuit","email":"ntiuit6s@opensource.org","phone":"516-119-9392","gender":"Female","department":"Product Management","address":"611 Amoth Trail","hire_date":"2/12/2018","website":"http://redcross.org","notes":"nisl nunc rhoncus dui vel sem sed sagittis nam congue risus","status":6,"type":1,"salary":"$341.28"}, {"id":246,"employee_id":"376249049-X","first_name":"Corbet","last_name":"Glassford","email":"cglassford6t@ycombinator.com","phone":"907-225-7304","gender":"Male","department":"Support","address":"88954 Scott Crossing","hire_date":"1/16/2018","website":"http://simplemachines.org","notes":"nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac est lacinia","status":6,"type":1,"salary":"$900.01"}, {"id":247,"employee_id":"361459129-8","first_name":"Michele","last_name":"primary","email":"mprimary6u@eventbrite.com","phone":"720-375-5170","gender":"Female","department":"Business Development","address":"83 Caliangt Way","hire_date":"6/21/2018","website":"http://fema.gov","notes":"ligula sit amet eleifend pede libero quis orci nullam molestie nibh in lectus pellentesque at nulla suspendisse potenti cras in","status":2,"type":3,"salary":"$1936.51"}, {"id":248,"employee_id":"550893256-9","first_name":"Nev","last_name":"Poskitt","email":"nposkitt6v@amazon.co.uk","phone":"190-312-7807","gender":"Male","department":"Accounting","address":"51 Bartillon Hill","hire_date":"4/9/2018","website":"http://sina.com.cn","notes":"sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci","status":6,"type":3,"salary":"$1977.42"}, {"id":249,"employee_id":"266123172-2","first_name":"Charmian","last_name":"Dionisio","email":"cdionisio6w@sbwire.com","phone":"508-658-4985","gender":"Female","department":"Research and Development","address":"69125 Hoepker Avenue","hire_date":"11/26/2017","website":"http://nasa.gov","notes":"sed accumsan felis ut at dolor quis odio consequat varius integer ac leo pellentesque ultrices","status":4,"type":2,"salary":"$1139.03"}, {"id":250,"employee_id":"901898152-4","first_name":"Waly","last_name":"Braddon","email":"wbraddon6x@etsy.com","phone":"678-859-9650","gender":"Female","department":"Product Management","address":"088 Pennsylvania Parkway","hire_date":"1/1/2018","website":"https://jiathis.com","notes":"enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac","status":5,"type":3,"salary":"$807.26"}, {"id":251,"employee_id":"852226432-5","first_name":"Stanford","last_name":"Stopp","email":"sstopp6y@addthis.com","phone":"637-731-1621","gender":"Male","department":"Human Resources","address":"3338 Fieldstone Terrace","hire_date":"4/5/2018","website":"http://plala.or.jp","notes":"aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet et commodo vulputate justo in","status":4,"type":1,"salary":"$615.82"}, {"id":252,"employee_id":"164816950-3","first_name":"Hieronymus","last_name":"Klimczak","email":"hklimczak6z@marketwatch.com","phone":"553-166-4570","gender":"Male","department":"Support","address":"52161 Thierer Pass","hire_date":"7/5/2018","website":"http://webeden.co.uk","notes":"vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient","status":5,"type":3,"salary":"$899.14"}, {"id":253,"employee_id":"618243263-2","first_name":"Nicolais","last_name":"Rodgier","email":"nrodgier70@123-reg.co.uk","phone":"479-784-1857","gender":"Male","department":"Accounting","address":"603 Amoth Place","hire_date":"1/14/2018","website":"http://columbia.edu","notes":"fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti in","status":4,"type":1,"salary":"$1382.76"}, {"id":254,"employee_id":"602289169-8","first_name":"Tiphany","last_name":"Hammant","email":"thammant71@usgs.gov","phone":"123-624-2612","gender":"Female","department":"Human Resources","address":"0908 Stephen Plaza","hire_date":"2/26/2018","website":"https://ucoz.ru","notes":"eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna pretium","status":5,"type":3,"salary":"$1594.78"}, {"id":255,"employee_id":"916979999-7","first_name":"Hermie","last_name":"Reggler","email":"hreggler72@house.gov","phone":"760-890-0698","gender":"Male","department":"Sales","address":"77322 Gateway Circle","hire_date":"9/11/2017","website":"http://seattletimes.com","notes":"orci pede venenatis non sodales sed tincidunt eu felis fusce","status":2,"type":1,"salary":"$433.44"}, {"id":256,"employee_id":"774356728-1","first_name":"Mason","last_name":"Shingles","email":"mshingles73@jalbum.net","phone":"478-125-6198","gender":"Male","department":"Sales","address":"721 Havey Center","hire_date":"4/13/2018","website":"https://ehow.com","notes":"integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent","status":6,"type":3,"salary":"$566.23"}, {"id":257,"employee_id":"469749753-8","first_name":"Jonah","last_name":"McLugish","email":"jmclugish74@si.edu","phone":"450-313-4218","gender":"Male","department":"Sales","address":"9 Kingsford Drive","hire_date":"2/1/2018","website":"https://businessweek.com","notes":"lectus in quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit amet cursus id turpis integer","status":2,"type":1,"salary":"$1295.46"}, {"id":258,"employee_id":"891738289-4","first_name":"Fonz","last_name":"De\'Vere - Hunt","email":"fdeverehunt75@domainmarket.com","phone":"251-524-2806","gender":"Male","department":"Sales","address":"5 Sauthoff Street","hire_date":"6/12/2018","website":"https://bizjournals.com","notes":"erat curabitur gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin","status":2,"type":2,"salary":"$1604.49"}, {"id":259,"employee_id":"087978435-0","first_name":"Agnola","last_name":"Francescone","email":"afrancescone76@phpbb.com","phone":"535-996-2880","gender":"Female","department":"Accounting","address":"21092 Forster Drive","hire_date":"11/17/2017","website":"http://abc.net.au","notes":"arcu libero rutrum ac lobortis vel dapibus at diam nam tristique tortor eu pede","status":3,"type":3,"salary":"$537.10"}, {"id":260,"employee_id":"735651281-5","first_name":"Jo-ann","last_name":"Moon","email":"jmoon77@home.pl","phone":"971-838-3777","gender":"Female","department":"Support","address":"016 Grim Road","hire_date":"8/29/2017","website":"http://pen.io","notes":"quis turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec","status":6,"type":2,"salary":"$2178.02"}, {"id":261,"employee_id":"405615507-0","first_name":"Christye","last_name":"Ramage","email":"cramage78@twitter.com","phone":"179-607-0154","gender":"Female","department":"Engineering","address":"71 Kenwood Street","hire_date":"7/2/2018","website":"http://harvard.edu","notes":"amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac","status":2,"type":3,"salary":"$2018.25"}, {"id":262,"employee_id":"254124619-6","first_name":"Say","last_name":"Everix","email":"severix79@eepurl.com","phone":"822-477-7882","gender":"Male","department":"Legal","address":"4601 Straubel Center","hire_date":"7/1/2018","website":"http://so-net.ne.jp","notes":"morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum neque sapien placerat ante nulla justo","status":5,"type":2,"salary":"$979.62"}, {"id":263,"employee_id":"714870821-4","first_name":"Mildrid","last_name":"Colliford","email":"mcolliford7a@cpanel.net","phone":"335-841-0402","gender":"Female","department":"Research and Development","address":"7525 Dawn Hill","hire_date":"6/8/2018","website":"http://rambler.ru","notes":"turpis enim blandit mi in porttitor pede justo eu massa donec dapibus duis at velit eu est congue elementum","status":5,"type":1,"salary":"$2332.05"}, {"id":264,"employee_id":"444226998-X","first_name":"Horton","last_name":"Viant","email":"hviant7b@hostgator.com","phone":"522-897-3684","gender":"Male","department":"Engineering","address":"8008 Twin Pines Circle","hire_date":"12/28/2017","website":"http://mozilla.org","notes":"ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis","status":2,"type":3,"salary":"$332.53"}, {"id":265,"employee_id":"638057551-0","first_name":"Shanon","last_name":"Beckley","email":"sbeckley7c@oaic.gov.au","phone":"981-758-8017","gender":"Female","department":"Marketing","address":"49336 Ridgeview Pass","hire_date":"9/22/2017","website":"https://baidu.com","notes":"habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis","status":5,"type":1,"salary":"$1342.00"}, {"id":266,"employee_id":"264528256-3","first_name":"Frasco","last_name":"Doddrell","email":"fdoddrell7d@cisco.com","phone":"953-588-9799","gender":"Male","department":"Accounting","address":"031 Spohn Place","hire_date":"4/29/2018","website":"http://intel.com","notes":"odio porttitor id consequat in consequat ut nulla sed accumsan felis ut at","status":2,"type":3,"salary":"$1821.71"}, {"id":267,"employee_id":"620037444-9","first_name":"Efren","last_name":"Ozelton","email":"eozelton7e@shop-pro.jp","phone":"182-274-8460","gender":"Male","department":"Training","address":"5 Glacier Hill Place","hire_date":"1/11/2018","website":"https://cloudflare.com","notes":"condimentum neque sapien placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit","status":3,"type":3,"salary":"$2446.18"}, {"id":268,"employee_id":"747007151-2","first_name":"Jeremias","last_name":"Ansteys","email":"jansteys7f@pagesperso-orange.fr","phone":"121-687-9691","gender":"Male","department":"Support","address":"206 Waubesa Lane","hire_date":"9/10/2017","website":"http://vistaprint.com","notes":"justo nec condimentum neque sapien placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet","status":3,"type":2,"salary":"$1862.76"}, {"id":269,"employee_id":"633719786-0","first_name":"Had","last_name":"Larmor","email":"hlarmor7g@who.int","phone":"792-815-5244","gender":"Male","department":"Engineering","address":"21479 Lakewood Gardens Terrace","hire_date":"2/2/2018","website":"http://elpais.com","notes":"sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum","status":3,"type":1,"salary":"$754.10"}, {"id":270,"employee_id":"150900253-7","first_name":"Ring","last_name":"Dockerty","email":"rdockerty7h@patch.com","phone":"370-832-2897","gender":"Male","department":"Accounting","address":"6920 Nancy Pass","hire_date":"3/16/2018","website":"http://foxnews.com","notes":"vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia","status":6,"type":3,"salary":"$1398.74"}, {"id":271,"employee_id":"308867780-2","first_name":"Torrance","last_name":"De Beauchemp","email":"tdebeauchemp7i@dyndns.org","phone":"131-659-2943","gender":"Male","department":"Legal","address":"99517 Brown Pass","hire_date":"6/19/2018","website":"https://seesaa.net","notes":"amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus dapibus augue vel","status":1,"type":1,"salary":"$642.34"}, {"id":272,"employee_id":"465210678-5","first_name":"Gerda","last_name":"Kilban","email":"gkilban7j@wordpress.com","phone":"127-861-0265","gender":"Female","department":"Services","address":"953 Corscot Way","hire_date":"4/11/2018","website":"https://bloglines.com","notes":"eget tincidunt eget tempus vel pede morbi porttitor lorem id","status":5,"type":2,"salary":"$1243.66"}, {"id":273,"employee_id":"107092987-5","first_name":"Charin","last_name":"Mityashin","email":"cmityashin7k@theglobeandmail.com","phone":"423-805-4825","gender":"Female","department":"Legal","address":"2 Muir Junction","hire_date":"5/24/2018","website":"http://acquirethisname.com","notes":"augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida","status":6,"type":2,"salary":"$539.31"}, {"id":274,"employee_id":"310707991-X","first_name":"Carmelle","last_name":"Pache","email":"cpache7l@disqus.com","phone":"729-123-0155","gender":"Female","department":"Research and Development","address":"758 Continental Center","hire_date":"11/20/2017","website":"http://usa.gov","notes":"id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus sit amet sem fusce consequat nulla","status":6,"type":1,"salary":"$1876.22"}, {"id":275,"employee_id":"309278497-9","first_name":"Cloe","last_name":"Grono","email":"cgrono7m@rambler.ru","phone":"381-473-5768","gender":"Female","department":"Research and Development","address":"643 Calypso Alley","hire_date":"2/10/2018","website":"http://intel.com","notes":"lectus pellentesque eget nunc donec quis orci eget orci vehicula condimentum curabitur in libero ut massa","status":2,"type":2,"salary":"$328.72"}, {"id":276,"employee_id":"163670883-8","first_name":"Nye","last_name":"Caseborne","email":"ncaseborne7n@nhs.uk","phone":"822-569-2084","gender":"Male","department":"Support","address":"81557 Packers Circle","hire_date":"12/3/2017","website":"https://1688.com","notes":"arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque eget nunc","status":4,"type":2,"salary":"$1951.41"}, {"id":277,"employee_id":"807982530-0","first_name":"Calv","last_name":"Griffe","email":"cgriffe7o@mail.ru","phone":"309-457-7174","gender":"Male","department":"Legal","address":"8980 Jenna Pass","hire_date":"7/30/2017","website":"http://ft.com","notes":"etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat","status":6,"type":3,"salary":"$1857.21"}, {"id":278,"employee_id":"598513541-1","first_name":"Theodoric","last_name":"Wallicker","email":"twallicker7p@e-recht24.de","phone":"266-387-9797","gender":"Male","department":"Business Development","address":"22 Graceland Crossing","hire_date":"2/3/2018","website":"http://army.mil","notes":"et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor lacus at turpis donec posuere","status":3,"type":1,"salary":"$301.36"}, {"id":279,"employee_id":"181306384-2","first_name":"Linn","last_name":"Antonio","email":"lantonio7q@gravatar.com","phone":"462-885-7094","gender":"Male","department":"Human Resources","address":"2 Mockingbird Junction","hire_date":"11/3/2017","website":"https://zimbio.com","notes":"semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero","status":4,"type":1,"salary":"$2085.32"}, {"id":280,"employee_id":"277706165-3","first_name":"Gaylor","last_name":"Suatt","email":"gsuatt7r@hp.com","phone":"684-356-9857","gender":"Male","department":"Business Development","address":"9 Mesta Drive","hire_date":"12/5/2017","website":"http://google.com.hk","notes":"in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim","status":2,"type":1,"salary":"$982.05"}, {"id":281,"employee_id":"301639900-8","first_name":"Nanny","last_name":"Haylock","email":"nhaylock7s@acquirethisname.com","phone":"669-313-8347","gender":"Female","department":"Engineering","address":"269 Fulton Place","hire_date":"6/27/2018","website":"http://sbwire.com","notes":"ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante","status":2,"type":2,"salary":"$292.09"}, {"id":282,"employee_id":"053888448-7","first_name":"Berrie","last_name":"Abbots","email":"babbots7t@lycos.com","phone":"480-456-3043","gender":"Female","department":"Support","address":"7 Luster Circle","hire_date":"8/16/2017","website":"http://slideshare.net","notes":"fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed","status":1,"type":2,"salary":"$685.82"}, {"id":283,"employee_id":"098482265-8","first_name":"Nathaniel","last_name":"Pauls","email":"npauls7u@home.pl","phone":"657-584-6210","gender":"Male","department":"Services","address":"867 Menomonie Road","hire_date":"3/14/2018","website":"https://hubpages.com","notes":"dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non pretium","status":4,"type":1,"salary":"$355.30"}, {"id":284,"employee_id":"087586302-7","first_name":"Hesther","last_name":"Laughlan","email":"hlaughlan7v@jiathis.com","phone":"960-473-6262","gender":"Female","department":"Research and Development","address":"1696 Twin Pines Point","hire_date":"3/23/2018","website":"https://unesco.org","notes":"vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet lobortis sapien sapien non mi","status":2,"type":2,"salary":"$2275.59"}, {"id":285,"employee_id":"237086376-5","first_name":"Darill","last_name":"Milne","email":"dmilne7w@bizjournals.com","phone":"450-941-7221","gender":"Male","department":"Engineering","address":"20 Mitchell Park","hire_date":"2/7/2018","website":"https://omniture.com","notes":"congue etiam justo etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut","status":6,"type":2,"salary":"$1506.88"}, {"id":286,"employee_id":"490608835-X","first_name":"Shawnee","last_name":"Hasselby","email":"shasselby7x@prlog.org","phone":"153-202-4950","gender":"Female","department":"Engineering","address":"8 Scoville Court","hire_date":"4/14/2018","website":"https://ifeng.com","notes":"nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo eu","status":3,"type":2,"salary":"$1316.01"}, {"id":287,"employee_id":"412504905-X","first_name":"Bidget","last_name":"Yerrington","email":"byerrington7y@home.pl","phone":"224-835-3319","gender":"Female","department":"Marketing","address":"45 Sherman Plaza","hire_date":"10/27/2017","website":"http://whitehouse.gov","notes":"nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus","status":5,"type":2,"salary":"$1501.27"}, {"id":288,"employee_id":"223859497-3","first_name":"Sasha","last_name":"Zorzin","email":"szorzin7z@dion.ne.jp","phone":"291-899-2406","gender":"Female","department":"Accounting","address":"2819 Towne Alley","hire_date":"8/8/2017","website":"https://pcworld.com","notes":"pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices","status":1,"type":2,"salary":"$2248.19"}, {"id":289,"employee_id":"403340559-3","first_name":"Dareen","last_name":"Lopez","email":"dlopez80@dion.ne.jp","phone":"368-310-7343","gender":"Female","department":"Legal","address":"8 Anzinger Place","hire_date":"11/23/2017","website":"https://howstuffworks.com","notes":"vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent","status":1,"type":3,"salary":"$1451.44"}, {"id":290,"employee_id":"809667453-6","first_name":"Ericha","last_name":"Mayhew","email":"emayhew81@google.it","phone":"923-107-5382","gender":"Female","department":"Legal","address":"15 Dovetail Point","hire_date":"4/5/2018","website":"http://netlog.com","notes":"mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac","status":4,"type":2,"salary":"$571.91"}, {"id":291,"employee_id":"996544982-1","first_name":"Joana","last_name":"Hurch","email":"jhurch82@blinklist.com","phone":"323-570-3104","gender":"Female","department":"Product Management","address":"6 Gina Junction","hire_date":"9/25/2017","website":"http://51.la","notes":"lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit nam nulla integer pede justo","status":4,"type":1,"salary":"$1845.68"}, {"id":292,"employee_id":"215493075-1","first_name":"Pollyanna","last_name":"le Keux","email":"plekeux83@gravatar.com","phone":"572-731-3140","gender":"Female","department":"Accounting","address":"6 Ridgeway Place","hire_date":"8/5/2017","website":"https://free.fr","notes":"leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac","status":2,"type":3,"salary":"$252.49"}, {"id":293,"employee_id":"037036201-2","first_name":"Nicola","last_name":"Gymlett","email":"ngymlett84@artisteer.com","phone":"574-535-6890","gender":"Female","department":"Engineering","address":"30945 Namekagon Trail","hire_date":"6/2/2018","website":"https://noaa.gov","notes":"quam pharetra magna ac consequat metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci","status":2,"type":1,"salary":"$2458.19"}, {"id":294,"employee_id":"315397200-1","first_name":"Kacy","last_name":"Danilowicz","email":"kdanilowicz85@sakura.ne.jp","phone":"799-523-5840","gender":"Female","department":"Services","address":"110 Oneill Alley","hire_date":"5/8/2018","website":"http://plala.or.jp","notes":"sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue vivamus","status":4,"type":3,"salary":"$2190.39"}, {"id":295,"employee_id":"070718246-8","first_name":"Annemarie","last_name":"Duffyn","email":"aduffyn86@hp.com","phone":"778-883-9811","gender":"Female","department":"Product Management","address":"268 Grasskamp Crossing","hire_date":"3/18/2018","website":"https://cam.ac.uk","notes":"mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a pede posuere nonummy integer","status":6,"type":2,"salary":"$898.77"}, {"id":296,"employee_id":"167312550-6","first_name":"Rebecka","last_name":"Brenard","email":"rbrenard87@tinyurl.com","phone":"499-787-5753","gender":"Female","department":"Services","address":"3 1st Alley","hire_date":"12/30/2017","website":"http://lulu.com","notes":"sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien","status":1,"type":1,"salary":"$873.75"}, {"id":297,"employee_id":"725923240-4","first_name":"Betteanne","last_name":"Fiennes","email":"bfiennes88@free.fr","phone":"827-200-8963","gender":"Female","department":"Accounting","address":"074 Sullivan Plaza","hire_date":"10/8/2017","website":"https://bizjournals.com","notes":"pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut","status":3,"type":1,"salary":"$434.06"}, {"id":298,"employee_id":"150162788-0","first_name":"Devin","last_name":"Scamel","email":"dscamel89@a8.net","phone":"424-569-9626","gender":"Female","department":"Marketing","address":"532 Kings Way","hire_date":"6/2/2018","website":"https://tinyurl.com","notes":"aliquam sit amet diam in magna bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce","status":3,"type":3,"salary":"$1799.64"}, {"id":299,"employee_id":"424818371-4","first_name":"Lavinie","last_name":"Collumbell","email":"lcollumbell8a@issuu.com","phone":"202-877-4681","gender":"Female","department":"Sales","address":"069 Tony Alley","hire_date":"10/23/2017","website":"https://ebay.co.uk","notes":"eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer","status":6,"type":1,"salary":"$1350.61"}, {"id":300,"employee_id":"334187692-8","first_name":"Israel","last_name":"Greening","email":"igreening8b@howstuffworks.com","phone":"870-777-0048","gender":"Male","department":"Legal","address":"16 Crownhardt Trail","hire_date":"7/10/2018","website":"https://ycombinator.com","notes":"justo eu massa donec dapibus duis at velit eu est congue elementum in hac habitasse platea dictumst","status":5,"type":3,"salary":"$899.15"}, {"id":301,"employee_id":"578611988-2","first_name":"Constanta","last_name":"Moro","email":"cmoro8c@yahoo.com","phone":"996-690-8094","gender":"Female","department":"Accounting","address":"59779 Kim Parkway","hire_date":"1/14/2018","website":"https://studiopress.com","notes":"odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam","status":5,"type":1,"salary":"$1689.71"}, {"id":302,"employee_id":"414540897-7","first_name":"Whit","last_name":"Cawdron","email":"wcawdron8d@walmart.com","phone":"610-570-2993","gender":"Male","department":"Training","address":"5 Cherokee Park","hire_date":"3/9/2018","website":"https://altervista.org","notes":"urna pretium nisl ut volutpat sapien arcu sed augue aliquam erat volutpat in congue etiam justo etiam","status":3,"type":3,"salary":"$1301.25"}, {"id":303,"employee_id":"610644395-5","first_name":"Josephine","last_name":"Hustler","email":"jhustler8e@home.pl","phone":"754-290-5586","gender":"Female","department":"Sales","address":"1 Columbus Center","hire_date":"7/8/2018","website":"https://apache.org","notes":"est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum","status":1,"type":3,"salary":"$737.25"}, {"id":304,"employee_id":"247568457-7","first_name":"Padgett","last_name":"Petkovic","email":"ppetkovic8f@sciencedaily.com","phone":"706-883-1715","gender":"Male","department":"Training","address":"7562 Elmside Avenue","hire_date":"8/25/2017","website":"https://dot.gov","notes":"eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio","status":3,"type":1,"salary":"$315.46"}, {"id":305,"employee_id":"284294417-8","first_name":"Hermine","last_name":"Gorick","email":"hgorick8g@deviantart.com","phone":"445-925-1000","gender":"Female","department":"Business Development","address":"018 Lerdahl Alley","hire_date":"7/1/2018","website":"http://spotify.com","notes":"dapibus nulla suscipit ligula in lacus curabitur at ipsum ac","status":2,"type":3,"salary":"$1639.32"}, {"id":306,"employee_id":"165433796-X","first_name":"Solomon","last_name":"Hargess","email":"shargess8h@360.cn","phone":"478-786-0363","gender":"Male","department":"Human Resources","address":"773 Redwing Trail","hire_date":"4/1/2018","website":"https://wunderground.com","notes":"id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed augue aliquam","status":3,"type":2,"salary":"$1006.12"}, {"id":307,"employee_id":"509293137-X","first_name":"Ilaire","last_name":"De Atta","email":"ideatta8i@weather.com","phone":"397-577-1997","gender":"Male","department":"Sales","address":"390 Prairie Rose Street","hire_date":"10/20/2017","website":"http://un.org","notes":"penatibus et magnis dis parturient montes nascetur ridiculus mus etiam vel augue","status":5,"type":3,"salary":"$1657.60"}, {"id":308,"employee_id":"809256679-8","first_name":"Nanny","last_name":"Yakobovitz","email":"nyakobovitz8j@1688.com","phone":"614-500-9492","gender":"Female","department":"Research and Development","address":"341 Cherokee Terrace","hire_date":"1/5/2018","website":"https://census.gov","notes":"cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes","status":5,"type":3,"salary":"$957.73"}, {"id":309,"employee_id":"923853518-3","first_name":"Amelie","last_name":"Swindle","email":"aswindle8k@google.com.hk","phone":"728-901-9623","gender":"Female","department":"Research and Development","address":"6 Clove Road","hire_date":"11/26/2017","website":"https://marketplace.net","notes":"arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque eget","status":3,"type":3,"salary":"$873.12"}, {"id":310,"employee_id":"940525921-0","first_name":"Petunia","last_name":"Tiler","email":"ptiler8l@scientificamerican.com","phone":"225-162-6754","gender":"Female","department":"Business Development","address":"811 Norway Maple Hill","hire_date":"7/22/2017","website":"http://cyberchimps.com","notes":"euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin","status":1,"type":1,"salary":"$1918.35"}, {"id":311,"employee_id":"623711021-6","first_name":"Sonya","last_name":"Yepiskopov","email":"syepiskopov8m@yellowpages.com","phone":"991-193-4740","gender":"Female","department":"Marketing","address":"531 Manitowish Park","hire_date":"7/17/2018","website":"http://surveymonkey.com","notes":"donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum","status":2,"type":3,"salary":"$1770.66"}, {"id":312,"employee_id":"860056745-9","first_name":"Peter","last_name":"Mustard","email":"pmustard8n@topsy.com","phone":"914-359-1940","gender":"Male","department":"Services","address":"7851 Ridgeview Pass","hire_date":"8/5/2017","website":"http://ycombinator.com","notes":"pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique","status":1,"type":2,"salary":"$962.75"}, {"id":313,"employee_id":"692365562-5","first_name":"Alvy","last_name":"Chiommienti","email":"achiommienti8o@ameblo.jp","phone":"142-797-2774","gender":"Male","department":"Legal","address":"030 Eagan Avenue","hire_date":"3/2/2018","website":"http://hc360.com","notes":"mauris eget massa tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu nibh quisque","status":5,"type":1,"salary":"$2481.85"}, {"id":314,"employee_id":"175423636-7","first_name":"Vitoria","last_name":"Glanton","email":"vglanton8p@phoca.cz","phone":"903-826-9993","gender":"Female","department":"Human Resources","address":"811 Pond Road","hire_date":"8/8/2017","website":"http://cornell.edu","notes":"eget orci vehicula condimentum curabitur in libero ut massa volutpat","status":1,"type":3,"salary":"$1908.59"}, {"id":315,"employee_id":"034637767-6","first_name":"Lizbeth","last_name":"McIndrew","email":"lmcindrew8q@washington.edu","phone":"982-226-5817","gender":"Female","department":"Business Development","address":"3625 Charing Cross Avenue","hire_date":"8/18/2017","website":"http://usa.gov","notes":"a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla","status":6,"type":3,"salary":"$2025.44"}, {"id":316,"employee_id":"274398934-3","first_name":"Briana","last_name":"Somes","email":"bsomes8r@yelp.com","phone":"221-769-2932","gender":"Female","department":"Training","address":"528 Old Gate Road","hire_date":"7/23/2017","website":"https://jimdo.com","notes":"donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet","status":1,"type":3,"salary":"$1720.83"}, {"id":317,"employee_id":"129990272-3","first_name":"Artus","last_name":"Balentyne","email":"abalentyne8s@opera.com","phone":"439-249-5582","gender":"Male","department":"Sales","address":"564 Weeping Birch Junction","hire_date":"3/14/2018","website":"https://photobucket.com","notes":"consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue","status":2,"type":1,"salary":"$2115.08"}, {"id":318,"employee_id":"066881048-3","first_name":"Papageno","last_name":"Cosson","email":"pcosson8t@princeton.edu","phone":"443-892-1710","gender":"Male","department":"Business Development","address":"38 Gale Parkway","hire_date":"11/18/2017","website":"http://timesonline.co.uk","notes":"pellentesque at nulla suspendisse potenti cras in purus eu magna vulputate luctus","status":5,"type":1,"salary":"$1177.08"}, {"id":319,"employee_id":"209633838-7","first_name":"Rosalinde","last_name":"Elmar","email":"relmar8u@163.com","phone":"687-330-4390","gender":"Female","department":"Training","address":"89 Ridge Oak Junction","hire_date":"6/19/2018","website":"http://unesco.org","notes":"mi in porttitor pede justo eu massa donec dapibus duis at velit eu est congue elementum in hac","status":3,"type":3,"salary":"$981.78"}, {"id":320,"employee_id":"739849131-X","first_name":"Oralie","last_name":"Walton","email":"owalton8v@upenn.edu","phone":"690-833-6583","gender":"Female","department":"Legal","address":"458 Warner Pass","hire_date":"12/24/2017","website":"https://1688.com","notes":"eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus et","status":6,"type":1,"salary":"$344.13"}, {"id":321,"employee_id":"715189385-X","first_name":"Rosemaria","last_name":"Picopp","email":"rpicopp8w@army.mil","phone":"532-931-5965","gender":"Female","department":"Business Development","address":"76 Loeprich Avenue","hire_date":"9/29/2017","website":"http://woothemes.com","notes":"lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit","status":5,"type":2,"salary":"$288.15"}, {"id":322,"employee_id":"166085089-4","first_name":"Carline","last_name":"Pittwood","email":"cpittwood8x@hatena.ne.jp","phone":"422-530-3879","gender":"Female","department":"Engineering","address":"87585 Derek Point","hire_date":"8/27/2017","website":"http://usatoday.com","notes":"hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem","status":3,"type":3,"salary":"$1207.13"}, {"id":323,"employee_id":"157554253-6","first_name":"Jilleen","last_name":"Cropton","email":"jcropton8y@disqus.com","phone":"828-751-3129","gender":"Female","department":"Legal","address":"0 Kings Hill","hire_date":"6/23/2018","website":"http://mediafire.com","notes":"praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet","status":5,"type":2,"salary":"$1868.72"}, {"id":324,"employee_id":"437111358-3","first_name":"Ailey","last_name":"Wandless","email":"awandless8z@fda.gov","phone":"343-563-1843","gender":"Female","department":"Sales","address":"209 Annamark Terrace","hire_date":"11/29/2017","website":"https://g.co","notes":"sed tristique in tempus sit amet sem fusce consequat nulla nisl","status":6,"type":1,"salary":"$700.60"}, {"id":325,"employee_id":"425405666-4","first_name":"Benn","last_name":"Darnody","email":"bdarnody90@forbes.com","phone":"317-671-4370","gender":"Male","department":"Accounting","address":"6 Annamark Trail","hire_date":"8/1/2017","website":"http://sphinn.com","notes":"ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus sit","status":3,"type":3,"salary":"$1648.12"}, {"id":326,"employee_id":"027147980-9","first_name":"Javier","last_name":"Dobel","email":"jdobel91@ftc.gov","phone":"616-238-3661","gender":"Male","department":"Services","address":"28 Morrow Way","hire_date":"8/28/2017","website":"https://aol.com","notes":"praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit nam nulla integer","status":4,"type":2,"salary":"$1671.91"}, {"id":327,"employee_id":"780064513-4","first_name":"Rodolph","last_name":"Raymond","email":"rraymond92@census.gov","phone":"223-105-4656","gender":"Male","department":"Product Management","address":"1 Superior Road","hire_date":"4/24/2018","website":"http://feedburner.com","notes":"nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan tortor","status":3,"type":2,"salary":"$1793.50"}, {"id":328,"employee_id":"099405312-6","first_name":"Orrin","last_name":"Proctor","email":"oproctor93@boston.com","phone":"894-981-4761","gender":"Male","department":"Accounting","address":"4024 Arapahoe Road","hire_date":"1/28/2018","website":"http://tuttocitta.it","notes":"phasellus id sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean","status":6,"type":1,"salary":"$2362.24"}, {"id":329,"employee_id":"965885138-X","first_name":"Quincey","last_name":"Crofts","email":"qcrofts94@nifty.com","phone":"120-205-1280","gender":"Male","department":"Engineering","address":"607 Ronald Regan Circle","hire_date":"12/2/2017","website":"https://ustream.tv","notes":"nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in","status":1,"type":2,"salary":"$712.06"}, {"id":330,"employee_id":"911951987-7","first_name":"Perri","last_name":"O\'Boyle","email":"poboyle95@sohu.com","phone":"860-677-2496","gender":"Female","department":"Legal","address":"3352 Luster Court","hire_date":"12/11/2017","website":"https://ustream.tv","notes":"venenatis turpis enim blandit mi in porttitor pede justo eu massa donec dapibus","status":4,"type":3,"salary":"$521.69"}, {"id":331,"employee_id":"146914324-0","first_name":"Dante","last_name":"Bolens","email":"dbolens96@bbb.org","phone":"448-274-0240","gender":"Male","department":"Training","address":"63 Oak Valley Terrace","hire_date":"12/12/2017","website":"https://blinklist.com","notes":"a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis molestie lorem quisque ut","status":1,"type":2,"salary":"$1297.71"}, {"id":332,"employee_id":"699716432-3","first_name":"Tamas","last_name":"Stenning","email":"tstenning97@google.com.br","phone":"953-569-7039","gender":"Male","department":"Marketing","address":"37 Trailsway Hill","hire_date":"3/2/2018","website":"https://smugmug.com","notes":"amet lobortis sapien sapien non mi integer ac neque duis","status":3,"type":1,"salary":"$900.97"}, {"id":333,"employee_id":"426960913-3","first_name":"Leighton","last_name":"Milstead","email":"lmilstead98@aboutads.info","phone":"507-834-7444","gender":"Male","department":"Marketing","address":"6334 Havey Pass","hire_date":"9/8/2017","website":"http://oracle.com","notes":"blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing","status":5,"type":3,"salary":"$921.55"}, {"id":334,"employee_id":"333636015-3","first_name":"Marty","last_name":"Filan","email":"mfilan99@guardian.co.uk","phone":"813-841-7462","gender":"Male","department":"Product Management","address":"4 Mesta Circle","hire_date":"11/9/2017","website":"https://jimdo.com","notes":"pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus sit amet","status":5,"type":3,"salary":"$2229.49"}, {"id":335,"employee_id":"380151527-3","first_name":"Daffi","last_name":"Outlaw","email":"doutlaw9a@last.fm","phone":"797-403-3462","gender":"Female","department":"Legal","address":"66927 Eggendart Point","hire_date":"4/13/2018","website":"https://apple.com","notes":"enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus","status":3,"type":1,"salary":"$2463.68"}, {"id":336,"employee_id":"744312874-6","first_name":"Marcy","last_name":"Ritson","email":"mritson9b@examiner.com","phone":"362-495-5706","gender":"Female","department":"Legal","address":"03854 Acker Alley","hire_date":"9/18/2017","website":"http://google.it","notes":"faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse","status":4,"type":1,"salary":"$385.52"}, {"id":337,"employee_id":"254761989-X","first_name":"Stepha","last_name":"Clutten","email":"sclutten9c@adobe.com","phone":"227-882-3037","gender":"Female","department":"Research and Development","address":"259 Bowman Lane","hire_date":"4/24/2018","website":"http://cnn.com","notes":"sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat","status":4,"type":3,"salary":"$576.12"}, {"id":338,"employee_id":"413122637-5","first_name":"Manda","last_name":"Duerdin","email":"mduerdin9d@huffingtonpost.com","phone":"654-685-2155","gender":"Female","department":"Support","address":"84 Golden Leaf Place","hire_date":"9/16/2017","website":"http://state.tx.us","notes":"feugiat et eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna","status":2,"type":2,"salary":"$2102.59"}, {"id":339,"employee_id":"216718181-7","first_name":"Koral","last_name":"Rampton","email":"krampton9e@timesonline.co.uk","phone":"126-699-4471","gender":"Female","department":"Business Development","address":"04894 Sunbrook Alley","hire_date":"7/4/2018","website":"http://mtv.com","notes":"vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris","status":3,"type":3,"salary":"$2066.99"}, {"id":340,"employee_id":"002830020-3","first_name":"Beltran","last_name":"Matteau","email":"bmatteau9f@timesonline.co.uk","phone":"845-424-7176","gender":"Male","department":"Legal","address":"317 Alpine Plaza","hire_date":"4/5/2018","website":"https://issuu.com","notes":"vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus et","status":6,"type":3,"salary":"$1375.13"}, {"id":341,"employee_id":"617967669-0","first_name":"Bob","last_name":"Adolphine","email":"badolphine9g@senate.gov","phone":"778-173-9919","gender":"Male","department":"Product Management","address":"57744 Dahle Hill","hire_date":"1/9/2018","website":"http://dailymotion.com","notes":"nulla suspendisse potenti cras in purus eu magna vulputate luctus cum","status":5,"type":1,"salary":"$2399.60"}, {"id":342,"employee_id":"042033829-2","first_name":"Nikolos","last_name":"Luckes","email":"nluckes9h@youku.com","phone":"389-276-9301","gender":"Male","department":"Engineering","address":"678 Almo Circle","hire_date":"11/14/2017","website":"https://csmonitor.com","notes":"pede ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra","status":4,"type":3,"salary":"$2225.58"}, {"id":343,"employee_id":"012562374-7","first_name":"Melisent","last_name":"Mannock","email":"mmannock9i@google.nl","phone":"664-642-1888","gender":"Female","department":"Product Management","address":"447 Petterle Alley","hire_date":"2/22/2018","website":"http://scribd.com","notes":"sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum","status":6,"type":3,"salary":"$1622.20"}, {"id":344,"employee_id":"527652057-7","first_name":"Rickie","last_name":"McKerron","email":"rmckerron9j@imgur.com","phone":"455-420-1680","gender":"Male","department":"Support","address":"289 Mitchell Plaza","hire_date":"10/5/2017","website":"https://springer.com","notes":"quis orci nullam molestie nibh in lectus pellentesque at nulla suspendisse","status":3,"type":2,"salary":"$2196.49"}, {"id":345,"employee_id":"018785785-7","first_name":"Rutledge","last_name":"Airds","email":"rairds9k@engadget.com","phone":"482-847-4841","gender":"Male","department":"Marketing","address":"295 Glendale Center","hire_date":"6/14/2018","website":"https://dmoz.org","notes":"ut erat id mauris vulputate elementum nullam varius nulla facilisi","status":6,"type":3,"salary":"$378.04"}, {"id":346,"employee_id":"466489704-9","first_name":"Denice","last_name":"Wattins","email":"dwattins9l@ustream.tv","phone":"160-530-4641","gender":"Female","department":"Marketing","address":"47 Summerview Center","hire_date":"7/24/2017","website":"https://foxnews.com","notes":"eu massa donec dapibus duis at velit eu est congue elementum in hac habitasse platea dictumst","status":1,"type":2,"salary":"$2297.89"}, {"id":347,"employee_id":"456501961-2","first_name":"Becki","last_name":"Dace","email":"bdace9m@globo.com","phone":"353-384-3408","gender":"Female","department":"Product Management","address":"1342 Shelley Park","hire_date":"2/3/2018","website":"https://ow.ly","notes":"phasellus id sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus","status":3,"type":3,"salary":"$1806.53"}, {"id":348,"employee_id":"828200940-7","first_name":"Debi","last_name":"Padilla","email":"dpadilla9n@google.pl","phone":"147-413-1467","gender":"Female","department":"Product Management","address":"93 Blaine Avenue","hire_date":"3/16/2018","website":"http://tiny.cc","notes":"vulputate justo in blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing elit","status":2,"type":2,"salary":"$660.15"}, {"id":349,"employee_id":"932799687-9","first_name":"Luella","last_name":"Babington","email":"lbabington9o@nifty.com","phone":"166-814-0072","gender":"Female","department":"Legal","address":"923 Lerdahl Avenue","hire_date":"6/22/2018","website":"https://spotify.com","notes":"dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices","status":3,"type":3,"salary":"$1588.19"}, {"id":350,"employee_id":"773863877-X","first_name":"Michail","last_name":"Alleway","email":"malleway9p@oaic.gov.au","phone":"314-689-0592","gender":"Male","department":"Training","address":"97197 Meadow Vale Place","hire_date":"7/22/2017","website":"http://sbwire.com","notes":"quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida nisi at nibh","status":5,"type":1,"salary":"$710.96"}, {"id":351,"employee_id":"401969383-8","first_name":"Fedora","last_name":"Vescovini","email":"fvescovini9q@mozilla.org","phone":"570-561-0130","gender":"Female","department":"Human Resources","address":"56856 Autumn Leaf Court","hire_date":"3/19/2018","website":"http://lycos.com","notes":"parturient montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et","status":2,"type":2,"salary":"$1640.69"}, {"id":352,"employee_id":"057897886-5","first_name":"Dorisa","last_name":"Truesdale","email":"dtruesdale9r@barnesandnoble.com","phone":"965-618-9058","gender":"Female","department":"Human Resources","address":"96511 Rockefeller Pass","hire_date":"4/16/2018","website":"http://washingtonpost.com","notes":"lectus pellentesque eget nunc donec quis orci eget orci vehicula condimentum curabitur in libero ut","status":2,"type":2,"salary":"$1079.89"}, {"id":353,"employee_id":"667151110-1","first_name":"Wilhelm","last_name":"Sooley","email":"wsooley9s@nature.com","phone":"163-681-8501","gender":"Male","department":"Legal","address":"94 2nd Center","hire_date":"4/10/2018","website":"http://goo.gl","notes":"felis ut at dolor quis odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi","status":1,"type":1,"salary":"$1200.11"}, {"id":354,"employee_id":"885975098-9","first_name":"Marcus","last_name":"Lambirth","email":"mlambirth9t@odnoklassniki.ru","phone":"908-536-3150","gender":"Male","department":"Services","address":"5410 Armistice Court","hire_date":"6/20/2018","website":"https://tiny.cc","notes":"imperdiet et commodo vulputate justo in blandit ultrices enim lorem ipsum dolor sit amet","status":4,"type":3,"salary":"$482.93"}, {"id":355,"employee_id":"948554103-1","first_name":"Edd","last_name":"Longman","email":"elongman9u@people.com.cn","phone":"896-348-2679","gender":"Male","department":"Support","address":"14 Clemons Parkway","hire_date":"8/15/2017","website":"http://t-online.de","notes":"elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in","status":4,"type":3,"salary":"$1724.68"}, {"id":356,"employee_id":"886135245-6","first_name":"Dion","last_name":"Slimm","email":"dslimm9v@cargocollective.com","phone":"552-796-4713","gender":"Male","department":"Engineering","address":"99800 Sundown Road","hire_date":"2/11/2018","website":"http://over-blog.com","notes":"quis odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices","status":3,"type":2,"salary":"$261.88"}, {"id":357,"employee_id":"409704042-1","first_name":"Umberto","last_name":"Parkin","email":"uparkin9w@unc.edu","phone":"530-116-4741","gender":"Male","department":"Human Resources","address":"7 Little Fleur Center","hire_date":"7/12/2018","website":"http://nih.gov","notes":"potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa quis","status":6,"type":3,"salary":"$1385.79"}, {"id":358,"employee_id":"422286342-4","first_name":"Alexia","last_name":"Hunn","email":"ahunn9x@scientificamerican.com","phone":"312-944-0388","gender":"Female","department":"Training","address":"1292 Mifflin Lane","hire_date":"5/5/2018","website":"https://friendfeed.com","notes":"mauris morbi non lectus aliquam sit amet diam in magna bibendum","status":2,"type":2,"salary":"$877.72"}, {"id":359,"employee_id":"375751241-3","first_name":"Sharyl","last_name":"Bewshaw","email":"sbewshaw9y@amazon.com","phone":"453-777-3783","gender":"Female","department":"Research and Development","address":"6147 Scoville Hill","hire_date":"12/20/2017","website":"https://shop-pro.jp","notes":"eleifend luctus ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in","status":3,"type":1,"salary":"$2136.63"}, {"id":360,"employee_id":"140406564-4","first_name":"Alfonso","last_name":"Baudy","email":"abaudy9z@artisteer.com","phone":"827-327-0355","gender":"Male","department":"Support","address":"8 Haas Parkway","hire_date":"1/19/2018","website":"http://state.tx.us","notes":"commodo placerat praesent blandit nam nulla integer pede justo lacinia eget","status":5,"type":3,"salary":"$1029.48"}, {"id":361,"employee_id":"696796090-3","first_name":"Ravi","last_name":"Teape","email":"rteapea0@etsy.com","phone":"424-943-6381","gender":"Male","department":"Business Development","address":"37 Kennedy Street","hire_date":"2/6/2018","website":"https://dell.com","notes":"mollis molestie lorem quisque ut erat curabitur gravida nisi at nibh in","status":3,"type":1,"salary":"$372.63"}, {"id":362,"employee_id":"692676315-1","first_name":"Raye","last_name":"Peacop","email":"rpeacopa1@java.com","phone":"119-830-8805","gender":"Female","department":"Human Resources","address":"94868 Darwin Drive","hire_date":"12/22/2017","website":"https://joomla.org","notes":"donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum","status":4,"type":1,"salary":"$1540.19"}, {"id":363,"employee_id":"782871623-0","first_name":"Horten","last_name":"Ridder","email":"hriddera2@newyorker.com","phone":"805-680-9964","gender":"Male","department":"Services","address":"74641 Marcy Park","hire_date":"4/30/2018","website":"http://chronoengine.com","notes":"pellentesque eget nunc donec quis orci eget orci vehicula condimentum curabitur in","status":4,"type":2,"salary":"$643.01"}, {"id":364,"employee_id":"886175718-9","first_name":"Raffaello","last_name":"Mixer","email":"rmixera3@sogou.com","phone":"437-698-1834","gender":"Male","department":"Research and Development","address":"3735 Crowley Crossing","hire_date":"10/27/2017","website":"http://time.com","notes":"nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum","status":6,"type":3,"salary":"$1573.55"}, {"id":365,"employee_id":"491303919-9","first_name":"Elsa","last_name":"Haccleton","email":"ehaccletona4@mysql.com","phone":"425-783-0366","gender":"Female","department":"Sales","address":"466 Ilene Avenue","hire_date":"12/27/2017","website":"https://bizjournals.com","notes":"tellus semper interdum mauris ullamcorper purus sit amet nulla quisque arcu libero rutrum","status":1,"type":2,"salary":"$488.18"}, {"id":366,"employee_id":"871525779-7","first_name":"Scarface","last_name":"Mayho","email":"smayhoa5@last.fm","phone":"338-818-7650","gender":"Male","department":"Research and Development","address":"54 Morning Hill","hire_date":"9/24/2017","website":"http://tripod.com","notes":"ultrices posuere cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin ut","status":1,"type":1,"salary":"$502.06"}, {"id":367,"employee_id":"482843443-7","first_name":"Bentley","last_name":"Caulder","email":"bcauldera6@goo.ne.jp","phone":"607-353-8589","gender":"Male","department":"Legal","address":"2143 Springview Plaza","hire_date":"2/12/2018","website":"http://loc.gov","notes":"vivamus in felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec","status":4,"type":2,"salary":"$1107.93"}, {"id":368,"employee_id":"410934604-5","first_name":"Casper","last_name":"Hirjak","email":"chirjaka7@europa.eu","phone":"249-837-2403","gender":"Male","department":"Product Management","address":"337 Carpenter Plaza","hire_date":"3/28/2018","website":"http://tinypic.com","notes":"dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida","status":5,"type":3,"salary":"$1080.93"}, {"id":369,"employee_id":"521192163-1","first_name":"Sharai","last_name":"Rainger","email":"sraingera8@godaddy.com","phone":"899-215-8141","gender":"Female","department":"Training","address":"05 Little Fleur Terrace","hire_date":"11/3/2017","website":"https://bloglovin.com","notes":"sapien urna pretium nisl ut volutpat sapien arcu sed augue","status":3,"type":2,"salary":"$2165.31"}, {"id":370,"employee_id":"540010511-4","first_name":"Kelsi","last_name":"Deporte","email":"kdeportea9@cdbaby.com","phone":"823-268-3114","gender":"Female","department":"Sales","address":"2 Crest Line Center","hire_date":"12/16/2017","website":"http://liveinternet.ru","notes":"vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus dolor vel est","status":6,"type":1,"salary":"$2155.92"}, {"id":371,"employee_id":"533771297-7","first_name":"Luigi","last_name":"Beddow","email":"lbeddowaa@issuu.com","phone":"355-329-4187","gender":"Male","department":"Business Development","address":"148 Macpherson Plaza","hire_date":"6/12/2018","website":"http://baidu.com","notes":"sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus","status":2,"type":3,"salary":"$348.10"}, {"id":372,"employee_id":"726780645-7","first_name":"Selig","last_name":"Landeg","email":"slandegab@dailymail.co.uk","phone":"488-197-2573","gender":"Male","department":"Business Development","address":"02 Ridge Oak Terrace","hire_date":"9/16/2017","website":"https://cbslocal.com","notes":"vestibulum sit amet cursus id turpis integer aliquet massa id lobortis","status":5,"type":1,"salary":"$949.25"}, {"id":373,"employee_id":"433933429-4","first_name":"Killian","last_name":"Foxten","email":"kfoxtenac@nih.gov","phone":"806-666-7844","gender":"Male","department":"Legal","address":"2672 Paget Street","hire_date":"4/29/2018","website":"https://irs.gov","notes":"lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula","status":2,"type":3,"salary":"$842.87"}, {"id":374,"employee_id":"169871789-X","first_name":"Lorant","last_name":"Deschlein","email":"ldeschleinad@fda.gov","phone":"266-596-1401","gender":"Male","department":"Services","address":"48451 East Pass","hire_date":"9/28/2017","website":"https://github.io","notes":"integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla","status":5,"type":3,"salary":"$1401.91"}, {"id":375,"employee_id":"486771991-9","first_name":"Nydia","last_name":"Hovy","email":"nhovyae@umich.edu","phone":"180-866-4707","gender":"Female","department":"Marketing","address":"71405 Packers Parkway","hire_date":"8/14/2017","website":"http://economist.com","notes":"nulla elit ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur","status":6,"type":3,"salary":"$537.67"}, {"id":376,"employee_id":"794891441-2","first_name":"Pammy","last_name":"Fronks","email":"pfronksaf@netvibes.com","phone":"549-969-9376","gender":"Female","department":"Marketing","address":"2 Anhalt Pass","hire_date":"4/11/2018","website":"http://hc360.com","notes":"blandit mi in porttitor pede justo eu massa donec dapibus duis at velit eu est congue elementum","status":5,"type":3,"salary":"$834.07"}, {"id":377,"employee_id":"950462922-9","first_name":"Colene","last_name":"Gayforth","email":"cgayforthag@yellowbook.com","phone":"401-816-4281","gender":"Female","department":"Marketing","address":"1877 Fair Oaks Road","hire_date":"3/27/2018","website":"https://epa.gov","notes":"at velit vivamus vel nulla eget eros elementum pellentesque quisque","status":6,"type":2,"salary":"$605.34"}, {"id":378,"employee_id":"654524555-4","first_name":"Percival","last_name":"Sooper","email":"psooperah@cnet.com","phone":"316-921-4227","gender":"Male","department":"Business Development","address":"3931 Veith Circle","hire_date":"12/18/2017","website":"http://bravesites.com","notes":"congue risus semper porta volutpat quam pede lobortis ligula sit amet eleifend pede","status":2,"type":3,"salary":"$2124.14"}, {"id":379,"employee_id":"594683672-2","first_name":"Allan","last_name":"Bysh","email":"abyshai@blinklist.com","phone":"437-275-0839","gender":"Male","department":"Research and Development","address":"0763 Sunbrook Way","hire_date":"4/4/2018","website":"http://arizona.edu","notes":"consequat metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere","status":3,"type":3,"salary":"$301.25"}, {"id":380,"employee_id":"250023659-5","first_name":"Evvy","last_name":"Pottes","email":"epottesaj@epa.gov","phone":"294-798-3537","gender":"Female","department":"Research and Development","address":"68 Londonderry Hill","hire_date":"5/24/2018","website":"http://tamu.edu","notes":"ligula vehicula consequat morbi a ipsum integer a nibh in quis justo maecenas rhoncus aliquam","status":5,"type":3,"salary":"$1492.20"}, {"id":381,"employee_id":"235445053-2","first_name":"Antoinette","last_name":"Wyant","email":"awyantak@squarespace.com","phone":"183-115-5357","gender":"Female","department":"Accounting","address":"1 Maple Alley","hire_date":"8/16/2017","website":"http://microsoft.com","notes":"luctus ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum","status":6,"type":1,"salary":"$1136.98"}, {"id":382,"employee_id":"889752343-9","first_name":"Audrie","last_name":"Belamy","email":"abelamyal@indiatimes.com","phone":"111-820-5489","gender":"Female","department":"Support","address":"2859 Acker Court","hire_date":"6/25/2018","website":"http://jalbum.net","notes":"viverra eget congue eget semper rutrum nulla nunc purus phasellus in felis donec semper sapien a","status":5,"type":2,"salary":"$905.68"}, {"id":383,"employee_id":"622648370-9","first_name":"Rhodia","last_name":"Cosgry","email":"rcosgryam@goo.ne.jp","phone":"350-490-2533","gender":"Female","department":"Engineering","address":"7 Esch Alley","hire_date":"9/2/2017","website":"https://vkontakte.ru","notes":"aliquam erat volutpat in congue etiam justo etiam pretium iaculis","status":1,"type":3,"salary":"$2334.99"}, {"id":384,"employee_id":"803014574-8","first_name":"Fabian","last_name":"Hullyer","email":"fhullyeran@t.co","phone":"127-957-1000","gender":"Male","department":"Training","address":"889 Warbler Pass","hire_date":"7/26/2017","website":"https://mozilla.com","notes":"rutrum nulla nunc purus phasellus in felis donec semper sapien a libero nam dui proin leo odio porttitor id consequat","status":5,"type":3,"salary":"$266.82"}, {"id":385,"employee_id":"847189830-6","first_name":"Pippa","last_name":"Skatcher","email":"pskatcherao@last.fm","phone":"929-459-4415","gender":"Female","department":"Services","address":"5 Novick Way","hire_date":"4/27/2018","website":"http://uol.com.br","notes":"platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis molestie lorem","status":6,"type":2,"salary":"$1044.65"}, {"id":386,"employee_id":"263904965-8","first_name":"Sayers","last_name":"Balmforth","email":"sbalmforthap@de.vu","phone":"358-989-1332","gender":"Male","department":"Services","address":"3 Northwestern Plaza","hire_date":"7/31/2017","website":"https://economist.com","notes":"magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient","status":6,"type":1,"salary":"$1316.51"}, {"id":387,"employee_id":"428252571-1","first_name":"Vinson","last_name":"Saenz","email":"vsaenzaq@sfgate.com","phone":"250-815-8178","gender":"Male","department":"Sales","address":"21 Karstens Place","hire_date":"2/6/2018","website":"http://geocities.jp","notes":"aliquam convallis nunc proin at turpis a pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut","status":1,"type":3,"salary":"$2236.61"}, {"id":388,"employee_id":"161994026-4","first_name":"Genevra","last_name":"Ochiltree","email":"gochiltreear@google.co.jp","phone":"714-600-8674","gender":"Female","department":"Engineering","address":"1 Garrison Crossing","hire_date":"10/8/2017","website":"http://zimbio.com","notes":"orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet lobortis","status":2,"type":1,"salary":"$1088.97"}, {"id":389,"employee_id":"835257032-3","first_name":"Dale","last_name":"Sottell","email":"dsottellas@google.co.jp","phone":"740-537-9773","gender":"Male","department":"Research and Development","address":"08 Anniversary Plaza","hire_date":"4/17/2018","website":"https://wordpress.com","notes":"ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla quisque arcu libero rutrum","status":2,"type":2,"salary":"$1064.50"}, {"id":390,"employee_id":"107313260-9","first_name":"Lida","last_name":"Huxstep","email":"lhuxstepat@ted.com","phone":"889-948-5199","gender":"Female","department":"Legal","address":"4149 Bluejay Street","hire_date":"8/20/2017","website":"https://ask.com","notes":"est risus auctor sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum","status":3,"type":2,"salary":"$2371.16"}, {"id":391,"employee_id":"985451751-9","first_name":"Friedrich","last_name":"Stratz","email":"fstratzau@telegraph.co.uk","phone":"186-112-9915","gender":"Male","department":"Sales","address":"0 Dryden Court","hire_date":"8/9/2017","website":"http://berkeley.edu","notes":"ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis","status":2,"type":3,"salary":"$1988.89"}, {"id":392,"employee_id":"092254097-7","first_name":"Dominik","last_name":"Bartolozzi","email":"dbartolozziav@noaa.gov","phone":"957-324-8100","gender":"Male","department":"Human Resources","address":"991 Onsgard Crossing","hire_date":"3/3/2018","website":"https://ucsd.edu","notes":"libero non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac nulla sed vel enim sit amet","status":5,"type":1,"salary":"$2429.00"}, {"id":393,"employee_id":"830741061-4","first_name":"Sioux","last_name":"Lease","email":"sleaseaw@hhs.gov","phone":"549-636-6532","gender":"Female","department":"Business Development","address":"4 Jackson Point","hire_date":"1/21/2018","website":"http://vk.com","notes":"nascetur ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean","status":6,"type":2,"salary":"$2212.91"}, {"id":394,"employee_id":"877010064-0","first_name":"Neall","last_name":"Cronchey","email":"ncroncheyax@nyu.edu","phone":"739-585-7518","gender":"Male","department":"Legal","address":"7 Hintze Road","hire_date":"6/5/2018","website":"http://wunderground.com","notes":"nam congue risus semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero quis orci nullam molestie","status":1,"type":2,"salary":"$2317.04"}, {"id":395,"employee_id":"499456882-0","first_name":"Berget","last_name":"Matton","email":"bmattonay@answers.com","phone":"619-882-9196","gender":"Female","department":"Marketing","address":"4 Leroy Place","hire_date":"11/8/2017","website":"http://nifty.com","notes":"mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl","status":5,"type":3,"salary":"$1580.67"}, {"id":396,"employee_id":"488959067-6","first_name":"Emelita","last_name":"Robertelli","email":"erobertelliaz@umich.edu","phone":"204-696-0674","gender":"Female","department":"Accounting","address":"95 Lake View Point","hire_date":"6/27/2018","website":"https://paypal.com","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum","status":6,"type":1,"salary":"$1226.25"}, {"id":397,"employee_id":"551305144-3","first_name":"Cindelyn","last_name":"Eveleigh","email":"ceveleighb0@github.com","phone":"176-952-7360","gender":"Female","department":"Product Management","address":"28 Kinsman Place","hire_date":"9/22/2017","website":"https://npr.org","notes":"orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a","status":4,"type":3,"salary":"$1897.98"}, {"id":398,"employee_id":"810440645-0","first_name":"Lorna","last_name":"Kingzett","email":"lkingzettb1@fastcompany.com","phone":"832-292-1374","gender":"Female","department":"Human Resources","address":"48232 Debra Pass","hire_date":"12/21/2017","website":"https://goo.ne.jp","notes":"ante vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris eget massa tempor convallis nulla neque","status":5,"type":3,"salary":"$1026.49"}, {"id":399,"employee_id":"080183001-X","first_name":"Abramo","last_name":"Oakenford","email":"aoakenfordb2@amazon.co.uk","phone":"450-581-3259","gender":"Male","department":"Research and Development","address":"46724 Merchant Crossing","hire_date":"12/13/2017","website":"https://elpais.com","notes":"vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien","status":1,"type":1,"salary":"$1572.74"}, {"id":400,"employee_id":"833852337-2","first_name":"Gabriele","last_name":"Meffan","email":"gmeffanb3@stanford.edu","phone":"944-595-0107","gender":"Male","department":"Product Management","address":"40073 Quincy Plaza","hire_date":"12/19/2017","website":"http://spiegel.de","notes":"justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula","status":5,"type":1,"salary":"$914.07"}, {"id":401,"employee_id":"998052226-7","first_name":"Tabbie","last_name":"Sebrook","email":"tsebrookb4@cocolog-nifty.com","phone":"947-266-9947","gender":"Female","department":"Human Resources","address":"34699 Kingsford Lane","hire_date":"11/4/2017","website":"https://microsoft.com","notes":"bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce posuere felis","status":5,"type":3,"salary":"$1686.77"}, {"id":402,"employee_id":"133779813-4","first_name":"Edmund","last_name":"Hanlon","email":"ehanlonb5@networksolutions.com","phone":"173-176-9011","gender":"Male","department":"Legal","address":"8340 Continental Point","hire_date":"10/7/2017","website":"https://freewebs.com","notes":"blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris non ligula","status":2,"type":1,"salary":"$844.65"}, {"id":403,"employee_id":"613889123-6","first_name":"Terence","last_name":"O\'Beirne","email":"tobeirneb6@cornell.edu","phone":"905-462-3351","gender":"Male","department":"Support","address":"3 Bonner Alley","hire_date":"12/13/2017","website":"http://un.org","notes":"mattis pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac","status":6,"type":2,"salary":"$1577.22"}, {"id":404,"employee_id":"647413403-8","first_name":"Oliviero","last_name":"Sinnatt","email":"osinnattb7@symantec.com","phone":"729-265-7257","gender":"Male","department":"Marketing","address":"1888 Shopko Drive","hire_date":"3/10/2018","website":"https://nsw.gov.au","notes":"cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus vivamus vestibulum sagittis","status":5,"type":1,"salary":"$324.89"}, {"id":405,"employee_id":"389069925-1","first_name":"Rochell","last_name":"Ivanenko","email":"rivanenkob8@wunderground.com","phone":"742-462-3688","gender":"Female","department":"Marketing","address":"259 Lawn Junction","hire_date":"11/17/2017","website":"http://desdev.cn","notes":"consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices","status":4,"type":1,"salary":"$2059.09"}, {"id":406,"employee_id":"796375921-X","first_name":"Zelma","last_name":"Cochrane","email":"zcochraneb9@comsenz.com","phone":"872-855-5401","gender":"Female","department":"Training","address":"5 Westridge Junction","hire_date":"5/14/2018","website":"https://blogtalkradio.com","notes":"enim lorem ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id","status":1,"type":1,"salary":"$2120.66"}, {"id":407,"employee_id":"841989729-9","first_name":"Chauncey","last_name":"Heather","email":"cheatherba@uiuc.edu","phone":"600-700-7118","gender":"Male","department":"Accounting","address":"942 Debs Lane","hire_date":"11/5/2017","website":"https://cmu.edu","notes":"ut volutpat sapien arcu sed augue aliquam erat volutpat in congue etiam justo etiam","status":5,"type":3,"salary":"$1866.02"}, {"id":408,"employee_id":"260368664-X","first_name":"Jacqueline","last_name":"Meininking","email":"jmeininkingbb@ustream.tv","phone":"403-605-5221","gender":"Female","department":"Sales","address":"34807 Lillian Hill","hire_date":"1/22/2018","website":"https://slideshare.net","notes":"ut mauris eget massa tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu nibh quisque id justo","status":6,"type":2,"salary":"$1897.36"}, {"id":409,"employee_id":"905913948-8","first_name":"Levin","last_name":"Mynett","email":"lmynettbc@tripod.com","phone":"562-364-1414","gender":"Male","department":"Accounting","address":"8270 Artisan Avenue","hire_date":"10/6/2017","website":"https://mlb.com","notes":"orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae","status":4,"type":1,"salary":"$2322.53"}, {"id":410,"employee_id":"650442677-5","first_name":"Enriqueta","last_name":"Pencost","email":"epencostbd@weibo.com","phone":"267-901-5489","gender":"Female","department":"Human Resources","address":"598 Arizona Place","hire_date":"3/21/2018","website":"https://webmd.com","notes":"phasellus id sapien in sapien iaculis congue vivamus metus arcu adipiscing","status":3,"type":2,"salary":"$1008.64"}, {"id":411,"employee_id":"421313005-3","first_name":"Cornelius","last_name":"Lazare","email":"clazarebe@w3.org","phone":"564-686-3591","gender":"Male","department":"Research and Development","address":"3048 Sutherland Road","hire_date":"3/2/2018","website":"http://weibo.com","notes":"rutrum nulla tellus in sagittis dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non","status":2,"type":3,"salary":"$1325.42"}, {"id":412,"employee_id":"983822460-X","first_name":"Quincy","last_name":"Grahlmans","email":"qgrahlmansbf@theatlantic.com","phone":"866-507-8470","gender":"Male","department":"Engineering","address":"86 Anthes Way","hire_date":"3/2/2018","website":"http://wikia.com","notes":"lacus at turpis donec posuere metus vitae ipsum aliquam non mauris","status":3,"type":1,"salary":"$363.47"}, {"id":413,"employee_id":"117391982-1","first_name":"Cirilo","last_name":"Clynmans","email":"cclynmansbg@umich.edu","phone":"395-209-8577","gender":"Male","department":"Legal","address":"0069 Towne Parkway","hire_date":"4/3/2018","website":"https://paginegialle.it","notes":"congue risus semper porta volutpat quam pede lobortis ligula sit","status":3,"type":1,"salary":"$2046.10"}, {"id":414,"employee_id":"123040897-5","first_name":"Leola","last_name":"Olive","email":"lolivebh@usda.gov","phone":"255-399-7211","gender":"Female","department":"Training","address":"8 Dexter Street","hire_date":"9/13/2017","website":"https://prlog.org","notes":"at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra","status":1,"type":2,"salary":"$2179.76"}, {"id":415,"employee_id":"048982860-4","first_name":"Bessy","last_name":"Lisett","email":"blisettbi@auda.org.au","phone":"141-333-0171","gender":"Female","department":"Research and Development","address":"5 Myrtle Plaza","hire_date":"9/14/2017","website":"https://wikimedia.org","notes":"nibh in lectus pellentesque at nulla suspendisse potenti cras in purus eu magna","status":1,"type":1,"salary":"$703.89"}, {"id":416,"employee_id":"582613143-8","first_name":"Donella","last_name":"Vanns","email":"dvannsbj@wisc.edu","phone":"970-218-4877","gender":"Female","department":"Services","address":"6848 Huxley Plaza","hire_date":"2/13/2018","website":"https://state.tx.us","notes":"lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus","status":6,"type":1,"salary":"$1145.45"}, {"id":417,"employee_id":"081845515-2","first_name":"Roch","last_name":"McCourt","email":"rmccourtbk@addtoany.com","phone":"882-177-9493","gender":"Female","department":"Research and Development","address":"20412 Merry Hill","hire_date":"1/7/2018","website":"http://cocolog-nifty.com","notes":"integer aliquet massa id lobortis convallis tortor risus dapibus augue vel accumsan tellus","status":4,"type":3,"salary":"$817.33"}, {"id":418,"employee_id":"036363287-5","first_name":"Gratiana","last_name":"Burgwin","email":"gburgwinbl@joomla.org","phone":"494-479-3075","gender":"Female","department":"Training","address":"9 Cherokee Lane","hire_date":"6/9/2018","website":"http://seesaa.net","notes":"in magna bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce posuere felis sed lacus","status":1,"type":3,"salary":"$2007.48"}, {"id":419,"employee_id":"033776599-5","first_name":"Danita","last_name":"Whitney","email":"dwhitneybm@columbia.edu","phone":"910-138-5581","gender":"Female","department":"Engineering","address":"695 Nancy Street","hire_date":"12/8/2017","website":"http://imgur.com","notes":"at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a odio in hac","status":4,"type":1,"salary":"$2237.53"}, {"id":420,"employee_id":"778275184-5","first_name":"Christoffer","last_name":"Poller","email":"cpollerbn@liveinternet.ru","phone":"509-133-8807","gender":"Male","department":"Marketing","address":"5 Arapahoe Pass","hire_date":"10/15/2017","website":"http://google.co.uk","notes":"arcu libero rutrum ac lobortis vel dapibus at diam nam","status":6,"type":1,"salary":"$1722.57"}, {"id":421,"employee_id":"095854373-9","first_name":"Ericha","last_name":"Physic","email":"ephysicbo@dot.gov","phone":"828-235-6456","gender":"Female","department":"Human Resources","address":"1 Shelley Plaza","hire_date":"5/3/2018","website":"https://comcast.net","notes":"id turpis integer aliquet massa id lobortis convallis tortor risus dapibus augue vel accumsan tellus nisi eu orci mauris","status":5,"type":1,"salary":"$2094.79"}, {"id":422,"employee_id":"954333375-0","first_name":"Adelle","last_name":"Northedge","email":"anorthedgebp@digg.com","phone":"369-954-3928","gender":"Female","department":"Human Resources","address":"132 Debs Parkway","hire_date":"9/8/2017","website":"http://timesonline.co.uk","notes":"auctor sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis","status":2,"type":1,"salary":"$436.40"}, {"id":423,"employee_id":"407584814-0","first_name":"Phedra","last_name":"Gynn","email":"pgynnbq@quantcast.com","phone":"511-999-5539","gender":"Female","department":"Business Development","address":"965 Portage Alley","hire_date":"8/2/2017","website":"https://myspace.com","notes":"platea dictumst maecenas ut massa quis augue luctus tincidunt nulla","status":3,"type":3,"salary":"$1684.71"}, {"id":424,"employee_id":"812940375-7","first_name":"Erv","last_name":"Mawne","email":"emawnebr@umich.edu","phone":"680-716-0959","gender":"Male","department":"Legal","address":"2 Glacier Hill Place","hire_date":"6/17/2018","website":"https://salon.com","notes":"quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum","status":1,"type":3,"salary":"$544.33"}, {"id":425,"employee_id":"064808940-1","first_name":"Portie","last_name":"Tremblett","email":"ptremblettbs@sitemeter.com","phone":"529-659-3946","gender":"Male","department":"Research and Development","address":"14 Sachs Drive","hire_date":"4/22/2018","website":"http://acquirethisname.com","notes":"quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida","status":5,"type":1,"salary":"$689.76"}, {"id":426,"employee_id":"151407990-9","first_name":"Jaime","last_name":"Bygraves","email":"jbygravesbt@google.cn","phone":"812-900-3571","gender":"Female","department":"Business Development","address":"25 Del Sol Avenue","hire_date":"10/24/2017","website":"http://indiegogo.com","notes":"mauris ullamcorper purus sit amet nulla quisque arcu libero rutrum ac lobortis vel dapibus at diam","status":4,"type":1,"salary":"$280.64"}, {"id":427,"employee_id":"252278282-7","first_name":"Elle","last_name":"Sellack","email":"esellackbu@imgur.com","phone":"142-859-9709","gender":"Female","department":"Legal","address":"41421 Hooker Plaza","hire_date":"10/29/2017","website":"https://woothemes.com","notes":"feugiat non pretium quis lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa","status":3,"type":2,"salary":"$507.42"}, {"id":428,"employee_id":"109983946-7","first_name":"Roma","last_name":"Kienlein","email":"rkienleinbv@indiatimes.com","phone":"356-265-5875","gender":"Male","department":"Services","address":"65 Warrior Parkway","hire_date":"8/26/2017","website":"https://rakuten.co.jp","notes":"at turpis a pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut","status":6,"type":1,"salary":"$914.01"}, {"id":429,"employee_id":"454856453-5","first_name":"Margarita","last_name":"Wedge","email":"mwedgebw@discuz.net","phone":"745-912-2962","gender":"Female","department":"Training","address":"73167 Farragut Terrace","hire_date":"12/25/2017","website":"http://flickr.com","notes":"luctus nec molestie sed justo pellentesque viverra pede ac diam cras pellentesque","status":1,"type":2,"salary":"$280.02"}, {"id":430,"employee_id":"839482313-0","first_name":"Franciskus","last_name":"Teresia","email":"fteresiabx@nymag.com","phone":"993-710-8153","gender":"Male","department":"Research and Development","address":"78 Valley Edge Alley","hire_date":"10/27/2017","website":"http://accuweather.com","notes":"potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt","status":4,"type":1,"salary":"$699.50"}, {"id":431,"employee_id":"760810405-8","first_name":"Christophorus","last_name":"Enderlein","email":"cenderleinby@hexun.com","phone":"320-344-3696","gender":"Male","department":"Legal","address":"1832 Kings Junction","hire_date":"4/6/2018","website":"http://blogtalkradio.com","notes":"at velit eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id","status":3,"type":1,"salary":"$1994.40"}, {"id":432,"employee_id":"182653883-6","first_name":"Maggi","last_name":"Blofield","email":"mblofieldbz@hao123.com","phone":"382-195-4044","gender":"Female","department":"Marketing","address":"21 Carioca Court","hire_date":"10/29/2017","website":"http://opensource.org","notes":"luctus ultricies eu nibh quisque id justo sit amet sapien dignissim","status":5,"type":2,"salary":"$825.43"}, {"id":433,"employee_id":"966678917-5","first_name":"Ag","last_name":"Wearing","email":"awearingc0@gnu.org","phone":"674-999-6239","gender":"Female","department":"Accounting","address":"4 Carey Court","hire_date":"7/9/2018","website":"https://techcrunch.com","notes":"a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio","status":6,"type":2,"salary":"$2049.80"}, {"id":434,"employee_id":"244727837-3","first_name":"Prentiss","last_name":"Kerman","email":"pkermanc1@adobe.com","phone":"783-187-8171","gender":"Male","department":"Marketing","address":"06910 Aberg Road","hire_date":"5/20/2018","website":"https://webmd.com","notes":"eu interdum eu tincidunt in leo maecenas pulvinar lobortis est","status":1,"type":3,"salary":"$1134.24"}, {"id":435,"employee_id":"018330941-3","first_name":"Laureen","last_name":"Lanon","email":"llanonc2@unc.edu","phone":"611-782-3718","gender":"Female","department":"Services","address":"36 Westend Plaza","hire_date":"11/2/2017","website":"https://e-recht24.de","notes":"accumsan tortor quis turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum","status":1,"type":3,"salary":"$1568.91"}, {"id":436,"employee_id":"081790270-8","first_name":"Larissa","last_name":"Cowill","email":"lcowillc3@go.com","phone":"172-352-8279","gender":"Female","department":"Business Development","address":"1 Onsgard Circle","hire_date":"4/17/2018","website":"http://unblog.fr","notes":"odio consequat varius integer ac leo pellentesque ultrices mattis odio donec","status":4,"type":3,"salary":"$2035.66"}, {"id":437,"employee_id":"767401913-6","first_name":"Arny","last_name":"Mossdale","email":"amossdalec4@ucoz.ru","phone":"859-929-0052","gender":"Male","department":"Accounting","address":"2 Buena Vista Point","hire_date":"4/19/2018","website":"https://umn.edu","notes":"ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna","status":2,"type":1,"salary":"$512.76"}, {"id":438,"employee_id":"086425835-6","first_name":"Deena","last_name":"Kryszkiecicz","email":"dkryszkieciczc5@sitemeter.com","phone":"317-630-8147","gender":"Female","department":"Marketing","address":"9174 Crest Line Junction","hire_date":"7/1/2018","website":"http://microsoft.com","notes":"odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac","status":4,"type":1,"salary":"$491.47"}, {"id":439,"employee_id":"883721633-5","first_name":"Casar","last_name":"Mozzetti","email":"cmozzettic6@pcworld.com","phone":"736-647-0293","gender":"Male","department":"Sales","address":"4147 Bonner Center","hire_date":"1/16/2018","website":"http://nymag.com","notes":"non mi integer ac neque duis bibendum morbi non quam nec dui","status":6,"type":1,"salary":"$1244.14"}, {"id":440,"employee_id":"434650054-4","first_name":"Darice","last_name":"Scripps","email":"dscrippsc7@wix.com","phone":"699-549-7625","gender":"Female","department":"Accounting","address":"4 Daystar Place","hire_date":"9/18/2017","website":"https://wikispaces.com","notes":"in lectus pellentesque at nulla suspendisse potenti cras in purus eu magna vulputate","status":4,"type":1,"salary":"$1786.65"}, {"id":441,"employee_id":"076235846-7","first_name":"Kelsi","last_name":"Cancellieri","email":"kcancellieric8@salon.com","phone":"563-608-6571","gender":"Female","department":"Product Management","address":"470 Holmberg Place","hire_date":"8/4/2017","website":"http://ftc.gov","notes":"velit donec diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante","status":5,"type":3,"salary":"$513.44"}, {"id":442,"employee_id":"569952107-0","first_name":"Curt","last_name":"Tunmore","email":"ctunmorec9@wisc.edu","phone":"782-762-3868","gender":"Male","department":"Legal","address":"16506 Westend Junction","hire_date":"5/16/2018","website":"https://sakura.ne.jp","notes":"sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl","status":2,"type":3,"salary":"$1213.96"}, {"id":443,"employee_id":"383633966-8","first_name":"Fay","last_name":"Kinnerk","email":"fkinnerkca@macromedia.com","phone":"215-422-3554","gender":"Female","department":"Business Development","address":"02657 Lake View Junction","hire_date":"8/2/2017","website":"http://angelfire.com","notes":"posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut ultrices vel augue","status":4,"type":2,"salary":"$407.95"}, {"id":444,"employee_id":"729346815-6","first_name":"Kelbee","last_name":"Dumbleton","email":"kdumbletoncb@behance.net","phone":"749-679-4798","gender":"Male","department":"Training","address":"5 Mariners Cove Street","hire_date":"1/24/2018","website":"https://cyberchimps.com","notes":"nascetur ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id","status":5,"type":1,"salary":"$696.08"}, {"id":445,"employee_id":"747521861-9","first_name":"Davin","last_name":"Merricks","email":"dmerrickscc@ask.com","phone":"785-747-6250","gender":"Male","department":"Research and Development","address":"5142 Montana Way","hire_date":"7/13/2018","website":"https://google.pl","notes":"dolor sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in","status":4,"type":2,"salary":"$642.15"}, {"id":446,"employee_id":"216019302-X","first_name":"Garner","last_name":"Dwyr","email":"gdwyrcd@samsung.com","phone":"385-543-7297","gender":"Male","department":"Research and Development","address":"4 Linden Park","hire_date":"8/25/2017","website":"http://nsw.gov.au","notes":"eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien","status":6,"type":2,"salary":"$1391.05"}, {"id":447,"employee_id":"555101167-4","first_name":"Loella","last_name":"Bartosinski","email":"lbartosinskice@topsy.com","phone":"181-493-0626","gender":"Female","department":"Product Management","address":"4498 Loeprich Trail","hire_date":"5/26/2018","website":"http://about.me","notes":"ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan tortor","status":2,"type":3,"salary":"$917.71"}, {"id":448,"employee_id":"970348373-9","first_name":"Zaccaria","last_name":"Cliff","email":"zcliffcf@goodreads.com","phone":"452-781-4791","gender":"Male","department":"Product Management","address":"27100 8th Trail","hire_date":"9/11/2017","website":"https://i2i.jp","notes":"pede venenatis non sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus","status":2,"type":3,"salary":"$2137.89"}, {"id":449,"employee_id":"561313066-3","first_name":"Lizabeth","last_name":"Darell","email":"ldarellcg@army.mil","phone":"178-691-2018","gender":"Female","department":"Support","address":"3028 Sunbrook Drive","hire_date":"6/20/2018","website":"https://pagesperso-orange.fr","notes":"nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id","status":3,"type":2,"salary":"$548.39"}, {"id":450,"employee_id":"475249315-2","first_name":"Karole","last_name":"Moorhouse","email":"kmoorhousech@ask.com","phone":"971-402-0509","gender":"Female","department":"Human Resources","address":"83274 Blue Bill Park Center","hire_date":"12/31/2017","website":"https://seattletimes.com","notes":"non mauris morbi non lectus aliquam sit amet diam in magna bibendum","status":1,"type":3,"salary":"$1469.00"}, {"id":451,"employee_id":"890740322-8","first_name":"Tyne","last_name":"Carbine","email":"tcarbineci@illinois.edu","phone":"988-771-6510","gender":"Female","department":"Human Resources","address":"8568 American Crossing","hire_date":"12/15/2017","website":"https://apple.com","notes":"nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros","status":3,"type":1,"salary":"$662.93"}, {"id":452,"employee_id":"737691319-X","first_name":"Pattie","last_name":"Ben-Aharon","email":"pbenaharoncj@sciencedirect.com","phone":"261-507-6937","gender":"Male","department":"Research and Development","address":"671 Walton Point","hire_date":"5/8/2018","website":"http://blinklist.com","notes":"vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget","status":5,"type":3,"salary":"$882.17"}, {"id":453,"employee_id":"622434271-7","first_name":"Alberik","last_name":"O\'Regan","email":"aoreganck@gmpg.org","phone":"282-555-1049","gender":"Male","department":"Training","address":"2298 Summer Ridge Way","hire_date":"12/3/2017","website":"https://arstechnica.com","notes":"in felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec euismod scelerisque","status":3,"type":1,"salary":"$1495.86"}, {"id":454,"employee_id":"024409622-8","first_name":"Melessa","last_name":"Jennery","email":"mjennerycl@army.mil","phone":"163-199-2858","gender":"Female","department":"Training","address":"14485 Mandrake Street","hire_date":"10/1/2017","website":"https://macromedia.com","notes":"ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit nam nulla integer pede","status":4,"type":1,"salary":"$1533.74"}, {"id":455,"employee_id":"681357341-1","first_name":"Pablo","last_name":"Kearns","email":"pkearnscm@wunderground.com","phone":"859-351-4526","gender":"Male","department":"Engineering","address":"26982 8th Terrace","hire_date":"11/9/2017","website":"http://huffingtonpost.com","notes":"montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient","status":1,"type":3,"salary":"$1783.68"}, {"id":456,"employee_id":"964951088-5","first_name":"Kyle","last_name":"Shallow","email":"kshallowcn@shop-pro.jp","phone":"328-483-0063","gender":"Male","department":"Support","address":"3 Transport Parkway","hire_date":"11/28/2017","website":"http://guardian.co.uk","notes":"amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed","status":6,"type":2,"salary":"$460.54"}, {"id":457,"employee_id":"312016021-0","first_name":"Gunter","last_name":"Hammatt","email":"ghammattco@slashdot.org","phone":"708-848-5471","gender":"Male","department":"Sales","address":"9 Springview Circle","hire_date":"9/19/2017","website":"http://ucoz.ru","notes":"quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan tortor quis turpis sed ante vivamus tortor","status":1,"type":1,"salary":"$982.54"}, {"id":458,"employee_id":"851918413-8","first_name":"Justis","last_name":"Libby","email":"jlibbycp@answers.com","phone":"142-806-3092","gender":"Male","department":"Accounting","address":"0 Boyd Street","hire_date":"2/21/2018","website":"https://lycos.com","notes":"elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue","status":2,"type":2,"salary":"$641.35"}, {"id":459,"employee_id":"213358260-6","first_name":"Aldus","last_name":"McClintock","email":"amcclintockcq@nydailynews.com","phone":"332-699-9611","gender":"Male","department":"Legal","address":"84181 Westend Way","hire_date":"9/25/2017","website":"http://free.fr","notes":"tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed justo","status":2,"type":2,"salary":"$1369.07"}, {"id":460,"employee_id":"672487599-4","first_name":"Luce","last_name":"Sculley","email":"lsculleycr@myspace.com","phone":"121-950-8814","gender":"Female","department":"Support","address":"008 Fairfield Pass","hire_date":"12/21/2017","website":"http://buzzfeed.com","notes":"dapibus augue vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero","status":5,"type":1,"salary":"$1348.05"}, {"id":461,"employee_id":"647304520-1","first_name":"Guilbert","last_name":"Denty","email":"gdentycs@cbsnews.com","phone":"574-982-6460","gender":"Male","department":"Training","address":"37882 Thierer Crossing","hire_date":"10/28/2017","website":"https://gnu.org","notes":"lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit nam","status":6,"type":2,"salary":"$296.09"}, {"id":462,"employee_id":"189235750-X","first_name":"Erika","last_name":"Eldred","email":"eeldredct@icio.us","phone":"733-760-3435","gender":"Female","department":"Research and Development","address":"94826 Logan Place","hire_date":"2/18/2018","website":"https://freewebs.com","notes":"ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis","status":2,"type":2,"salary":"$741.69"}, {"id":463,"employee_id":"419696894-5","first_name":"Jo","last_name":"Copeman","email":"jcopemancu@geocities.com","phone":"173-702-0656","gender":"Male","department":"Business Development","address":"4949 Kennedy Lane","hire_date":"7/14/2018","website":"https://ed.gov","notes":"nulla facilisi cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros","status":6,"type":2,"salary":"$1835.35"}, {"id":464,"employee_id":"015027493-9","first_name":"Peyter","last_name":"Hellmore","email":"phellmorecv@digg.com","phone":"632-582-9736","gender":"Male","department":"Engineering","address":"3121 Waywood Hill","hire_date":"9/6/2017","website":"https://imdb.com","notes":"nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget semper rutrum nulla nunc","status":6,"type":2,"salary":"$2212.66"}, {"id":465,"employee_id":"832937399-1","first_name":"Orin","last_name":"Barbie","email":"obarbiecw@huffingtonpost.com","phone":"256-215-8770","gender":"Male","department":"Marketing","address":"32669 Iowa Parkway","hire_date":"2/18/2018","website":"http://artisteer.com","notes":"pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue a","status":1,"type":1,"salary":"$1866.77"}, {"id":466,"employee_id":"072281813-0","first_name":"Orelee","last_name":"Copsey","email":"ocopseycx@utexas.edu","phone":"394-385-8452","gender":"Female","department":"Support","address":"8 Drewry Point","hire_date":"10/4/2017","website":"https://constantcontact.com","notes":"enim lorem ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id","status":4,"type":2,"salary":"$1230.46"}, {"id":467,"employee_id":"606044235-8","first_name":"Sigismondo","last_name":"Ofen","email":"sofency@mapquest.com","phone":"341-819-8669","gender":"Male","department":"Research and Development","address":"77396 Doe Crossing Alley","hire_date":"8/11/2017","website":"http://princeton.edu","notes":"pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices enim lorem","status":6,"type":2,"salary":"$1765.19"}, {"id":468,"employee_id":"821273689-X","first_name":"Jedediah","last_name":"MacLaig","email":"jmaclaigcz@360.cn","phone":"534-631-5874","gender":"Male","department":"Services","address":"4 Comanche Parkway","hire_date":"1/12/2018","website":"https://squarespace.com","notes":"curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel","status":4,"type":1,"salary":"$1215.24"}, {"id":469,"employee_id":"066207236-7","first_name":"Beverlee","last_name":"O\' Loughran","email":"boloughrand0@cyberchimps.com","phone":"127-755-5606","gender":"Female","department":"Marketing","address":"74 Lotheville Parkway","hire_date":"12/11/2017","website":"https://nsw.gov.au","notes":"vel lectus in quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit amet cursus id turpis","status":6,"type":3,"salary":"$2307.28"}, {"id":470,"employee_id":"844898553-2","first_name":"Martica","last_name":"Matteoli","email":"mmatteolid1@pen.io","phone":"672-519-4332","gender":"Female","department":"Engineering","address":"2 Badeau Junction","hire_date":"4/12/2018","website":"https://npr.org","notes":"consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue","status":6,"type":3,"salary":"$984.27"}, {"id":471,"employee_id":"311719965-9","first_name":"Huberto","last_name":"Potte","email":"hpotted2@princeton.edu","phone":"863-788-5617","gender":"Male","department":"Marketing","address":"87 Ridge Oak Parkway","hire_date":"4/19/2018","website":"http://washington.edu","notes":"faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec","status":1,"type":3,"salary":"$878.14"}, {"id":472,"employee_id":"582143417-3","first_name":"Cliff","last_name":"Packer","email":"cpackerd3@kickstarter.com","phone":"508-822-7087","gender":"Male","department":"Services","address":"5595 Burrows Point","hire_date":"6/24/2018","website":"https://techcrunch.com","notes":"curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a","status":6,"type":3,"salary":"$381.41"}, {"id":473,"employee_id":"855235495-0","first_name":"Ross","last_name":"Ladley","email":"rladleyd4@cnn.com","phone":"198-656-5423","gender":"Male","department":"Product Management","address":"1 Northport Road","hire_date":"6/15/2018","website":"http://bluehost.com","notes":"dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac nibh fusce lacus purus","status":2,"type":2,"salary":"$2146.81"}, {"id":474,"employee_id":"404159862-1","first_name":"Alyce","last_name":"McCleod","email":"amccleodd5@redcross.org","phone":"880-580-5700","gender":"Female","department":"Human Resources","address":"925 Bultman Parkway","hire_date":"2/25/2018","website":"https://com.com","notes":"fusce congue diam id ornare imperdiet sapien urna pretium nisl ut","status":6,"type":3,"salary":"$1903.25"}, {"id":475,"employee_id":"589835155-8","first_name":"Verina","last_name":"Courvert","email":"vcourvertd6@cafepress.com","phone":"172-360-9828","gender":"Female","department":"Accounting","address":"8974 Spaight Street","hire_date":"7/16/2018","website":"https://google.fr","notes":"duis consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel lectus in quam","status":6,"type":1,"salary":"$1561.79"}, {"id":476,"employee_id":"972641382-6","first_name":"Culver","last_name":"Marchant","email":"cmarchantd7@hhs.gov","phone":"554-336-4806","gender":"Male","department":"Support","address":"399 Loomis Way","hire_date":"3/27/2018","website":"https://simplemachines.org","notes":"dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non pretium","status":4,"type":1,"salary":"$654.68"}, {"id":477,"employee_id":"500316478-5","first_name":"Caye","last_name":"Vogl","email":"cvogld8@weibo.com","phone":"185-256-5198","gender":"Female","department":"Research and Development","address":"96853 Homewood Pass","hire_date":"4/5/2018","website":"https://intel.com","notes":"mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl","status":3,"type":1,"salary":"$1814.29"}, {"id":478,"employee_id":"907436177-3","first_name":"Clerc","last_name":"Ramalhete","email":"cramalheted9@slate.com","phone":"830-908-1520","gender":"Male","department":"Legal","address":"93 Almo Hill","hire_date":"1/1/2018","website":"http://wufoo.com","notes":"sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices","status":5,"type":2,"salary":"$1579.44"}, {"id":479,"employee_id":"995025649-6","first_name":"Tomkin","last_name":"Hasluck","email":"thasluckda@fema.gov","phone":"978-887-7805","gender":"Male","department":"Services","address":"8482 Lindbergh Place","hire_date":"2/16/2018","website":"http://pcworld.com","notes":"vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam","status":3,"type":1,"salary":"$953.22"}, {"id":480,"employee_id":"066615751-0","first_name":"Odette","last_name":"Giabuzzi","email":"ogiabuzzidb@posterous.com","phone":"489-723-2878","gender":"Female","department":"Business Development","address":"45078 Burning Wood Court","hire_date":"3/10/2018","website":"https://oaic.gov.au","notes":"in congue etiam justo etiam pretium iaculis justo in hac habitasse platea","status":3,"type":2,"salary":"$254.89"}, {"id":481,"employee_id":"702181810-6","first_name":"Jervis","last_name":"Agdahl","email":"jagdahldc@typepad.com","phone":"912-890-8348","gender":"Male","department":"Marketing","address":"44161 Trailsway Crossing","hire_date":"11/25/2017","website":"https://furl.net","notes":"nisl nunc rhoncus dui vel sem sed sagittis nam congue risus","status":6,"type":1,"salary":"$1736.06"}, {"id":482,"employee_id":"718527178-9","first_name":"Selby","last_name":"Dore","email":"sdoredd@sogou.com","phone":"273-822-7706","gender":"Male","department":"Sales","address":"9855 Aberg Alley","hire_date":"4/26/2018","website":"http://hp.com","notes":"a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis","status":2,"type":1,"salary":"$665.95"}, {"id":483,"employee_id":"194704747-7","first_name":"Peyter","last_name":"Simonsson","email":"psimonssonde@theguardian.com","phone":"745-367-5082","gender":"Male","department":"Research and Development","address":"26 Donald Avenue","hire_date":"1/17/2018","website":"http://netvibes.com","notes":"sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum praesent blandit","status":4,"type":3,"salary":"$648.55"}, {"id":484,"employee_id":"546275328-4","first_name":"Tarrah","last_name":"Badrick","email":"tbadrickdf@geocities.jp","phone":"197-873-5702","gender":"Female","department":"Support","address":"8 Farmco Hill","hire_date":"4/23/2018","website":"http://hao123.com","notes":"quam nec dui luctus rutrum nulla tellus in sagittis dui","status":2,"type":2,"salary":"$505.63"}, {"id":485,"employee_id":"161723623-3","first_name":"Eduino","last_name":"Trengrouse","email":"etrengrousedg@hao123.com","phone":"225-234-9800","gender":"Male","department":"Business Development","address":"76471 Spaight Drive","hire_date":"5/22/2018","website":"https://ovh.net","notes":"mauris eget massa tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu","status":1,"type":2,"salary":"$1731.67"}, {"id":486,"employee_id":"070034175-7","first_name":"Shir","last_name":"Capper","email":"scapperdh@multiply.com","phone":"537-286-9052","gender":"Female","department":"Research and Development","address":"8 Troy Place","hire_date":"4/5/2018","website":"http://cnet.com","notes":"lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed","status":2,"type":1,"salary":"$494.21"}, {"id":487,"employee_id":"767827536-6","first_name":"Tani","last_name":"Cuxson","email":"tcuxsondi@yahoo.com","phone":"880-339-2128","gender":"Female","department":"Support","address":"8250 Eagan Terrace","hire_date":"4/5/2018","website":"http://howstuffworks.com","notes":"morbi vel lectus in quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit amet","status":6,"type":2,"salary":"$959.94"}, {"id":488,"employee_id":"902168185-4","first_name":"Rand","last_name":"MacQueen","email":"rmacqueendj@bravesites.com","phone":"617-715-8951","gender":"Male","department":"Accounting","address":"08228 Pawling Court","hire_date":"3/14/2018","website":"https://state.tx.us","notes":"vulputate elementum nullam varius nulla facilisi cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus","status":6,"type":2,"salary":"$1160.93"}, {"id":489,"employee_id":"040879291-4","first_name":"Talyah","last_name":"Shernock","email":"tshernockdk@state.tx.us","phone":"741-423-4538","gender":"Female","department":"Sales","address":"20 Melby Avenue","hire_date":"2/25/2018","website":"http://e-recht24.de","notes":"pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna ac consequat metus sapien ut nunc","status":2,"type":1,"salary":"$572.13"}, {"id":490,"employee_id":"474259442-8","first_name":"Jacquelin","last_name":"Santello","email":"jsantellodl@geocities.com","phone":"537-411-8619","gender":"Female","department":"Support","address":"57889 Manitowish Alley","hire_date":"8/20/2017","website":"https://i2i.jp","notes":"sapien placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris","status":3,"type":1,"salary":"$332.58"}, {"id":491,"employee_id":"450169658-3","first_name":"Bell","last_name":"Beckley","email":"bbeckleydm@cloudflare.com","phone":"217-894-3996","gender":"Female","department":"Support","address":"77 Mosinee Drive","hire_date":"6/24/2018","website":"http://sogou.com","notes":"vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat","status":2,"type":2,"salary":"$1353.02"}, {"id":492,"employee_id":"086726928-6","first_name":"Ivory","last_name":"Likly","email":"iliklydn@scientificamerican.com","phone":"609-525-5539","gender":"Female","department":"Training","address":"661 Daystar Pass","hire_date":"8/27/2017","website":"http://sfgate.com","notes":"iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat","status":1,"type":2,"salary":"$1809.00"}, {"id":493,"employee_id":"711819703-3","first_name":"Fae","last_name":"Wiggall","email":"fwiggalldo@columbia.edu","phone":"437-540-3973","gender":"Female","department":"Marketing","address":"36 Forest Dale Circle","hire_date":"9/24/2017","website":"http://newsvine.com","notes":"dui proin leo odio porttitor id consequat in consequat ut","status":4,"type":3,"salary":"$2403.80"}, {"id":494,"employee_id":"290349600-5","first_name":"Ernestine","last_name":"Goalby","email":"egoalbydp@digg.com","phone":"180-831-1929","gender":"Female","department":"Engineering","address":"7 Del Mar Point","hire_date":"10/19/2017","website":"https://tiny.cc","notes":"quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a pede posuere","status":6,"type":3,"salary":"$2336.08"}, {"id":495,"employee_id":"538385022-8","first_name":"Jessie","last_name":"Impey","email":"jimpeydq@washingtonpost.com","phone":"422-805-3725","gender":"Female","department":"Business Development","address":"287 Ryan Point","hire_date":"3/31/2018","website":"https://go.com","notes":"eros suspendisse accumsan tortor quis turpis sed ante vivamus tortor","status":5,"type":2,"salary":"$611.44"}, {"id":496,"employee_id":"143360510-4","first_name":"Yanaton","last_name":"Camplejohn","email":"ycamplejohndr@nhs.uk","phone":"936-368-9176","gender":"Male","department":"Marketing","address":"99 Northland Pass","hire_date":"9/3/2017","website":"https://is.gd","notes":"enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet","status":4,"type":1,"salary":"$2245.39"}, {"id":497,"employee_id":"750684578-4","first_name":"Trudi","last_name":"Overington","email":"toveringtonds@prlog.org","phone":"270-552-8062","gender":"Female","department":"Marketing","address":"7427 Blaine Place","hire_date":"10/17/2017","website":"http://dion.ne.jp","notes":"mauris viverra diam vitae quam suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris","status":1,"type":2,"salary":"$1073.92"}, {"id":498,"employee_id":"221179228-6","first_name":"Clemmie","last_name":"Durek","email":"cdurekdt@whitehouse.gov","phone":"692-244-6198","gender":"Male","department":"Human Resources","address":"58886 Alpine Terrace","hire_date":"4/12/2018","website":"https://senate.gov","notes":"nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula","status":6,"type":2,"salary":"$1969.24"}, {"id":499,"employee_id":"568206519-0","first_name":"Saunder","last_name":"Pain","email":"spaindu@de.vu","phone":"473-272-7672","gender":"Male","department":"Business Development","address":"57956 Packers Trail","hire_date":"9/14/2017","website":"https://wp.com","notes":"amet eleifend pede libero quis orci nullam molestie nibh in","status":3,"type":1,"salary":"$377.29"}, {"id":500,"employee_id":"425526429-5","first_name":"Sam","last_name":"Thomann","email":"sthomanndv@vimeo.com","phone":"614-882-2312","gender":"Female","department":"Human Resources","address":"5 Red Cloud Trail","hire_date":"5/11/2018","website":"http://mtv.com","notes":"purus aliquet at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a odio","status":1,"type":3,"salary":"$1111.96"}, {"id":501,"employee_id":"117610162-5","first_name":"Lindsay","last_name":"Kraut","email":"lkrautdw@cnet.com","phone":"425-547-6447","gender":"Female","department":"Engineering","address":"5672 Clemons Lane","hire_date":"6/8/2018","website":"https://fastcompany.com","notes":"id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede","status":2,"type":1,"salary":"$760.65"}, {"id":502,"employee_id":"984428955-6","first_name":"Sholom","last_name":"Shipman","email":"sshipmandx@networkadvertising.org","phone":"471-320-6739","gender":"Male","department":"Research and Development","address":"10 Sutteridge Crossing","hire_date":"6/10/2018","website":"http://comsenz.com","notes":"adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in ante vestibulum","status":3,"type":1,"salary":"$1776.23"}, {"id":503,"employee_id":"410067431-7","first_name":"Josefa","last_name":"Wynn","email":"jwynndy@cnet.com","phone":"498-617-3001","gender":"Female","department":"Legal","address":"626 Muir Circle","hire_date":"11/10/2017","website":"http://arizona.edu","notes":"integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula suspendisse","status":1,"type":3,"salary":"$1226.60"}, {"id":504,"employee_id":"028594067-8","first_name":"Gae","last_name":"McKane","email":"gmckanedz@washington.edu","phone":"206-954-8266","gender":"Female","department":"Research and Development","address":"29777 Sommers Alley","hire_date":"9/20/2017","website":"http://adobe.com","notes":"porta volutpat quam pede lobortis ligula sit amet eleifend pede libero","status":2,"type":2,"salary":"$407.96"}, {"id":505,"employee_id":"326426622-9","first_name":"Lorinda","last_name":"Tomowicz","email":"ltomowicze0@msu.edu","phone":"328-817-3161","gender":"Female","department":"Product Management","address":"712 Mallard Drive","hire_date":"10/5/2017","website":"https://un.org","notes":"sapien urna pretium nisl ut volutpat sapien arcu sed augue aliquam erat volutpat","status":4,"type":1,"salary":"$2408.57"}, {"id":506,"employee_id":"270468637-8","first_name":"Rafi","last_name":"Mc Harg","email":"rmcharge1@gnu.org","phone":"499-665-2017","gender":"Male","department":"Marketing","address":"355 Milwaukee Pass","hire_date":"9/2/2017","website":"https://apple.com","notes":"sit amet justo morbi ut odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices enim","status":2,"type":1,"salary":"$2260.97"}, {"id":507,"employee_id":"383508689-8","first_name":"Perceval","last_name":"Apark","email":"paparke2@ow.ly","phone":"917-150-4444","gender":"Male","department":"Business Development","address":"369 East Point","hire_date":"10/1/2017","website":"http://icq.com","notes":"integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula","status":5,"type":1,"salary":"$1344.27"}, {"id":508,"employee_id":"195865159-1","first_name":"Dyann","last_name":"Iacobo","email":"diacoboe3@rediff.com","phone":"699-728-7247","gender":"Female","department":"Legal","address":"709 High Crossing Junction","hire_date":"2/20/2018","website":"https://yellowpages.com","notes":"ultrices mattis odio donec vitae nisi nam ultrices libero non mattis","status":6,"type":1,"salary":"$1111.05"}, {"id":509,"employee_id":"981494545-5","first_name":"Cornall","last_name":"Arnfield","email":"carnfielde4@ebay.co.uk","phone":"731-176-4240","gender":"Male","department":"Research and Development","address":"71 Lakewood Way","hire_date":"5/17/2018","website":"http://vk.com","notes":"mauris ullamcorper purus sit amet nulla quisque arcu libero rutrum ac lobortis vel dapibus at diam nam tristique tortor","status":3,"type":2,"salary":"$821.90"}, {"id":510,"employee_id":"088408667-4","first_name":"Wendall","last_name":"Langmaid","email":"wlangmaide5@sourceforge.net","phone":"335-490-0227","gender":"Male","department":"Product Management","address":"20191 Katie Street","hire_date":"9/23/2017","website":"http://dyndns.org","notes":"lorem quisque ut erat curabitur gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer","status":1,"type":3,"salary":"$557.72"}, {"id":511,"employee_id":"725959027-0","first_name":"Gustavo","last_name":"Frowde","email":"gfrowdee6@sciencedaily.com","phone":"226-885-7445","gender":"Male","department":"Marketing","address":"91 Westerfield Park","hire_date":"4/24/2018","website":"http://reddit.com","notes":"ligula sit amet eleifend pede libero quis orci nullam molestie nibh in","status":6,"type":2,"salary":"$795.00"}, {"id":512,"employee_id":"065409990-1","first_name":"Dyann","last_name":"Rousell","email":"drouselle7@so-net.ne.jp","phone":"296-840-4065","gender":"Female","department":"Marketing","address":"82161 Jay Road","hire_date":"9/25/2017","website":"https://blogspot.com","notes":"ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia","status":2,"type":3,"salary":"$765.07"}, {"id":513,"employee_id":"285010494-9","first_name":"Lucienne","last_name":"Castello","email":"lcastelloe8@exblog.jp","phone":"680-565-2679","gender":"Female","department":"Business Development","address":"32620 Sutherland Lane","hire_date":"11/19/2017","website":"http://squidoo.com","notes":"sed tristique in tempus sit amet sem fusce consequat nulla","status":6,"type":2,"salary":"$1540.86"}, {"id":514,"employee_id":"595628191-X","first_name":"Jacquie","last_name":"Millsom","email":"jmillsome9@stanford.edu","phone":"732-658-4644","gender":"Female","department":"Sales","address":"5 West Drive","hire_date":"7/22/2017","website":"http://edublogs.org","notes":"sit amet lobortis sapien sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum","status":4,"type":2,"salary":"$1071.47"}, {"id":515,"employee_id":"067222722-3","first_name":"Agretha","last_name":"Kevern","email":"akevernea@pbs.org","phone":"678-329-6733","gender":"Female","department":"Sales","address":"7099 Prentice Drive","hire_date":"9/22/2017","website":"http://pbs.org","notes":"condimentum neque sapien placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan","status":3,"type":2,"salary":"$335.98"}, {"id":516,"employee_id":"054554550-1","first_name":"Cybill","last_name":"Maddison","email":"cmaddisoneb@angelfire.com","phone":"964-989-9152","gender":"Female","department":"Accounting","address":"87630 Mockingbird Place","hire_date":"5/24/2018","website":"http://unesco.org","notes":"iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque","status":6,"type":1,"salary":"$821.01"}, {"id":517,"employee_id":"817006907-6","first_name":"Abe","last_name":"Barme","email":"abarmeec@yellowbook.com","phone":"767-754-0994","gender":"Male","department":"Human Resources","address":"96 Service Circle","hire_date":"1/14/2018","website":"https://nature.com","notes":"tortor risus dapibus augue vel accumsan tellus nisi eu orci","status":3,"type":3,"salary":"$1875.92"}, {"id":518,"employee_id":"743717134-1","first_name":"Sallee","last_name":"Ephgrave","email":"sephgraveed@usda.gov","phone":"959-505-3973","gender":"Female","department":"Research and Development","address":"913 Laurel Place","hire_date":"3/28/2018","website":"https://bloglovin.com","notes":"dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis molestie","status":5,"type":2,"salary":"$1313.62"}, {"id":519,"employee_id":"385122785-9","first_name":"Vlad","last_name":"Kasbye","email":"vkasbyeee@ycombinator.com","phone":"270-122-0315","gender":"Male","department":"Research and Development","address":"77 Cambridge Crossing","hire_date":"3/23/2018","website":"http://123-reg.co.uk","notes":"sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum","status":1,"type":1,"salary":"$2258.49"}, {"id":520,"employee_id":"891359762-4","first_name":"Aluino","last_name":"Thoresbie","email":"athoresbieef@yellowbook.com","phone":"406-945-8430","gender":"Male","department":"Accounting","address":"08556 Chinook Center","hire_date":"2/7/2018","website":"https://163.com","notes":"diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci","status":5,"type":1,"salary":"$1746.72"}, {"id":521,"employee_id":"009979810-7","first_name":"Pansy","last_name":"Meco","email":"pmecoeg@newsvine.com","phone":"577-321-5002","gender":"Female","department":"Training","address":"2 Anhalt Plaza","hire_date":"6/9/2018","website":"http://godaddy.com","notes":"lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh","status":4,"type":2,"salary":"$996.08"}, {"id":522,"employee_id":"817438242-9","first_name":"Tyrus","last_name":"Jameson","email":"tjamesoneh@example.com","phone":"942-794-5383","gender":"Male","department":"Marketing","address":"1159 Quincy Park","hire_date":"2/16/2018","website":"https://tinypic.com","notes":"non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla","status":1,"type":2,"salary":"$683.93"}, {"id":523,"employee_id":"425717013-1","first_name":"Gasper","last_name":"Casin","email":"gcasinei@bbb.org","phone":"924-594-2762","gender":"Male","department":"Services","address":"54 Butternut Junction","hire_date":"3/6/2018","website":"http://imgur.com","notes":"nisl nunc rhoncus dui vel sem sed sagittis nam congue risus semper porta volutpat quam pede lobortis ligula sit amet","status":6,"type":2,"salary":"$360.97"}, {"id":524,"employee_id":"309675188-9","first_name":"Thatch","last_name":"Crinkley","email":"tcrinkleyej@artisteer.com","phone":"166-901-1673","gender":"Male","department":"Product Management","address":"241 Lighthouse Bay Plaza","hire_date":"10/17/2017","website":"http://mlb.com","notes":"augue aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac habitasse platea","status":5,"type":2,"salary":"$1397.54"}, {"id":525,"employee_id":"578154346-5","first_name":"Dukey","last_name":"Hacun","email":"dhacunek@timesonline.co.uk","phone":"288-708-4115","gender":"Male","department":"Accounting","address":"52824 Transport Place","hire_date":"12/27/2017","website":"https://pcworld.com","notes":"posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui","status":3,"type":3,"salary":"$2376.40"}, {"id":526,"employee_id":"379738361-4","first_name":"Lindy","last_name":"Billo","email":"lbilloel@macromedia.com","phone":"801-573-9373","gender":"Female","department":"Research and Development","address":"54404 Hermina Terrace","hire_date":"10/1/2017","website":"http://nsw.gov.au","notes":"semper sapien a libero nam dui proin leo odio porttitor id consequat in consequat ut nulla","status":6,"type":3,"salary":"$2158.48"}, {"id":527,"employee_id":"466883586-2","first_name":"Dalston","last_name":"Bogace","email":"dbogaceem@vk.com","phone":"295-805-9785","gender":"Male","department":"Product Management","address":"38 Becker Street","hire_date":"9/15/2017","website":"http://tumblr.com","notes":"etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat","status":1,"type":1,"salary":"$1911.79"}, {"id":528,"employee_id":"540218312-0","first_name":"Millard","last_name":"Florentine","email":"mflorentineen@washingtonpost.com","phone":"922-496-0342","gender":"Male","department":"Research and Development","address":"5 Forest Run Street","hire_date":"10/4/2017","website":"https://pen.io","notes":"semper rutrum nulla nunc purus phasellus in felis donec semper sapien a libero nam dui","status":6,"type":2,"salary":"$1686.38"}, {"id":529,"employee_id":"471433513-8","first_name":"Tove","last_name":"Gagan","email":"tgaganeo@google.com.hk","phone":"674-360-2542","gender":"Female","department":"Accounting","address":"12 Dayton Pass","hire_date":"12/20/2017","website":"http://google.com.hk","notes":"donec quis orci eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio odio elementum","status":2,"type":3,"salary":"$560.97"}, {"id":530,"employee_id":"896500909-X","first_name":"Veda","last_name":"Palfrey","email":"vpalfreyep@youku.com","phone":"332-927-5840","gender":"Female","department":"Support","address":"38 Packers Road","hire_date":"12/2/2017","website":"https://dion.ne.jp","notes":"lectus suspendisse potenti in eleifend quam a odio in hac habitasse","status":6,"type":2,"salary":"$1058.94"}, {"id":531,"employee_id":"864412579-6","first_name":"Suellen","last_name":"Canavan","email":"scanavaneq@scientificamerican.com","phone":"576-969-0877","gender":"Female","department":"Accounting","address":"2 Manley Trail","hire_date":"3/22/2018","website":"http://un.org","notes":"etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus","status":6,"type":1,"salary":"$2336.14"}, {"id":532,"employee_id":"361106781-4","first_name":"Hallie","last_name":"Vannoni","email":"hvannonier@flickr.com","phone":"260-478-2440","gender":"Female","department":"Accounting","address":"2567 Lillian Hill","hire_date":"8/16/2017","website":"https://cloudflare.com","notes":"ipsum integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi","status":4,"type":3,"salary":"$1386.77"}, {"id":533,"employee_id":"319328011-9","first_name":"Mersey","last_name":"Schwieso","email":"mschwiesoes@chron.com","phone":"132-552-8514","gender":"Female","department":"Business Development","address":"5 Nelson Point","hire_date":"6/10/2018","website":"http://shutterfly.com","notes":"sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et","status":3,"type":1,"salary":"$824.84"}, {"id":534,"employee_id":"713956296-2","first_name":"Lefty","last_name":"Clute","email":"lcluteet@rambler.ru","phone":"449-868-4056","gender":"Male","department":"Training","address":"7763 Sunnyside Plaza","hire_date":"11/7/2017","website":"http://storify.com","notes":"id lobortis convallis tortor risus dapibus augue vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero nullam sit","status":2,"type":1,"salary":"$1307.33"}, {"id":535,"employee_id":"069730721-2","first_name":"Roxine","last_name":"Shakelady","email":"rshakeladyeu@live.com","phone":"399-312-9948","gender":"Female","department":"Sales","address":"357 Shopko Lane","hire_date":"1/3/2018","website":"http://freewebs.com","notes":"maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum","status":3,"type":2,"salary":"$2481.79"}, {"id":536,"employee_id":"074201811-3","first_name":"Noam","last_name":"Rowlinson","email":"nrowlinsonev@gov.uk","phone":"117-590-9070","gender":"Male","department":"Training","address":"5 Katie Pass","hire_date":"4/11/2018","website":"https://gravatar.com","notes":"pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper","status":1,"type":3,"salary":"$293.52"}, {"id":537,"employee_id":"048139754-X","first_name":"Frasier","last_name":"Prall","email":"fprallew@eventbrite.com","phone":"258-309-4486","gender":"Male","department":"Research and Development","address":"032 Coleman Road","hire_date":"2/12/2018","website":"https://prlog.org","notes":"consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero","status":4,"type":3,"salary":"$1068.17"}, {"id":538,"employee_id":"006004879-4","first_name":"Woodman","last_name":"Walas","email":"wwalasex@virginia.edu","phone":"169-283-0001","gender":"Male","department":"Support","address":"1669 Dennis Pass","hire_date":"11/2/2017","website":"https://mapquest.com","notes":"vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient","status":1,"type":2,"salary":"$1803.38"}, {"id":539,"employee_id":"668179309-6","first_name":"Trenton","last_name":"Raatz","email":"traatzey@goo.ne.jp","phone":"338-986-6038","gender":"Male","department":"Legal","address":"46 International Street","hire_date":"10/16/2017","website":"http://bbb.org","notes":"risus dapibus augue vel accumsan tellus nisi eu orci mauris","status":5,"type":1,"salary":"$309.70"}, {"id":540,"employee_id":"169561284-1","first_name":"Herculie","last_name":"Mainstone","email":"hmainstoneez@abc.net.au","phone":"719-667-5959","gender":"Male","department":"Human Resources","address":"76598 Old Shore Hill","hire_date":"1/27/2018","website":"https://squidoo.com","notes":"adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in ante vestibulum ante ipsum primis","status":2,"type":1,"salary":"$719.96"}, {"id":541,"employee_id":"188941104-3","first_name":"Myrtie","last_name":"Dybald","email":"mdybaldf0@stumbleupon.com","phone":"455-883-9262","gender":"Female","department":"Engineering","address":"27 Continental Trail","hire_date":"9/11/2017","website":"http://photobucket.com","notes":"integer ac leo pellentesque ultrices mattis odio donec vitae nisi","status":2,"type":2,"salary":"$1509.79"}, {"id":542,"employee_id":"672328549-2","first_name":"Mozelle","last_name":"Parrett","email":"mparrettf1@alexa.com","phone":"520-187-8950","gender":"Female","department":"Marketing","address":"7 Kennedy Plaza","hire_date":"5/11/2018","website":"https://ibm.com","notes":"ullamcorper purus sit amet nulla quisque arcu libero rutrum ac","status":4,"type":1,"salary":"$1112.79"}, {"id":543,"employee_id":"233524722-0","first_name":"Winny","last_name":"Rizzelli","email":"wrizzellif2@liveinternet.ru","phone":"638-553-1453","gender":"Female","department":"Legal","address":"64226 Rigney Plaza","hire_date":"7/3/2018","website":"https://globo.com","notes":"magna ac consequat metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus","status":4,"type":2,"salary":"$511.39"}, {"id":544,"employee_id":"980292964-6","first_name":"Rubetta","last_name":"Roberts","email":"rrobertsf3@vimeo.com","phone":"320-783-0613","gender":"Female","department":"Product Management","address":"77 Center Hill","hire_date":"7/11/2018","website":"http://google.com.br","notes":"faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur","status":2,"type":3,"salary":"$2439.32"}, {"id":545,"employee_id":"546244510-5","first_name":"Duffie","last_name":"Coley","email":"dcoleyf4@google.co.jp","phone":"802-258-2354","gender":"Male","department":"Marketing","address":"4960 Portage Way","hire_date":"10/15/2017","website":"http://sphinn.com","notes":"mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent","status":5,"type":1,"salary":"$1205.36"}, {"id":546,"employee_id":"056298206-X","first_name":"Marianna","last_name":"Laxston","email":"mlaxstonf5@issuu.com","phone":"784-812-7862","gender":"Female","department":"Accounting","address":"03 Morningstar Crossing","hire_date":"3/27/2018","website":"http://sohu.com","notes":"orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam","status":4,"type":3,"salary":"$2091.54"}, {"id":547,"employee_id":"854997068-9","first_name":"Leonard","last_name":"Ghilks","email":"lghilksf6@google.com.hk","phone":"344-427-1979","gender":"Male","department":"Business Development","address":"8 Mandrake Trail","hire_date":"9/9/2017","website":"https://gnu.org","notes":"dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat","status":1,"type":1,"salary":"$2360.29"}, {"id":548,"employee_id":"374005192-2","first_name":"Delcine","last_name":"Gibard","email":"dgibardf7@feedburner.com","phone":"486-769-5871","gender":"Female","department":"Engineering","address":"07365 Almo Avenue","hire_date":"1/20/2018","website":"http://telegraph.co.uk","notes":"sollicitudin mi sit amet lobortis sapien sapien non mi integer ac","status":3,"type":1,"salary":"$2194.72"}, {"id":549,"employee_id":"981938694-2","first_name":"Jasen","last_name":"Penella","email":"jpenellaf8@unc.edu","phone":"946-137-4880","gender":"Male","department":"Sales","address":"8245 Lyons Way","hire_date":"7/30/2017","website":"https://alibaba.com","notes":"curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat","status":6,"type":2,"salary":"$2175.16"}, {"id":550,"employee_id":"184850704-6","first_name":"Claresta","last_name":"Lanahan","email":"clanahanf9@redcross.org","phone":"421-926-4102","gender":"Female","department":"Product Management","address":"16627 Glendale Crossing","hire_date":"5/29/2018","website":"https://dailymail.co.uk","notes":"ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor","status":4,"type":1,"salary":"$1947.50"}, {"id":551,"employee_id":"147962271-0","first_name":"Wilbur","last_name":"Bourrel","email":"wbourrelfa@cisco.com","phone":"111-829-9008","gender":"Male","department":"Sales","address":"2 Bay Junction","hire_date":"1/23/2018","website":"http://skype.com","notes":"quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus","status":5,"type":1,"salary":"$2126.19"}, {"id":552,"employee_id":"229215988-0","first_name":"Roseann","last_name":"Hapke","email":"rhapkefb@amazon.co.jp","phone":"253-634-1559","gender":"Female","department":"Training","address":"3 Ilene Way","hire_date":"5/18/2018","website":"https://imdb.com","notes":"in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id mauris vulputate elementum nullam","status":2,"type":3,"salary":"$692.93"}, {"id":553,"employee_id":"751330939-6","first_name":"Tabby","last_name":"Potter","email":"tpotterfc@discuz.net","phone":"798-581-9705","gender":"Male","department":"Research and Development","address":"30 Karstens Trail","hire_date":"10/18/2017","website":"http://ihg.com","notes":"consequat lectus in est risus auctor sed tristique in tempus sit amet sem fusce","status":5,"type":3,"salary":"$1811.07"}, {"id":554,"employee_id":"319386525-7","first_name":"Delmar","last_name":"Maffin","email":"dmaffinfd@go.com","phone":"949-706-8947","gender":"Male","department":"Engineering","address":"7237 Lerdahl Hill","hire_date":"11/23/2017","website":"https://intel.com","notes":"sed justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam","status":5,"type":2,"salary":"$1440.38"}, {"id":555,"employee_id":"180320571-7","first_name":"Mord","last_name":"Plaskett","email":"mplaskettfe@dedecms.com","phone":"428-505-2974","gender":"Male","department":"Marketing","address":"5635 Northridge Alley","hire_date":"10/16/2017","website":"https://goo.gl","notes":"condimentum neque sapien placerat ante nulla justo aliquam quis turpis","status":6,"type":3,"salary":"$870.49"}, {"id":556,"employee_id":"844696576-3","first_name":"Bil","last_name":"Maple","email":"bmapleff@ning.com","phone":"884-552-0647","gender":"Male","department":"Support","address":"6 Sunnyside Court","hire_date":"6/7/2018","website":"https://cdbaby.com","notes":"nulla ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula","status":5,"type":1,"salary":"$391.64"}, {"id":557,"employee_id":"073155412-4","first_name":"Padraic","last_name":"Ambrogetti","email":"pambrogettifg@answers.com","phone":"945-772-9655","gender":"Male","department":"Legal","address":"262 Canary Court","hire_date":"5/4/2018","website":"https://w3.org","notes":"odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero","status":6,"type":1,"salary":"$1676.16"}, {"id":558,"employee_id":"445618451-5","first_name":"Genia","last_name":"Bonehill","email":"gbonehillfh@aol.com","phone":"514-971-7446","gender":"Female","department":"Accounting","address":"1 Oneill Park","hire_date":"2/1/2018","website":"http://theglobeandmail.com","notes":"augue a suscipit nulla elit ac nulla sed vel enim sit amet nunc","status":3,"type":1,"salary":"$867.46"}, {"id":559,"employee_id":"748640207-6","first_name":"Sly","last_name":"Flacke","email":"sflackefi@youku.com","phone":"190-966-7454","gender":"Male","department":"Business Development","address":"2 Straubel Center","hire_date":"4/10/2018","website":"http://yahoo.com","notes":"amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus dapibus augue vel accumsan tellus nisi eu","status":4,"type":3,"salary":"$1797.09"}, {"id":560,"employee_id":"520331874-3","first_name":"Bennett","last_name":"Clampton","email":"bclamptonfj@goo.ne.jp","phone":"435-279-5530","gender":"Male","department":"Accounting","address":"56741 Warner Terrace","hire_date":"10/28/2017","website":"http://google.cn","notes":"justo etiam pretium iaculis justo in hac habitasse platea dictumst","status":3,"type":2,"salary":"$861.37"}, {"id":561,"employee_id":"377676559-3","first_name":"Ophelie","last_name":"Cregeen","email":"ocregeenfk@cisco.com","phone":"614-728-9664","gender":"Female","department":"Product Management","address":"0 Utah Trail","hire_date":"7/9/2018","website":"http://statcounter.com","notes":"nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus","status":5,"type":2,"salary":"$2121.34"}, {"id":562,"employee_id":"833683302-1","first_name":"Daffy","last_name":"Trotter","email":"dtrotterfl@w3.org","phone":"881-221-5716","gender":"Female","department":"Sales","address":"9617 Oak Terrace","hire_date":"9/14/2017","website":"https://msn.com","notes":"ultrices mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla","status":1,"type":2,"salary":"$982.48"}, {"id":563,"employee_id":"297416391-2","first_name":"Rollin","last_name":"Schulke","email":"rschulkefm@blogtalkradio.com","phone":"693-773-2895","gender":"Male","department":"Engineering","address":"0717 Merry Trail","hire_date":"12/10/2017","website":"https://pinterest.com","notes":"sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at","status":5,"type":1,"salary":"$897.96"}, {"id":564,"employee_id":"329686914-X","first_name":"Nanice","last_name":"Sempill","email":"nsempillfn@amazon.de","phone":"360-950-5204","gender":"Female","department":"Engineering","address":"310 Straubel Park","hire_date":"6/12/2018","website":"http://ow.ly","notes":"venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet","status":1,"type":1,"salary":"$2266.13"}, {"id":565,"employee_id":"987885496-5","first_name":"Loleta","last_name":"Berard","email":"lberardfo@kickstarter.com","phone":"385-848-2662","gender":"Female","department":"Marketing","address":"49148 Knutson Road","hire_date":"5/30/2018","website":"https://freewebs.com","notes":"habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt","status":2,"type":1,"salary":"$1899.36"}, {"id":566,"employee_id":"026111923-0","first_name":"Simmonds","last_name":"Herculeson","email":"sherculesonfp@digg.com","phone":"177-792-9992","gender":"Male","department":"Research and Development","address":"09 Derek Junction","hire_date":"10/6/2017","website":"http://google.ru","notes":"iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id","status":4,"type":1,"salary":"$2458.36"}, {"id":567,"employee_id":"738580768-2","first_name":"Isidoro","last_name":"Carluccio","email":"icarlucciofq@ifeng.com","phone":"477-980-2970","gender":"Male","department":"Product Management","address":"32 Lien Junction","hire_date":"2/18/2018","website":"http://a8.net","notes":"vehicula consequat morbi a ipsum integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id","status":6,"type":1,"salary":"$1606.68"}, {"id":568,"employee_id":"451895226-X","first_name":"Dickie","last_name":"Morcombe","email":"dmorcombefr@yellowbook.com","phone":"213-676-7361","gender":"Male","department":"Engineering","address":"94 Blaine Drive","hire_date":"2/28/2018","website":"http://quantcast.com","notes":"faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat","status":3,"type":1,"salary":"$1795.94"}, {"id":569,"employee_id":"120806965-9","first_name":"Garwood","last_name":"Adcock","email":"gadcockfs@europa.eu","phone":"794-670-6493","gender":"Male","department":"Accounting","address":"900 Texas Plaza","hire_date":"5/8/2018","website":"https://wikia.com","notes":"aliquet at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a odio","status":5,"type":1,"salary":"$565.32"}, {"id":570,"employee_id":"056294117-7","first_name":"Lemar","last_name":"Halegarth","email":"lhalegarthft@sfgate.com","phone":"942-570-9030","gender":"Male","department":"Support","address":"37138 Forest Dale Drive","hire_date":"9/14/2017","website":"http://bloomberg.com","notes":"ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus","status":3,"type":3,"salary":"$2046.86"}, {"id":571,"employee_id":"892461613-7","first_name":"Irvine","last_name":"Ruselin","email":"iruselinfu@answers.com","phone":"908-342-9993","gender":"Male","department":"Human Resources","address":"9859 Brickson Park Pass","hire_date":"12/27/2017","website":"http://discuz.net","notes":"porttitor lacus at turpis donec posuere metus vitae ipsum aliquam","status":1,"type":1,"salary":"$1719.02"}, {"id":572,"employee_id":"467294167-1","first_name":"Ingram","last_name":"Maiklem","email":"imaiklemfv@xinhuanet.com","phone":"774-570-3815","gender":"Male","department":"Human Resources","address":"956 Jenifer Alley","hire_date":"8/15/2017","website":"https://bandcamp.com","notes":"cursus urna ut tellus nulla ut erat id mauris vulputate elementum nullam","status":1,"type":2,"salary":"$1208.99"}, {"id":573,"employee_id":"078731029-8","first_name":"Pasquale","last_name":"Carnow","email":"pcarnowfw@over-blog.com","phone":"823-672-5601","gender":"Male","department":"Research and Development","address":"99 Merchant Parkway","hire_date":"4/26/2018","website":"https://ustream.tv","notes":"vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec","status":3,"type":1,"salary":"$1848.12"}, {"id":574,"employee_id":"026664954-8","first_name":"Hermy","last_name":"Paiton","email":"hpaitonfx@digg.com","phone":"764-229-1805","gender":"Male","department":"Product Management","address":"698 Thackeray Way","hire_date":"1/11/2018","website":"http://imdb.com","notes":"in hac habitasse platea dictumst etiam faucibus cursus urna ut","status":1,"type":2,"salary":"$1518.69"}, {"id":575,"employee_id":"672706698-1","first_name":"Ruby","last_name":"Barritt","email":"rbarrittfy@reuters.com","phone":"272-671-6978","gender":"Female","department":"Business Development","address":"0 Ilene Pass","hire_date":"7/26/2017","website":"http://samsung.com","notes":"in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante","status":5,"type":2,"salary":"$2404.07"}, {"id":576,"employee_id":"959234324-1","first_name":"Reinwald","last_name":"Connolly","email":"rconnollyfz@unc.edu","phone":"256-757-8941","gender":"Male","department":"Support","address":"176 Cardinal Hill","hire_date":"9/18/2017","website":"http://constantcontact.com","notes":"hac habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum neque sapien","status":6,"type":2,"salary":"$2121.45"}, {"id":577,"employee_id":"032000879-7","first_name":"Ferdie","last_name":"Paydon","email":"fpaydong0@businesswire.com","phone":"760-201-4090","gender":"Male","department":"Marketing","address":"84 Eastwood Road","hire_date":"12/5/2017","website":"https://nba.com","notes":"gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem","status":2,"type":3,"salary":"$2155.61"}, {"id":578,"employee_id":"265514291-8","first_name":"Jozef","last_name":"Lafranconi","email":"jlafranconig1@mediafire.com","phone":"306-419-6170","gender":"Male","department":"Human Resources","address":"904 Holy Cross Alley","hire_date":"1/5/2018","website":"http://google.es","notes":"volutpat convallis morbi odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis","status":1,"type":3,"salary":"$817.24"}, {"id":579,"employee_id":"213313648-7","first_name":"Dennison","last_name":"Corryer","email":"dcorryerg2@biblegateway.com","phone":"267-774-3581","gender":"Male","department":"Product Management","address":"99154 Red Cloud Way","hire_date":"6/4/2018","website":"http://cpanel.net","notes":"nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo","status":6,"type":3,"salary":"$1341.78"}, {"id":580,"employee_id":"473015388-X","first_name":"Englebert","last_name":"Fulleylove","email":"efulleyloveg3@photobucket.com","phone":"398-931-0902","gender":"Male","department":"Marketing","address":"32500 Amoth Plaza","hire_date":"2/23/2018","website":"https://netscape.com","notes":"justo eu massa donec dapibus duis at velit eu est","status":5,"type":3,"salary":"$325.00"}, {"id":581,"employee_id":"143330915-7","first_name":"Allyn","last_name":"Kill","email":"akillg4@timesonline.co.uk","phone":"842-460-7843","gender":"Female","department":"Training","address":"419 Utah Road","hire_date":"4/10/2018","website":"http://google.co.uk","notes":"rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie","status":6,"type":2,"salary":"$1613.53"}, {"id":582,"employee_id":"282580938-1","first_name":"Lynett","last_name":"Bayford","email":"lbayfordg5@vistaprint.com","phone":"132-193-4754","gender":"Female","department":"Sales","address":"2330 Summit Way","hire_date":"5/4/2018","website":"http://marketplace.net","notes":"justo in blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing","status":2,"type":1,"salary":"$326.91"}, {"id":583,"employee_id":"617313819-0","first_name":"Hazlett","last_name":"Baroch","email":"hbarochg6@geocities.jp","phone":"985-965-6967","gender":"Male","department":"Accounting","address":"605 Golden Leaf Plaza","hire_date":"2/18/2018","website":"https://google.ca","notes":"quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida nisi at","status":6,"type":3,"salary":"$1988.10"}, {"id":584,"employee_id":"708172793-X","first_name":"Bertrand","last_name":"Enrigo","email":"benrigog7@blinklist.com","phone":"582-769-9744","gender":"Male","department":"Support","address":"39527 Kim Alley","hire_date":"7/10/2018","website":"https://eepurl.com","notes":"suspendisse potenti in eleifend quam a odio in hac habitasse","status":2,"type":3,"salary":"$1834.97"}, {"id":585,"employee_id":"275070512-6","first_name":"Tess","last_name":"Pagen","email":"tpageng8@mit.edu","phone":"942-433-3855","gender":"Female","department":"Training","address":"06 Loftsgordon Avenue","hire_date":"3/8/2018","website":"https://java.com","notes":"mi pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices","status":6,"type":3,"salary":"$1516.81"}, {"id":586,"employee_id":"689460094-5","first_name":"Jeramie","last_name":"Stanlock","email":"jstanlockg9@epa.gov","phone":"304-355-0889","gender":"Male","department":"Research and Development","address":"92 Marquette Court","hire_date":"9/7/2017","website":"http://bandcamp.com","notes":"elit ac nulla sed vel enim sit amet nunc viverra dapibus","status":3,"type":1,"salary":"$502.42"}, {"id":587,"employee_id":"806406122-9","first_name":"Giovanni","last_name":"Garmons","email":"ggarmonsga@ustream.tv","phone":"230-839-9491","gender":"Male","department":"Business Development","address":"06 Grim Parkway","hire_date":"4/8/2018","website":"http://nifty.com","notes":"enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis","status":1,"type":1,"salary":"$2256.86"}, {"id":588,"employee_id":"739999179-0","first_name":"Hanan","last_name":"Maudsley","email":"hmaudsleygb@so-net.ne.jp","phone":"175-280-1081","gender":"Male","department":"Engineering","address":"79 Muir Avenue","hire_date":"6/12/2018","website":"http://icio.us","notes":"posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut","status":5,"type":1,"salary":"$1049.23"}, {"id":589,"employee_id":"706661556-5","first_name":"Elliott","last_name":"Scoone","email":"escoonegc@ted.com","phone":"609-922-2496","gender":"Male","department":"Human Resources","address":"531 Sunbrook Crossing","hire_date":"5/21/2018","website":"https://businessweek.com","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae duis","status":5,"type":1,"salary":"$1289.79"}, {"id":590,"employee_id":"647600560-X","first_name":"Caressa","last_name":"Haylands","email":"chaylandsgd@deliciousdays.com","phone":"330-761-2112","gender":"Female","department":"Business Development","address":"41 Ludington Point","hire_date":"2/2/2018","website":"http://ovh.net","notes":"orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi","status":3,"type":3,"salary":"$836.63"}, {"id":591,"employee_id":"205991586-4","first_name":"Hollie","last_name":"Salt","email":"hsaltge@imageshack.us","phone":"273-911-3845","gender":"Female","department":"Marketing","address":"1 Pepper Wood Pass","hire_date":"7/11/2018","website":"https://china.com.cn","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi","status":5,"type":3,"salary":"$1099.82"}, {"id":592,"employee_id":"965356355-6","first_name":"Darcy","last_name":"Hanington","email":"dhaningtongf@deliciousdays.com","phone":"574-882-0980","gender":"Male","department":"Business Development","address":"63 Evergreen Terrace","hire_date":"3/9/2018","website":"https://elpais.com","notes":"in libero ut massa volutpat convallis morbi odio odio elementum eu interdum eu tincidunt","status":1,"type":2,"salary":"$735.59"}, {"id":593,"employee_id":"764631584-2","first_name":"Norby","last_name":"Dearsley","email":"ndearsleygg@umich.edu","phone":"502-882-6268","gender":"Male","department":"Training","address":"53903 Weeping Birch Junction","hire_date":"12/15/2017","website":"https://fda.gov","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti","status":4,"type":2,"salary":"$1928.30"}, {"id":594,"employee_id":"714591085-3","first_name":"Justino","last_name":"Kernes","email":"jkernesgh@gravatar.com","phone":"978-345-2401","gender":"Male","department":"Research and Development","address":"728 Emmet Pass","hire_date":"2/1/2018","website":"https://timesonline.co.uk","notes":"adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis","status":1,"type":3,"salary":"$2298.11"}, {"id":595,"employee_id":"742011723-3","first_name":"Orly","last_name":"Eunson","email":"oeunsongi@discovery.com","phone":"264-270-5870","gender":"Female","department":"Sales","address":"61373 Arizona Way","hire_date":"12/21/2017","website":"http://hud.gov","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae donec","status":1,"type":3,"salary":"$1270.96"}, {"id":596,"employee_id":"659860506-7","first_name":"Denny","last_name":"Medhurst","email":"dmedhurstgj@salon.com","phone":"415-409-9800","gender":"Male","department":"Human Resources","address":"57516 Summerview Point","hire_date":"9/24/2017","website":"https://smugmug.com","notes":"donec ut mauris eget massa tempor convallis nulla neque libero convallis eget eleifend","status":3,"type":3,"salary":"$473.45"}, {"id":597,"employee_id":"280034283-8","first_name":"Sheree","last_name":"Milward","email":"smilwardgk@java.com","phone":"924-677-2252","gender":"Female","department":"Services","address":"6 Mifflin Way","hire_date":"1/9/2018","website":"http://deviantart.com","notes":"gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer","status":2,"type":1,"salary":"$598.68"}, {"id":598,"employee_id":"708571091-8","first_name":"Evvy","last_name":"Blyth","email":"eblythgl@theglobeandmail.com","phone":"578-126-0856","gender":"Female","department":"Services","address":"9270 Di Loreto Court","hire_date":"6/7/2018","website":"https://livejournal.com","notes":"nunc purus phasellus in felis donec semper sapien a libero nam dui","status":1,"type":3,"salary":"$348.86"}, {"id":599,"employee_id":"349704535-7","first_name":"Zaria","last_name":"McEntagart","email":"zmcentagartgm@barnesandnoble.com","phone":"395-247-3033","gender":"Female","department":"Services","address":"2 Dahle Parkway","hire_date":"11/9/2017","website":"https://ted.com","notes":"et tempus semper est quam pharetra magna ac consequat metus sapien ut nunc vestibulum ante ipsum primis in","status":5,"type":1,"salary":"$1690.86"}, {"id":600,"employee_id":"696865945-X","first_name":"Rania","last_name":"Joll","email":"rjollgn@flickr.com","phone":"896-350-6175","gender":"Female","department":"Marketing","address":"53 Wayridge Road","hire_date":"7/18/2018","website":"https://toplist.cz","notes":"nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan tortor quis turpis sed","status":5,"type":3,"salary":"$2093.20"}, {"id":601,"employee_id":"991762911-4","first_name":"Viv","last_name":"Benn","email":"vbenngo@ning.com","phone":"312-736-0023","gender":"Female","department":"Marketing","address":"07 Derek Crossing","hire_date":"5/21/2018","website":"http://alibaba.com","notes":"amet eros suspendisse accumsan tortor quis turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec","status":2,"type":1,"salary":"$1872.12"}, {"id":602,"employee_id":"382390348-9","first_name":"Ilaire","last_name":"Wasling","email":"iwaslinggp@scientificamerican.com","phone":"173-493-6304","gender":"Male","department":"Human Resources","address":"12922 Mandrake Crossing","hire_date":"8/27/2017","website":"http://facebook.com","notes":"a libero nam dui proin leo odio porttitor id consequat","status":5,"type":3,"salary":"$1725.89"}, {"id":603,"employee_id":"552719023-8","first_name":"Burke","last_name":"Monkhouse","email":"bmonkhousegq@oakley.com","phone":"905-500-1112","gender":"Male","department":"Product Management","address":"94 Loftsgordon Junction","hire_date":"5/28/2018","website":"http://timesonline.co.uk","notes":"ut erat id mauris vulputate elementum nullam varius nulla facilisi","status":2,"type":3,"salary":"$1893.79"}, {"id":604,"employee_id":"798859457-5","first_name":"Chrissie","last_name":"Kordes","email":"ckordesgr@unc.edu","phone":"892-349-2152","gender":"Female","department":"Human Resources","address":"2262 Kedzie Drive","hire_date":"1/29/2018","website":"https://admin.ch","notes":"magna at nunc commodo placerat praesent blandit nam nulla integer pede justo lacinia","status":2,"type":2,"salary":"$1612.86"}, {"id":605,"employee_id":"790837382-8","first_name":"Lawry","last_name":"Mussen","email":"lmussengs@w3.org","phone":"218-185-0171","gender":"Male","department":"Support","address":"7846 Randy Parkway","hire_date":"8/4/2017","website":"https://boston.com","notes":"id luctus nec molestie sed justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est et","status":3,"type":3,"salary":"$1954.32"}, {"id":606,"employee_id":"699240792-9","first_name":"Poul","last_name":"Goggins","email":"pgogginsgt@linkedin.com","phone":"293-675-2005","gender":"Male","department":"Sales","address":"530 Butternut Alley","hire_date":"12/26/2017","website":"https://facebook.com","notes":"aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in","status":3,"type":1,"salary":"$2373.61"}, {"id":607,"employee_id":"751445107-2","first_name":"Cleon","last_name":"MacDirmid","email":"cmacdirmidgu@squarespace.com","phone":"614-981-7314","gender":"Male","department":"Marketing","address":"2037 Oak Road","hire_date":"12/7/2017","website":"https://apple.com","notes":"mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci","status":6,"type":1,"salary":"$2126.42"}, {"id":608,"employee_id":"377293929-5","first_name":"Aristotle","last_name":"Kenna","email":"akennagv@usda.gov","phone":"937-264-8841","gender":"Male","department":"Human Resources","address":"7054 Nancy Street","hire_date":"6/8/2018","website":"https://bizjournals.com","notes":"euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis","status":2,"type":1,"salary":"$1552.69"}, {"id":609,"employee_id":"572760268-8","first_name":"Loise","last_name":"Jewster","email":"ljewstergw@paypal.com","phone":"750-588-5224","gender":"Female","department":"Sales","address":"65006 La Follette Hill","hire_date":"3/28/2018","website":"https://etsy.com","notes":"vestibulum quam sapien varius ut blandit non interdum in ante vestibulum ante ipsum primis","status":2,"type":2,"salary":"$1714.69"}, {"id":610,"employee_id":"286782603-9","first_name":"Derril","last_name":"Gildersleeve","email":"dgildersleevegx@360.cn","phone":"980-730-4259","gender":"Male","department":"Sales","address":"344 Maple Wood Drive","hire_date":"6/5/2018","website":"https://nps.gov","notes":"justo eu massa donec dapibus duis at velit eu est congue elementum","status":6,"type":3,"salary":"$1941.04"}, {"id":611,"employee_id":"060727167-1","first_name":"Carny","last_name":"Kid","email":"ckidgy@ebay.co.uk","phone":"223-113-6069","gender":"Male","department":"Training","address":"39 Blaine Lane","hire_date":"11/12/2017","website":"https://typepad.com","notes":"tristique est et tempus semper est quam pharetra magna ac consequat metus","status":2,"type":2,"salary":"$1198.62"}, {"id":612,"employee_id":"887378830-0","first_name":"Cymbre","last_name":"Yewdale","email":"cyewdalegz@xinhuanet.com","phone":"420-452-2167","gender":"Female","department":"Training","address":"47 Bunker Hill Plaza","hire_date":"9/14/2017","website":"https://hc360.com","notes":"felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec","status":3,"type":2,"salary":"$938.61"}, {"id":613,"employee_id":"839681912-2","first_name":"Stan","last_name":"Liccardo","email":"sliccardoh0@omniture.com","phone":"587-732-3349","gender":"Male","department":"Research and Development","address":"2 Vahlen Pass","hire_date":"5/18/2018","website":"https://sun.com","notes":"porttitor pede justo eu massa donec dapibus duis at velit eu est congue elementum in hac habitasse platea dictumst","status":3,"type":2,"salary":"$1151.20"}, {"id":614,"employee_id":"049388805-5","first_name":"Dorry","last_name":"Chinn","email":"dchinnh1@mtv.com","phone":"327-579-7951","gender":"Female","department":"Services","address":"695 Gina Hill","hire_date":"2/6/2018","website":"http://163.com","notes":"tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet erat nulla tempus","status":2,"type":2,"salary":"$2293.47"}, {"id":615,"employee_id":"261839282-5","first_name":"Homere","last_name":"Caughtry","email":"hcaughtryh2@marketwatch.com","phone":"251-532-7745","gender":"Male","department":"Business Development","address":"42 Clarendon Trail","hire_date":"1/2/2018","website":"http://princeton.edu","notes":"lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id","status":1,"type":2,"salary":"$778.37"}, {"id":616,"employee_id":"063355832-X","first_name":"Tresa","last_name":"Stert","email":"tsterth3@bigcartel.com","phone":"918-850-0143","gender":"Female","department":"Product Management","address":"50 Jenifer Plaza","hire_date":"1/6/2018","website":"http://jalbum.net","notes":"libero nam dui proin leo odio porttitor id consequat in consequat ut nulla sed accumsan felis","status":6,"type":2,"salary":"$1409.15"}, {"id":617,"employee_id":"227188136-6","first_name":"Megan","last_name":"Roles","email":"mrolesh4@fastcompany.com","phone":"987-824-9818","gender":"Female","department":"Accounting","address":"6317 Anderson Alley","hire_date":"9/27/2017","website":"https://cyberchimps.com","notes":"in ante vestibulum ante ipsum primis in faucibus orci luctus","status":4,"type":2,"salary":"$2235.13"}, {"id":618,"employee_id":"797674915-3","first_name":"Alexa","last_name":"MacElroy","email":"amacelroyh5@naver.com","phone":"702-634-3451","gender":"Female","department":"Training","address":"9 Hanover Center","hire_date":"9/9/2017","website":"http://tinypic.com","notes":"sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in ante vestibulum","status":5,"type":1,"salary":"$330.74"}, {"id":619,"employee_id":"176850987-5","first_name":"Binny","last_name":"Warfield","email":"bwarfieldh6@skyrock.com","phone":"728-172-7160","gender":"Female","department":"Research and Development","address":"2 Tony Hill","hire_date":"1/23/2018","website":"https://ucsd.edu","notes":"tristique est et tempus semper est quam pharetra magna ac consequat","status":6,"type":1,"salary":"$2051.56"}, {"id":620,"employee_id":"347858539-2","first_name":"Sallee","last_name":"Joder","email":"sjoderh7@plala.or.jp","phone":"906-345-0526","gender":"Female","department":"Product Management","address":"7 Pennsylvania Junction","hire_date":"6/15/2018","website":"http://ning.com","notes":"scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin","status":1,"type":2,"salary":"$2256.31"}, {"id":621,"employee_id":"059946664-2","first_name":"Stacee","last_name":"Noar","email":"snoarh8@wired.com","phone":"460-477-6620","gender":"Male","department":"Services","address":"5601 Waywood Circle","hire_date":"11/4/2017","website":"https://google.cn","notes":"id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in","status":5,"type":3,"salary":"$933.67"}, {"id":622,"employee_id":"594411543-2","first_name":"Carroll","last_name":"Challiss","email":"cchallissh9@mozilla.org","phone":"880-420-7393","gender":"Male","department":"Legal","address":"0618 Delladonna Street","hire_date":"4/12/2018","website":"https://vinaora.com","notes":"nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie","status":4,"type":3,"salary":"$2495.94"}, {"id":623,"employee_id":"879915683-0","first_name":"Merrie","last_name":"Mundford","email":"mmundfordha@instagram.com","phone":"229-802-1367","gender":"Female","department":"Business Development","address":"2 Amoth Trail","hire_date":"9/20/2017","website":"http://theatlantic.com","notes":"tempus semper est quam pharetra magna ac consequat metus sapien ut","status":4,"type":3,"salary":"$1461.98"}, {"id":624,"employee_id":"137646308-3","first_name":"Alwyn","last_name":"Von Brook","email":"avonbrookhb@cafepress.com","phone":"871-592-1630","gender":"Male","department":"Engineering","address":"70212 Novick Circle","hire_date":"5/9/2018","website":"http://wikipedia.org","notes":"quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan tortor quis turpis sed ante vivamus tortor","status":4,"type":3,"salary":"$2106.64"}, {"id":625,"employee_id":"787463921-9","first_name":"Brock","last_name":"Snasdell","email":"bsnasdellhc@rediff.com","phone":"935-728-8645","gender":"Male","department":"Sales","address":"3 Larry Terrace","hire_date":"4/18/2018","website":"http://ucoz.ru","notes":"aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed","status":5,"type":3,"salary":"$2363.71"}, {"id":626,"employee_id":"867263586-8","first_name":"Camilla","last_name":"Rainsden","email":"crainsdenhd@diigo.com","phone":"509-638-6802","gender":"Female","department":"Human Resources","address":"75896 Hallows Avenue","hire_date":"3/6/2018","website":"https://statcounter.com","notes":"integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio","status":5,"type":1,"salary":"$2310.38"}, {"id":627,"employee_id":"364771698-7","first_name":"Magnum","last_name":"Leiden","email":"mleidenhe@cam.ac.uk","phone":"599-231-2724","gender":"Male","department":"Training","address":"91705 Merry Alley","hire_date":"1/18/2018","website":"https://tiny.cc","notes":"ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl","status":4,"type":1,"salary":"$2273.73"}, {"id":628,"employee_id":"764688429-4","first_name":"Letisha","last_name":"Norbury","email":"lnorburyhf@posterous.com","phone":"205-259-8870","gender":"Female","department":"Services","address":"3 Pawling Park","hire_date":"1/27/2018","website":"https://networkadvertising.org","notes":"integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas","status":4,"type":3,"salary":"$1816.51"}, {"id":629,"employee_id":"442460799-2","first_name":"Amble","last_name":"Eplate","email":"aeplatehg@de.vu","phone":"701-264-7714","gender":"Male","department":"Engineering","address":"454 Cambridge Alley","hire_date":"8/12/2017","website":"http://sohu.com","notes":"donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac est lacinia nisi venenatis tristique","status":2,"type":1,"salary":"$1681.54"}, {"id":630,"employee_id":"474911199-6","first_name":"Josefa","last_name":"Mourant","email":"jmouranthh@hao123.com","phone":"298-448-8394","gender":"Female","department":"Research and Development","address":"93255 Red Cloud Crossing","hire_date":"7/14/2018","website":"http://indiegogo.com","notes":"ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed sagittis","status":1,"type":3,"salary":"$1833.27"}, {"id":631,"employee_id":"695137935-1","first_name":"Ransom","last_name":"Elliff","email":"relliffhi@lycos.com","phone":"920-413-1926","gender":"Male","department":"Marketing","address":"24358 Bultman Point","hire_date":"4/5/2018","website":"http://addtoany.com","notes":"aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas","status":2,"type":3,"salary":"$1861.24"}, {"id":632,"employee_id":"568146198-X","first_name":"Anne","last_name":"Fratson","email":"afratsonhj@techcrunch.com","phone":"922-130-4570","gender":"Female","department":"Training","address":"9324 Fordem Trail","hire_date":"12/30/2017","website":"http://homestead.com","notes":"feugiat non pretium quis lectus suspendisse potenti in eleifend quam a odio in hac habitasse","status":5,"type":1,"salary":"$1365.92"}, {"id":633,"employee_id":"429529294-X","first_name":"Raina","last_name":"Dorre","email":"rdorrehk@addtoany.com","phone":"953-229-7547","gender":"Female","department":"Accounting","address":"1 Elgar Alley","hire_date":"10/31/2017","website":"https://ox.ac.uk","notes":"duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor","status":1,"type":2,"salary":"$1956.17"}, {"id":634,"employee_id":"107889117-6","first_name":"Wiley","last_name":"Iddy","email":"widdyhl@sourceforge.net","phone":"386-571-8918","gender":"Male","department":"Accounting","address":"0 Coolidge Avenue","hire_date":"3/19/2018","website":"https://reverbnation.com","notes":"tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis","status":1,"type":1,"salary":"$1932.76"}, {"id":635,"employee_id":"924614982-3","first_name":"Kimberly","last_name":"Lethem","email":"klethemhm@google.nl","phone":"297-178-9058","gender":"Female","department":"Sales","address":"07496 Derek Avenue","hire_date":"10/23/2017","website":"http://feedburner.com","notes":"at lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at","status":2,"type":2,"salary":"$538.26"}, {"id":636,"employee_id":"308444064-6","first_name":"Arabele","last_name":"Abden","email":"aabdenhn@china.com.cn","phone":"624-843-4335","gender":"Female","department":"Services","address":"095 Service Center","hire_date":"12/25/2017","website":"http://webnode.com","notes":"est phasellus sit amet erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi nulla","status":5,"type":2,"salary":"$592.81"}, {"id":637,"employee_id":"523748690-8","first_name":"Ophelia","last_name":"Le Count","email":"olecountho@sitemeter.com","phone":"205-789-9629","gender":"Female","department":"Marketing","address":"01 Dryden Pass","hire_date":"3/22/2018","website":"http://flavors.me","notes":"parturient montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient","status":2,"type":3,"salary":"$1696.76"}, {"id":638,"employee_id":"584599054-8","first_name":"Veronique","last_name":"Stobbie","email":"vstobbiehp@bizjournals.com","phone":"136-411-6967","gender":"Female","department":"Business Development","address":"284 Macpherson Drive","hire_date":"12/6/2017","website":"https://tamu.edu","notes":"fermentum justo nec condimentum neque sapien placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque","status":3,"type":2,"salary":"$2113.44"}, {"id":639,"employee_id":"767407623-7","first_name":"Carry","last_name":"Kloska","email":"ckloskahq@cargocollective.com","phone":"141-900-2603","gender":"Female","department":"Business Development","address":"910 Graceland Lane","hire_date":"8/5/2017","website":"https://hud.gov","notes":"morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum","status":2,"type":1,"salary":"$779.14"}, {"id":640,"employee_id":"544682250-1","first_name":"Raff","last_name":"Elven","email":"relvenhr@scribd.com","phone":"502-507-5023","gender":"Male","department":"Training","address":"0069 Raven Circle","hire_date":"8/18/2017","website":"http://creativecommons.org","notes":"molestie sed justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas","status":6,"type":3,"salary":"$2217.71"}, {"id":641,"employee_id":"468714743-7","first_name":"Walsh","last_name":"Kenwell","email":"wkenwellhs@shinystat.com","phone":"238-899-2487","gender":"Male","department":"Human Resources","address":"5 Mesta Alley","hire_date":"5/26/2018","website":"https://nydailynews.com","notes":"ornare consequat lectus in est risus auctor sed tristique in tempus sit amet sem fusce","status":4,"type":1,"salary":"$1185.95"}, {"id":642,"employee_id":"032700633-1","first_name":"Fonzie","last_name":"Peter","email":"fpeterht@google.cn","phone":"499-539-6881","gender":"Male","department":"Engineering","address":"463 Summit Way","hire_date":"10/3/2017","website":"http://soundcloud.com","notes":"in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl","status":2,"type":1,"salary":"$1990.65"}, {"id":643,"employee_id":"726333865-3","first_name":"Keen","last_name":"Getcliffe","email":"kgetcliffehu@youku.com","phone":"287-632-1636","gender":"Male","department":"Accounting","address":"52 Buena Vista Trail","hire_date":"1/1/2018","website":"http://paypal.com","notes":"at velit eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id","status":5,"type":3,"salary":"$846.62"}, {"id":644,"employee_id":"873252076-X","first_name":"Charin","last_name":"Oldfield","email":"coldfieldhv@xrea.com","phone":"653-485-6635","gender":"Female","department":"Training","address":"5 Dapin Street","hire_date":"6/17/2018","website":"http://archive.org","notes":"ligula sit amet eleifend pede libero quis orci nullam molestie","status":2,"type":2,"salary":"$771.23"}, {"id":645,"employee_id":"337248013-9","first_name":"Durward","last_name":"Scarsbrick","email":"dscarsbrickhw@adobe.com","phone":"108-243-8896","gender":"Male","department":"Research and Development","address":"2 Beilfuss Road","hire_date":"11/4/2017","website":"https://creativecommons.org","notes":"iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id","status":6,"type":1,"salary":"$947.17"}, {"id":646,"employee_id":"575139382-1","first_name":"Fredek","last_name":"Leckie","email":"fleckiehx@unblog.fr","phone":"548-937-3036","gender":"Male","department":"Marketing","address":"4 Dunning Plaza","hire_date":"12/24/2017","website":"http://bluehost.com","notes":"lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit","status":4,"type":1,"salary":"$2121.82"}, {"id":647,"employee_id":"217054904-8","first_name":"Jakob","last_name":"Muddle","email":"jmuddlehy@digg.com","phone":"341-109-8160","gender":"Male","department":"Marketing","address":"69879 Clyde Gallagher Park","hire_date":"11/24/2017","website":"http://pbs.org","notes":"posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor lacus at turpis donec","status":4,"type":2,"salary":"$949.75"}, {"id":648,"employee_id":"749343103-5","first_name":"Janek","last_name":"Archbould","email":"jarchbouldhz@ca.gov","phone":"430-705-0254","gender":"Male","department":"Marketing","address":"554 Eastlawn Street","hire_date":"6/2/2018","website":"http://cmu.edu","notes":"luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti","status":3,"type":1,"salary":"$2090.48"}, {"id":649,"employee_id":"443501439-4","first_name":"Dorise","last_name":"Beevis","email":"dbeevisi0@com.com","phone":"608-666-7708","gender":"Female","department":"Support","address":"510 Huxley Trail","hire_date":"10/6/2017","website":"https://creativecommons.org","notes":"id consequat in consequat ut nulla sed accumsan felis ut at dolor quis odio consequat varius integer","status":4,"type":3,"salary":"$2093.86"}, {"id":650,"employee_id":"993540218-5","first_name":"Damiano","last_name":"Rutherforth","email":"drutherforthi1@macromedia.com","phone":"894-812-9541","gender":"Male","department":"Business Development","address":"0 Hayes Hill","hire_date":"1/3/2018","website":"https://usa.gov","notes":"pretium nisl ut volutpat sapien arcu sed augue aliquam erat volutpat","status":5,"type":3,"salary":"$1610.28"}, {"id":651,"employee_id":"186912282-8","first_name":"Kitty","last_name":"Dorney","email":"kdorneyi2@shareasale.com","phone":"979-945-0835","gender":"Female","department":"Training","address":"169 Daystar Lane","hire_date":"7/21/2017","website":"https://chron.com","notes":"sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh","status":6,"type":3,"salary":"$684.03"}, {"id":652,"employee_id":"936661876-6","first_name":"Krishnah","last_name":"Swancock","email":"kswancocki3@cpanel.net","phone":"846-389-6298","gender":"Male","department":"Engineering","address":"49291 Sutteridge Point","hire_date":"2/18/2018","website":"https://nydailynews.com","notes":"at dolor quis odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae","status":4,"type":2,"salary":"$2342.65"}, {"id":653,"employee_id":"378446883-7","first_name":"Crin","last_name":"Hatry","email":"chatryi4@sun.com","phone":"375-283-4304","gender":"Female","department":"Marketing","address":"24657 Golden Leaf Street","hire_date":"10/9/2017","website":"http://sciencedirect.com","notes":"mattis egestas metus aenean fermentum donec ut mauris eget massa tempor convallis nulla neque","status":4,"type":2,"salary":"$1152.71"}, {"id":654,"employee_id":"725816535-5","first_name":"Josephine","last_name":"Bocke","email":"jbockei5@dedecms.com","phone":"709-218-2121","gender":"Female","department":"Engineering","address":"73 Eastwood Pass","hire_date":"5/1/2018","website":"http://discovery.com","notes":"amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere","status":1,"type":1,"salary":"$610.57"}, {"id":655,"employee_id":"655537935-9","first_name":"Munmro","last_name":"McCudden","email":"mmccuddeni6@dedecms.com","phone":"527-809-4175","gender":"Male","department":"Accounting","address":"84 Lakeland Way","hire_date":"1/15/2018","website":"https://sciencedirect.com","notes":"dapibus duis at velit eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id","status":5,"type":3,"salary":"$2472.25"}, {"id":656,"employee_id":"534384518-5","first_name":"Peta","last_name":"Grouvel","email":"pgrouveli7@businessweek.com","phone":"677-920-9635","gender":"Female","department":"Research and Development","address":"2 Sloan Way","hire_date":"12/19/2017","website":"https://mapy.cz","notes":"duis at velit eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium iaculis","status":6,"type":2,"salary":"$1952.65"}, {"id":657,"employee_id":"932900385-0","first_name":"Estell","last_name":"Rex","email":"erexi8@instagram.com","phone":"469-507-4629","gender":"Female","department":"Accounting","address":"7544 Eastlawn Pass","hire_date":"12/6/2017","website":"https://hao123.com","notes":"est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac est","status":6,"type":1,"salary":"$1383.51"}, {"id":658,"employee_id":"470307437-0","first_name":"Mitzi","last_name":"Gyurkovics","email":"mgyurkovicsi9@over-blog.com","phone":"715-681-1395","gender":"Female","department":"Services","address":"4438 Service Hill","hire_date":"2/9/2018","website":"http://aboutads.info","notes":"a suscipit nulla elit ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula","status":6,"type":3,"salary":"$1117.55"}, {"id":659,"employee_id":"353982188-0","first_name":"Livy","last_name":"Cowlam","email":"lcowlamia@is.gd","phone":"164-158-3762","gender":"Female","department":"Legal","address":"0 Washington Road","hire_date":"4/23/2018","website":"https://indiatimes.com","notes":"duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis","status":1,"type":3,"salary":"$1251.71"}, {"id":660,"employee_id":"993200248-8","first_name":"Myrtice","last_name":"Edes","email":"medesib@usnews.com","phone":"855-416-8542","gender":"Female","department":"Sales","address":"6 Lotheville Avenue","hire_date":"10/20/2017","website":"http://wikispaces.com","notes":"magna bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt","status":4,"type":3,"salary":"$1997.01"}, {"id":661,"employee_id":"599617941-5","first_name":"Tommie","last_name":"Deakan","email":"tdeakanic@github.io","phone":"561-829-3186","gender":"Male","department":"Legal","address":"58 Bashford Alley","hire_date":"1/31/2018","website":"https://ebay.co.uk","notes":"ac nibh fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a","status":4,"type":1,"salary":"$2022.04"}, {"id":662,"employee_id":"799194014-4","first_name":"Kellie","last_name":"Marquot","email":"kmarquotid@behance.net","phone":"258-367-6848","gender":"Female","department":"Sales","address":"6 Ohio Point","hire_date":"2/2/2018","website":"https://plala.or.jp","notes":"faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut","status":1,"type":2,"salary":"$336.28"}, {"id":663,"employee_id":"647492770-4","first_name":"Alfredo","last_name":"Huygen","email":"ahuygenie@usnews.com","phone":"552-673-7436","gender":"Male","department":"Engineering","address":"32 Saint Paul Hill","hire_date":"3/19/2018","website":"http://bloglovin.com","notes":"vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque","status":5,"type":3,"salary":"$912.19"}, {"id":664,"employee_id":"636062781-7","first_name":"Dulcinea","last_name":"Molyneaux","email":"dmolyneauxif@dropbox.com","phone":"438-696-8082","gender":"Female","department":"Business Development","address":"443 Drewry Plaza","hire_date":"8/5/2017","website":"https://arizona.edu","notes":"fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti","status":2,"type":2,"salary":"$910.29"}, {"id":665,"employee_id":"389443969-6","first_name":"Giff","last_name":"Kettel","email":"gkettelig@shop-pro.jp","phone":"446-416-7541","gender":"Male","department":"Human Resources","address":"06149 Shelley Park","hire_date":"2/27/2018","website":"http://stumbleupon.com","notes":"dui maecenas tristique est et tempus semper est quam pharetra magna ac consequat metus sapien ut nunc vestibulum ante","status":1,"type":3,"salary":"$917.04"}, {"id":666,"employee_id":"413322681-X","first_name":"Elmore","last_name":"Fitzharris","email":"efitzharrisih@google.cn","phone":"989-524-4294","gender":"Male","department":"Legal","address":"66860 Ridgeway Plaza","hire_date":"6/22/2018","website":"https://instagram.com","notes":"mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue a suscipit","status":5,"type":3,"salary":"$2186.02"}, {"id":667,"employee_id":"815407726-4","first_name":"Angy","last_name":"Durban","email":"adurbanii@wikia.com","phone":"897-122-5541","gender":"Female","department":"Training","address":"457 Glendale Pass","hire_date":"1/19/2018","website":"http://usatoday.com","notes":"massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet et","status":4,"type":3,"salary":"$1943.00"}, {"id":668,"employee_id":"593533936-6","first_name":"Cinda","last_name":"Eisak","email":"ceisakij@gov.uk","phone":"364-878-8239","gender":"Female","department":"Marketing","address":"72410 Tomscot Hill","hire_date":"6/13/2018","website":"https://ask.com","notes":"leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper","status":1,"type":1,"salary":"$477.81"}, {"id":669,"employee_id":"386431667-7","first_name":"Ilsa","last_name":"Lergan","email":"ilerganik@epa.gov","phone":"363-773-1838","gender":"Female","department":"Legal","address":"627 Bluejay Alley","hire_date":"4/5/2018","website":"http://nba.com","notes":"tellus in sagittis dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat","status":3,"type":2,"salary":"$864.59"}, {"id":670,"employee_id":"327529124-6","first_name":"Joana","last_name":"Tilliard","email":"jtilliardil@icio.us","phone":"317-579-8921","gender":"Female","department":"Sales","address":"83056 Killdeer Drive","hire_date":"1/24/2018","website":"https://sina.com.cn","notes":"porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit","status":1,"type":3,"salary":"$826.57"}, {"id":671,"employee_id":"716488501-X","first_name":"Dorri","last_name":"Spaughton","email":"dspaughtonim@diigo.com","phone":"775-248-9772","gender":"Female","department":"Engineering","address":"17 Charing Cross Pass","hire_date":"11/9/2017","website":"http://naver.com","notes":"lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna pretium nisl","status":1,"type":1,"salary":"$2058.08"}, {"id":672,"employee_id":"815967924-6","first_name":"Livvyy","last_name":"Reaveley","email":"lreaveleyin@newyorker.com","phone":"470-922-5582","gender":"Female","department":"Human Resources","address":"507 Granby Court","hire_date":"7/6/2018","website":"https://abc.net.au","notes":"in faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor lacus","status":3,"type":3,"salary":"$2390.00"}, {"id":673,"employee_id":"353903060-3","first_name":"Doris","last_name":"Piscopo","email":"dpiscopoio@reverbnation.com","phone":"709-930-1076","gender":"Female","department":"Training","address":"64 Annamark Center","hire_date":"12/10/2017","website":"http://bluehost.com","notes":"luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis","status":3,"type":1,"salary":"$2146.37"}, {"id":674,"employee_id":"985746807-1","first_name":"Massimo","last_name":"Breche","email":"mbrecheip@rediff.com","phone":"154-869-4732","gender":"Male","department":"Research and Development","address":"34443 Sheridan Junction","hire_date":"12/24/2017","website":"https://posterous.com","notes":"blandit non interdum in ante vestibulum ante ipsum primis in faucibus","status":1,"type":3,"salary":"$747.93"}, {"id":675,"employee_id":"138241196-0","first_name":"Marc","last_name":"Sowden","email":"msowdeniq@ovh.net","phone":"989-224-4253","gender":"Male","department":"Training","address":"6 Maple Wood Park","hire_date":"4/12/2018","website":"https://foxnews.com","notes":"eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio odio","status":3,"type":3,"salary":"$1227.61"}, {"id":676,"employee_id":"448198510-0","first_name":"Miguelita","last_name":"Clinning","email":"mclinningir@google.it","phone":"723-381-2446","gender":"Female","department":"Engineering","address":"48121 Roth Way","hire_date":"11/15/2017","website":"http://washingtonpost.com","notes":"adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in ante","status":6,"type":1,"salary":"$389.30"}, {"id":677,"employee_id":"638949538-2","first_name":"Cletus","last_name":"Gerlack","email":"cgerlackis@networksolutions.com","phone":"269-695-5505","gender":"Male","department":"Product Management","address":"4602 Northland Way","hire_date":"4/27/2018","website":"http://a8.net","notes":"aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac","status":2,"type":3,"salary":"$918.72"}, {"id":678,"employee_id":"252449741-0","first_name":"Zackariah","last_name":"Crowson","email":"zcrowsonit@google.fr","phone":"522-425-6878","gender":"Male","department":"Research and Development","address":"25 La Follette Street","hire_date":"7/26/2017","website":"http://bbc.co.uk","notes":"fusce congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat","status":2,"type":2,"salary":"$716.93"}, {"id":679,"employee_id":"840831888-8","first_name":"Papageno","last_name":"Maslin","email":"pmasliniu@usda.gov","phone":"552-899-5637","gender":"Male","department":"Business Development","address":"499 Ridgeway Alley","hire_date":"7/29/2017","website":"https://geocities.jp","notes":"placerat praesent blandit nam nulla integer pede justo lacinia eget tincidunt eget tempus vel pede","status":1,"type":3,"salary":"$299.08"}, {"id":680,"employee_id":"602937124-X","first_name":"Carmel","last_name":"St. Ledger","email":"cstledgeriv@harvard.edu","phone":"634-788-2799","gender":"Female","department":"Sales","address":"87 Lakeland Place","hire_date":"8/15/2017","website":"http://bluehost.com","notes":"maecenas pulvinar lobortis est phasellus sit amet erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi","status":2,"type":2,"salary":"$2452.58"}, {"id":681,"employee_id":"166132011-2","first_name":"Sara-ann","last_name":"Whitticks","email":"swhitticksiw@google.com.au","phone":"712-132-0455","gender":"Female","department":"Marketing","address":"499 Prentice Road","hire_date":"7/25/2017","website":"https://uol.com.br","notes":"quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac nibh fusce lacus purus","status":6,"type":1,"salary":"$1604.40"}, {"id":682,"employee_id":"820641726-5","first_name":"Marji","last_name":"Scupham","email":"mscuphamix@patch.com","phone":"889-178-4698","gender":"Female","department":"Research and Development","address":"254 Brown Street","hire_date":"3/29/2018","website":"http://fema.gov","notes":"felis fusce posuere felis sed lacus morbi sem mauris laoreet ut","status":4,"type":1,"salary":"$1060.14"}, {"id":683,"employee_id":"513253217-9","first_name":"Lisha","last_name":"Cossor","email":"lcossoriy@typepad.com","phone":"286-473-6032","gender":"Female","department":"Marketing","address":"49694 Stephen Trail","hire_date":"8/7/2017","website":"https://nps.gov","notes":"iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id mauris vulputate","status":3,"type":2,"salary":"$2378.68"}, {"id":684,"employee_id":"249557946-9","first_name":"Rancell","last_name":"Sowten","email":"rsowteniz@github.com","phone":"875-923-2726","gender":"Male","department":"Accounting","address":"66514 Eliot Drive","hire_date":"11/2/2017","website":"http://etsy.com","notes":"ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor","status":4,"type":2,"salary":"$1318.09"}, {"id":685,"employee_id":"049179644-7","first_name":"Nicolea","last_name":"Ehlerding","email":"nehlerdingj0@stanford.edu","phone":"406-593-6125","gender":"Female","department":"Services","address":"70 Hayes Parkway","hire_date":"2/10/2018","website":"https://wordpress.org","notes":"quis turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris eget massa tempor convallis nulla","status":1,"type":3,"salary":"$545.73"}, {"id":686,"employee_id":"063656962-4","first_name":"Madalena","last_name":"Simonian","email":"msimonianj1@psu.edu","phone":"989-634-8212","gender":"Female","department":"Research and Development","address":"9486 Kinsman Court","hire_date":"9/1/2017","website":"https://cnn.com","notes":"sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus dolor vel","status":4,"type":2,"salary":"$394.67"}, {"id":687,"employee_id":"221473129-6","first_name":"Flss","last_name":"Duro","email":"fduroj2@mayoclinic.com","phone":"654-676-9069","gender":"Female","department":"Training","address":"6 Moland Park","hire_date":"6/24/2018","website":"https://squidoo.com","notes":"sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed sagittis nam congue risus semper","status":4,"type":2,"salary":"$300.04"}, {"id":688,"employee_id":"672662135-3","first_name":"Sidonnie","last_name":"Bisp","email":"sbispj3@eventbrite.com","phone":"592-258-0085","gender":"Female","department":"Legal","address":"164 Fieldstone Alley","hire_date":"12/25/2017","website":"https://fema.gov","notes":"vel est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac","status":3,"type":3,"salary":"$2405.89"}, {"id":689,"employee_id":"932752723-2","first_name":"Mack","last_name":"Sirr","email":"msirrj4@jigsy.com","phone":"678-932-0326","gender":"Male","department":"Training","address":"71 Del Sol Lane","hire_date":"1/21/2018","website":"http://about.me","notes":"massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet","status":5,"type":1,"salary":"$522.47"}, {"id":690,"employee_id":"158019071-5","first_name":"Zola","last_name":"Beirne","email":"zbeirnej5@qq.com","phone":"338-170-4611","gender":"Female","department":"Training","address":"4 Doe Crossing Junction","hire_date":"9/29/2017","website":"http://skype.com","notes":"neque sapien placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros","status":3,"type":3,"salary":"$1334.49"}, {"id":691,"employee_id":"893906095-4","first_name":"Roxane","last_name":"Stares","email":"rstaresj6@scientificamerican.com","phone":"371-437-8341","gender":"Female","department":"Marketing","address":"9740 Mcbride Court","hire_date":"5/10/2018","website":"http://odnoklassniki.ru","notes":"fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo","status":2,"type":1,"salary":"$2296.43"}, {"id":692,"employee_id":"601370084-2","first_name":"Nicole","last_name":"MacMickan","email":"nmacmickanj7@google.cn","phone":"193-701-1820","gender":"Female","department":"Product Management","address":"26025 Pawling Terrace","hire_date":"8/26/2017","website":"https://ca.gov","notes":"felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo eu massa donec","status":3,"type":1,"salary":"$1509.18"}, {"id":693,"employee_id":"356952132-X","first_name":"Norry","last_name":"Bruce","email":"nbrucej8@ocn.ne.jp","phone":"343-447-0594","gender":"Male","department":"Training","address":"37 Thierer Pass","hire_date":"6/19/2018","website":"https://fc2.com","notes":"mauris vulputate elementum nullam varius nulla facilisi cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus","status":3,"type":3,"salary":"$2334.36"}, {"id":694,"employee_id":"650802152-4","first_name":"Maxie","last_name":"Macvain","email":"mmacvainj9@edublogs.org","phone":"915-723-4900","gender":"Male","department":"Product Management","address":"8058 Sheridan Drive","hire_date":"6/7/2018","website":"http://theatlantic.com","notes":"curabitur gravida nisi at nibh in hac habitasse platea dictumst","status":6,"type":1,"salary":"$1063.50"}, {"id":695,"employee_id":"330548767-4","first_name":"Octavia","last_name":"Blas","email":"oblasja@aboutads.info","phone":"453-949-8257","gender":"Female","department":"Sales","address":"916 Bunker Hill Lane","hire_date":"3/8/2018","website":"http://wiley.com","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus dolor vel est donec","status":4,"type":1,"salary":"$2255.72"}, {"id":696,"employee_id":"504533227-9","first_name":"Fidelia","last_name":"Lowten","email":"flowtenjb@china.com.cn","phone":"985-183-9461","gender":"Female","department":"Marketing","address":"533 Arizona Way","hire_date":"1/2/2018","website":"http://theguardian.com","notes":"eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget semper","status":5,"type":2,"salary":"$2173.91"}, {"id":697,"employee_id":"286438381-0","first_name":"Cordie","last_name":"Dear","email":"cdearjc@prweb.com","phone":"305-150-9917","gender":"Male","department":"Sales","address":"86801 Pine View Way","hire_date":"11/1/2017","website":"http://toplist.cz","notes":"adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a pede posuere","status":3,"type":3,"salary":"$943.97"}, {"id":698,"employee_id":"651996975-3","first_name":"Ambros","last_name":"Hagan","email":"ahaganjd@sciencedaily.com","phone":"137-312-6328","gender":"Male","department":"Business Development","address":"37 Bowman Hill","hire_date":"4/17/2018","website":"http://indiatimes.com","notes":"sollicitudin ut suscipit a feugiat et eros vestibulum ac est lacinia nisi venenatis tristique fusce","status":6,"type":2,"salary":"$1508.52"}, {"id":699,"employee_id":"090524267-X","first_name":"Paige","last_name":"Poulett","email":"ppoulettje@guardian.co.uk","phone":"919-567-9670","gender":"Female","department":"Sales","address":"56 Kingsford Hill","hire_date":"3/22/2018","website":"https://alibaba.com","notes":"vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur","status":2,"type":1,"salary":"$1217.96"}, {"id":700,"employee_id":"645400820-7","first_name":"Merrile","last_name":"Gullifant","email":"mgullifantjf@ft.com","phone":"222-616-8973","gender":"Female","department":"Training","address":"88 Parkside Pass","hire_date":"12/26/2017","website":"http://europa.eu","notes":"in est risus auctor sed tristique in tempus sit amet sem","status":3,"type":1,"salary":"$408.05"}, {"id":701,"employee_id":"894005173-4","first_name":"Cletus","last_name":"Khoter","email":"ckhoterjg@mlb.com","phone":"319-165-9067","gender":"Male","department":"Sales","address":"02019 Mendota Plaza","hire_date":"1/22/2018","website":"http://slate.com","notes":"vel nisl duis ac nibh fusce lacus purus aliquet at feugiat","status":5,"type":3,"salary":"$1554.16"}, {"id":702,"employee_id":"213179655-2","first_name":"Jeannette","last_name":"Ipgrave","email":"jipgravejh@timesonline.co.uk","phone":"725-413-1695","gender":"Female","department":"Legal","address":"1925 Onsgard Road","hire_date":"1/5/2018","website":"http://ihg.com","notes":"vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus","status":1,"type":3,"salary":"$2083.56"}, {"id":703,"employee_id":"810266120-8","first_name":"Dotty","last_name":"Andreini","email":"dandreiniji@cbc.ca","phone":"679-249-9520","gender":"Female","department":"Sales","address":"9563 Cherokee Crossing","hire_date":"1/18/2018","website":"https://seesaa.net","notes":"suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam","status":6,"type":1,"salary":"$1521.92"}, {"id":704,"employee_id":"493468147-7","first_name":"Serene","last_name":"Ricket","email":"sricketjj@tinypic.com","phone":"502-419-3371","gender":"Female","department":"Product Management","address":"025 Iowa Parkway","hire_date":"11/18/2017","website":"http://xinhuanet.com","notes":"eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur","status":6,"type":2,"salary":"$1404.60"}, {"id":705,"employee_id":"570931159-6","first_name":"Rip","last_name":"Aldiss","email":"raldissjk@cnet.com","phone":"507-836-2057","gender":"Male","department":"Engineering","address":"19144 Columbus Pass","hire_date":"10/12/2017","website":"http://ow.ly","notes":"non ligula pellentesque ultrices phasellus id sapien in sapien iaculis","status":6,"type":3,"salary":"$1030.97"}, {"id":706,"employee_id":"855788471-0","first_name":"Forbes","last_name":"Heaslip","email":"fheaslipjl@nymag.com","phone":"669-963-3068","gender":"Male","department":"Human Resources","address":"83 Dawn Terrace","hire_date":"2/22/2018","website":"http://histats.com","notes":"gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio","status":5,"type":1,"salary":"$1071.79"}, {"id":707,"employee_id":"063855246-X","first_name":"Anette","last_name":"Issit","email":"aissitjm@trellian.com","phone":"488-677-2177","gender":"Female","department":"Engineering","address":"86 Westerfield Plaza","hire_date":"4/14/2018","website":"https://usatoday.com","notes":"amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus","status":3,"type":1,"salary":"$655.17"}, {"id":708,"employee_id":"113037184-0","first_name":"Joseito","last_name":"Darrel","email":"jdarreljn@senate.gov","phone":"572-615-9650","gender":"Male","department":"Human Resources","address":"94 Delaware Avenue","hire_date":"11/14/2017","website":"http://sbwire.com","notes":"eget semper rutrum nulla nunc purus phasellus in felis donec semper sapien a","status":6,"type":2,"salary":"$2420.09"}, {"id":709,"employee_id":"067166587-1","first_name":"Clayton","last_name":"Coventry","email":"ccoventryjo@state.tx.us","phone":"996-796-8145","gender":"Male","department":"Business Development","address":"7715 Blaine Trail","hire_date":"7/18/2018","website":"http://washington.edu","notes":"ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices","status":1,"type":1,"salary":"$1149.72"}, {"id":710,"employee_id":"502322291-8","first_name":"Ashleigh","last_name":"Cook","email":"acookjp@wunderground.com","phone":"578-756-0819","gender":"Female","department":"Research and Development","address":"0 Bunting Crossing","hire_date":"2/7/2018","website":"http://google.ca","notes":"quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis","status":4,"type":3,"salary":"$2396.14"}, {"id":711,"employee_id":"964219398-1","first_name":"Gregorius","last_name":"Whaplington","email":"gwhaplingtonjq@who.int","phone":"867-493-5512","gender":"Male","department":"Services","address":"9 Anhalt Avenue","hire_date":"7/22/2017","website":"https://msu.edu","notes":"leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede","status":5,"type":3,"salary":"$780.84"}, {"id":712,"employee_id":"857753635-1","first_name":"Jaymie","last_name":"Saterthwait","email":"jsaterthwaitjr@slashdot.org","phone":"584-535-3130","gender":"Male","department":"Support","address":"993 Anthes Junction","hire_date":"9/19/2017","website":"https://friendfeed.com","notes":"donec ut dolor morbi vel lectus in quam fringilla rhoncus mauris enim leo","status":6,"type":2,"salary":"$1582.30"}, {"id":713,"employee_id":"110435325-3","first_name":"Chas","last_name":"Liepina","email":"cliepinajs@home.pl","phone":"118-369-7905","gender":"Male","department":"Support","address":"43 Dixon Center","hire_date":"12/15/2017","website":"http://sciencedirect.com","notes":"amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus","status":1,"type":1,"salary":"$1048.75"}, {"id":714,"employee_id":"858122083-5","first_name":"Montgomery","last_name":"Fairlaw","email":"mfairlawjt@sciencedirect.com","phone":"922-490-3988","gender":"Male","department":"Research and Development","address":"360 Katie Alley","hire_date":"10/27/2017","website":"http://surveymonkey.com","notes":"mauris enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis","status":5,"type":1,"salary":"$1218.41"}, {"id":715,"employee_id":"953911433-0","first_name":"Abraham","last_name":"Cowie","email":"acowieju@4shared.com","phone":"239-800-8947","gender":"Male","department":"Human Resources","address":"8315 Stoughton Junction","hire_date":"2/18/2018","website":"https://wufoo.com","notes":"libero quis orci nullam molestie nibh in lectus pellentesque at nulla suspendisse potenti cras in purus eu magna vulputate luctus","status":2,"type":2,"salary":"$1431.58"}, {"id":716,"employee_id":"980188704-4","first_name":"Ryann","last_name":"Nutkins","email":"rnutkinsjv@qq.com","phone":"986-164-8594","gender":"Female","department":"Sales","address":"92 Vahlen Lane","hire_date":"9/8/2017","website":"https://skype.com","notes":"nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque","status":2,"type":2,"salary":"$2320.72"}, {"id":717,"employee_id":"496180526-2","first_name":"Catina","last_name":"Baser","email":"cbaserjw@businessweek.com","phone":"532-723-4330","gender":"Female","department":"Services","address":"4199 Hanson Hill","hire_date":"9/21/2017","website":"http://reddit.com","notes":"vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac nulla sed","status":4,"type":1,"salary":"$704.47"}, {"id":718,"employee_id":"569821610-X","first_name":"Adrea","last_name":"Thrussell","email":"athrusselljx@wikipedia.org","phone":"121-272-3387","gender":"Female","department":"Sales","address":"97263 Riverside Junction","hire_date":"12/11/2017","website":"http://jalbum.net","notes":"sagittis dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse","status":1,"type":1,"salary":"$1502.79"}, {"id":719,"employee_id":"635471406-1","first_name":"Harry","last_name":"O\'Corr","email":"hocorrjy@globo.com","phone":"628-461-4876","gender":"Male","department":"Support","address":"5 Crownhardt Drive","hire_date":"12/28/2017","website":"https://wix.com","notes":"diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus","status":3,"type":3,"salary":"$1743.03"}, {"id":720,"employee_id":"357220718-5","first_name":"Nance","last_name":"Corness","email":"ncornessjz@about.com","phone":"506-196-3218","gender":"Female","department":"Sales","address":"41697 Springview Circle","hire_date":"10/17/2017","website":"http://angelfire.com","notes":"pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna ac","status":6,"type":2,"salary":"$766.20"}, {"id":721,"employee_id":"288703491-X","first_name":"Andrus","last_name":"Thomerson","email":"athomersonk0@abc.net.au","phone":"473-877-4517","gender":"Male","department":"Training","address":"8 Cherokee Court","hire_date":"10/24/2017","website":"http://fema.gov","notes":"ligula nec sem duis aliquam convallis nunc proin at turpis a pede","status":3,"type":1,"salary":"$1700.61"}, {"id":722,"employee_id":"139646871-4","first_name":"Roxanne","last_name":"Hecks","email":"rhecksk1@google.es","phone":"679-836-5987","gender":"Female","department":"Sales","address":"79 Main Center","hire_date":"10/31/2017","website":"http://naver.com","notes":"diam cras pellentesque volutpat dui maecenas tristique est et tempus","status":5,"type":2,"salary":"$2165.50"}, {"id":723,"employee_id":"106514862-3","first_name":"Tremayne","last_name":"Proffitt","email":"tproffittk2@dailymotion.com","phone":"212-607-7025","gender":"Male","department":"Engineering","address":"4 Sunnyside Road","hire_date":"1/23/2018","website":"http://pbs.org","notes":"amet lobortis sapien sapien non mi integer ac neque duis bibendum morbi non quam nec","status":3,"type":3,"salary":"$618.28"}, {"id":724,"employee_id":"979600546-8","first_name":"Lannie","last_name":"Ettels","email":"lettelsk3@sina.com.cn","phone":"110-670-1034","gender":"Male","department":"Business Development","address":"50733 Farmco Avenue","hire_date":"7/27/2017","website":"https://washingtonpost.com","notes":"rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum","status":1,"type":1,"salary":"$2157.28"}, {"id":725,"employee_id":"455215314-5","first_name":"Simon","last_name":"Kimblen","email":"skimblenk4@nature.com","phone":"632-400-5992","gender":"Male","department":"Support","address":"5100 Atwood Street","hire_date":"10/12/2017","website":"https://cisco.com","notes":"ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere","status":6,"type":3,"salary":"$841.35"}, {"id":726,"employee_id":"244157015-3","first_name":"Bing","last_name":"Lytell","email":"blytellk5@zdnet.com","phone":"104-793-5468","gender":"Male","department":"Legal","address":"194 Continental Way","hire_date":"4/4/2018","website":"https://weibo.com","notes":"justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus","status":6,"type":3,"salary":"$797.43"}, {"id":727,"employee_id":"918765161-0","first_name":"Shell","last_name":"Salvadori","email":"ssalvadorik6@addthis.com","phone":"608-475-2435","gender":"Female","department":"Services","address":"009 Walton Parkway","hire_date":"11/8/2017","website":"https://oracle.com","notes":"tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede","status":2,"type":1,"salary":"$369.19"}, {"id":728,"employee_id":"297398731-8","first_name":"Carey","last_name":"Vockings","email":"cvockingsk7@163.com","phone":"714-839-9140","gender":"Male","department":"Human Resources","address":"389 Calypso Park","hire_date":"3/4/2018","website":"http://admin.ch","notes":"natoque penatibus et magnis dis parturient montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum","status":4,"type":1,"salary":"$433.80"}, {"id":729,"employee_id":"547893183-7","first_name":"Pernell","last_name":"Frontczak","email":"pfrontczakk8@gizmodo.com","phone":"263-776-3928","gender":"Male","department":"Services","address":"9682 Barnett Place","hire_date":"11/6/2017","website":"http://shinystat.com","notes":"nulla neque libero convallis eget eleifend luctus ultricies eu nibh quisque id justo sit amet","status":5,"type":2,"salary":"$1877.01"}, {"id":730,"employee_id":"871014844-2","first_name":"Mahmoud","last_name":"Smelley","email":"msmelleyk9@hibu.com","phone":"971-916-0272","gender":"Male","department":"Human Resources","address":"263 John Wall Avenue","hire_date":"10/24/2017","website":"https://yandex.ru","notes":"nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula","status":2,"type":1,"salary":"$1653.35"}, {"id":731,"employee_id":"601496906-3","first_name":"Joshia","last_name":"Camerana","email":"jcameranaka@soup.io","phone":"512-287-9399","gender":"Male","department":"Support","address":"53310 Corben Center","hire_date":"4/22/2018","website":"http://wired.com","notes":"rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet","status":1,"type":2,"salary":"$1489.98"}, {"id":732,"employee_id":"051552235-X","first_name":"Gus","last_name":"Killingback","email":"gkillingbackkb@webnode.com","phone":"394-825-4059","gender":"Female","department":"Business Development","address":"6275 Vidon Avenue","hire_date":"3/19/2018","website":"https://fotki.com","notes":"turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris eget massa tempor","status":4,"type":2,"salary":"$310.68"}, {"id":733,"employee_id":"464520984-1","first_name":"Beckie","last_name":"Lorentz","email":"blorentzkc@lycos.com","phone":"345-121-8865","gender":"Female","department":"Sales","address":"36832 Delaware Pass","hire_date":"2/20/2018","website":"https://dion.ne.jp","notes":"dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac nibh","status":3,"type":1,"salary":"$1055.28"}, {"id":734,"employee_id":"227389953-X","first_name":"Hal","last_name":"Bearman","email":"hbearmankd@purevolume.com","phone":"557-110-4474","gender":"Male","department":"Research and Development","address":"81 Rutledge Drive","hire_date":"9/25/2017","website":"http://time.com","notes":"maecenas pulvinar lobortis est phasellus sit amet erat nulla tempus vivamus in felis","status":2,"type":1,"salary":"$2126.72"}, {"id":735,"employee_id":"953650773-0","first_name":"Lianna","last_name":"Utton","email":"luttonke@i2i.jp","phone":"176-288-4750","gender":"Female","department":"Services","address":"147 Harbort Pass","hire_date":"6/13/2018","website":"https://reference.com","notes":"lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a","status":3,"type":3,"salary":"$1122.12"}, {"id":736,"employee_id":"086191597-6","first_name":"Field","last_name":"Speight","email":"fspeightkf@bandcamp.com","phone":"555-358-8933","gender":"Male","department":"Sales","address":"88302 Express Circle","hire_date":"4/1/2018","website":"https://homestead.com","notes":"sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien","status":5,"type":3,"salary":"$393.67"}, {"id":737,"employee_id":"169320493-2","first_name":"Frayda","last_name":"McNeachtain","email":"fmcneachtainkg@sbwire.com","phone":"118-638-1568","gender":"Female","department":"Engineering","address":"36649 Mandrake Avenue","hire_date":"2/17/2018","website":"http://blog.com","notes":"tempus sit amet sem fusce consequat nulla nisl nunc nisl","status":4,"type":1,"salary":"$619.57"}, {"id":738,"employee_id":"612245514-8","first_name":"Daisey","last_name":"Neath","email":"dneathkh@foxnews.com","phone":"698-436-9176","gender":"Female","department":"Training","address":"9715 Knutson Place","hire_date":"5/26/2018","website":"http://tamu.edu","notes":"ultrices posuere cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin","status":2,"type":2,"salary":"$1674.16"}, {"id":739,"employee_id":"233363217-8","first_name":"Philip","last_name":"Wedmore.","email":"pwedmoreki@alexa.com","phone":"820-745-6102","gender":"Male","department":"Human Resources","address":"6969 Hudson Drive","hire_date":"2/6/2018","website":"https://php.net","notes":"felis eu sapien cursus vestibulum proin eu mi nulla ac enim in","status":1,"type":1,"salary":"$2421.30"}, {"id":740,"employee_id":"388586195-X","first_name":"Kessiah","last_name":"Farrens","email":"kfarrenskj@cloudflare.com","phone":"195-961-2704","gender":"Female","department":"Engineering","address":"7001 Bashford Plaza","hire_date":"7/30/2017","website":"https://google.de","notes":"pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus","status":3,"type":3,"salary":"$1148.86"}, {"id":741,"employee_id":"577264956-6","first_name":"Devan","last_name":"Mancer","email":"dmancerkk@nasa.gov","phone":"527-727-0360","gender":"Female","department":"Services","address":"715 Alpine Point","hire_date":"10/10/2017","website":"http://prlog.org","notes":"facilisi cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus","status":4,"type":1,"salary":"$483.23"}, {"id":742,"employee_id":"906086622-3","first_name":"Jessa","last_name":"Chadwyck","email":"jchadwyckkl@skype.com","phone":"380-842-5113","gender":"Female","department":"Support","address":"6 Kingsford Pass","hire_date":"5/8/2018","website":"https://lycos.com","notes":"pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed","status":1,"type":3,"salary":"$559.83"}, {"id":743,"employee_id":"291832829-4","first_name":"Etta","last_name":"Cubbin","email":"ecubbinkm@360.cn","phone":"524-585-7456","gender":"Female","department":"Marketing","address":"6 Steensland Park","hire_date":"3/22/2018","website":"http://phoca.cz","notes":"duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo eu","status":1,"type":3,"salary":"$1759.01"}, {"id":744,"employee_id":"884673346-0","first_name":"Goldarina","last_name":"Hallick","email":"ghallickkn@cornell.edu","phone":"735-265-4985","gender":"Female","department":"Business Development","address":"77046 Anthes Park","hire_date":"8/15/2017","website":"http://youku.com","notes":"proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum","status":3,"type":2,"salary":"$1702.89"}, {"id":745,"employee_id":"929468064-9","first_name":"Dru","last_name":"Fearon","email":"dfearonko@toplist.cz","phone":"792-396-1723","gender":"Female","department":"Product Management","address":"752 Florence Center","hire_date":"8/1/2017","website":"https://homestead.com","notes":"porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus sit amet sem fusce","status":3,"type":2,"salary":"$1664.47"}, {"id":746,"employee_id":"451339697-0","first_name":"Ashla","last_name":"Marder","email":"amarderkp@free.fr","phone":"125-745-4335","gender":"Female","department":"Marketing","address":"77260 Annamark Way","hire_date":"1/28/2018","website":"http://cyberchimps.com","notes":"ornare consequat lectus in est risus auctor sed tristique in tempus sit","status":2,"type":1,"salary":"$1727.85"}, {"id":747,"employee_id":"302964454-5","first_name":"Suzanne","last_name":"Maltman","email":"smaltmankq@businessweek.com","phone":"161-281-1125","gender":"Female","department":"Marketing","address":"2 Thackeray Point","hire_date":"12/3/2017","website":"https://indiatimes.com","notes":"eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id","status":1,"type":2,"salary":"$2094.54"}, {"id":748,"employee_id":"575721334-5","first_name":"Bevan","last_name":"Hatt","email":"bhattkr@youku.com","phone":"183-692-4271","gender":"Male","department":"Sales","address":"47 Lake View Terrace","hire_date":"6/28/2018","website":"https://arizona.edu","notes":"donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit","status":2,"type":3,"salary":"$2187.91"}, {"id":749,"employee_id":"476712324-0","first_name":"Penni","last_name":"Swiffin","email":"pswiffinks@ustream.tv","phone":"508-193-8676","gender":"Female","department":"Sales","address":"33 Coleman Crossing","hire_date":"10/5/2017","website":"http://issuu.com","notes":"placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet","status":5,"type":2,"salary":"$1052.26"}, {"id":750,"employee_id":"330191798-4","first_name":"Janis","last_name":"Clery","email":"jclerykt@addtoany.com","phone":"507-351-2373","gender":"Female","department":"Legal","address":"73 Lakewood Junction","hire_date":"8/20/2017","website":"https://auda.org.au","notes":"consequat dui nec nisi volutpat eleifend donec ut dolor morbi","status":4,"type":3,"salary":"$1817.49"}, {"id":751,"employee_id":"851528476-6","first_name":"Lyndy","last_name":"Balasin","email":"lbalasinku@sohu.com","phone":"732-480-2676","gender":"Female","department":"Product Management","address":"2 Straubel Pass","hire_date":"8/16/2017","website":"https://hp.com","notes":"nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros","status":4,"type":1,"salary":"$1810.39"}, {"id":752,"employee_id":"775182812-9","first_name":"Ingemar","last_name":"Feuell","email":"ifeuellkv@sina.com.cn","phone":"464-180-8449","gender":"Male","department":"Legal","address":"046 Magdeline Road","hire_date":"1/27/2018","website":"https://sphinn.com","notes":"quis lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus","status":4,"type":2,"salary":"$566.88"}, {"id":753,"employee_id":"522465201-4","first_name":"Roderic","last_name":"Danielsky","email":"rdanielskykw@goo.ne.jp","phone":"648-156-2583","gender":"Male","department":"Training","address":"5 Kim Junction","hire_date":"12/9/2017","website":"https://dailymotion.com","notes":"lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna pretium","status":2,"type":2,"salary":"$1915.96"}, {"id":754,"employee_id":"506203118-4","first_name":"Mohandis","last_name":"Neubigging","email":"mneubiggingkx@zimbio.com","phone":"813-421-1638","gender":"Male","department":"Legal","address":"301 Elka Terrace","hire_date":"4/3/2018","website":"https://1688.com","notes":"venenatis turpis enim blandit mi in porttitor pede justo eu massa donec dapibus duis at","status":6,"type":2,"salary":"$1446.16"}, {"id":755,"employee_id":"837202041-8","first_name":"Egor","last_name":"Baus","email":"ebausky@myspace.com","phone":"973-860-4459","gender":"Male","department":"Legal","address":"1 Meadow Ridge Circle","hire_date":"7/10/2018","website":"http://reverbnation.com","notes":"justo in blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris","status":6,"type":3,"salary":"$1402.85"}, {"id":756,"employee_id":"851990157-3","first_name":"Elias","last_name":"Buckthorp","email":"ebuckthorpkz@sourceforge.net","phone":"383-782-5504","gender":"Male","department":"Accounting","address":"17 Maple Circle","hire_date":"6/10/2018","website":"http://cbc.ca","notes":"in felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor","status":6,"type":2,"salary":"$1628.69"}, {"id":757,"employee_id":"136037018-8","first_name":"Annemarie","last_name":"Klarzynski","email":"aklarzynskil0@un.org","phone":"606-347-7535","gender":"Female","department":"Research and Development","address":"47457 Oxford Terrace","hire_date":"4/18/2018","website":"http://toplist.cz","notes":"turpis donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in","status":2,"type":2,"salary":"$1318.80"}, {"id":758,"employee_id":"819408506-3","first_name":"Elladine","last_name":"Luckie","email":"eluckiel1@oaic.gov.au","phone":"958-846-3367","gender":"Female","department":"Engineering","address":"45089 Hallows Plaza","hire_date":"12/18/2017","website":"https://msn.com","notes":"suscipit nulla elit ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula","status":4,"type":3,"salary":"$372.14"}, {"id":759,"employee_id":"998636425-6","first_name":"Denise","last_name":"Grundon","email":"dgrundonl2@berkeley.edu","phone":"526-336-1234","gender":"Female","department":"Sales","address":"8988 Welch Crossing","hire_date":"7/17/2018","website":"https://weibo.com","notes":"congue risus semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero quis orci nullam molestie nibh in","status":2,"type":1,"salary":"$489.95"}, {"id":760,"employee_id":"184019292-5","first_name":"Ludovika","last_name":"Yewen","email":"lyewenl3@google.com","phone":"131-144-1624","gender":"Female","department":"Engineering","address":"88 Cardinal Hill","hire_date":"9/26/2017","website":"https://weibo.com","notes":"fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo","status":4,"type":1,"salary":"$1651.19"}, {"id":761,"employee_id":"998923606-2","first_name":"Giffy","last_name":"Florentine","email":"gflorentinel4@marketwatch.com","phone":"631-489-6012","gender":"Male","department":"Marketing","address":"431 Hagan Place","hire_date":"10/27/2017","website":"http://disqus.com","notes":"sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit","status":5,"type":3,"salary":"$1174.22"}, {"id":762,"employee_id":"141148008-2","first_name":"Levy","last_name":"Edmott","email":"ledmottl5@topsy.com","phone":"278-821-2455","gender":"Male","department":"Research and Development","address":"98566 Barnett Trail","hire_date":"4/15/2018","website":"https://wordpress.com","notes":"eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio","status":6,"type":1,"salary":"$1988.62"}, {"id":763,"employee_id":"049603703-X","first_name":"Tarrah","last_name":"Borlease","email":"tborleasel6@merriam-webster.com","phone":"933-263-6101","gender":"Female","department":"Product Management","address":"5853 Eastwood Plaza","hire_date":"10/28/2017","website":"https://ft.com","notes":"morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor","status":3,"type":1,"salary":"$1958.92"}, {"id":764,"employee_id":"708787705-4","first_name":"Chrystel","last_name":"Bendik","email":"cbendikl7@hhs.gov","phone":"587-253-8983","gender":"Female","department":"Services","address":"1 Oxford Terrace","hire_date":"5/3/2018","website":"http://fda.gov","notes":"consequat lectus in est risus auctor sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis","status":1,"type":2,"salary":"$1453.37"}, {"id":765,"employee_id":"138485319-7","first_name":"Hershel","last_name":"Grelak","email":"hgrelakl8@cnbc.com","phone":"203-361-3308","gender":"Male","department":"Legal","address":"54057 Scoville Lane","hire_date":"11/10/2017","website":"https://pagesperso-orange.fr","notes":"eget nunc donec quis orci eget orci vehicula condimentum curabitur in libero ut","status":6,"type":2,"salary":"$721.76"}, {"id":766,"employee_id":"556654694-3","first_name":"Joni","last_name":"Saunt","email":"jsauntl9@auda.org.au","phone":"964-566-0479","gender":"Female","department":"Legal","address":"8993 Meadow Vale Place","hire_date":"9/25/2017","website":"http://bandcamp.com","notes":"posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam","status":5,"type":2,"salary":"$1489.95"}, {"id":767,"employee_id":"352383808-8","first_name":"Vanda","last_name":"Jindrak","email":"vjindrakla@army.mil","phone":"592-225-3910","gender":"Female","department":"Accounting","address":"55577 Texas Circle","hire_date":"4/15/2018","website":"https://qq.com","notes":"vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna","status":5,"type":2,"salary":"$1262.62"}, {"id":768,"employee_id":"024565800-9","first_name":"Zaccaria","last_name":"Kornel","email":"zkornellb@ihg.com","phone":"650-254-6349","gender":"Male","department":"Business Development","address":"11874 Atwood Park","hire_date":"5/11/2018","website":"https://tripadvisor.com","notes":"felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus","status":2,"type":3,"salary":"$715.65"}, {"id":769,"employee_id":"751780558-4","first_name":"Carlene","last_name":"Chatenet","email":"cchatenetlc@paginegialle.it","phone":"646-191-7557","gender":"Female","department":"Product Management","address":"914 Pierstorff Way","hire_date":"5/9/2018","website":"https://amazonaws.com","notes":"felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec","status":2,"type":3,"salary":"$425.29"}, {"id":770,"employee_id":"680798737-4","first_name":"Hyacinthe","last_name":"Gulvin","email":"hgulvinld@time.com","phone":"766-455-2185","gender":"Female","department":"Research and Development","address":"52032 Crescent Oaks Trail","hire_date":"4/5/2018","website":"http://about.com","notes":"consequat metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices","status":2,"type":1,"salary":"$433.74"}, {"id":771,"employee_id":"020830472-X","first_name":"Jacklin","last_name":"Kezor","email":"jkezorle@123-reg.co.uk","phone":"533-153-5896","gender":"Female","department":"Human Resources","address":"95187 Comanche Road","hire_date":"10/30/2017","website":"https://goo.ne.jp","notes":"turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris","status":4,"type":3,"salary":"$541.46"}, {"id":772,"employee_id":"384837986-4","first_name":"Farley","last_name":"Keggin","email":"fkegginlf@uiuc.edu","phone":"256-957-5424","gender":"Male","department":"Accounting","address":"0 Rockefeller Drive","hire_date":"9/17/2017","website":"https://umn.edu","notes":"vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac","status":5,"type":2,"salary":"$2489.99"}, {"id":773,"employee_id":"217698341-6","first_name":"Karry","last_name":"Mussalli","email":"kmussallilg@shinystat.com","phone":"604-426-4935","gender":"Female","department":"Research and Development","address":"5 Steensland Alley","hire_date":"12/30/2017","website":"https://princeton.edu","notes":"sit amet erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi nulla ac","status":4,"type":2,"salary":"$1972.87"}, {"id":774,"employee_id":"337028137-6","first_name":"Kiersten","last_name":"Trimble","email":"ktrimblelh@angelfire.com","phone":"482-420-7278","gender":"Female","department":"Marketing","address":"3 Parkside Street","hire_date":"10/28/2017","website":"https://amazonaws.com","notes":"morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum neque sapien placerat ante nulla","status":2,"type":1,"salary":"$1741.59"}, {"id":775,"employee_id":"971844527-7","first_name":"Marget","last_name":"Sizland","email":"msizlandli@vistaprint.com","phone":"492-485-1277","gender":"Female","department":"Marketing","address":"51041 Toban Avenue","hire_date":"1/17/2018","website":"http://google.com.hk","notes":"cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna ac consequat metus sapien ut nunc","status":5,"type":3,"salary":"$2434.08"}, {"id":776,"employee_id":"610098778-3","first_name":"Nanine","last_name":"Doohey","email":"ndooheylj@devhub.com","phone":"772-873-6018","gender":"Female","department":"Engineering","address":"0294 Ludington Circle","hire_date":"1/24/2018","website":"https://tinyurl.com","notes":"morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum neque sapien placerat ante","status":5,"type":2,"salary":"$1397.82"}, {"id":777,"employee_id":"226237088-5","first_name":"Victor","last_name":"Street","email":"vstreetlk@sitemeter.com","phone":"795-451-0197","gender":"Male","department":"Business Development","address":"07520 Hagan Lane","hire_date":"11/14/2017","website":"http://europa.eu","notes":"nulla elit ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum","status":1,"type":3,"salary":"$462.01"}, {"id":778,"employee_id":"271193556-6","first_name":"Koren","last_name":"Allicock","email":"kallicockll@taobao.com","phone":"437-920-3466","gender":"Female","department":"Services","address":"6 6th Point","hire_date":"8/20/2017","website":"http://icio.us","notes":"semper est quam pharetra magna ac consequat metus sapien ut nunc vestibulum","status":2,"type":3,"salary":"$1589.23"}, {"id":779,"employee_id":"263513301-8","first_name":"Zoe","last_name":"Woodall","email":"zwoodalllm@surveymonkey.com","phone":"518-192-1416","gender":"Female","department":"Accounting","address":"37384 Steensland Court","hire_date":"2/8/2018","website":"http://washingtonpost.com","notes":"justo morbi ut odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices enim","status":1,"type":1,"salary":"$740.26"}, {"id":780,"employee_id":"733220236-0","first_name":"Gregorio","last_name":"O\'Hannen","email":"gohannenln@smugmug.com","phone":"292-651-6749","gender":"Male","department":"Business Development","address":"1 Dapin Hill","hire_date":"1/27/2018","website":"http://reddit.com","notes":"ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla quisque arcu libero","status":6,"type":3,"salary":"$688.37"}, {"id":781,"employee_id":"436266716-4","first_name":"Cchaddie","last_name":"Awmack","email":"cawmacklo@bigcartel.com","phone":"725-885-3599","gender":"Male","department":"Engineering","address":"18 Coolidge Terrace","hire_date":"10/27/2017","website":"https://va.gov","notes":"tempus sit amet sem fusce consequat nulla nisl nunc nisl","status":6,"type":1,"salary":"$727.41"}, {"id":782,"employee_id":"311545185-7","first_name":"Sandro","last_name":"Dixsee","email":"sdixseelp@privacy.gov.au","phone":"536-788-8629","gender":"Male","department":"Research and Development","address":"96 Meadow Ridge Junction","hire_date":"5/3/2018","website":"http://nationalgeographic.com","notes":"amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor","status":4,"type":1,"salary":"$1884.62"}, {"id":783,"employee_id":"417867865-5","first_name":"Reilly","last_name":"Hourahan","email":"rhourahanlq@goodreads.com","phone":"487-266-9652","gender":"Male","department":"Sales","address":"71 Talmadge Terrace","hire_date":"3/28/2018","website":"http://gravatar.com","notes":"integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices","status":2,"type":2,"salary":"$887.30"}, {"id":784,"employee_id":"959654095-5","first_name":"Perla","last_name":"Bielby","email":"pbielbylr@cbc.ca","phone":"942-335-0976","gender":"Female","department":"Marketing","address":"225 7th Way","hire_date":"1/3/2018","website":"https://odnoklassniki.ru","notes":"congue risus semper porta volutpat quam pede lobortis ligula sit amet","status":4,"type":2,"salary":"$2415.35"}, {"id":785,"employee_id":"463941874-4","first_name":"Jecho","last_name":"Ganniclifft","email":"jganniclifftls@de.vu","phone":"587-690-5131","gender":"Male","department":"Services","address":"1 Glendale Lane","hire_date":"1/1/2018","website":"https://walmart.com","notes":"lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed","status":1,"type":1,"salary":"$1052.20"}, {"id":786,"employee_id":"668177772-4","first_name":"Corie","last_name":"Stenett","email":"cstenettlt@mail.ru","phone":"410-118-0485","gender":"Female","department":"Support","address":"8770 Monument Park","hire_date":"1/2/2018","website":"http://ycombinator.com","notes":"diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed augue aliquam erat","status":2,"type":1,"salary":"$302.53"}, {"id":787,"employee_id":"750892159-3","first_name":"Marya","last_name":"Renachowski","email":"mrenachowskilu@archive.org","phone":"234-917-9091","gender":"Female","department":"Services","address":"73 Bay Circle","hire_date":"10/8/2017","website":"http://usa.gov","notes":"nec sem duis aliquam convallis nunc proin at turpis a pede posuere","status":2,"type":2,"salary":"$1001.15"}, {"id":788,"employee_id":"546260319-3","first_name":"Chandler","last_name":"Pardue","email":"cparduelv@godaddy.com","phone":"253-709-1935","gender":"Male","department":"Accounting","address":"5 North Place","hire_date":"2/24/2018","website":"http://umn.edu","notes":"pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut ultrices vel","status":6,"type":3,"salary":"$1052.23"}, {"id":789,"employee_id":"791728813-7","first_name":"Almeda","last_name":"Illsley","email":"aillsleylw@posterous.com","phone":"202-999-4761","gender":"Female","department":"Marketing","address":"6626 Truax Trail","hire_date":"1/23/2018","website":"http://com.com","notes":"lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea","status":4,"type":2,"salary":"$2053.46"}, {"id":790,"employee_id":"640790420-X","first_name":"Kerri","last_name":"Costard","email":"kcostardlx@utexas.edu","phone":"466-313-3400","gender":"Female","department":"Product Management","address":"66 Loeprich Terrace","hire_date":"10/12/2017","website":"http://flickr.com","notes":"dui maecenas tristique est et tempus semper est quam pharetra","status":6,"type":3,"salary":"$397.40"}, {"id":791,"employee_id":"213817571-5","first_name":"Opal","last_name":"Attack","email":"oattackly@discuz.net","phone":"364-997-1710","gender":"Female","department":"Legal","address":"40 Melby Drive","hire_date":"7/27/2017","website":"https://mozilla.com","notes":"in ante vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan","status":4,"type":2,"salary":"$1947.19"}, {"id":792,"employee_id":"855588374-1","first_name":"Kerrie","last_name":"Spens","email":"kspenslz@whitehouse.gov","phone":"206-606-4566","gender":"Female","department":"Legal","address":"61689 Nelson Alley","hire_date":"2/4/2018","website":"https://usnews.com","notes":"odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet erat nulla","status":4,"type":3,"salary":"$309.33"}, {"id":793,"employee_id":"408276383-X","first_name":"Alexi","last_name":"Lownes","email":"alownesm0@census.gov","phone":"249-263-4112","gender":"Female","department":"Legal","address":"6 Randy Lane","hire_date":"9/3/2017","website":"https://naver.com","notes":"congue risus semper porta volutpat quam pede lobortis ligula sit amet eleifend","status":6,"type":2,"salary":"$2030.25"}, {"id":794,"employee_id":"121098905-0","first_name":"Korrie","last_name":"Balaam","email":"kbalaamm1@umich.edu","phone":"841-183-3396","gender":"Female","department":"Research and Development","address":"7 Pankratz Park","hire_date":"6/23/2018","website":"http://tinypic.com","notes":"eu massa donec dapibus duis at velit eu est congue elementum in hac habitasse platea dictumst","status":2,"type":3,"salary":"$1815.21"}, {"id":795,"employee_id":"732280161-X","first_name":"Abbye","last_name":"Lisle","email":"alislem2@cafepress.com","phone":"811-214-0555","gender":"Female","department":"Business Development","address":"0665 Knutson Park","hire_date":"10/7/2017","website":"https://nyu.edu","notes":"tortor quis turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum","status":6,"type":2,"salary":"$1745.97"}, {"id":796,"employee_id":"939143806-7","first_name":"Letizia","last_name":"Burgwin","email":"lburgwinm3@hostgator.com","phone":"314-217-7762","gender":"Female","department":"Human Resources","address":"68 Meadow Ridge Center","hire_date":"3/24/2018","website":"https://canalblog.com","notes":"quis odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero","status":2,"type":1,"salary":"$622.82"}, {"id":797,"employee_id":"931230824-6","first_name":"Hazel","last_name":"Micheu","email":"hmicheum4@scribd.com","phone":"415-802-8407","gender":"Male","department":"Business Development","address":"353 Ludington Hill","hire_date":"8/5/2017","website":"http://hexun.com","notes":"erat vestibulum sed magna at nunc commodo placerat praesent blandit nam nulla integer pede justo lacinia eget tincidunt","status":4,"type":3,"salary":"$494.96"}, {"id":798,"employee_id":"507962072-2","first_name":"Les","last_name":"Sloam","email":"lsloamm5@wikia.com","phone":"785-126-0550","gender":"Male","department":"Product Management","address":"09330 Spohn Circle","hire_date":"6/6/2018","website":"http://timesonline.co.uk","notes":"et eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam","status":6,"type":2,"salary":"$1118.02"}, {"id":799,"employee_id":"212703331-0","first_name":"Giorgia","last_name":"Guidera","email":"gguideram6@theguardian.com","phone":"327-880-9189","gender":"Female","department":"Engineering","address":"2 Corry Point","hire_date":"4/5/2018","website":"https://merriam-webster.com","notes":"donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit","status":1,"type":3,"salary":"$2303.44"}, {"id":800,"employee_id":"576570473-5","first_name":"Baudoin","last_name":"Ffrench","email":"bffrenchm7@irs.gov","phone":"562-970-6433","gender":"Male","department":"Sales","address":"56 4th Court","hire_date":"11/24/2017","website":"https://tinyurl.com","notes":"sapien varius ut blandit non interdum in ante vestibulum ante ipsum primis in","status":1,"type":2,"salary":"$1587.82"}, {"id":801,"employee_id":"181943676-4","first_name":"Cordell","last_name":"Jantet","email":"cjantetm8@seattletimes.com","phone":"597-880-5051","gender":"Male","department":"Support","address":"1 Warrior Avenue","hire_date":"5/6/2018","website":"http://who.int","notes":"venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet et commodo","status":1,"type":2,"salary":"$1580.06"}, {"id":802,"employee_id":"857791408-9","first_name":"Rochella","last_name":"Deavin","email":"rdeavinm9@yellowbook.com","phone":"157-458-3422","gender":"Female","department":"Business Development","address":"99155 Forest Trail","hire_date":"12/27/2017","website":"https://twitpic.com","notes":"luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet","status":6,"type":2,"salary":"$1138.03"}, {"id":803,"employee_id":"673618968-3","first_name":"Em","last_name":"Empson","email":"eempsonma@answers.com","phone":"250-516-4358","gender":"Male","department":"Legal","address":"0329 Village Green Avenue","hire_date":"2/17/2018","website":"http://wufoo.com","notes":"tellus nisi eu orci mauris lacinia sapien quis libero nullam","status":3,"type":2,"salary":"$1999.72"}, {"id":804,"employee_id":"043477209-7","first_name":"Ty","last_name":"Bulfit","email":"tbulfitmb@businessweek.com","phone":"381-955-9639","gender":"Male","department":"Training","address":"60213 Longview Circle","hire_date":"4/8/2018","website":"https://phoca.cz","notes":"placerat ante nulla justo aliquam quis turpis eget elit sodales","status":3,"type":2,"salary":"$1438.39"}, {"id":805,"employee_id":"167345466-6","first_name":"Loretta","last_name":"Jackett","email":"ljackettmc@pinterest.com","phone":"543-716-4727","gender":"Female","department":"Human Resources","address":"95 Swallow Avenue","hire_date":"10/10/2017","website":"https://cocolog-nifty.com","notes":"vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus","status":5,"type":2,"salary":"$1322.57"}, {"id":806,"employee_id":"844767394-4","first_name":"Amabel","last_name":"Lestrange","email":"alestrangemd@cargocollective.com","phone":"755-174-7238","gender":"Female","department":"Marketing","address":"0 Prairieview Place","hire_date":"1/28/2018","website":"https://storify.com","notes":"platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum","status":1,"type":1,"salary":"$1288.32"}, {"id":807,"employee_id":"716764899-X","first_name":"Gerald","last_name":"Heberden","email":"gheberdenme@slideshare.net","phone":"196-441-8295","gender":"Male","department":"Business Development","address":"88 Schlimgen Point","hire_date":"7/27/2017","website":"http://posterous.com","notes":"amet diam in magna bibendum imperdiet nullam orci pede venenatis non","status":1,"type":3,"salary":"$2228.42"}, {"id":808,"employee_id":"607496737-7","first_name":"Symon","last_name":"Veart","email":"sveartmf@google.co.uk","phone":"442-410-1960","gender":"Male","department":"Sales","address":"0 Maple Wood Court","hire_date":"11/7/2017","website":"http://hatena.ne.jp","notes":"suspendisse accumsan tortor quis turpis sed ante vivamus tortor duis","status":2,"type":3,"salary":"$1510.75"}, {"id":809,"employee_id":"864135592-8","first_name":"Rolfe","last_name":"Cleare","email":"rclearemg@fema.gov","phone":"102-452-1227","gender":"Male","department":"Engineering","address":"137 Florence Hill","hire_date":"4/23/2018","website":"http://mysql.com","notes":"volutpat erat quisque erat eros viverra eget congue eget semper rutrum","status":3,"type":3,"salary":"$1341.99"}, {"id":810,"employee_id":"342600434-8","first_name":"Callean","last_name":"Jerrolt","email":"cjerroltmh@g.co","phone":"795-810-1691","gender":"Male","department":"Product Management","address":"30693 Burrows Road","hire_date":"1/24/2018","website":"https://cbslocal.com","notes":"praesent blandit nam nulla integer pede justo lacinia eget tincidunt eget tempus vel pede","status":2,"type":3,"salary":"$796.65"}, {"id":811,"employee_id":"205902301-7","first_name":"Shawna","last_name":"Rosborough","email":"srosboroughmi@opera.com","phone":"209-749-1562","gender":"Female","department":"Marketing","address":"039 Ludington Way","hire_date":"5/31/2018","website":"https://delicious.com","notes":"eget eleifend luctus ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus","status":4,"type":1,"salary":"$301.37"}, {"id":812,"employee_id":"301219263-8","first_name":"Noelyn","last_name":"McEnteggart","email":"nmcenteggartmj@ow.ly","phone":"539-327-6367","gender":"Female","department":"Marketing","address":"0022 Lukken Drive","hire_date":"9/18/2017","website":"http://canalblog.com","notes":"pede ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra","status":2,"type":3,"salary":"$432.49"}, {"id":813,"employee_id":"718416820-8","first_name":"Bart","last_name":"Dyneley","email":"bdyneleymk@google.com.au","phone":"231-398-0202","gender":"Male","department":"Product Management","address":"9421 Green Street","hire_date":"11/20/2017","website":"http://dot.gov","notes":"nulla suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis","status":6,"type":3,"salary":"$539.57"}, {"id":814,"employee_id":"632205591-7","first_name":"Correy","last_name":"Colquete","email":"ccolqueteml@google.co.jp","phone":"300-874-9684","gender":"Male","department":"Legal","address":"08 Garrison Alley","hire_date":"6/24/2018","website":"http://who.int","notes":"pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus sit amet","status":2,"type":2,"salary":"$2303.71"}, {"id":815,"employee_id":"426716297-2","first_name":"Rodge","last_name":"Hourston","email":"rhourstonmm@newsvine.com","phone":"492-284-8794","gender":"Male","department":"Business Development","address":"62 Brown Place","hire_date":"3/10/2018","website":"http://washington.edu","notes":"elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam","status":4,"type":1,"salary":"$1139.65"}, {"id":816,"employee_id":"638277031-0","first_name":"Kesley","last_name":"Liff","email":"kliffmn@fda.gov","phone":"279-346-8257","gender":"Female","department":"Services","address":"33317 Golden Leaf Alley","hire_date":"3/18/2018","website":"http://feedburner.com","notes":"erat curabitur gravida nisi at nibh in hac habitasse platea","status":1,"type":3,"salary":"$1721.96"}, {"id":817,"employee_id":"180232918-8","first_name":"Peirce","last_name":"Cluley","email":"pcluleymo@dailymail.co.uk","phone":"742-672-2952","gender":"Male","department":"Legal","address":"9209 Merchant Lane","hire_date":"10/15/2017","website":"https://cornell.edu","notes":"in est risus auctor sed tristique in tempus sit amet sem fusce consequat","status":5,"type":3,"salary":"$1636.79"}, {"id":818,"employee_id":"863979892-3","first_name":"Frayda","last_name":"Pickersail","email":"fpickersailmp@123-reg.co.uk","phone":"971-770-7430","gender":"Female","department":"Product Management","address":"0822 Sage Terrace","hire_date":"1/16/2018","website":"https://liveinternet.ru","notes":"ultrices posuere cubilia curae nulla dapibus dolor vel est donec odio justo","status":6,"type":3,"salary":"$1913.44"}, {"id":819,"employee_id":"192493662-3","first_name":"Anselm","last_name":"Gibbonson","email":"agibbonsonmq@wikia.com","phone":"863-906-7411","gender":"Male","department":"Support","address":"8 Pawling Circle","hire_date":"7/2/2018","website":"http://rambler.ru","notes":"quisque porta volutpat erat quisque erat eros viverra eget congue eget semper rutrum nulla nunc purus phasellus in felis","status":2,"type":2,"salary":"$1742.85"}, {"id":820,"employee_id":"200052209-2","first_name":"Elberta","last_name":"Persicke","email":"epersickemr@blogger.com","phone":"668-943-3372","gender":"Female","department":"Research and Development","address":"8174 6th Crossing","hire_date":"9/27/2017","website":"https://mozilla.com","notes":"at velit eu est congue elementum in hac habitasse platea dictumst","status":2,"type":1,"salary":"$867.17"}, {"id":821,"employee_id":"395194882-5","first_name":"Sandro","last_name":"Marre","email":"smarrems@imdb.com","phone":"406-798-3488","gender":"Male","department":"Sales","address":"9212 Kropf Avenue","hire_date":"3/2/2018","website":"https://sciencedirect.com","notes":"donec ut dolor morbi vel lectus in quam fringilla rhoncus","status":6,"type":1,"salary":"$635.08"}, {"id":822,"employee_id":"855157045-5","first_name":"Mirabelle","last_name":"Varrow","email":"mvarrowmt@jiathis.com","phone":"756-556-9120","gender":"Female","department":"Support","address":"22554 Butternut Point","hire_date":"10/21/2017","website":"https://netvibes.com","notes":"proin at turpis a pede posuere nonummy integer non velit","status":5,"type":3,"salary":"$1613.32"}, {"id":823,"employee_id":"704941465-4","first_name":"Raoul","last_name":"Stuer","email":"rstuermu@cbsnews.com","phone":"189-643-4969","gender":"Male","department":"Services","address":"9 Debra Center","hire_date":"7/8/2018","website":"http://umich.edu","notes":"natoque penatibus et magnis dis parturient montes nascetur ridiculus mus etiam vel augue vestibulum rutrum","status":5,"type":3,"salary":"$2328.21"}, {"id":824,"employee_id":"732581584-0","first_name":"Ned","last_name":"Bru","email":"nbrumv@storify.com","phone":"128-130-4321","gender":"Male","department":"Business Development","address":"557 Gulseth Trail","hire_date":"10/5/2017","website":"https://unblog.fr","notes":"faucibus cursus urna ut tellus nulla ut erat id mauris vulputate elementum nullam varius nulla facilisi cras","status":6,"type":3,"salary":"$961.24"}, {"id":825,"employee_id":"091790688-8","first_name":"Rick","last_name":"Ciccone","email":"rcicconemw@imdb.com","phone":"856-504-8970","gender":"Male","department":"Accounting","address":"66255 Westport Alley","hire_date":"8/8/2017","website":"https://infoseek.co.jp","notes":"etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut","status":5,"type":1,"salary":"$1186.43"}, {"id":826,"employee_id":"520293949-3","first_name":"Corinne","last_name":"Fownes","email":"cfownesmx@ehow.com","phone":"440-823-7406","gender":"Female","department":"Support","address":"26742 Debs Lane","hire_date":"1/11/2018","website":"https://baidu.com","notes":"ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend","status":2,"type":2,"salary":"$554.62"}, {"id":827,"employee_id":"365292994-2","first_name":"Cammy","last_name":"Holtaway","email":"choltawaymy@dion.ne.jp","phone":"194-960-1147","gender":"Female","department":"Services","address":"1131 Jay Junction","hire_date":"3/24/2018","website":"http://earthlink.net","notes":"praesent blandit nam nulla integer pede justo lacinia eget tincidunt eget tempus vel pede","status":2,"type":3,"salary":"$1863.85"}, {"id":828,"employee_id":"843722533-7","first_name":"Fayth","last_name":"Haill","email":"fhaillmz@disqus.com","phone":"744-567-8110","gender":"Female","department":"Business Development","address":"33 Merrick Circle","hire_date":"3/15/2018","website":"https://cafepress.com","notes":"odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue","status":1,"type":3,"salary":"$2355.13"}, {"id":829,"employee_id":"322169240-4","first_name":"Trixi","last_name":"Pendlenton","email":"tpendlentonn0@taobao.com","phone":"957-310-2126","gender":"Female","department":"Marketing","address":"5 Jenna Avenue","hire_date":"8/29/2017","website":"https://nymag.com","notes":"ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor","status":3,"type":1,"salary":"$652.58"}, {"id":830,"employee_id":"135439312-0","first_name":"Hewe","last_name":"Prisk","email":"hpriskn1@ox.ac.uk","phone":"978-865-1619","gender":"Male","department":"Support","address":"97189 Fair Oaks Trail","hire_date":"12/24/2017","website":"http://sciencedirect.com","notes":"ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem","status":3,"type":1,"salary":"$440.95"}, {"id":831,"employee_id":"349704938-7","first_name":"Ezekiel","last_name":"De Haven","email":"edehavenn2@sbwire.com","phone":"793-431-3934","gender":"Male","department":"Support","address":"73 Tomscot Court","hire_date":"3/28/2018","website":"http://yale.edu","notes":"molestie nibh in lectus pellentesque at nulla suspendisse potenti cras in purus eu magna","status":2,"type":2,"salary":"$307.26"}, {"id":832,"employee_id":"468212952-X","first_name":"Lou","last_name":"Saffell","email":"lsaffelln3@jigsy.com","phone":"635-726-3361","gender":"Female","department":"Business Development","address":"7279 Green Ridge Trail","hire_date":"7/27/2017","website":"http://google.it","notes":"ut nulla sed accumsan felis ut at dolor quis odio consequat varius","status":6,"type":3,"salary":"$2220.38"}, {"id":833,"employee_id":"946703651-7","first_name":"Kinnie","last_name":"Maryin","email":"kmaryinn4@taobao.com","phone":"407-291-2839","gender":"Male","department":"Business Development","address":"689 Reinke Drive","hire_date":"3/31/2018","website":"http://e-recht24.de","notes":"mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue","status":4,"type":3,"salary":"$1743.63"}, {"id":834,"employee_id":"469462469-5","first_name":"Gardie","last_name":"Bernli","email":"gbernlin5@printfriendly.com","phone":"655-626-8380","gender":"Male","department":"Research and Development","address":"05 Reinke Plaza","hire_date":"4/20/2018","website":"http://springer.com","notes":"faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat","status":6,"type":2,"salary":"$2438.74"}, {"id":835,"employee_id":"041162428-8","first_name":"Leticia","last_name":"Josefer","email":"ljosefern6@chronoengine.com","phone":"101-342-0106","gender":"Female","department":"Engineering","address":"3656 Bobwhite Trail","hire_date":"12/17/2017","website":"http://wordpress.org","notes":"orci pede venenatis non sodales sed tincidunt eu felis fusce","status":6,"type":2,"salary":"$1397.56"}, {"id":836,"employee_id":"589695198-1","first_name":"Darrick","last_name":"Granger","email":"dgrangern7@weather.com","phone":"205-150-7029","gender":"Male","department":"Support","address":"2 Roth Center","hire_date":"11/10/2017","website":"http://youku.com","notes":"elementum ligula vehicula consequat morbi a ipsum integer a nibh in quis justo maecenas rhoncus","status":5,"type":3,"salary":"$2094.14"}, {"id":837,"employee_id":"278485362-4","first_name":"Dyana","last_name":"Digger","email":"ddiggern8@omniture.com","phone":"750-673-1281","gender":"Female","department":"Legal","address":"49619 Graceland Drive","hire_date":"4/26/2018","website":"http://smh.com.au","notes":"aenean fermentum donec ut mauris eget massa tempor convallis nulla neque libero convallis eget eleifend","status":1,"type":1,"salary":"$1973.01"}, {"id":838,"employee_id":"779146008-4","first_name":"Lydon","last_name":"Masdon","email":"lmasdonn9@a8.net","phone":"212-527-6705","gender":"Male","department":"Training","address":"753 Golf Course Crossing","hire_date":"11/13/2017","website":"http://ucsd.edu","notes":"eget massa tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu nibh quisque id justo sit amet sapien","status":6,"type":3,"salary":"$753.19"}, {"id":839,"employee_id":"547768354-6","first_name":"Angelika","last_name":"Darch","email":"adarchna@tiny.cc","phone":"648-106-0061","gender":"Female","department":"Marketing","address":"5984 Hallows Point","hire_date":"5/13/2018","website":"http://omniture.com","notes":"tellus nulla ut erat id mauris vulputate elementum nullam varius nulla facilisi cras non","status":5,"type":2,"salary":"$622.00"}, {"id":840,"employee_id":"211575367-4","first_name":"Hilliary","last_name":"Corkel","email":"hcorkelnb@yale.edu","phone":"145-299-6840","gender":"Female","department":"Human Resources","address":"39 Ridgeview Center","hire_date":"5/31/2018","website":"http://sbwire.com","notes":"nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse","status":6,"type":2,"salary":"$2237.81"}, {"id":841,"employee_id":"858981932-9","first_name":"Simeon","last_name":"Hearson","email":"shearsonnc@amazonaws.com","phone":"694-518-1962","gender":"Male","department":"Engineering","address":"8700 Esker Terrace","hire_date":"2/27/2018","website":"http://dedecms.com","notes":"nisi volutpat eleifend donec ut dolor morbi vel lectus in quam fringilla rhoncus mauris enim leo rhoncus sed","status":6,"type":2,"salary":"$1122.62"}, {"id":842,"employee_id":"431756926-4","first_name":"Tuck","last_name":"MacInnes","email":"tmacinnesnd@wordpress.org","phone":"783-303-6460","gender":"Male","department":"Support","address":"21 Veith Trail","hire_date":"9/2/2017","website":"https://marketwatch.com","notes":"mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui","status":5,"type":3,"salary":"$719.94"}, {"id":843,"employee_id":"597581423-5","first_name":"Sanders","last_name":"Yantsev","email":"syantsevne@pinterest.com","phone":"163-830-1851","gender":"Male","department":"Support","address":"92682 Stone Corner Court","hire_date":"9/23/2017","website":"http://house.gov","notes":"quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac","status":6,"type":1,"salary":"$1833.46"}, {"id":844,"employee_id":"528020275-4","first_name":"Sissy","last_name":"Innwood","email":"sinnwoodnf@example.com","phone":"340-721-2264","gender":"Female","department":"Product Management","address":"7857 Hayes Park","hire_date":"10/20/2017","website":"http://jigsy.com","notes":"risus semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero quis","status":1,"type":3,"salary":"$432.76"}, {"id":845,"employee_id":"717372604-2","first_name":"Saunder","last_name":"Flarity","email":"sflarityng@multiply.com","phone":"816-385-5389","gender":"Male","department":"Legal","address":"11 Hoepker Park","hire_date":"9/15/2017","website":"http://youtube.com","notes":"condimentum id luctus nec molestie sed justo pellentesque viverra pede","status":2,"type":3,"salary":"$2470.02"}, {"id":846,"employee_id":"225292769-0","first_name":"Denney","last_name":"Oakden","email":"doakdennh@bing.com","phone":"920-869-3544","gender":"Male","department":"Human Resources","address":"68494 Maple Alley","hire_date":"2/4/2018","website":"http://usatoday.com","notes":"ut nulla sed accumsan felis ut at dolor quis odio consequat varius integer ac leo pellentesque","status":4,"type":1,"salary":"$2220.67"}, {"id":847,"employee_id":"467850974-7","first_name":"Elita","last_name":"Burthom","email":"eburthomni@hp.com","phone":"335-219-3625","gender":"Female","department":"Accounting","address":"274 Katie Park","hire_date":"2/9/2018","website":"https://de.vu","notes":"ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae","status":4,"type":2,"salary":"$847.49"}, {"id":848,"employee_id":"898160045-7","first_name":"Stacie","last_name":"Hebner","email":"shebnernj@liveinternet.ru","phone":"890-770-6048","gender":"Female","department":"Human Resources","address":"44506 Bayside Drive","hire_date":"4/23/2018","website":"http://freewebs.com","notes":"massa donec dapibus duis at velit eu est congue elementum in hac habitasse platea","status":2,"type":1,"salary":"$356.40"}, {"id":849,"employee_id":"818484277-5","first_name":"Betta","last_name":"Leakner","email":"bleaknernk@hud.gov","phone":"313-659-0867","gender":"Female","department":"Marketing","address":"09485 Dovetail Terrace","hire_date":"7/29/2017","website":"https://123-reg.co.uk","notes":"sapien arcu sed augue aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac habitasse platea dictumst","status":1,"type":2,"salary":"$1884.90"}, {"id":850,"employee_id":"087125652-5","first_name":"Kyle","last_name":"Wiggington","email":"kwiggingtonnl@latimes.com","phone":"297-144-3797","gender":"Male","department":"Legal","address":"0 Ronald Regan Crossing","hire_date":"4/6/2018","website":"http://csmonitor.com","notes":"eget nunc donec quis orci eget orci vehicula condimentum curabitur","status":5,"type":3,"salary":"$2215.86"}, {"id":851,"employee_id":"377288512-8","first_name":"Nara","last_name":"Resun","email":"nresunnm@mit.edu","phone":"731-180-4173","gender":"Female","department":"Sales","address":"7074 Golf Center","hire_date":"11/5/2017","website":"http://pinterest.com","notes":"vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra","status":5,"type":3,"salary":"$2166.61"}, {"id":852,"employee_id":"918618308-7","first_name":"Allene","last_name":"Gilstoun","email":"agilstounnn@cam.ac.uk","phone":"679-115-5305","gender":"Female","department":"Training","address":"70602 Schiller Trail","hire_date":"5/15/2018","website":"http://google.nl","notes":"nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices","status":1,"type":3,"salary":"$2047.71"}, {"id":853,"employee_id":"171710057-0","first_name":"Jarrett","last_name":"Kareman","email":"jkaremanno@mashable.com","phone":"571-811-3029","gender":"Male","department":"Research and Development","address":"135 Merry Hill","hire_date":"11/7/2017","website":"https://digg.com","notes":"curabitur gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae","status":2,"type":2,"salary":"$1898.66"}, {"id":854,"employee_id":"668119849-X","first_name":"Alidia","last_name":"Elias","email":"aeliasnp@hao123.com","phone":"621-868-7561","gender":"Female","department":"Business Development","address":"4467 Basil Circle","hire_date":"3/27/2018","website":"http://illinois.edu","notes":"id sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate","status":6,"type":2,"salary":"$700.05"}, {"id":855,"employee_id":"359970386-8","first_name":"Audrey","last_name":"Cassel","email":"acasselnq@feedburner.com","phone":"110-165-9967","gender":"Female","department":"Engineering","address":"652 Dixon Junction","hire_date":"5/9/2018","website":"http://earthlink.net","notes":"suspendisse accumsan tortor quis turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec","status":5,"type":2,"salary":"$1663.68"}, {"id":856,"employee_id":"853032462-5","first_name":"Gwyn","last_name":"Agiolfinger","email":"gagiolfingernr@fotki.com","phone":"990-944-9334","gender":"Female","department":"Engineering","address":"88005 Delaware Center","hire_date":"4/21/2018","website":"http://marketwatch.com","notes":"velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat","status":6,"type":3,"salary":"$594.90"}, {"id":857,"employee_id":"059215254-5","first_name":"Tuesday","last_name":"Akid","email":"takidns@weibo.com","phone":"673-912-7877","gender":"Female","department":"Marketing","address":"9652 Banding Avenue","hire_date":"8/16/2017","website":"https://samsung.com","notes":"ullamcorper purus sit amet nulla quisque arcu libero rutrum ac lobortis vel dapibus at diam nam tristique tortor eu","status":4,"type":3,"salary":"$583.68"}, {"id":858,"employee_id":"474123789-3","first_name":"Carmel","last_name":"Morison","email":"cmorisonnt@com.com","phone":"767-605-1813","gender":"Female","department":"Business Development","address":"49 Valley Edge Street","hire_date":"6/29/2018","website":"https://goodreads.com","notes":"maecenas pulvinar lobortis est phasellus sit amet erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi","status":1,"type":1,"salary":"$2025.43"}, {"id":859,"employee_id":"626321755-3","first_name":"Salem","last_name":"Tomblings","email":"stomblingsnu@quantcast.com","phone":"841-956-0344","gender":"Male","department":"Product Management","address":"1522 Esch Alley","hire_date":"6/15/2018","website":"https://weibo.com","notes":"ut nulla sed accumsan felis ut at dolor quis odio consequat varius integer","status":3,"type":2,"salary":"$426.68"}, {"id":860,"employee_id":"434074089-6","first_name":"Micky","last_name":"Prester","email":"mpresternv@flickr.com","phone":"934-275-4620","gender":"Female","department":"Marketing","address":"39 Nancy Drive","hire_date":"2/8/2018","website":"http://reference.com","notes":"faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam","status":1,"type":3,"salary":"$1926.90"}, {"id":861,"employee_id":"795857739-7","first_name":"Bernice","last_name":"Swinbourne","email":"bswinbournenw@yale.edu","phone":"936-824-2359","gender":"Female","department":"Sales","address":"216 Crowley Parkway","hire_date":"8/19/2017","website":"http://timesonline.co.uk","notes":"a odio in hac habitasse platea dictumst maecenas ut massa","status":3,"type":2,"salary":"$1384.84"}, {"id":862,"employee_id":"389656737-3","first_name":"Jacqui","last_name":"Fairbank","email":"jfairbanknx@macromedia.com","phone":"835-651-1622","gender":"Female","department":"Marketing","address":"7794 Talisman Park","hire_date":"5/23/2018","website":"https://liveinternet.ru","notes":"sed interdum venenatis turpis enim blandit mi in porttitor pede justo eu massa","status":4,"type":2,"salary":"$363.54"}, {"id":863,"employee_id":"038925263-8","first_name":"Rochelle","last_name":"MacFadin","email":"rmacfadinny@narod.ru","phone":"443-239-8405","gender":"Female","department":"Marketing","address":"26 Shelley Hill","hire_date":"9/22/2017","website":"http://indiatimes.com","notes":"at vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci eget","status":4,"type":2,"salary":"$2179.15"}, {"id":864,"employee_id":"657345006-X","first_name":"Any","last_name":"Heilds","email":"aheildsnz@theatlantic.com","phone":"954-253-2413","gender":"Male","department":"Support","address":"3694 Tomscot Road","hire_date":"2/10/2018","website":"https://huffingtonpost.com","notes":"sapien arcu sed augue aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac","status":5,"type":3,"salary":"$1128.45"}, {"id":865,"employee_id":"965469830-7","first_name":"Babbette","last_name":"Patchett","email":"bpatchetto0@usnews.com","phone":"670-691-5401","gender":"Female","department":"Business Development","address":"4 Prentice Park","hire_date":"5/29/2018","website":"http://cisco.com","notes":"in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt","status":5,"type":3,"salary":"$1734.90"}, {"id":866,"employee_id":"330409850-X","first_name":"Norrie","last_name":"Goghin","email":"ngoghino1@baidu.com","phone":"491-790-2918","gender":"Female","department":"Business Development","address":"645 Browning Lane","hire_date":"10/13/2017","website":"https://foxnews.com","notes":"ut blandit non interdum in ante vestibulum ante ipsum primis in faucibus orci","status":2,"type":2,"salary":"$430.97"}, {"id":867,"employee_id":"040434544-1","first_name":"Nichole","last_name":"Russel","email":"nrusselo2@cargocollective.com","phone":"540-530-3814","gender":"Male","department":"Services","address":"90419 Manley Terrace","hire_date":"12/7/2017","website":"http://joomla.org","notes":"pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna","status":3,"type":1,"salary":"$654.35"}, {"id":868,"employee_id":"351531103-3","first_name":"Hatti","last_name":"O\' Lone","email":"holoneo3@cargocollective.com","phone":"795-856-1540","gender":"Female","department":"Marketing","address":"3 Hazelcrest Way","hire_date":"1/22/2018","website":"http://ucla.edu","notes":"blandit mi in porttitor pede justo eu massa donec dapibus duis at","status":6,"type":2,"salary":"$2334.45"}, {"id":869,"employee_id":"353987017-2","first_name":"Vinny","last_name":"Sterland","email":"vsterlando4@vk.com","phone":"169-336-7150","gender":"Female","department":"Business Development","address":"417 Sundown Avenue","hire_date":"8/6/2017","website":"https://telegraph.co.uk","notes":"amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus semper interdum","status":3,"type":1,"salary":"$1521.90"}, {"id":870,"employee_id":"281066414-5","first_name":"Heather","last_name":"Attwell","email":"hattwello5@ebay.com","phone":"938-751-5370","gender":"Female","department":"Accounting","address":"0 Corscot Parkway","hire_date":"2/28/2018","website":"https://com.com","notes":"tristique est et tempus semper est quam pharetra magna ac consequat metus sapien","status":4,"type":3,"salary":"$2166.56"}, {"id":871,"employee_id":"149270060-6","first_name":"Batsheva","last_name":"O\'Sheilds","email":"bosheildso6@utexas.edu","phone":"894-295-9511","gender":"Female","department":"Training","address":"60564 Orin Park","hire_date":"9/7/2017","website":"http://unesco.org","notes":"tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a","status":6,"type":3,"salary":"$1727.86"}, {"id":872,"employee_id":"643611254-5","first_name":"Willow","last_name":"Deeth","email":"wdeetho7@harvard.edu","phone":"159-925-5389","gender":"Female","department":"Accounting","address":"607 Anthes Lane","hire_date":"7/16/2018","website":"http://eventbrite.com","notes":"augue a suscipit nulla elit ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus","status":5,"type":2,"salary":"$1190.81"}, {"id":873,"employee_id":"058405556-0","first_name":"Mic","last_name":"Dengel","email":"mdengelo8@networksolutions.com","phone":"727-927-8796","gender":"Male","department":"Accounting","address":"785 Dawn Terrace","hire_date":"9/30/2017","website":"https://zimbio.com","notes":"justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus","status":2,"type":1,"salary":"$298.54"}, {"id":874,"employee_id":"549865806-0","first_name":"Hortense","last_name":"Mandell","email":"hmandello9@illinois.edu","phone":"572-206-1688","gender":"Female","department":"Services","address":"7958 Sherman Plaza","hire_date":"12/22/2017","website":"http://cdc.gov","notes":"nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo","status":1,"type":1,"salary":"$1498.34"}, {"id":875,"employee_id":"908338420-9","first_name":"Gilemette","last_name":"Bagenal","email":"gbagenaloa@diigo.com","phone":"475-315-9575","gender":"Female","department":"Engineering","address":"6193 6th Drive","hire_date":"8/29/2017","website":"http://reverbnation.com","notes":"tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula","status":5,"type":1,"salary":"$2230.76"}, {"id":876,"employee_id":"977156817-5","first_name":"Aloisia","last_name":"De Minico","email":"ademinicoob@delicious.com","phone":"120-288-0753","gender":"Female","department":"Accounting","address":"844 Blue Bill Park Avenue","hire_date":"10/14/2017","website":"http://friendfeed.com","notes":"proin eu mi nulla ac enim in tempor turpis nec euismod scelerisque","status":1,"type":1,"salary":"$608.47"}, {"id":877,"employee_id":"885815976-4","first_name":"Reece","last_name":"Slyvester","email":"rslyvesteroc@apple.com","phone":"776-585-2812","gender":"Male","department":"Support","address":"49 Del Sol Park","hire_date":"4/28/2018","website":"http://yale.edu","notes":"dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac nibh","status":6,"type":3,"salary":"$2352.46"}, {"id":878,"employee_id":"577787056-2","first_name":"Kean","last_name":"Venes","email":"kvenesod@forbes.com","phone":"580-228-2393","gender":"Male","department":"Support","address":"7890 Blue Bill Park Parkway","hire_date":"7/9/2018","website":"https://sbwire.com","notes":"quam suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris morbi non","status":4,"type":2,"salary":"$1752.92"}, {"id":879,"employee_id":"070850529-5","first_name":"Cathee","last_name":"Farquar","email":"cfarquaroe@jugem.jp","phone":"427-616-2628","gender":"Female","department":"Research and Development","address":"7849 Anthes Pass","hire_date":"8/11/2017","website":"http://nyu.edu","notes":"dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla","status":6,"type":1,"salary":"$1249.57"}, {"id":880,"employee_id":"573192593-3","first_name":"Koren","last_name":"Grayland","email":"kgraylandof@qq.com","phone":"522-950-3145","gender":"Female","department":"Research and Development","address":"23753 Bay Crossing","hire_date":"7/23/2017","website":"https://pagesperso-orange.fr","notes":"pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac nulla sed vel enim sit amet nunc viverra dapibus","status":1,"type":1,"salary":"$2393.05"}, {"id":881,"employee_id":"509885019-3","first_name":"Phip","last_name":"Phateplace","email":"pphateplaceog@squidoo.com","phone":"901-708-2027","gender":"Male","department":"Product Management","address":"5966 Gulseth Drive","hire_date":"7/5/2018","website":"https://example.com","notes":"suscipit ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla quisque","status":6,"type":2,"salary":"$1635.88"}, {"id":882,"employee_id":"701133697-4","first_name":"Moses","last_name":"Helix","email":"mhelixoh@jugem.jp","phone":"947-652-3546","gender":"Male","department":"Sales","address":"5 Westerfield Way","hire_date":"3/9/2018","website":"https://google.it","notes":"ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit nam nulla integer pede","status":4,"type":2,"salary":"$452.06"}, {"id":883,"employee_id":"445368708-7","first_name":"Zebadiah","last_name":"Redington","email":"zredingtonoi@squarespace.com","phone":"106-887-0468","gender":"Male","department":"Training","address":"42 Di Loreto Point","hire_date":"2/17/2018","website":"http://sina.com.cn","notes":"in felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec euismod","status":1,"type":3,"salary":"$2018.44"}, {"id":884,"employee_id":"023371746-3","first_name":"Morna","last_name":"Beckwith","email":"mbeckwithoj@usnews.com","phone":"447-925-5378","gender":"Female","department":"Business Development","address":"9836 Browning Park","hire_date":"3/10/2018","website":"http://ihg.com","notes":"sapien sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus","status":2,"type":3,"salary":"$721.52"}, {"id":885,"employee_id":"254571653-7","first_name":"Zorine","last_name":"Shervil","email":"zshervilok@yolasite.com","phone":"203-384-0989","gender":"Female","department":"Product Management","address":"51051 Golden Leaf Avenue","hire_date":"4/25/2018","website":"https://studiopress.com","notes":"sit amet diam in magna bibendum imperdiet nullam orci pede venenatis non sodales","status":2,"type":2,"salary":"$2409.49"}, {"id":886,"employee_id":"960030935-3","first_name":"Cory","last_name":"Ackland","email":"cacklandol@epa.gov","phone":"686-765-5372","gender":"Male","department":"Legal","address":"17 Colorado Circle","hire_date":"6/30/2018","website":"http://dropbox.com","notes":"vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non pretium quis lectus","status":1,"type":1,"salary":"$1792.46"}, {"id":887,"employee_id":"087598468-1","first_name":"Oona","last_name":"Schriren","email":"oschrirenom@biblegateway.com","phone":"757-810-4691","gender":"Female","department":"Marketing","address":"08 Oxford Plaza","hire_date":"3/7/2018","website":"https://newyorker.com","notes":"cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna ac consequat","status":1,"type":2,"salary":"$310.95"}, {"id":888,"employee_id":"913978565-3","first_name":"Cary","last_name":"Nutty","email":"cnuttyon@zimbio.com","phone":"906-633-9244","gender":"Male","department":"Support","address":"893 Melrose Circle","hire_date":"4/15/2018","website":"https://businessweek.com","notes":"enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa id","status":5,"type":1,"salary":"$1885.07"}, {"id":889,"employee_id":"852709101-1","first_name":"Marys","last_name":"Colling","email":"mcollingoo@weather.com","phone":"953-749-3087","gender":"Female","department":"Training","address":"87987 Duke Lane","hire_date":"9/28/2017","website":"https://blogtalkradio.com","notes":"justo morbi ut odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices enim","status":5,"type":2,"salary":"$2235.04"}, {"id":890,"employee_id":"291123541-X","first_name":"Peggy","last_name":"Flockhart","email":"pflockhartop@bing.com","phone":"415-872-2156","gender":"Female","department":"Support","address":"1 Jay Avenue","hire_date":"4/14/2018","website":"http://fastcompany.com","notes":"nec nisi volutpat eleifend donec ut dolor morbi vel lectus in","status":1,"type":3,"salary":"$1097.99"}, {"id":891,"employee_id":"061820725-2","first_name":"Em","last_name":"Trippett","email":"etrippettoq@reverbnation.com","phone":"838-745-0517","gender":"Male","department":"Accounting","address":"71881 Warrior Circle","hire_date":"11/25/2017","website":"http://marketwatch.com","notes":"leo odio porttitor id consequat in consequat ut nulla sed accumsan felis ut at dolor quis odio consequat varius integer","status":4,"type":1,"salary":"$1944.75"}, {"id":892,"employee_id":"246309066-9","first_name":"Benedikta","last_name":"Anelay","email":"banelayor@wired.com","phone":"402-214-4561","gender":"Female","department":"Legal","address":"6996 Magdeline Trail","hire_date":"9/16/2017","website":"https://spotify.com","notes":"non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit","status":5,"type":1,"salary":"$2424.53"}, {"id":893,"employee_id":"340359317-7","first_name":"Emma","last_name":"Fidoe","email":"efidoeos@nyu.edu","phone":"499-385-6103","gender":"Female","department":"Accounting","address":"1 Springs Junction","hire_date":"1/17/2018","website":"https://bloglines.com","notes":"a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet","status":1,"type":2,"salary":"$1109.61"}, {"id":894,"employee_id":"647906622-7","first_name":"Derwin","last_name":"Cuffe","email":"dcuffeot@washington.edu","phone":"386-529-5089","gender":"Male","department":"Accounting","address":"9404 Kedzie Point","hire_date":"5/8/2018","website":"https://topsy.com","notes":"ante vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris eget massa","status":4,"type":3,"salary":"$784.33"}, {"id":895,"employee_id":"734537898-5","first_name":"Cheston","last_name":"Laherty","email":"clahertyou@sphinn.com","phone":"237-651-6840","gender":"Male","department":"Accounting","address":"136 Bowman Way","hire_date":"6/21/2018","website":"http://last.fm","notes":"massa tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu nibh quisque id","status":1,"type":3,"salary":"$1384.83"}, {"id":896,"employee_id":"517246133-7","first_name":"Francklyn","last_name":"Tellesson","email":"ftellessonov@sbwire.com","phone":"431-989-9730","gender":"Male","department":"Engineering","address":"8663 Grover Pass","hire_date":"2/10/2018","website":"https://exblog.jp","notes":"id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in","status":1,"type":1,"salary":"$515.07"}, {"id":897,"employee_id":"244720621-6","first_name":"Rossy","last_name":"Rubinowicz","email":"rrubinowiczow@privacy.gov.au","phone":"128-751-6213","gender":"Male","department":"Sales","address":"6 Park Meadow Drive","hire_date":"7/18/2018","website":"http://360.cn","notes":"eros suspendisse accumsan tortor quis turpis sed ante vivamus tortor duis mattis egestas metus","status":5,"type":1,"salary":"$1665.47"}, {"id":898,"employee_id":"239166941-0","first_name":"Whitman","last_name":"Klezmski","email":"wklezmskiox@phpbb.com","phone":"833-785-5590","gender":"Male","department":"Training","address":"2 American Ash Court","hire_date":"5/20/2018","website":"http://mayoclinic.com","notes":"posuere nonummy integer non velit donec diam neque vestibulum eget","status":2,"type":2,"salary":"$2110.09"}, {"id":899,"employee_id":"289033043-5","first_name":"Ivory","last_name":"Witcombe","email":"iwitcombeoy@mysql.com","phone":"195-438-5956","gender":"Female","department":"Support","address":"4652 Maywood Circle","hire_date":"6/10/2018","website":"http://toplist.cz","notes":"orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam","status":4,"type":1,"salary":"$1509.44"}, {"id":900,"employee_id":"735454334-9","first_name":"Marcelia","last_name":"Scrannage","email":"mscrannageoz@phpbb.com","phone":"867-246-0019","gender":"Female","department":"Product Management","address":"798 Gulseth Way","hire_date":"6/16/2018","website":"https://bloglovin.com","notes":"vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus","status":6,"type":3,"salary":"$2235.67"}, {"id":901,"employee_id":"628040894-9","first_name":"Ariel","last_name":"Schiefersten","email":"aschieferstenp0@earthlink.net","phone":"576-850-5308","gender":"Female","department":"Marketing","address":"28 Westend Terrace","hire_date":"8/11/2017","website":"https://cnbc.com","notes":"vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum neque sapien placerat","status":3,"type":3,"salary":"$1638.83"}, {"id":902,"employee_id":"417689860-7","first_name":"Neala","last_name":"Schofield","email":"nschofieldp1@earthlink.net","phone":"827-705-9400","gender":"Female","department":"Training","address":"4989 Orin Plaza","hire_date":"1/27/2018","website":"http://bloomberg.com","notes":"eget tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in","status":6,"type":3,"salary":"$1248.12"}, {"id":903,"employee_id":"678441197-8","first_name":"Ody","last_name":"Craster","email":"ocrasterp2@histats.com","phone":"982-198-5117","gender":"Male","department":"Accounting","address":"44477 Ridgeview Junction","hire_date":"4/1/2018","website":"http://rambler.ru","notes":"dapibus duis at velit eu est congue elementum in hac habitasse platea","status":2,"type":1,"salary":"$714.64"}, {"id":904,"employee_id":"601468081-0","first_name":"Frazer","last_name":"Joinsey","email":"fjoinseyp3@sogou.com","phone":"826-605-9383","gender":"Male","department":"Sales","address":"5219 Village Green Center","hire_date":"9/20/2017","website":"http://devhub.com","notes":"mi nulla ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem","status":3,"type":3,"salary":"$1477.02"}, {"id":905,"employee_id":"182272871-1","first_name":"Euell","last_name":"Parsand","email":"eparsandp4@answers.com","phone":"695-370-0261","gender":"Male","department":"Accounting","address":"8355 Upham Way","hire_date":"12/7/2017","website":"https://myspace.com","notes":"est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien","status":6,"type":2,"salary":"$1642.29"}, {"id":906,"employee_id":"123091226-6","first_name":"Gloriane","last_name":"Boatswain","email":"gboatswainp5@1688.com","phone":"284-454-8780","gender":"Female","department":"Human Resources","address":"31 Sunnyside Place","hire_date":"4/21/2018","website":"http://acquirethisname.com","notes":"sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere","status":5,"type":1,"salary":"$382.88"}, {"id":907,"employee_id":"910029012-2","first_name":"Cymbre","last_name":"Josefson","email":"cjosefsonp6@dot.gov","phone":"965-996-9224","gender":"Female","department":"Services","address":"678 Sauthoff Circle","hire_date":"10/16/2017","website":"https://mysql.com","notes":"scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at","status":4,"type":2,"salary":"$2055.21"}, {"id":908,"employee_id":"326145281-1","first_name":"Hiram","last_name":"Server","email":"hserverp7@e-recht24.de","phone":"713-883-2136","gender":"Male","department":"Legal","address":"647 Crowley Road","hire_date":"9/7/2017","website":"http://pagesperso-orange.fr","notes":"ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing","status":4,"type":2,"salary":"$1835.86"}, {"id":909,"employee_id":"822859393-7","first_name":"Olin","last_name":"Blanpein","email":"oblanpeinp8@desdev.cn","phone":"330-588-2934","gender":"Male","department":"Sales","address":"2 Merry Avenue","hire_date":"9/28/2017","website":"https://altervista.org","notes":"pede lobortis ligula sit amet eleifend pede libero quis orci nullam molestie nibh in","status":1,"type":3,"salary":"$1559.85"}, {"id":910,"employee_id":"622152688-4","first_name":"Roderic","last_name":"Goldthorpe","email":"rgoldthorpep9@nba.com","phone":"337-140-9491","gender":"Male","department":"Accounting","address":"462 Talmadge Plaza","hire_date":"9/23/2017","website":"http://webs.com","notes":"ut volutpat sapien arcu sed augue aliquam erat volutpat in","status":5,"type":1,"salary":"$2497.67"}, {"id":911,"employee_id":"081619141-7","first_name":"Dimitri","last_name":"Birkmyre","email":"dbirkmyrepa@surveymonkey.com","phone":"342-895-5184","gender":"Male","department":"Accounting","address":"0 Mcbride Park","hire_date":"8/27/2017","website":"http://ow.ly","notes":"non velit donec diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus","status":2,"type":3,"salary":"$281.75"}, {"id":912,"employee_id":"782208639-1","first_name":"Riobard","last_name":"Beatey","email":"rbeateypb@blog.com","phone":"162-210-1893","gender":"Male","department":"Accounting","address":"9 Green Ridge Alley","hire_date":"2/22/2018","website":"https://bing.com","notes":"in faucibus orci luctus et ultrices posuere cubilia curae donec","status":1,"type":2,"salary":"$1265.73"}, {"id":913,"employee_id":"660920982-0","first_name":"Natalya","last_name":"Hinze","email":"nhinzepc@angelfire.com","phone":"732-647-5264","gender":"Female","department":"Legal","address":"7 Larry Park","hire_date":"12/1/2017","website":"https://weibo.com","notes":"volutpat eleifend donec ut dolor morbi vel lectus in quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit amet","status":4,"type":2,"salary":"$1530.93"}, {"id":914,"employee_id":"432319797-7","first_name":"Chickie","last_name":"Mounfield","email":"cmounfieldpd@nba.com","phone":"560-730-2512","gender":"Female","department":"Training","address":"51236 Holy Cross Trail","hire_date":"10/28/2017","website":"https://shutterfly.com","notes":"convallis nunc proin at turpis a pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut ultrices","status":5,"type":1,"salary":"$2235.54"}, {"id":915,"employee_id":"406004760-0","first_name":"See","last_name":"Jeenes","email":"sjeenespe@arizona.edu","phone":"268-712-4165","gender":"Male","department":"Engineering","address":"230 Nova Street","hire_date":"10/20/2017","website":"https://goo.gl","notes":"sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis","status":2,"type":3,"salary":"$1222.20"}, {"id":916,"employee_id":"047059394-6","first_name":"Vassili","last_name":"Capener","email":"vcapenerpf@t.co","phone":"986-924-0785","gender":"Male","department":"Human Resources","address":"61178 Scofield Trail","hire_date":"8/25/2017","website":"https://washingtonpost.com","notes":"cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a feugiat et","status":5,"type":3,"salary":"$1949.74"}, {"id":917,"employee_id":"180396440-5","first_name":"Bill","last_name":"Larvent","email":"blarventpg@naver.com","phone":"529-947-5325","gender":"Male","department":"Business Development","address":"44 Hansons Park","hire_date":"8/30/2017","website":"https://hud.gov","notes":"eget congue eget semper rutrum nulla nunc purus phasellus in felis donec semper sapien a libero nam dui proin","status":4,"type":2,"salary":"$841.10"}, {"id":918,"employee_id":"283546824-2","first_name":"Basile","last_name":"Digges","email":"bdiggesph@myspace.com","phone":"206-710-6581","gender":"Male","department":"Research and Development","address":"083 Hanson Avenue","hire_date":"1/18/2018","website":"http://simplemachines.org","notes":"sed magna at nunc commodo placerat praesent blandit nam nulla integer pede","status":2,"type":2,"salary":"$586.02"}, {"id":919,"employee_id":"347048793-6","first_name":"Nissy","last_name":"Di Boldi","email":"ndiboldipi@state.gov","phone":"166-264-1516","gender":"Female","department":"Legal","address":"92 Dixon Center","hire_date":"8/14/2017","website":"https://domainmarket.com","notes":"duis consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel lectus in quam fringilla rhoncus mauris enim","status":2,"type":2,"salary":"$1528.40"}, {"id":920,"employee_id":"954552593-2","first_name":"Fraze","last_name":"Zamora","email":"fzamorapj@google.nl","phone":"149-538-9076","gender":"Male","department":"Human Resources","address":"4 Linden Trail","hire_date":"1/19/2018","website":"http://theglobeandmail.com","notes":"orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi","status":6,"type":2,"salary":"$1091.36"}, {"id":921,"employee_id":"120102828-0","first_name":"Cecilla","last_name":"Gorrie","email":"cgorriepk@auda.org.au","phone":"513-939-0970","gender":"Female","department":"Product Management","address":"384 Clarendon Center","hire_date":"1/20/2018","website":"https://economist.com","notes":"consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel","status":1,"type":1,"salary":"$525.41"}, {"id":922,"employee_id":"920174569-9","first_name":"Annalise","last_name":"Kerins","email":"akerinspl@surveymonkey.com","phone":"545-661-7432","gender":"Female","department":"Marketing","address":"6522 Reindahl Plaza","hire_date":"8/3/2017","website":"https://wordpress.com","notes":"morbi odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet","status":3,"type":3,"salary":"$905.14"}, {"id":923,"employee_id":"784253584-1","first_name":"Lamar","last_name":"Livingston","email":"llivingstonpm@mail.ru","phone":"709-300-9506","gender":"Male","department":"Services","address":"18117 Reindahl Junction","hire_date":"1/13/2018","website":"http://dagondesign.com","notes":"rhoncus mauris enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa","status":4,"type":3,"salary":"$2443.20"}, {"id":924,"employee_id":"988584613-1","first_name":"Helaina","last_name":"Alenov","email":"halenovpn@4shared.com","phone":"572-441-0032","gender":"Female","department":"Services","address":"469 Manitowish Center","hire_date":"5/10/2018","website":"http://foxnews.com","notes":"placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros","status":4,"type":1,"salary":"$560.67"}, {"id":925,"employee_id":"049938321-4","first_name":"Brocky","last_name":"Tuite","email":"btuitepo@gmpg.org","phone":"512-393-7521","gender":"Male","department":"Services","address":"408 Fairview Hill","hire_date":"7/1/2018","website":"https://myspace.com","notes":"turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis","status":3,"type":3,"salary":"$2028.73"}, {"id":926,"employee_id":"902267560-2","first_name":"Urbanus","last_name":"Ambrogi","email":"uambrogipp@dailymotion.com","phone":"232-264-1680","gender":"Male","department":"Engineering","address":"0 Thierer Circle","hire_date":"4/3/2018","website":"https://infoseek.co.jp","notes":"amet erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor","status":2,"type":2,"salary":"$1764.44"}, {"id":927,"employee_id":"991397372-4","first_name":"Cissy","last_name":"Anmore","email":"canmorepq@cpanel.net","phone":"202-901-2748","gender":"Female","department":"Human Resources","address":"80876 Amoth Place","hire_date":"9/30/2017","website":"https://taobao.com","notes":"cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum","status":2,"type":2,"salary":"$2243.19"}, {"id":928,"employee_id":"102182510-7","first_name":"Gaven","last_name":"MacTrustey","email":"gmactrusteypr@go.com","phone":"654-262-2808","gender":"Male","department":"Legal","address":"04978 Kensington Alley","hire_date":"2/13/2018","website":"https://ask.com","notes":"eleifend pede libero quis orci nullam molestie nibh in lectus pellentesque at nulla suspendisse potenti cras","status":5,"type":3,"salary":"$2414.43"}, {"id":929,"employee_id":"094556174-1","first_name":"Lawrence","last_name":"Lloyds","email":"llloydsps@sogou.com","phone":"858-645-8381","gender":"Male","department":"Marketing","address":"602 Division Lane","hire_date":"3/2/2018","website":"https://patch.com","notes":"at turpis a pede posuere nonummy integer non velit donec diam","status":2,"type":1,"salary":"$1515.11"}, {"id":930,"employee_id":"391075695-6","first_name":"Kleon","last_name":"Hawket","email":"khawketpt@reference.com","phone":"129-947-4020","gender":"Male","department":"Product Management","address":"4501 Ronald Regan Pass","hire_date":"1/21/2018","website":"http://google.ru","notes":"lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus","status":2,"type":2,"salary":"$1414.43"}, {"id":931,"employee_id":"131408718-5","first_name":"Casar","last_name":"Willers","email":"cwillerspu@example.com","phone":"768-642-6411","gender":"Male","department":"Training","address":"3 Clemons Pass","hire_date":"5/9/2018","website":"https://dyndns.org","notes":"risus dapibus augue vel accumsan tellus nisi eu orci mauris lacinia sapien","status":6,"type":1,"salary":"$396.91"}, {"id":932,"employee_id":"555033377-5","first_name":"Marcia","last_name":"Wasling","email":"mwaslingpv@china.com.cn","phone":"337-344-8789","gender":"Female","department":"Research and Development","address":"4 Merrick Alley","hire_date":"4/27/2018","website":"http://paypal.com","notes":"imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce","status":4,"type":2,"salary":"$640.93"}, {"id":933,"employee_id":"581222296-7","first_name":"Samuel","last_name":"Alenov","email":"salenovpw@moonfruit.com","phone":"348-435-6018","gender":"Male","department":"Marketing","address":"0 Carpenter Point","hire_date":"10/11/2017","website":"http://ihg.com","notes":"nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi","status":6,"type":1,"salary":"$1490.27"}, {"id":934,"employee_id":"778142125-6","first_name":"Auberta","last_name":"Scase","email":"ascasepx@imdb.com","phone":"787-786-1888","gender":"Female","department":"Engineering","address":"39926 Hollow Ridge Center","hire_date":"3/17/2018","website":"https://examiner.com","notes":"bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede","status":2,"type":1,"salary":"$937.82"}, {"id":935,"employee_id":"736149611-3","first_name":"Twila","last_name":"Yousef","email":"tyousefpy@discuz.net","phone":"168-625-3515","gender":"Female","department":"Sales","address":"85 Eggendart Lane","hire_date":"8/4/2017","website":"http://feedburner.com","notes":"aenean fermentum donec ut mauris eget massa tempor convallis nulla neque","status":5,"type":1,"salary":"$2163.57"}, {"id":936,"employee_id":"910688087-8","first_name":"Rhona","last_name":"Skate","email":"rskatepz@discovery.com","phone":"865-106-4351","gender":"Female","department":"Engineering","address":"327 Duke Pass","hire_date":"9/17/2017","website":"http://ucoz.com","notes":"ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit","status":3,"type":2,"salary":"$1706.28"}, {"id":937,"employee_id":"248948482-6","first_name":"Hilario","last_name":"Hefford","email":"hheffordq0@list-manage.com","phone":"190-986-6387","gender":"Male","department":"Support","address":"355 Hallows Center","hire_date":"7/25/2017","website":"http://sina.com.cn","notes":"quam a odio in hac habitasse platea dictumst maecenas ut massa quis","status":6,"type":2,"salary":"$791.03"}, {"id":938,"employee_id":"679369811-7","first_name":"Nomi","last_name":"Gascone","email":"ngasconeq1@simplemachines.org","phone":"116-610-1692","gender":"Female","department":"Product Management","address":"58021 Mesta Drive","hire_date":"3/30/2018","website":"http://people.com.cn","notes":"massa donec dapibus duis at velit eu est congue elementum","status":2,"type":1,"salary":"$1925.68"}, {"id":939,"employee_id":"419630112-6","first_name":"Les","last_name":"Vaar","email":"lvaarq2@oakley.com","phone":"278-817-5498","gender":"Male","department":"Marketing","address":"1564 Sage Point","hire_date":"6/29/2018","website":"http://cam.ac.uk","notes":"integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi","status":5,"type":3,"salary":"$2379.48"}, {"id":940,"employee_id":"975095812-8","first_name":"Melicent","last_name":"Hassell","email":"mhassellq3@networksolutions.com","phone":"617-316-4628","gender":"Female","department":"Legal","address":"2845 Barnett Avenue","hire_date":"2/3/2018","website":"http://ucoz.com","notes":"tortor risus dapibus augue vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero nullam sit","status":4,"type":2,"salary":"$2427.08"}, {"id":941,"employee_id":"312852638-9","first_name":"Breena","last_name":"Scranney","email":"bscranneyq4@gmpg.org","phone":"103-742-8337","gender":"Female","department":"Support","address":"83 Del Mar Street","hire_date":"5/12/2018","website":"http://parallels.com","notes":"integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem","status":3,"type":2,"salary":"$2473.28"}, {"id":942,"employee_id":"664027710-7","first_name":"Mitchel","last_name":"Ashingden","email":"mashingdenq5@jimdo.com","phone":"680-971-9551","gender":"Male","department":"Services","address":"52259 Tomscot Point","hire_date":"11/17/2017","website":"http://globo.com","notes":"cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus","status":1,"type":2,"salary":"$1456.29"}, {"id":943,"employee_id":"669043116-9","first_name":"Diena","last_name":"Kilroy","email":"dkilroyq6@blog.com","phone":"500-474-5258","gender":"Female","department":"Human Resources","address":"0 Rowland Street","hire_date":"4/14/2018","website":"http://goo.gl","notes":"in lectus pellentesque at nulla suspendisse potenti cras in purus","status":2,"type":2,"salary":"$1964.78"}, {"id":944,"employee_id":"231599768-2","first_name":"Birgitta","last_name":"Creedland","email":"bcreedlandq7@shinystat.com","phone":"885-813-9256","gender":"Female","department":"Research and Development","address":"2604 Eastwood Hill","hire_date":"2/7/2018","website":"https://g.co","notes":"adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a","status":3,"type":3,"salary":"$273.43"}, {"id":945,"employee_id":"718392098-4","first_name":"Chelsie","last_name":"Blazeby","email":"cblazebyq8@myspace.com","phone":"455-370-2509","gender":"Female","department":"Engineering","address":"4488 Pennsylvania Hill","hire_date":"6/1/2018","website":"https://oaic.gov.au","notes":"sagittis nam congue risus semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero quis orci nullam","status":1,"type":2,"salary":"$1532.30"}, {"id":946,"employee_id":"730262510-7","first_name":"Kip","last_name":"Yglesias","email":"kyglesiasq9@mediafire.com","phone":"744-205-9308","gender":"Male","department":"Services","address":"2618 Sauthoff Circle","hire_date":"1/8/2018","website":"http://sciencedaily.com","notes":"lorem quisque ut erat curabitur gravida nisi at nibh in hac habitasse","status":3,"type":2,"salary":"$2255.08"}, {"id":947,"employee_id":"409668021-4","first_name":"Arte","last_name":"Mityukov","email":"amityukovqa@simplemachines.org","phone":"662-302-6515","gender":"Male","department":"Product Management","address":"2098 Sage Terrace","hire_date":"4/27/2018","website":"http://angelfire.com","notes":"odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices enim lorem","status":2,"type":3,"salary":"$1715.17"}, {"id":948,"employee_id":"251173974-7","first_name":"Wini","last_name":"Dorian","email":"wdorianqb@netlog.com","phone":"490-887-4082","gender":"Female","department":"Services","address":"93 Milwaukee Parkway","hire_date":"11/10/2017","website":"https://yellowbook.com","notes":"ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel","status":4,"type":2,"salary":"$1795.30"}, {"id":949,"employee_id":"026173862-3","first_name":"Brana","last_name":"Koppes","email":"bkoppesqc@g.co","phone":"968-368-9173","gender":"Female","department":"Human Resources","address":"59 Waubesa Junction","hire_date":"4/9/2018","website":"https://google.es","notes":"curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla quisque arcu libero rutrum ac","status":2,"type":3,"salary":"$679.08"}, {"id":950,"employee_id":"669220838-6","first_name":"Karry","last_name":"Perkins","email":"kperkinsqd@blogspot.com","phone":"484-507-3283","gender":"Female","department":"Business Development","address":"1 Nevada Terrace","hire_date":"7/29/2017","website":"http://issuu.com","notes":"praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit nam nulla integer","status":5,"type":3,"salary":"$1679.37"}, {"id":951,"employee_id":"762086972-7","first_name":"Shepperd","last_name":"Hazlewood","email":"shazlewoodqe@g.co","phone":"311-254-3012","gender":"Male","department":"Accounting","address":"5427 Cardinal Plaza","hire_date":"6/21/2018","website":"https://whitehouse.gov","notes":"sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus","status":3,"type":3,"salary":"$1217.62"}, {"id":952,"employee_id":"418422991-3","first_name":"Sergei","last_name":"Juckes","email":"sjuckesqf@technorati.com","phone":"486-896-2040","gender":"Male","department":"Sales","address":"50 Leroy Avenue","hire_date":"8/14/2017","website":"http://zdnet.com","notes":"vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet lobortis sapien sapien non mi integer ac neque duis bibendum morbi","status":3,"type":2,"salary":"$2488.72"}, {"id":953,"employee_id":"393004703-9","first_name":"Renaldo","last_name":"Pearson","email":"rpearsonqg@adobe.com","phone":"921-422-0993","gender":"Male","department":"Product Management","address":"9 Lighthouse Bay Street","hire_date":"7/18/2018","website":"http://dion.ne.jp","notes":"aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean","status":6,"type":3,"salary":"$970.25"}, {"id":954,"employee_id":"557626711-7","first_name":"Lucila","last_name":"Carles","email":"lcarlesqh@parallels.com","phone":"793-968-2100","gender":"Female","department":"Services","address":"0263 Oriole Park","hire_date":"7/8/2018","website":"https://wufoo.com","notes":"vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus","status":4,"type":1,"salary":"$960.36"}, {"id":955,"employee_id":"172444633-9","first_name":"Tedie","last_name":"Ginnell","email":"tginnellqi@youtu.be","phone":"589-792-0068","gender":"Male","department":"Services","address":"5772 Division Park","hire_date":"8/22/2017","website":"https://nature.com","notes":"eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec euismod scelerisque quam","status":2,"type":1,"salary":"$311.19"}, {"id":956,"employee_id":"037254971-3","first_name":"Carce","last_name":"Sheircliffe","email":"csheircliffeqj@craigslist.org","phone":"623-714-6450","gender":"Male","department":"Support","address":"09 Merry Way","hire_date":"12/20/2017","website":"http://exblog.jp","notes":"imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi","status":1,"type":1,"salary":"$1905.11"}, {"id":957,"employee_id":"007863387-7","first_name":"Mellisa","last_name":"Pentland","email":"mpentlandqk@flavors.me","phone":"631-934-5783","gender":"Female","department":"Services","address":"93095 1st Junction","hire_date":"1/5/2018","website":"http://ycombinator.com","notes":"nunc proin at turpis a pede posuere nonummy integer non velit","status":4,"type":1,"salary":"$839.00"}, {"id":958,"employee_id":"610993337-6","first_name":"Wilden","last_name":"Edinborough","email":"wedinboroughql@lulu.com","phone":"903-407-0431","gender":"Male","department":"Training","address":"71371 Kropf Crossing","hire_date":"12/2/2017","website":"https://comsenz.com","notes":"faucibus cursus urna ut tellus nulla ut erat id mauris vulputate elementum nullam varius nulla facilisi cras non velit","status":5,"type":1,"salary":"$1278.54"}, {"id":959,"employee_id":"311880498-X","first_name":"Marjie","last_name":"Hanssmann","email":"mhanssmannqm@myspace.com","phone":"718-670-6224","gender":"Female","department":"Marketing","address":"9 Sunbrook Place","hire_date":"8/30/2017","website":"http://ucoz.ru","notes":"convallis nunc proin at turpis a pede posuere nonummy integer non velit donec diam","status":5,"type":3,"salary":"$1962.65"}, {"id":960,"employee_id":"403658203-8","first_name":"Cary","last_name":"Trayford","email":"ctrayfordqn@globo.com","phone":"585-236-7329","gender":"Female","department":"Sales","address":"766 Alpine Avenue","hire_date":"9/27/2017","website":"http://surveymonkey.com","notes":"at nulla suspendisse potenti cras in purus eu magna vulputate","status":2,"type":3,"salary":"$1927.79"}, {"id":961,"employee_id":"871186561-X","first_name":"Dominica","last_name":"Feehely","email":"dfeehelyqo@goo.gl","phone":"418-146-9893","gender":"Female","department":"Product Management","address":"163 Weeping Birch Drive","hire_date":"6/16/2018","website":"http://github.com","notes":"quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum","status":5,"type":3,"salary":"$344.23"}, {"id":962,"employee_id":"464431218-5","first_name":"Ilyssa","last_name":"Van der Hoeven","email":"ivanderhoevenqp@qq.com","phone":"740-535-7157","gender":"Female","department":"Accounting","address":"3 Huxley Point","hire_date":"7/13/2018","website":"https://eventbrite.com","notes":"phasellus id sapien in sapien iaculis congue vivamus metus arcu","status":3,"type":1,"salary":"$2135.61"}, {"id":963,"employee_id":"802727037-5","first_name":"Don","last_name":"Woffinden","email":"dwoffindenqq@kickstarter.com","phone":"815-956-1326","gender":"Male","department":"Marketing","address":"8 Fairview Street","hire_date":"5/3/2018","website":"https://tuttocitta.it","notes":"feugiat et eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam","status":2,"type":1,"salary":"$1928.24"}, {"id":964,"employee_id":"939154702-8","first_name":"Clovis","last_name":"Leindecker","email":"cleindeckerqr@rakuten.co.jp","phone":"581-992-5821","gender":"Female","department":"Business Development","address":"7003 Nova Parkway","hire_date":"3/31/2018","website":"https://simplemachines.org","notes":"nulla sed accumsan felis ut at dolor quis odio consequat varius integer ac leo pellentesque ultrices mattis odio","status":4,"type":1,"salary":"$1101.46"}, {"id":965,"employee_id":"977079512-7","first_name":"Row","last_name":"Curtin","email":"rcurtinqs@pcworld.com","phone":"366-505-1893","gender":"Female","department":"Legal","address":"37626 Butterfield Court","hire_date":"3/12/2018","website":"https://yellowbook.com","notes":"nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan tortor quis turpis","status":3,"type":2,"salary":"$734.46"}, {"id":966,"employee_id":"056387772-3","first_name":"Lesli","last_name":"Northey","email":"lnortheyqt@mediafire.com","phone":"834-818-7685","gender":"Female","department":"Research and Development","address":"1819 Northwestern Place","hire_date":"4/21/2018","website":"https://pagesperso-orange.fr","notes":"nulla ut erat id mauris vulputate elementum nullam varius nulla","status":2,"type":3,"salary":"$1675.32"}, {"id":967,"employee_id":"605313562-3","first_name":"Lamont","last_name":"Bunn","email":"lbunnqu@java.com","phone":"450-703-5969","gender":"Male","department":"Support","address":"75 Dayton Road","hire_date":"5/29/2018","website":"https://adobe.com","notes":"eu sapien cursus vestibulum proin eu mi nulla ac enim","status":5,"type":3,"salary":"$1506.99"}, {"id":968,"employee_id":"343791568-1","first_name":"Steve","last_name":"Pawellek","email":"spawellekqv@usda.gov","phone":"144-500-5254","gender":"Male","department":"Support","address":"1187 Glacier Hill Hill","hire_date":"8/8/2017","website":"https://netvibes.com","notes":"a ipsum integer a nibh in quis justo maecenas rhoncus aliquam","status":2,"type":1,"salary":"$1337.06"}, {"id":969,"employee_id":"520606017-8","first_name":"Ody","last_name":"Casterton","email":"ocastertonqw@goo.ne.jp","phone":"512-527-3787","gender":"Male","department":"Sales","address":"748 Fallview Drive","hire_date":"5/31/2018","website":"https://smh.com.au","notes":"sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum","status":1,"type":2,"salary":"$2356.26"}, {"id":970,"employee_id":"876243880-8","first_name":"Aldus","last_name":"Scrimgeour","email":"ascrimgeourqx@wufoo.com","phone":"851-634-3915","gender":"Male","department":"Engineering","address":"30579 Bunker Hill Point","hire_date":"11/3/2017","website":"https://bluehost.com","notes":"ligula suspendisse ornare consequat lectus in est risus auctor sed tristique","status":1,"type":3,"salary":"$1699.96"}, {"id":971,"employee_id":"680532532-3","first_name":"Addi","last_name":"Haydon","email":"ahaydonqy@acquirethisname.com","phone":"567-229-6507","gender":"Female","department":"Sales","address":"451 Mayer Trail","hire_date":"7/7/2018","website":"https://addtoany.com","notes":"nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac diam cras","status":1,"type":1,"salary":"$804.36"}, {"id":972,"employee_id":"971576765-6","first_name":"Vernen","last_name":"Welbeck","email":"vwelbeckqz@cocolog-nifty.com","phone":"557-652-6455","gender":"Male","department":"Research and Development","address":"02 Pleasure Drive","hire_date":"12/24/2017","website":"https://php.net","notes":"turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a","status":2,"type":1,"salary":"$1893.89"}, {"id":973,"employee_id":"645560109-2","first_name":"Melli","last_name":"Jentzsch","email":"mjentzschr0@livejournal.com","phone":"320-961-5015","gender":"Female","department":"Support","address":"30457 Kings Plaza","hire_date":"7/20/2017","website":"http://yahoo.com","notes":"nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo","status":4,"type":1,"salary":"$601.90"}, {"id":974,"employee_id":"888672351-2","first_name":"Algernon","last_name":"Tweedle","email":"atweedler1@oracle.com","phone":"804-263-5735","gender":"Male","department":"Business Development","address":"978 Dorton Alley","hire_date":"1/31/2018","website":"https://tinyurl.com","notes":"luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis","status":5,"type":1,"salary":"$1415.96"}, {"id":975,"employee_id":"981656239-1","first_name":"Gilly","last_name":"Hallatt","email":"ghallattr2@china.com.cn","phone":"501-263-2764","gender":"Female","department":"Marketing","address":"3836 Anzinger Terrace","hire_date":"4/11/2018","website":"http://taobao.com","notes":"consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum","status":1,"type":2,"salary":"$2471.44"}, {"id":976,"employee_id":"615969001-9","first_name":"Rikki","last_name":"Galley","email":"rgalleyr3@imageshack.us","phone":"130-690-7439","gender":"Female","department":"Business Development","address":"52 Talmadge Hill","hire_date":"10/10/2017","website":"https://jalbum.net","notes":"et ultrices posuere cubilia curae mauris viverra diam vitae quam","status":4,"type":3,"salary":"$1090.85"}, {"id":977,"employee_id":"022321369-1","first_name":"Gaye","last_name":"Ranger","email":"grangerr4@fema.gov","phone":"671-189-2403","gender":"Female","department":"Engineering","address":"35 Donald Junction","hire_date":"2/3/2018","website":"https://g.co","notes":"sed nisl nunc rhoncus dui vel sem sed sagittis nam congue risus semper porta volutpat quam pede lobortis ligula","status":3,"type":2,"salary":"$1481.67"}, {"id":978,"employee_id":"008938404-0","first_name":"Tommie","last_name":"Reace","email":"treacer5@ucla.edu","phone":"786-291-3851","gender":"Female","department":"Business Development","address":"873 Superior Plaza","hire_date":"2/14/2018","website":"https://amazon.de","notes":"metus aenean fermentum donec ut mauris eget massa tempor convallis nulla neque libero convallis eget","status":6,"type":1,"salary":"$1046.10"}, {"id":979,"employee_id":"080841532-8","first_name":"Patti","last_name":"Sirman","email":"psirmanr6@forbes.com","phone":"332-411-3746","gender":"Female","department":"Marketing","address":"19 Nova Plaza","hire_date":"2/8/2018","website":"http://dell.com","notes":"felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc","status":3,"type":2,"salary":"$1291.83"}, {"id":980,"employee_id":"316441122-7","first_name":"Leo","last_name":"Oloshkin","email":"loloshkinr7@wikimedia.org","phone":"924-235-4010","gender":"Male","department":"Business Development","address":"20344 Columbus Plaza","hire_date":"7/15/2018","website":"http://imageshack.us","notes":"vel augue vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia","status":1,"type":2,"salary":"$1299.64"}, {"id":981,"employee_id":"942913030-7","first_name":"Marco","last_name":"Bezemer","email":"mbezemerr8@blogger.com","phone":"739-838-7322","gender":"Male","department":"Business Development","address":"99 Lien Way","hire_date":"4/16/2018","website":"https://rediff.com","notes":"vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus","status":6,"type":3,"salary":"$2186.06"}, {"id":982,"employee_id":"723635281-0","first_name":"Crissy","last_name":"Shoosmith","email":"cshoosmithr9@mediafire.com","phone":"339-935-3368","gender":"Female","department":"Services","address":"649 Bartelt Hill","hire_date":"2/3/2018","website":"http://cnbc.com","notes":"turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a pede posuere","status":1,"type":2,"salary":"$560.64"}, {"id":983,"employee_id":"724639902-X","first_name":"Georgiana","last_name":"Chartre","email":"gchartrera@t-online.de","phone":"772-156-4637","gender":"Female","department":"Business Development","address":"12 Derek Lane","hire_date":"11/6/2017","website":"https://miibeian.gov.cn","notes":"a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id","status":1,"type":3,"salary":"$1125.39"}, {"id":984,"employee_id":"539030881-6","first_name":"Ninetta","last_name":"Thorburn","email":"nthorburnrb@acquirethisname.com","phone":"130-745-1755","gender":"Female","department":"Accounting","address":"9373 High Crossing Pass","hire_date":"2/8/2018","website":"https://wix.com","notes":"eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet erat nulla tempus vivamus","status":5,"type":2,"salary":"$937.40"}, {"id":985,"employee_id":"250191052-4","first_name":"Julietta","last_name":"Canning","email":"jcanningrc@engadget.com","phone":"602-616-3819","gender":"Female","department":"Business Development","address":"6316 Schurz Parkway","hire_date":"6/13/2018","website":"https://reference.com","notes":"quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed","status":2,"type":3,"salary":"$1982.96"}, {"id":986,"employee_id":"090768281-2","first_name":"Cornie","last_name":"Alsop","email":"calsoprd@dropbox.com","phone":"749-584-3743","gender":"Female","department":"Human Resources","address":"02546 Spaight Place","hire_date":"6/24/2018","website":"http://technorati.com","notes":"non mauris morbi non lectus aliquam sit amet diam in magna bibendum","status":4,"type":2,"salary":"$1048.30"}, {"id":987,"employee_id":"438335362-2","first_name":"Linnea","last_name":"Tippin","email":"ltippinre@canalblog.com","phone":"853-711-1666","gender":"Female","department":"Marketing","address":"7331 Emmet Pass","hire_date":"12/30/2017","website":"https://cam.ac.uk","notes":"sapien sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla","status":6,"type":3,"salary":"$1261.24"}, {"id":988,"employee_id":"399525643-0","first_name":"Kathye","last_name":"Vinson","email":"kvinsonrf@rediff.com","phone":"774-672-3524","gender":"Female","department":"Sales","address":"22 Bonner Street","hire_date":"10/7/2017","website":"http://dyndns.org","notes":"integer non velit donec diam neque vestibulum eget vulputate ut ultrices vel","status":5,"type":2,"salary":"$1041.96"}, {"id":989,"employee_id":"425067933-0","first_name":"Kandace","last_name":"Hatter","email":"khatterrg@cafepress.com","phone":"631-169-9684","gender":"Female","department":"Research and Development","address":"709 Lien Road","hire_date":"5/26/2018","website":"https://bloglines.com","notes":"habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec","status":3,"type":3,"salary":"$1450.62"}, {"id":990,"employee_id":"786003350-X","first_name":"Kacie","last_name":"Rowson","email":"krowsonrh@chronoengine.com","phone":"333-530-2269","gender":"Female","department":"Engineering","address":"612 Thackeray Court","hire_date":"7/30/2017","website":"https://odnoklassniki.ru","notes":"nulla integer pede justo lacinia eget tincidunt eget tempus vel pede morbi","status":2,"type":3,"salary":"$552.57"}, {"id":991,"employee_id":"046546123-9","first_name":"Selby","last_name":"Gillimgham","email":"sgillimghamri@house.gov","phone":"469-918-1790","gender":"Male","department":"Accounting","address":"63767 Dwight Avenue","hire_date":"6/20/2018","website":"http://adobe.com","notes":"ut dolor morbi vel lectus in quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit","status":1,"type":2,"salary":"$1425.75"}, {"id":992,"employee_id":"206309950-2","first_name":"Lyon","last_name":"Gravenor","email":"lgravenorrj@ucsd.edu","phone":"807-329-4234","gender":"Male","department":"Support","address":"51713 Dorton Terrace","hire_date":"1/10/2018","website":"https://list-manage.com","notes":"sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci","status":1,"type":1,"salary":"$1735.57"}, {"id":993,"employee_id":"444851642-3","first_name":"Lynnell","last_name":"Drewes","email":"ldrewesrk@census.gov","phone":"540-267-8327","gender":"Female","department":"Legal","address":"0 Coolidge Drive","hire_date":"11/26/2017","website":"http://weibo.com","notes":"in est risus auctor sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis","status":3,"type":3,"salary":"$539.88"}, {"id":994,"employee_id":"085878174-3","first_name":"Alaric","last_name":"Marczyk","email":"amarczykrl@apple.com","phone":"616-684-3991","gender":"Male","department":"Engineering","address":"06514 Hollow Ridge Circle","hire_date":"8/5/2017","website":"https://ftc.gov","notes":"libero convallis eget eleifend luctus ultricies eu nibh quisque id justo sit","status":4,"type":1,"salary":"$2144.32"}, {"id":995,"employee_id":"740945020-7","first_name":"Tallie","last_name":"Keller","email":"tkellerrm@ustream.tv","phone":"678-664-1529","gender":"Male","department":"Product Management","address":"04209 Toban Park","hire_date":"5/20/2018","website":"https://nasa.gov","notes":"libero non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac nulla sed vel enim sit amet nunc","status":4,"type":1,"salary":"$2263.14"}, {"id":996,"employee_id":"796497559-5","first_name":"Buiron","last_name":"Alsina","email":"balsinarn@amazon.de","phone":"643-351-2865","gender":"Male","department":"Accounting","address":"522 Marcy Center","hire_date":"6/2/2018","website":"http://google.es","notes":"ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa id","status":3,"type":1,"salary":"$1306.20"}, {"id":997,"employee_id":"057599692-7","first_name":"Hall","last_name":"Cattell","email":"hcattellro@who.int","phone":"609-612-7472","gender":"Male","department":"Training","address":"9 Autumn Leaf Parkway","hire_date":"1/26/2018","website":"https://google.com","notes":"tortor quis turpis sed ante vivamus tortor duis mattis egestas metus aenean","status":4,"type":2,"salary":"$2065.65"}, {"id":998,"employee_id":"764038753-1","first_name":"Orton","last_name":"Davie","email":"odavierp@sbwire.com","phone":"245-526-0063","gender":"Male","department":"Research and Development","address":"4 Bellgrove Parkway","hire_date":"6/15/2018","website":"https://china.com.cn","notes":"a pede posuere nonummy integer non velit donec diam neque","status":4,"type":1,"salary":"$1616.21"}, {"id":999,"employee_id":"447607191-0","first_name":"Hortense","last_name":"Robez","email":"hrobezrq@tripadvisor.com","phone":"362-207-0143","gender":"Female","department":"Marketing","address":"657 Victoria Drive","hire_date":"3/16/2018","website":"http://eventbrite.com","notes":"ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci pede venenatis","status":3,"type":2,"salary":"$2095.85"}, {"id":1000,"employee_id":"588935146-X","first_name":"Cosette","last_name":"Jonson","email":"cjonsonrr@dailymotion.com","phone":"188-171-1078","gender":"Female","department":"Research and Development","address":"2372 Myrtle Drive","hire_date":"9/22/2017","website":"http://hugedomains.com","notes":"erat volutpat in congue etiam justo etiam pretium iaculis justo","status":5,"type":1,"salary":"$550.38"}]'
+ );
+
+ var modal = $('#kt_datatable_modal_2');
+
+ var datatable = $('#kt_datatable_2').KTDatatable({
+ // datasource definition
+ data: {
+ type: 'local',
+ source: dataJSONArray,
+ pageSize: 10,
+ },
+
+ // layout definition
+ layout: {
+ scroll: true, // enable/disable datatable scroll both horizontal and vertical when needed.
+ height: 400, // datatable's body's fixed height
+ minHeight: 400,
+ footer: false, // display/hide footer
+ },
+
+ // column sorting
+ sortable: true,
+
+ pagination: true,
+
+ search: {
+ input: modal.find('#kt_datatable_search_query_3'),
+ key: 'generalSearch'
+ },
+
+ // columns definition
+ columns: [{
+ field: 'id',
+ title: '#',
+ sortable: false,
+ width: 20,
+ type: 'number',
+ selector: {
+ class: ''
+ },
+ textAlign: 'center',
+ }, {
+ field: 'employee_id',
+ title: 'Employee ID',
+ }, {
+ field: 'name',
+ title: 'Name',
+ template: function(row) {
+ return row.first_name + ' ' + row.last_name;
+ },
+ }, {
+ field: 'hire_date',
+ title: 'Hire Date',
+ type: 'date',
+ format: 'MM/DD/YYYY',
+ }, {
+ field: 'gender',
+ title: 'Gender',
+ }, {
+ field: 'status',
+ title: 'Status',
+ // callback function support for column rendering
+ template: function(row) {
+ var status = {
+ 1: {
+ 'title': 'Pending',
+ 'class': 'label-light-primary'
+ },
+ 2: {
+ 'title': 'Delivered',
+ 'class': ' label-light-success'
+ },
+ 3: {
+ 'title': 'Canceled',
+ 'class': ' label-light-primary'
+ },
+ 4: {
+ 'title': 'Success',
+ 'class': ' label-light-success'
+ },
+ 5: {
+ 'title': 'Info',
+ 'class': ' label-light-info'
+ },
+ 6: {
+ 'title': 'Danger',
+ 'class': ' label-light-danger'
+ },
+ 7: {
+ 'title': 'Warning',
+ 'class': ' label-light-warning'
+ },
+ };
+ return '' + status[row.status].title + '';
+ },
+ }, {
+ field: 'type',
+ title: 'Type',
+ autoHide: false,
+ // callback function support for column rendering
+ template: function(row) {
+ var status = {
+ 1: {
+ 'title': 'Online',
+ 'state': 'danger'
+ },
+ 2: {
+ 'title': 'Retail',
+ 'state': 'primary'
+ },
+ 3: {
+ 'title': 'Direct',
+ 'state': 'accent'
+ },
+ };
+ return '' +
+ status[row.type].title + '';
+ },
+ }, {
+ field: 'Actions',
+ title: 'Actions',
+ sortable: false,
+ width: 125,
+ overflow: 'visible',
+ autoHide: false,
+ template: function() {
+ return '\
+
\
+ \
+ \
+ \
+ \
+ \
+ \
+ \
+ \
+ \
+ \
+ ';
+ },
+ }],
+
+ });
+
+ $('#kt_datatable_search_status_4').on('change', function() {
+ datatable.search($(this).val().toLowerCase(), 'Status');
+ });
+
+ $('#kt_datatable_search_type_4').on('change', function() {
+ datatable.search($(this).val().toLowerCase(), 'Type');
+ });
+
+ $('#kt_datatable_search_status_4, #kt_datatable_search_type_4').selectpicker();
+
+ // fix datatable layout after modal shown
+ datatable.hide();
+ var alreadyReloaded = false;
+ modal.on('shown.bs.modal', function() {
+ if (!alreadyReloaded) {
+ var modalContent = $(this).find('.modal-content');
+ datatable.spinnerCallback(true, modalContent);
+
+ datatable.reload();
+
+ datatable.on('datatable-on-layout-updated', function() {
+ datatable.show();
+ datatable.spinnerCallback(false, modalContent);
+ datatable.redraw();
+ });
+
+ alreadyReloaded = true;
+ }
+ });
+ };
+
+ return {
+ // public functions
+ init: function() {
+ initDatatable();
+ initDatatableModal2();
+ initDatatableModal3();
+ }
+ };
+}();
+
+jQuery(document).ready(function() {
+ KTDatatableModal.init();
+});
diff --git a/public/assets/js/pages/crud/ktdatatable/advanced/modal.min.js b/public/assets/js/pages/crud/ktdatatable/advanced/modal.min.js
new file mode 100644
index 0000000..3237825
--- /dev/null
+++ b/public/assets/js/pages/crud/ktdatatable/advanced/modal.min.js
@@ -0,0 +1 @@
+"use strict";var KTDatatableModal=function(){var e=function(e){var a=$("#kt_datatable_sub"),t=a.KTDatatable({data:{type:"remote",source:{read:{url:HOST_URL+"/api/datatables/demos/orders.php",params:{query:{generalSearch:"",CustomerID:e}}}},pageSize:10,serverPaging:!0,serverFiltering:!1,serverSorting:!0},layout:{theme:"default",scroll:!0,height:350,footer:!1},search:{input:a.find("#kt_datatable_search_query_2"),key:"generalSearch"},sortable:!0,columns:[{field:"RecordID",title:"#",sortable:!1,width:30},{field:"OrderID",title:"Order ID",template:function(e){return""+e.OrderID+" - "+e.ShipCountry+""}},{field:"ShipCountry",title:"Country",width:100},{field:"ShipAddress",title:"Ship Address"},{field:"ShipName",title:"Ship Name",autoHide:!1},{field:"TotalPayment",title:"Payment",type:"number"},{field:"Status",title:"Status",template:function(e){var a={1:{title:"Pending",class:"label-primary"},2:{title:"Delivered",class:" label-success"},3:{title:"Canceled",class:" label-primary"},4:{title:"Success",class:" label-success"},5:{title:"Info",class:" label-info"},6:{title:"Danger",class:" label-danger"},7:{title:"Warning",class:" label-warning"}};return''+a[e.Status].title+""}},{field:"Type",title:"Type",autoHide:!1,template:function(e){var a={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"accent"}};return' '+a[e.Type].title+""}}]}),s=t.closest(".modal");$("#kt_datatable_search_status_2").on("change",function(){t.search($(this).val().toLowerCase(),"Status")}),$("#kt_datatable_search_type_2").on("change",function(){t.search($(this).val().toLowerCase(),"Type")}),$("#kt_datatable_search_status_2, #kt_datatable_search_type_2").selectpicker(),t.hide(),s.on("shown.bs.modal",function(){var e=$(this).find(".modal-content");t.spinnerCallback(!0,e),t.spinnerCallback(!1,e)}).on("hidden.bs.modal",function(){a.KTDatatable("destroy")}),t.on("datatable-on-layout-updated",function(){t.show(),t.redraw()})};return{init:function(){!function(){var a=$("#kt_datatable"),t=a.KTDatatable({data:{type:"remote",source:{read:{url:HOST_URL+"/api/datatables/demos/customers.php"}},pageSize:10,serverPaging:!0,serverFiltering:!1,serverSorting:!0},layout:{theme:"default",scroll:!1,height:null,footer:!1},sortable:!0,pagination:!0,search:{input:a.find("#kt_datatable_search_query"),key:"generalSearch"},columns:[{field:"RecordID",title:"",sortable:!1,width:30,textAlign:"center"},{field:"FirstName",title:"First Name",sortable:"asc"},{field:"LastName",title:"Last Name"},{field:"Company",title:"Company"},{field:"Email",title:"Email"},{field:"Phone",title:"Phone"},{field:"Status",title:"Status",template:function(e){var a={1:{title:"Pending",class:"label-light-primary"},2:{title:"Delivered",class:" label-light-success"},3:{title:"Canceled",class:" label-light-primary"},4:{title:"Success",class:" label-light-success"},5:{title:"Info",class:" label-light-info"},6:{title:"Danger",class:" label-light-danger"},7:{title:"Warning",class:" label-light-warning"}};return''+a[e.Status].title+""}},{field:"Type",title:"Type",autoHide:!1,template:function(e){var a={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"accent"}};return''+a[e.Type].title+""}},{field:"Actions",width:130,title:"Actions",sortable:!1,overflow:"visible",textAlign:"left",autoHide:!1,template:function(e){return'\t\t '}}]});t.closest(".card");$("#kt_datatable_search_status").on("change",function(){t.search($(this).val().toLowerCase(),"Status")}),$("#kt_datatable_search_type").on("change",function(){t.search($(this).val().toLowerCase(),"Type")}),$("#kt_datatable_search_status, #kt_datatable_search_type").selectpicker(),t.on("click","[data-record-id]",function(){e($(this).data("record-id")),$("#kt_datatable_modal").modal("show")})}(),function(){var e=JSON.parse('[{"id":1,"employee_id":"463978155-5","first_name":"Carroll","last_name":"Maharry","email":"cmaharry0@topsy.com","phone":"420-935-0970","gender":"Male","department":"Legal","address":"72460 Bunting Trail","hire_date":"3/18/2018","website":"https://gmpg.org","notes":"euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis","status":6,"type":2,"salary":"$339.37"}, {"id":2,"employee_id":"590410601-7","first_name":"Jae","last_name":"Frammingham","email":"jframmingham1@ucoz.com","phone":"377-986-0708","gender":"Male","department":"Human Resources","address":"976 Eagle Crest Junction","hire_date":"10/22/2017","website":"https://telegraph.co.uk","notes":"consequat metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia","status":5,"type":2,"salary":"$1568.00"}, {"id":3,"employee_id":"562079447-4","first_name":"Natalie","last_name":"Stuchberry","email":"nstuchberry2@jimdo.com","phone":"718-320-9991","gender":"Female","department":"Legal","address":"9971 Rigney Pass","hire_date":"6/1/2018","website":"http://nbcnews.com","notes":"tempus sit amet sem fusce consequat nulla nisl nunc nisl duis","status":1,"type":1,"salary":"$2014.50"}, {"id":4,"employee_id":"078485871-3","first_name":"Abran","last_name":"Ivett","email":"aivett3@pinterest.com","phone":"784-922-2482","gender":"Male","department":"Accounting","address":"9 Mesta Court","hire_date":"2/6/2018","website":"http://wikipedia.org","notes":"vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra","status":2,"type":1,"salary":"$1205.64"}, {"id":5,"employee_id":"048140516-X","first_name":"Viola","last_name":"Ends","email":"vends4@squarespace.com","phone":"613-457-5253","gender":"Female","department":"Research and Development","address":"2 Paget Court","hire_date":"3/16/2018","website":"https://dot.gov","notes":"id pretium iaculis diam erat fermentum justo nec condimentum neque sapien placerat ante nulla justo aliquam quis turpis eget elit","status":2,"type":2,"salary":"$1376.93"}, {"id":6,"employee_id":"115191539-4","first_name":"Marabel","last_name":"Foystone","email":"mfoystone5@example.com","phone":"731-391-3134","gender":"Female","department":"Support","address":"2498 Tennyson Way","hire_date":"5/10/2018","website":"http://booking.com","notes":"nulla suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis","status":1,"type":1,"salary":"$1498.25"}, {"id":7,"employee_id":"053408526-1","first_name":"Maiga","last_name":"Frogley","email":"mfrogley6@flavors.me","phone":"559-339-1188","gender":"Female","department":"Legal","address":"6 Sage Circle","hire_date":"10/24/2017","website":"http://ustream.tv","notes":"in ante vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur","status":4,"type":1,"salary":"$2420.50"}, {"id":8,"employee_id":"996172199-3","first_name":"Leia","last_name":"Rapelli","email":"lrapelli7@amazonaws.com","phone":"882-958-3554","gender":"Female","department":"Training","address":"5 Bellgrove Park","hire_date":"3/11/2018","website":"https://va.gov","notes":"ullamcorper purus sit amet nulla quisque arcu libero rutrum ac lobortis vel dapibus","status":5,"type":3,"salary":"$479.73"}, {"id":9,"employee_id":"290771439-2","first_name":"Lilias","last_name":"Stollsteiner","email":"lstollsteiner8@opensource.org","phone":"725-615-6480","gender":"Female","department":"Product Management","address":"5 Shoshone Park","hire_date":"4/26/2018","website":"http://163.com","notes":"blandit nam nulla integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem","status":6,"type":3,"salary":"$815.69"}, {"id":10,"employee_id":"475138305-1","first_name":"Chrissie","last_name":"Trenouth","email":"ctrenouth9@addtoany.com","phone":"653-550-6039","gender":"Male","department":"Product Management","address":"6753 Fulton Drive","hire_date":"4/5/2018","website":"https://nifty.com","notes":"erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi nulla ac enim in","status":5,"type":2,"salary":"$1011.26"}, {"id":11,"employee_id":"909173505-8","first_name":"Tisha","last_name":"Timewell","email":"ttimewella@photobucket.com","phone":"372-765-5253","gender":"Female","department":"Legal","address":"5142 7th Terrace","hire_date":"3/21/2018","website":"https://360.cn","notes":"dolor morbi vel lectus in quam fringilla rhoncus mauris enim","status":4,"type":1,"salary":"$1169.55"}, {"id":12,"employee_id":"930860193-7","first_name":"Abie","last_name":"Adamec","email":"aadamecb@ask.com","phone":"728-535-2654","gender":"Male","department":"Marketing","address":"7 Prentice Point","hire_date":"6/28/2018","website":"https://epa.gov","notes":"mauris vulputate elementum nullam varius nulla facilisi cras non velit nec nisi","status":4,"type":1,"salary":"$256.18"}, {"id":13,"employee_id":"302125353-9","first_name":"Saidee","last_name":"Christol","email":"schristolc@reverbnation.com","phone":"575-573-3469","gender":"Female","department":"Sales","address":"753 Moose Road","hire_date":"1/9/2018","website":"https://soup.io","notes":"erat fermentum justo nec condimentum neque sapien placerat ante nulla","status":1,"type":1,"salary":"$1888.02"}, {"id":14,"employee_id":"264870457-4","first_name":"Merna","last_name":"Studman","email":"mstudmand@bloomberg.com","phone":"301-593-9922","gender":"Female","department":"Sales","address":"32617 Merchant Park","hire_date":"12/14/2017","website":"https://dyndns.org","notes":"risus semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero quis","status":2,"type":1,"salary":"$525.89"}, {"id":15,"employee_id":"458961353-0","first_name":"Carey","last_name":"De Paepe","email":"cdepaepee@vistaprint.com","phone":"437-166-5682","gender":"Male","department":"Business Development","address":"57299 Hintze Terrace","hire_date":"3/5/2018","website":"https://ed.gov","notes":"etiam justo etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut","status":4,"type":3,"salary":"$380.12"}, {"id":16,"employee_id":"668397107-2","first_name":"Elana","last_name":"Fontel","email":"efontelf@ox.ac.uk","phone":"295-591-0290","gender":"Female","department":"Legal","address":"6 Lyons Alley","hire_date":"2/23/2018","website":"http://amazon.co.uk","notes":"in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis","status":1,"type":2,"salary":"$557.74"}, {"id":17,"employee_id":"633477701-7","first_name":"Martyn","last_name":"Palethorpe","email":"mpalethorpeg@hhs.gov","phone":"602-830-1929","gender":"Male","department":"Human Resources","address":"82 Johnson Trail","hire_date":"6/11/2018","website":"http://domainmarket.com","notes":"metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque","status":4,"type":3,"salary":"$692.98"}, {"id":18,"employee_id":"649247266-7","first_name":"Banky","last_name":"Scrafton","email":"bscraftonh@rakuten.co.jp","phone":"582-430-5651","gender":"Male","department":"Business Development","address":"9931 Charing Cross Road","hire_date":"10/8/2017","website":"http://com.com","notes":"morbi odio odio elementum eu interdum eu tincidunt in leo","status":3,"type":2,"salary":"$2251.69"}, {"id":19,"employee_id":"353134888-4","first_name":"Carl","last_name":"Cartlidge","email":"ccartlidgei@topsy.com","phone":"788-594-5978","gender":"Male","department":"Support","address":"01023 Loftsgordon Court","hire_date":"6/10/2018","website":"https://w3.org","notes":"montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis","status":5,"type":2,"salary":"$1098.95"}, {"id":20,"employee_id":"217229894-8","first_name":"Cecil","last_name":"Dovidaitis","email":"cdovidaitisj@friendfeed.com","phone":"871-276-5383","gender":"Male","department":"Accounting","address":"47936 Park Meadow Place","hire_date":"10/19/2017","website":"http://archive.org","notes":"interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien","status":5,"type":1,"salary":"$2023.29"}, {"id":21,"employee_id":"502127380-9","first_name":"Charlene","last_name":"Pulsford","email":"cpulsfordk@google.es","phone":"334-897-8875","gender":"Female","department":"Support","address":"0622 Ronald Regan Junction","hire_date":"5/1/2018","website":"http://forbes.com","notes":"ipsum dolor sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit","status":5,"type":1,"salary":"$2125.68"}, {"id":22,"employee_id":"954387630-4","first_name":"Agnes","last_name":"Eslinger","email":"aeslingerl@ucsd.edu","phone":"127-200-2804","gender":"Female","department":"Engineering","address":"1372 John Wall Terrace","hire_date":"1/6/2018","website":"http://pagesperso-orange.fr","notes":"diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus","status":1,"type":3,"salary":"$429.41"}, {"id":23,"employee_id":"332655163-0","first_name":"Felic","last_name":"Mathiasen","email":"fmathiasenm@pagesperso-orange.fr","phone":"563-844-1190","gender":"Male","department":"Business Development","address":"9416 Little Fleur Pass","hire_date":"10/21/2017","website":"http://feedburner.com","notes":"fusce congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed augue aliquam","status":1,"type":3,"salary":"$1501.00"}, {"id":24,"employee_id":"281704570-X","first_name":"Stephani","last_name":"Rowell","email":"srowelln@ucla.edu","phone":"159-771-9442","gender":"Female","department":"Training","address":"10 Aberg Circle","hire_date":"2/13/2018","website":"http://nydailynews.com","notes":"vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin","status":2,"type":2,"salary":"$637.61"}, {"id":25,"employee_id":"757531800-3","first_name":"Jackson","last_name":"Kettlestring","email":"jkettlestringo@prnewswire.com","phone":"411-365-5414","gender":"Male","department":"Marketing","address":"0 Dorton Plaza","hire_date":"12/15/2017","website":"http://fda.gov","notes":"purus phasellus in felis donec semper sapien a libero nam dui proin leo odio porttitor id consequat","status":5,"type":3,"salary":"$1777.79"}, {"id":26,"employee_id":"687935758-X","first_name":"Marius","last_name":"Bembrick","email":"mbembrickp@jigsy.com","phone":"386-209-3865","gender":"Male","department":"Research and Development","address":"6 Nancy Plaza","hire_date":"9/4/2017","website":"https://apple.com","notes":"orci luctus et ultrices posuere cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a feugiat","status":1,"type":1,"salary":"$508.32"}, {"id":27,"employee_id":"676433511-7","first_name":"Darnell","last_name":"Edes","email":"dedesq@surveymonkey.com","phone":"500-702-1594","gender":"Male","department":"Support","address":"373 Maryland Drive","hire_date":"12/10/2017","website":"http://walmart.com","notes":"euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc","status":6,"type":3,"salary":"$2139.18"}, {"id":28,"employee_id":"336040872-1","first_name":"Margaux","last_name":"O\'Feeny","email":"mofeenyr@amazon.co.jp","phone":"114-808-0574","gender":"Female","department":"Support","address":"59849 Packers Point","hire_date":"9/21/2017","website":"http://tmall.com","notes":"at nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem","status":1,"type":3,"salary":"$909.79"}, {"id":29,"employee_id":"736038403-6","first_name":"Ly","last_name":"Blaszkiewicz","email":"lblaszkiewiczs@live.com","phone":"193-583-6061","gender":"Male","department":"Research and Development","address":"8 Prentice Place","hire_date":"6/18/2018","website":"https://prweb.com","notes":"purus aliquet at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a odio in","status":5,"type":1,"salary":"$1789.96"}, {"id":30,"employee_id":"599372101-4","first_name":"Dayle","last_name":"Rablin","email":"drablint@jugem.jp","phone":"639-124-8424","gender":"Female","department":"Services","address":"35 Kenwood Point","hire_date":"6/30/2018","website":"https://csmonitor.com","notes":"vestibulum quam sapien varius ut blandit non interdum in ante vestibulum ante","status":3,"type":1,"salary":"$1594.26"}, {"id":31,"employee_id":"306503794-7","first_name":"Jaquenette","last_name":"Laurence","email":"jlaurenceu@topsy.com","phone":"809-291-9012","gender":"Female","department":"Product Management","address":"1 Holy Cross Circle","hire_date":"5/15/2018","website":"http://cornell.edu","notes":"turpis a pede posuere nonummy integer non velit donec diam neque vestibulum","status":3,"type":1,"salary":"$541.85"}, {"id":32,"employee_id":"708872496-0","first_name":"Bryn","last_name":"Gaukrodge","email":"bgaukrodgev@1688.com","phone":"197-490-4415","gender":"Male","department":"Product Management","address":"88036 Springs Center","hire_date":"3/12/2018","website":"https://bing.com","notes":"lectus pellentesque at nulla suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque","status":3,"type":3,"salary":"$1433.56"}, {"id":33,"employee_id":"820772036-0","first_name":"Quintina","last_name":"Tromans","email":"qtromansw@t.co","phone":"150-592-4259","gender":"Female","department":"Business Development","address":"503 Grim Junction","hire_date":"1/30/2018","website":"https://dagondesign.com","notes":"nullam molestie nibh in lectus pellentesque at nulla suspendisse potenti","status":4,"type":2,"salary":"$1763.79"}, {"id":34,"employee_id":"306191423-4","first_name":"North","last_name":"Linforth","email":"nlinforthx@devhub.com","phone":"311-987-2066","gender":"Male","department":"Human Resources","address":"46 Spenser Drive","hire_date":"6/16/2018","website":"https://delicious.com","notes":"mi sit amet lobortis sapien sapien non mi integer ac neque duis bibendum morbi non quam nec","status":6,"type":3,"salary":"$1598.27"}, {"id":35,"employee_id":"896478886-9","first_name":"Abbie","last_name":"Clampe","email":"aclampey@ameblo.jp","phone":"829-922-0897","gender":"Female","department":"Services","address":"0 Alpine Pass","hire_date":"10/31/2017","website":"http://nationalgeographic.com","notes":"sed justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est","status":3,"type":2,"salary":"$918.46"}, {"id":36,"employee_id":"345166971-4","first_name":"Ivonne","last_name":"Benstead","email":"ibensteadz@ftc.gov","phone":"239-904-6612","gender":"Female","department":"Human Resources","address":"32 Utah Avenue","hire_date":"3/27/2018","website":"http://sitemeter.com","notes":"curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend","status":6,"type":3,"salary":"$939.94"}, {"id":37,"employee_id":"271776454-2","first_name":"Brennen","last_name":"Duplain","email":"bduplain10@paginegialle.it","phone":"847-233-6429","gender":"Male","department":"Support","address":"64832 Sutherland Avenue","hire_date":"10/25/2017","website":"http://goo.gl","notes":"donec posuere metus vitae ipsum aliquam non mauris morbi non","status":1,"type":2,"salary":"$2153.00"}, {"id":38,"employee_id":"159362791-2","first_name":"Floris","last_name":"Rowntree","email":"frowntree11@goodreads.com","phone":"145-701-7289","gender":"Female","department":"Human Resources","address":"1 Prairieview Terrace","hire_date":"1/22/2018","website":"https://wordpress.com","notes":"sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat","status":1,"type":2,"salary":"$1469.21"}, {"id":39,"employee_id":"591823535-3","first_name":"Arlette","last_name":"Neumann","email":"aneumann12@google.it","phone":"626-427-8715","gender":"Female","department":"Legal","address":"5 Comanche Terrace","hire_date":"9/15/2017","website":"https://drupal.org","notes":"cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum","status":3,"type":1,"salary":"$2285.73"}, {"id":40,"employee_id":"760095255-6","first_name":"Jasper","last_name":"Blennerhassett","email":"jblennerhassett13@ovh.net","phone":"493-589-6952","gender":"Male","department":"Services","address":"48770 Hansons Center","hire_date":"6/3/2018","website":"http://imdb.com","notes":"integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna","status":3,"type":3,"salary":"$1261.12"}, {"id":41,"employee_id":"293876593-2","first_name":"Daniela","last_name":"Cauley","email":"dcauley14@si.edu","phone":"913-991-1546","gender":"Female","department":"Training","address":"327 Waubesa Pass","hire_date":"2/13/2018","website":"https://techcrunch.com","notes":"accumsan tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a","status":5,"type":3,"salary":"$1354.71"}, {"id":42,"employee_id":"754195998-7","first_name":"Allsun","last_name":"Cosin","email":"acosin15@seattletimes.com","phone":"890-332-0597","gender":"Female","department":"Business Development","address":"19242 Forest Dale Avenue","hire_date":"10/8/2017","website":"http://yellowbook.com","notes":"eu mi nulla ac enim in tempor turpis nec euismod scelerisque quam turpis","status":1,"type":1,"salary":"$463.81"}, {"id":43,"employee_id":"874856299-8","first_name":"Shalne","last_name":"Abramow","email":"sabramow16@1688.com","phone":"859-996-2703","gender":"Female","department":"Support","address":"678 Cardinal Trail","hire_date":"10/22/2017","website":"http://meetup.com","notes":"mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis","status":3,"type":3,"salary":"$2143.95"}, {"id":44,"employee_id":"274796603-8","first_name":"Britt","last_name":"Brameld","email":"bbrameld17@wiley.com","phone":"844-159-2313","gender":"Female","department":"Business Development","address":"01741 Truax Way","hire_date":"7/12/2018","website":"https://digg.com","notes":"a feugiat et eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id","status":2,"type":1,"salary":"$2400.44"}, {"id":45,"employee_id":"383491864-4","first_name":"Tammy","last_name":"Cordrey","email":"tcordrey18@photobucket.com","phone":"609-503-1223","gender":"Male","department":"Training","address":"3 Leroy Junction","hire_date":"8/6/2017","website":"https://aol.com","notes":"sapien sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus","status":5,"type":2,"salary":"$1838.70"}, {"id":46,"employee_id":"981710394-3","first_name":"Vanya","last_name":"Stygall","email":"vstygall19@comsenz.com","phone":"347-830-1157","gender":"Female","department":"Sales","address":"49 Twin Pines Alley","hire_date":"2/23/2018","website":"https://istockphoto.com","notes":"quis lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus","status":4,"type":1,"salary":"$1612.69"}, {"id":47,"employee_id":"859972565-3","first_name":"Ilene","last_name":"Longden","email":"ilongden1a@seesaa.net","phone":"367-599-8104","gender":"Female","department":"Research and Development","address":"3317 Chinook Drive","hire_date":"4/16/2018","website":"http://time.com","notes":"condimentum curabitur in libero ut massa volutpat convallis morbi odio odio elementum eu interdum eu tincidunt in leo","status":3,"type":3,"salary":"$377.64"}, {"id":48,"employee_id":"969985171-6","first_name":"Chrysler","last_name":"Havick","email":"chavick1b@reference.com","phone":"878-108-5011","gender":"Female","department":"Accounting","address":"0 Buena Vista Crossing","hire_date":"11/18/2017","website":"https://weather.com","notes":"odio cras mi pede malesuada in imperdiet et commodo vulputate justo in","status":1,"type":3,"salary":"$778.85"}, {"id":49,"employee_id":"216013804-5","first_name":"Fifine","last_name":"Haggus","email":"fhaggus1c@oaic.gov.au","phone":"633-912-8346","gender":"Female","department":"Research and Development","address":"520 Tomscot Avenue","hire_date":"6/18/2018","website":"https://mozilla.org","notes":"vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti in","status":5,"type":1,"salary":"$635.37"}, {"id":50,"employee_id":"966655811-4","first_name":"Ali","last_name":"Chue","email":"achue1d@vkontakte.ru","phone":"605-172-0203","gender":"Male","department":"Business Development","address":"0 Lyons Pass","hire_date":"8/2/2017","website":"http://springer.com","notes":"volutpat convallis morbi odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet erat","status":4,"type":2,"salary":"$2110.01"}, {"id":51,"employee_id":"861821671-2","first_name":"Celene","last_name":"Ledes","email":"cledes1e@opera.com","phone":"271-211-2956","gender":"Female","department":"Services","address":"9 Manley Terrace","hire_date":"4/27/2018","website":"http://4shared.com","notes":"libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum","status":3,"type":2,"salary":"$996.88"}, {"id":52,"employee_id":"416647881-8","first_name":"Luciano","last_name":"Lighterness","email":"llighterness1f@bizjournals.com","phone":"808-427-6621","gender":"Male","department":"Sales","address":"1 Bluejay Plaza","hire_date":"1/30/2018","website":"http://hud.gov","notes":"sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi","status":4,"type":2,"salary":"$2194.47"}, {"id":53,"employee_id":"716498565-0","first_name":"Oren","last_name":"Rixon","email":"orixon1g@paypal.com","phone":"640-688-8978","gender":"Male","department":"Research and Development","address":"03588 Randy Circle","hire_date":"12/16/2017","website":"http://tripod.com","notes":"sed nisl nunc rhoncus dui vel sem sed sagittis nam congue risus semper porta volutpat quam pede lobortis","status":4,"type":1,"salary":"$1590.74"}, {"id":54,"employee_id":"846826707-4","first_name":"Pearce","last_name":"Stark","email":"pstark1h@vk.com","phone":"724-173-2759","gender":"Male","department":"Marketing","address":"9134 Del Mar Alley","hire_date":"6/6/2018","website":"http://wp.com","notes":"fermentum donec ut mauris eget massa tempor convallis nulla neque libero convallis eget","status":1,"type":3,"salary":"$369.47"}, {"id":55,"employee_id":"817466406-8","first_name":"Paco","last_name":"Halden","email":"phalden1i@cbsnews.com","phone":"142-137-8107","gender":"Male","department":"Training","address":"9 Pennsylvania Place","hire_date":"3/31/2018","website":"http://gov.uk","notes":"ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla","status":6,"type":3,"salary":"$644.30"}, {"id":56,"employee_id":"486286979-3","first_name":"Merissa","last_name":"Tindle","email":"mtindle1j@sina.com.cn","phone":"645-520-7142","gender":"Female","department":"Sales","address":"672 Onsgard Way","hire_date":"4/4/2018","website":"http://oracle.com","notes":"id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac diam cras","status":5,"type":2,"salary":"$1821.01"}, {"id":57,"employee_id":"165434032-4","first_name":"Montague","last_name":"Coventon","email":"mcoventon1k@sbwire.com","phone":"933-259-7571","gender":"Male","department":"Training","address":"8 Lakeland Court","hire_date":"8/14/2017","website":"https://geocities.com","notes":"ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac","status":5,"type":3,"salary":"$1533.95"}, {"id":58,"employee_id":"154965026-2","first_name":"Kristel","last_name":"La Croce","email":"klacroce1l@noaa.gov","phone":"405-768-8955","gender":"Female","department":"Services","address":"630 Marcy Drive","hire_date":"10/17/2017","website":"http://ucsd.edu","notes":"vivamus in felis eu sapien cursus vestibulum proin eu mi nulla","status":6,"type":1,"salary":"$572.43"}, {"id":59,"employee_id":"531973169-8","first_name":"Felecia","last_name":"Aishford","email":"faishford1m@surveymonkey.com","phone":"308-335-5646","gender":"Female","department":"Marketing","address":"4169 Spenser Lane","hire_date":"1/14/2018","website":"https://accuweather.com","notes":"vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula","status":2,"type":2,"salary":"$535.61"}, {"id":60,"employee_id":"398015522-6","first_name":"Gabbey","last_name":"Faunch","email":"gfaunch1n@lulu.com","phone":"312-420-7864","gender":"Female","department":"Marketing","address":"66 Del Sol Crossing","hire_date":"10/12/2017","website":"https://tinypic.com","notes":"vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec","status":5,"type":3,"salary":"$454.67"}, {"id":61,"employee_id":"811193945-0","first_name":"Kiah","last_name":"MacGragh","email":"kmacgragh1o@nih.gov","phone":"585-387-4897","gender":"Female","department":"Accounting","address":"0082 8th Street","hire_date":"10/21/2017","website":"http://unblog.fr","notes":"turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a","status":3,"type":1,"salary":"$1998.31"}, {"id":62,"employee_id":"768660578-7","first_name":"Mireielle","last_name":"Danilishin","email":"mdanilishin1p@go.com","phone":"772-806-1933","gender":"Female","department":"Support","address":"9475 Transport Pass","hire_date":"8/12/2017","website":"https://i2i.jp","notes":"elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit","status":1,"type":3,"salary":"$332.09"}, {"id":63,"employee_id":"087657628-5","first_name":"Kaitlin","last_name":"Slowley","email":"kslowley1q@etsy.com","phone":"857-196-0908","gender":"Female","department":"Product Management","address":"136 Harbort Way","hire_date":"6/28/2018","website":"https://umn.edu","notes":"eget eleifend luctus ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum","status":6,"type":2,"salary":"$2008.41"}, {"id":64,"employee_id":"247247211-0","first_name":"Ellissa","last_name":"Bench","email":"ebench1r@issuu.com","phone":"770-716-1929","gender":"Female","department":"Support","address":"07536 Atwood Street","hire_date":"1/17/2018","website":"https://goo.gl","notes":"egestas metus aenean fermentum donec ut mauris eget massa tempor convallis nulla","status":3,"type":1,"salary":"$662.94"}, {"id":65,"employee_id":"229767685-9","first_name":"Renato","last_name":"Loftie","email":"rloftie1s@photobucket.com","phone":"806-232-0956","gender":"Male","department":"Legal","address":"49603 Hanover Drive","hire_date":"9/4/2017","website":"https://apache.org","notes":"nunc proin at turpis a pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut ultrices vel","status":5,"type":1,"salary":"$315.88"}, {"id":66,"employee_id":"303250444-9","first_name":"Eamon","last_name":"Chater","email":"echater1t@github.io","phone":"843-377-6351","gender":"Male","department":"Support","address":"1 Gina Lane","hire_date":"6/27/2018","website":"https://bravesites.com","notes":"id luctus nec molestie sed justo pellentesque viverra pede ac diam cras pellentesque volutpat","status":6,"type":2,"salary":"$575.88"}, {"id":67,"employee_id":"118110309-6","first_name":"Jeramey","last_name":"Guye","email":"jguye1u@bloglines.com","phone":"966-388-3378","gender":"Male","department":"Research and Development","address":"7141 Forest Dale Plaza","hire_date":"5/13/2018","website":"http://blogspot.com","notes":"habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur","status":4,"type":1,"salary":"$883.94"}, {"id":68,"employee_id":"604717575-9","first_name":"Ermentrude","last_name":"Caygill","email":"ecaygill1v@posterous.com","phone":"325-412-1846","gender":"Female","department":"Research and Development","address":"8 Vahlen Road","hire_date":"8/23/2017","website":"http://pinterest.com","notes":"vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci","status":4,"type":2,"salary":"$1261.05"}, {"id":69,"employee_id":"354395696-5","first_name":"Tyler","last_name":"Bearward","email":"tbearward1w@stanford.edu","phone":"264-480-4084","gender":"Male","department":"Engineering","address":"0 Oakridge Pass","hire_date":"9/23/2017","website":"http://toplist.cz","notes":"tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra","status":2,"type":2,"salary":"$1916.86"}, {"id":70,"employee_id":"448117293-2","first_name":"Cordelia","last_name":"Dod","email":"cdod1x@google.nl","phone":"904-991-9112","gender":"Female","department":"Services","address":"1 Oak Trail","hire_date":"5/19/2018","website":"http://nifty.com","notes":"at vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci eget orci","status":2,"type":1,"salary":"$728.99"}, {"id":71,"employee_id":"078622063-5","first_name":"Jud","last_name":"Hugonnet","email":"jhugonnet1y@bravesites.com","phone":"793-605-5368","gender":"Male","department":"Human Resources","address":"2 Blue Bill Park Crossing","hire_date":"3/5/2018","website":"http://theatlantic.com","notes":"rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus","status":4,"type":3,"salary":"$1122.09"}, {"id":72,"employee_id":"177821412-6","first_name":"Bliss","last_name":"Wormell","email":"bwormell1z@google.es","phone":"923-926-7137","gender":"Female","department":"Services","address":"97487 Vernon Way","hire_date":"2/9/2018","website":"https://slashdot.org","notes":"turpis a pede posuere nonummy integer non velit donec diam neque vestibulum","status":6,"type":3,"salary":"$1325.37"}, {"id":73,"employee_id":"167412899-1","first_name":"Pennie","last_name":"Miles","email":"pmiles20@wikipedia.org","phone":"402-175-4814","gender":"Female","department":"Accounting","address":"25 Calypso Street","hire_date":"8/25/2017","website":"https://networkadvertising.org","notes":"orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet","status":3,"type":1,"salary":"$1857.52"}, {"id":74,"employee_id":"766232726-4","first_name":"Alethea","last_name":"Kubis","email":"akubis21@nytimes.com","phone":"195-533-0554","gender":"Female","department":"Research and Development","address":"7 Badeau Junction","hire_date":"12/20/2017","website":"https://columbia.edu","notes":"congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu","status":2,"type":1,"salary":"$1731.13"}, {"id":75,"employee_id":"148106817-2","first_name":"Niven","last_name":"Leckey","email":"nleckey22@rediff.com","phone":"419-694-8836","gender":"Male","department":"Research and Development","address":"41429 Texas Pass","hire_date":"8/22/2017","website":"https://chron.com","notes":"maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac diam cras pellentesque volutpat","status":2,"type":3,"salary":"$835.59"}, {"id":76,"employee_id":"218188716-0","first_name":"Gav","last_name":"Denkin","email":"gdenkin23@phoca.cz","phone":"109-349-2084","gender":"Male","department":"Product Management","address":"866 Vermont Parkway","hire_date":"12/27/2017","website":"https://nytimes.com","notes":"eleifend donec ut dolor morbi vel lectus in quam fringilla rhoncus mauris","status":1,"type":1,"salary":"$2271.20"}, {"id":77,"employee_id":"949856193-1","first_name":"Haroun","last_name":"McDermott","email":"hmcdermott24@gnu.org","phone":"650-332-8136","gender":"Male","department":"Legal","address":"18 Farragut Junction","hire_date":"1/12/2018","website":"https://techcrunch.com","notes":"orci pede venenatis non sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet","status":3,"type":1,"salary":"$555.57"}, {"id":78,"employee_id":"816956055-1","first_name":"Enrico","last_name":"Marzelli","email":"emarzelli25@elegantthemes.com","phone":"931-285-9268","gender":"Male","department":"Services","address":"8 Stephen Center","hire_date":"7/16/2018","website":"https://cyberchimps.com","notes":"dui maecenas tristique est et tempus semper est quam pharetra magna ac consequat metus sapien ut nunc","status":2,"type":2,"salary":"$820.63"}, {"id":79,"employee_id":"135814107-X","first_name":"Shermy","last_name":"Tersay","email":"stersay26@scientificamerican.com","phone":"459-559-9053","gender":"Male","department":"Engineering","address":"280 Muir Trail","hire_date":"8/31/2017","website":"https://facebook.com","notes":"sapien sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus","status":3,"type":1,"salary":"$314.22"}, {"id":80,"employee_id":"214238400-5","first_name":"Kimberley","last_name":"Slorach","email":"kslorach27@ovh.net","phone":"408-346-4135","gender":"Female","department":"Legal","address":"33408 Dryden Center","hire_date":"4/18/2018","website":"https://live.com","notes":"congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus","status":2,"type":3,"salary":"$1960.21"}, {"id":81,"employee_id":"364281767-X","first_name":"Shirlee","last_name":"Heugel","email":"sheugel28@jiathis.com","phone":"823-228-8386","gender":"Female","department":"Research and Development","address":"4825 Autumn Leaf Junction","hire_date":"7/26/2017","website":"http://goodreads.com","notes":"est lacinia nisi venenatis tristique fusce congue diam id ornare","status":6,"type":1,"salary":"$1122.94"}, {"id":82,"employee_id":"197212989-9","first_name":"Lazar","last_name":"Fryatt","email":"lfryatt29@smugmug.com","phone":"529-726-0197","gender":"Male","department":"Business Development","address":"7434 Stephen Park","hire_date":"5/5/2018","website":"http://businessinsider.com","notes":"risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in ante vestibulum ante","status":2,"type":2,"salary":"$1950.44"}, {"id":83,"employee_id":"184011545-9","first_name":"Ainslie","last_name":"Dobbings","email":"adobbings2a@newsvine.com","phone":"543-769-3230","gender":"Female","department":"Accounting","address":"9670 Parkside Way","hire_date":"5/18/2018","website":"https://seattletimes.com","notes":"facilisi cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla","status":5,"type":3,"salary":"$1025.26"}, {"id":84,"employee_id":"550071613-1","first_name":"Nola","last_name":"Dolder","email":"ndolder2b@nationalgeographic.com","phone":"660-563-6589","gender":"Female","department":"Sales","address":"41 Harper Trail","hire_date":"11/7/2017","website":"http://intel.com","notes":"donec quis orci eget orci vehicula condimentum curabitur in libero ut massa volutpat","status":4,"type":3,"salary":"$658.49"}, {"id":85,"employee_id":"549482172-2","first_name":"Stacy","last_name":"Flanaghan","email":"sflanaghan2c@prlog.org","phone":"803-731-1786","gender":"Female","department":"Sales","address":"9884 Carberry Terrace","hire_date":"3/30/2018","website":"https://dropbox.com","notes":"sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum","status":2,"type":3,"salary":"$2020.80"}, {"id":86,"employee_id":"367901888-6","first_name":"Uri","last_name":"Langdridge","email":"ulangdridge2d@sciencedaily.com","phone":"514-481-8237","gender":"Male","department":"Research and Development","address":"1873 Sunnyside Circle","hire_date":"3/25/2018","website":"https://hubpages.com","notes":"vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus dapibus augue vel accumsan","status":6,"type":3,"salary":"$369.40"}, {"id":87,"employee_id":"131679327-3","first_name":"Magdalena","last_name":"Rivelin","email":"mrivelin2e@123-reg.co.uk","phone":"475-989-2264","gender":"Female","department":"Engineering","address":"11 Pleasure Terrace","hire_date":"7/26/2017","website":"https://photobucket.com","notes":"justo eu massa donec dapibus duis at velit eu est congue elementum in hac habitasse","status":1,"type":3,"salary":"$802.14"}, {"id":88,"employee_id":"962685709-9","first_name":"Seana","last_name":"Lackeye","email":"slackeye2f@w3.org","phone":"870-403-9921","gender":"Female","department":"Engineering","address":"1688 Northland Lane","hire_date":"7/8/2018","website":"https://topsy.com","notes":"turpis a pede posuere nonummy integer non velit donec diam neque vestibulum","status":3,"type":3,"salary":"$639.17"}, {"id":89,"employee_id":"031798299-0","first_name":"Marshal","last_name":"Kelf","email":"mkelf2g@vkontakte.ru","phone":"680-707-7861","gender":"Male","department":"Accounting","address":"87835 Kropf Circle","hire_date":"1/21/2018","website":"https://mit.edu","notes":"nulla quisque arcu libero rutrum ac lobortis vel dapibus at","status":1,"type":1,"salary":"$1644.11"}, {"id":90,"employee_id":"666187814-2","first_name":"Olag","last_name":"Suffield","email":"osuffield2h@topsy.com","phone":"920-122-4995","gender":"Male","department":"Human Resources","address":"00792 Buhler Place","hire_date":"5/5/2018","website":"https://hubpages.com","notes":"sed tincidunt eu felis fusce posuere felis sed lacus morbi","status":3,"type":1,"salary":"$1405.49"}, {"id":91,"employee_id":"972507663-X","first_name":"Andy","last_name":"Elgram","email":"aelgram2i@utexas.edu","phone":"198-157-8848","gender":"Female","department":"Support","address":"42 Garrison Point","hire_date":"10/1/2017","website":"http://mapy.cz","notes":"nam dui proin leo odio porttitor id consequat in consequat ut nulla sed accumsan felis","status":5,"type":2,"salary":"$684.75"}, {"id":92,"employee_id":"950510229-1","first_name":"Lennard","last_name":"Amberson","email":"lamberson2j@artisteer.com","phone":"611-164-2821","gender":"Male","department":"Engineering","address":"5985 Merry Drive","hire_date":"10/7/2017","website":"http://mysql.com","notes":"donec posuere metus vitae ipsum aliquam non mauris morbi non","status":2,"type":1,"salary":"$1537.93"}, {"id":93,"employee_id":"391601599-0","first_name":"Lucina","last_name":"Sinclaire","email":"lsinclaire2k@sitemeter.com","phone":"900-419-3471","gender":"Female","department":"Research and Development","address":"1 Mallard Court","hire_date":"12/19/2017","website":"http://woothemes.com","notes":"curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non","status":4,"type":2,"salary":"$1682.97"}, {"id":94,"employee_id":"780789784-8","first_name":"Zilvia","last_name":"Hessing","email":"zhessing2l@ca.gov","phone":"786-487-2292","gender":"Female","department":"Training","address":"8 Hanover Trail","hire_date":"4/11/2018","website":"http://hhs.gov","notes":"in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam","status":2,"type":1,"salary":"$1264.21"}, {"id":95,"employee_id":"154091500-X","first_name":"Randie","last_name":"Duplan","email":"rduplan2m@ox.ac.uk","phone":"254-881-3750","gender":"Female","department":"Human Resources","address":"7 Gerald Alley","hire_date":"1/27/2018","website":"https://slideshare.net","notes":"ultrices mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue a","status":4,"type":3,"salary":"$1338.17"}, {"id":96,"employee_id":"269765014-8","first_name":"Rose","last_name":"Luter","email":"rluter2n@marketplace.net","phone":"960-532-6752","gender":"Female","department":"Research and Development","address":"99 Tony Drive","hire_date":"8/19/2017","website":"https://marriott.com","notes":"sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi","status":1,"type":1,"salary":"$1901.64"}, {"id":97,"employee_id":"985484449-8","first_name":"Carmencita","last_name":"Burdis","email":"cburdis2o@comcast.net","phone":"636-450-6253","gender":"Female","department":"Product Management","address":"976 Fieldstone Terrace","hire_date":"3/2/2018","website":"https://google.ru","notes":"amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus","status":3,"type":3,"salary":"$1799.42"}, {"id":98,"employee_id":"803354276-4","first_name":"Martguerita","last_name":"Buckerfield","email":"mbuckerfield2p@businessinsider.com","phone":"994-400-4021","gender":"Female","department":"Research and Development","address":"92 Ridge Oak Terrace","hire_date":"6/13/2018","website":"http://wordpress.org","notes":"sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum","status":1,"type":1,"salary":"$677.13"}, {"id":99,"employee_id":"326728049-4","first_name":"Lorene","last_name":"Biffen","email":"lbiffen2q@bbb.org","phone":"638-745-7652","gender":"Female","department":"Support","address":"46 Alpine Road","hire_date":"3/29/2018","website":"http://ucoz.ru","notes":"integer aliquet massa id lobortis convallis tortor risus dapibus augue vel accumsan tellus","status":2,"type":3,"salary":"$899.25"}, {"id":100,"employee_id":"607725913-6","first_name":"Magdaia","last_name":"Nickels","email":"mnickels2r@edublogs.org","phone":"546-128-7946","gender":"Female","department":"Services","address":"0 Schiller Pass","hire_date":"3/27/2018","website":"http://networksolutions.com","notes":"scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis","status":6,"type":3,"salary":"$1578.12"}, {"id":101,"employee_id":"972393712-3","first_name":"Deloria","last_name":"Bamfield","email":"dbamfield2s@nbcnews.com","phone":"470-379-7670","gender":"Female","department":"Accounting","address":"8 Sundown Way","hire_date":"12/20/2017","website":"https://multiply.com","notes":"diam in magna bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu","status":1,"type":2,"salary":"$1657.96"}, {"id":102,"employee_id":"885692265-7","first_name":"Aime","last_name":"Wiggins","email":"awiggins2t@de.vu","phone":"517-672-9432","gender":"Female","department":"Legal","address":"687 Oak Trail","hire_date":"8/12/2017","website":"http://alibaba.com","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae","status":5,"type":3,"salary":"$595.54"}, {"id":103,"employee_id":"261177042-5","first_name":"Luz","last_name":"Leuren","email":"lleuren2u@php.net","phone":"944-752-0631","gender":"Female","department":"Sales","address":"870 Holmberg Terrace","hire_date":"1/2/2018","website":"https://un.org","notes":"fermentum donec ut mauris eget massa tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu nibh quisque","status":1,"type":1,"salary":"$1431.61"}, {"id":104,"employee_id":"705056567-9","first_name":"Herminia","last_name":"Vint","email":"hvint2v@addthis.com","phone":"215-746-1315","gender":"Female","department":"Product Management","address":"2 Jay Point","hire_date":"8/21/2017","website":"http://macromedia.com","notes":"faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel lectus in quam","status":5,"type":1,"salary":"$925.04"}, {"id":105,"employee_id":"499919735-9","first_name":"Julita","last_name":"Durie","email":"jdurie2w@guardian.co.uk","phone":"476-162-6690","gender":"Female","department":"Engineering","address":"63 Arapahoe Street","hire_date":"5/19/2018","website":"http://istockphoto.com","notes":"sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus","status":5,"type":3,"salary":"$983.78"}, {"id":106,"employee_id":"513095556-0","first_name":"Saleem","last_name":"Montel","email":"smontel2x@people.com.cn","phone":"228-261-6358","gender":"Male","department":"Training","address":"86472 Commercial Hill","hire_date":"3/4/2018","website":"https://hp.com","notes":"neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio","status":2,"type":2,"salary":"$280.05"}, {"id":107,"employee_id":"510722692-2","first_name":"Jecho","last_name":"Grayshon","email":"jgrayshon2y@loc.gov","phone":"698-125-3058","gender":"Male","department":"Engineering","address":"4 Norway Maple Pass","hire_date":"5/23/2018","website":"https://wordpress.com","notes":"quis orci eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi","status":2,"type":1,"salary":"$765.18"}, {"id":108,"employee_id":"950399045-9","first_name":"Joaquin","last_name":"Drakeford","email":"jdrakeford2z@census.gov","phone":"394-664-8952","gender":"Male","department":"Sales","address":"2885 Banding Street","hire_date":"9/16/2017","website":"https://indiatimes.com","notes":"integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem","status":4,"type":1,"salary":"$1887.22"}, {"id":109,"employee_id":"128592509-2","first_name":"Alvina","last_name":"Robiou","email":"arobiou30@meetup.com","phone":"276-927-2841","gender":"Female","department":"Services","address":"3709 Sunfield Alley","hire_date":"7/30/2017","website":"https://state.tx.us","notes":"non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac nulla sed vel enim sit amet nunc viverra","status":5,"type":3,"salary":"$2197.02"}, {"id":110,"employee_id":"641762765-9","first_name":"Kimberly","last_name":"Blewmen","email":"kblewmen31@xrea.com","phone":"993-555-5822","gender":"Female","department":"Support","address":"841 Spenser Trail","hire_date":"3/11/2018","website":"http://economist.com","notes":"et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor lacus at turpis donec posuere","status":4,"type":3,"salary":"$1403.80"}, {"id":111,"employee_id":"743230811-X","first_name":"Germain","last_name":"Liddell","email":"gliddell32@usda.gov","phone":"210-527-0995","gender":"Male","department":"Business Development","address":"273 Gale Hill","hire_date":"3/12/2018","website":"https://netscape.com","notes":"ipsum integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis","status":4,"type":2,"salary":"$1841.60"}, {"id":112,"employee_id":"280357534-5","first_name":"Wittie","last_name":"Crothers","email":"wcrothers33@bbc.co.uk","phone":"595-268-1541","gender":"Male","department":"Accounting","address":"0615 8th Hill","hire_date":"8/29/2017","website":"https://issuu.com","notes":"quam a odio in hac habitasse platea dictumst maecenas ut massa","status":6,"type":3,"salary":"$2349.82"}, {"id":113,"employee_id":"297744337-1","first_name":"Ruth","last_name":"Moxon","email":"rmoxon34@blog.com","phone":"311-809-6177","gender":"Female","department":"Support","address":"71749 Esker Crossing","hire_date":"9/8/2017","website":"https://tiny.cc","notes":"nunc rhoncus dui vel sem sed sagittis nam congue risus semper porta","status":1,"type":1,"salary":"$2469.12"}, {"id":114,"employee_id":"627965147-9","first_name":"Shaw","last_name":"Jeafferson","email":"sjeafferson35@dedecms.com","phone":"402-419-6081","gender":"Male","department":"Training","address":"28 Kropf Lane","hire_date":"9/16/2017","website":"https://amazon.co.jp","notes":"urna ut tellus nulla ut erat id mauris vulputate elementum nullam","status":2,"type":1,"salary":"$725.96"}, {"id":115,"employee_id":"200221976-1","first_name":"Stern","last_name":"Newbery","email":"snewbery36@berkeley.edu","phone":"592-100-2732","gender":"Male","department":"Product Management","address":"64762 Luster Street","hire_date":"3/7/2018","website":"http://simplemachines.org","notes":"ipsum dolor sit amet consectetuer adipiscing elit proin risus praesent lectus","status":1,"type":2,"salary":"$2391.21"}, {"id":116,"employee_id":"683010400-9","first_name":"Jeffry","last_name":"Chessil","email":"jchessil37@sogou.com","phone":"350-222-1842","gender":"Male","department":"Human Resources","address":"499 Nelson Lane","hire_date":"8/24/2017","website":"https://marketwatch.com","notes":"sapien placerat ante nulla justo aliquam quis turpis eget elit","status":5,"type":2,"salary":"$1186.46"}, {"id":117,"employee_id":"492536862-1","first_name":"Darla","last_name":"Letson","email":"dletson38@squarespace.com","phone":"576-354-3003","gender":"Female","department":"Product Management","address":"5237 Division Plaza","hire_date":"10/2/2017","website":"http://networkadvertising.org","notes":"suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris","status":1,"type":2,"salary":"$771.69"}, {"id":118,"employee_id":"471683625-8","first_name":"Gavra","last_name":"Backhurst","email":"gbackhurst39@tripadvisor.com","phone":"196-599-4507","gender":"Female","department":"Research and Development","address":"07263 Buhler Crossing","hire_date":"6/23/2018","website":"http://altervista.org","notes":"aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse","status":4,"type":3,"salary":"$263.67"}, {"id":119,"employee_id":"348201330-6","first_name":"Adam","last_name":"Bavridge","email":"abavridge3a@typepad.com","phone":"867-811-3866","gender":"Male","department":"Legal","address":"00 Katie Crossing","hire_date":"7/24/2017","website":"http://friendfeed.com","notes":"maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac diam cras","status":2,"type":1,"salary":"$958.84"}, {"id":120,"employee_id":"738568347-9","first_name":"Hillard","last_name":"Khomich","email":"hkhomich3b@mtv.com","phone":"567-127-1119","gender":"Male","department":"Legal","address":"188 Steensland Point","hire_date":"4/23/2018","website":"http://bloomberg.com","notes":"et commodo vulputate justo in blandit ultrices enim lorem ipsum","status":4,"type":3,"salary":"$314.28"}, {"id":121,"employee_id":"025483363-2","first_name":"Fiona","last_name":"Bingell","email":"fbingell3c@360.cn","phone":"331-537-3139","gender":"Female","department":"Legal","address":"96 Talisman Park","hire_date":"5/20/2018","website":"http://canalblog.com","notes":"augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa id","status":5,"type":3,"salary":"$2374.45"}, {"id":122,"employee_id":"960974875-9","first_name":"Sigmund","last_name":"Crampsy","email":"scrampsy3d@opera.com","phone":"152-487-2700","gender":"Male","department":"Human Resources","address":"7 Sutherland Street","hire_date":"12/9/2017","website":"https://washingtonpost.com","notes":"montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis","status":5,"type":2,"salary":"$332.45"}, {"id":123,"employee_id":"926752427-5","first_name":"Rasla","last_name":"Middell","email":"rmiddell3e@columbia.edu","phone":"868-976-3698","gender":"Female","department":"Services","address":"2 Gina Hill","hire_date":"11/23/2017","website":"http://timesonline.co.uk","notes":"pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut","status":2,"type":2,"salary":"$1018.57"}, {"id":124,"employee_id":"806699807-4","first_name":"Iorgo","last_name":"Rigmond","email":"irigmond3f@google.it","phone":"746-546-5211","gender":"Male","department":"Accounting","address":"842 Pearson Pass","hire_date":"9/7/2017","website":"http://digg.com","notes":"luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend","status":3,"type":1,"salary":"$2010.96"}, {"id":125,"employee_id":"155788341-6","first_name":"Tessa","last_name":"Rohan","email":"trohan3g@cbslocal.com","phone":"630-293-4519","gender":"Female","department":"Product Management","address":"1 Reinke Crossing","hire_date":"12/10/2017","website":"http://google.com","notes":"vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna pretium nisl","status":3,"type":3,"salary":"$1384.49"}, {"id":126,"employee_id":"682416426-7","first_name":"Solly","last_name":"Kellet","email":"skellet3h@google.fr","phone":"377-570-8318","gender":"Male","department":"Support","address":"468 Marquette Pass","hire_date":"11/24/2017","website":"https://china.com.cn","notes":"nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum","status":5,"type":1,"salary":"$956.94"}, {"id":127,"employee_id":"612351588-8","first_name":"Jarret","last_name":"O\'Halloran","email":"johalloran3i@indiatimes.com","phone":"154-312-7232","gender":"Male","department":"Support","address":"199 Orin Road","hire_date":"10/20/2017","website":"http://nytimes.com","notes":"elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium","status":5,"type":2,"salary":"$2463.22"}, {"id":128,"employee_id":"655867342-8","first_name":"Annnora","last_name":"Soles","email":"asoles3j@cafepress.com","phone":"158-251-8502","gender":"Female","department":"Human Resources","address":"59 Fordem Lane","hire_date":"12/15/2017","website":"http://loc.gov","notes":"odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices enim lorem ipsum dolor sit amet","status":5,"type":2,"salary":"$859.89"}, {"id":129,"employee_id":"373591806-9","first_name":"Flory","last_name":"Dabinett","email":"fdabinett3k@cmu.edu","phone":"809-718-7259","gender":"Female","department":"Human Resources","address":"5711 Maywood Parkway","hire_date":"10/28/2017","website":"http://apple.com","notes":"diam in magna bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce posuere","status":6,"type":3,"salary":"$2060.00"}, {"id":130,"employee_id":"959199127-4","first_name":"Brigham","last_name":"Winch","email":"bwinch3l@prweb.com","phone":"942-871-6319","gender":"Male","department":"Sales","address":"641 Kings Trail","hire_date":"3/17/2018","website":"http://topsy.com","notes":"non velit donec diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis","status":4,"type":1,"salary":"$1022.05"}, {"id":131,"employee_id":"961903930-0","first_name":"Siusan","last_name":"Megahey","email":"smegahey3m@myspace.com","phone":"357-588-1304","gender":"Female","department":"Human Resources","address":"5 Ludington Road","hire_date":"6/22/2018","website":"http://shareasale.com","notes":"tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis","status":2,"type":3,"salary":"$1406.53"}, {"id":132,"employee_id":"900687666-6","first_name":"Ax","last_name":"Kores","email":"akores3n@tripadvisor.com","phone":"439-825-2783","gender":"Male","department":"Business Development","address":"63271 Pierstorff Crossing","hire_date":"5/14/2018","website":"http://hibu.com","notes":"tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum","status":2,"type":2,"salary":"$1135.64"}, {"id":133,"employee_id":"466975330-4","first_name":"Sander","last_name":"Chinnick","email":"schinnick3o@cbslocal.com","phone":"374-645-5030","gender":"Male","department":"Accounting","address":"37 Darwin Circle","hire_date":"2/7/2018","website":"http://histats.com","notes":"mi nulla ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis","status":1,"type":3,"salary":"$381.91"}, {"id":134,"employee_id":"408416234-5","first_name":"Keir","last_name":"Coulling","email":"kcoulling3p@usa.gov","phone":"118-443-0247","gender":"Male","department":"Legal","address":"4376 Kings Center","hire_date":"10/3/2017","website":"http://omniture.com","notes":"lorem ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id","status":5,"type":2,"salary":"$2378.33"}, {"id":135,"employee_id":"531987885-0","first_name":"Sid","last_name":"Tenaunt","email":"stenaunt3q@phpbb.com","phone":"295-386-3775","gender":"Male","department":"Sales","address":"222 Blaine Terrace","hire_date":"6/27/2018","website":"http://nationalgeographic.com","notes":"justo etiam pretium iaculis justo in hac habitasse platea dictumst","status":5,"type":1,"salary":"$927.08"}, {"id":136,"employee_id":"010876438-9","first_name":"Hunfredo","last_name":"Bastone","email":"hbastone3r@gmpg.org","phone":"509-962-4856","gender":"Male","department":"Services","address":"2 Cambridge Terrace","hire_date":"11/22/2017","website":"http://hc360.com","notes":"condimentum neque sapien placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet","status":1,"type":2,"salary":"$1542.99"}, {"id":137,"employee_id":"673641606-X","first_name":"Virgil","last_name":"Mallabon","email":"vmallabon3s@mysql.com","phone":"412-268-6506","gender":"Male","department":"Business Development","address":"9 Havey Trail","hire_date":"3/26/2018","website":"https://fc2.com","notes":"non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci pede venenatis","status":1,"type":2,"salary":"$533.91"}, {"id":138,"employee_id":"674583602-5","first_name":"Raimund","last_name":"Garthshore","email":"rgarthshore3t@i2i.jp","phone":"690-495-5929","gender":"Male","department":"Support","address":"9 Toban Pass","hire_date":"7/4/2018","website":"https://icq.com","notes":"cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum","status":4,"type":3,"salary":"$1455.67"}, {"id":139,"employee_id":"669103553-4","first_name":"Velvet","last_name":"Chaffey","email":"vchaffey3u@mit.edu","phone":"751-664-7048","gender":"Female","department":"Human Resources","address":"24 Dexter Avenue","hire_date":"6/29/2018","website":"https://eepurl.com","notes":"sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed","status":6,"type":2,"salary":"$1608.14"}, {"id":140,"employee_id":"603845266-4","first_name":"Warren","last_name":"Course","email":"wcourse3v@who.int","phone":"714-691-0830","gender":"Male","department":"Research and Development","address":"1 Stoughton Trail","hire_date":"12/7/2017","website":"http://dedecms.com","notes":"ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent","status":2,"type":3,"salary":"$1183.79"}, {"id":141,"employee_id":"653433959-5","first_name":"Bobina","last_name":"Stroyan","email":"bstroyan3w@spotify.com","phone":"247-343-7540","gender":"Female","department":"Product Management","address":"127 Westerfield Way","hire_date":"8/20/2017","website":"https://unicef.org","notes":"pretium iaculis diam erat fermentum justo nec condimentum neque sapien placerat ante nulla justo","status":2,"type":2,"salary":"$1289.19"}, {"id":142,"employee_id":"713131534-6","first_name":"Ulrich","last_name":"Monsey","email":"umonsey3x@google.co.jp","phone":"585-711-5479","gender":"Male","department":"Business Development","address":"638 Birchwood Pass","hire_date":"7/2/2018","website":"http://earthlink.net","notes":"at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet","status":3,"type":3,"salary":"$1350.77"}, {"id":143,"employee_id":"411238844-6","first_name":"Darrell","last_name":"Kelson","email":"dkelson3y@aol.com","phone":"755-795-2495","gender":"Male","department":"Support","address":"2 Eagan Center","hire_date":"11/1/2017","website":"http://cpanel.net","notes":"vel est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac est lacinia nisi","status":6,"type":3,"salary":"$543.19"}, {"id":144,"employee_id":"341336740-4","first_name":"Brook","last_name":"Temblett","email":"btemblett3z@unesco.org","phone":"985-734-8064","gender":"Male","department":"Marketing","address":"370 Garrison Street","hire_date":"1/16/2018","website":"https://devhub.com","notes":"rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed","status":3,"type":1,"salary":"$354.44"}, {"id":145,"employee_id":"387002802-5","first_name":"Portia","last_name":"Wybern","email":"pwybern40@example.com","phone":"239-713-0899","gender":"Female","department":"Services","address":"7 Tennessee Point","hire_date":"5/28/2018","website":"http://163.com","notes":"rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis","status":2,"type":1,"salary":"$2208.41"}, {"id":146,"employee_id":"595244490-3","first_name":"Debi","last_name":"Grady","email":"dgrady41@icio.us","phone":"959-988-3108","gender":"Female","department":"Business Development","address":"18955 Doe Crossing Place","hire_date":"3/10/2018","website":"http://cam.ac.uk","notes":"in felis donec semper sapien a libero nam dui proin leo odio porttitor id consequat in consequat ut","status":4,"type":2,"salary":"$1167.37"}, {"id":147,"employee_id":"877613651-5","first_name":"Moise","last_name":"Garnson","email":"mgarnson42@dailymail.co.uk","phone":"402-162-8313","gender":"Male","department":"Training","address":"14 Grayhawk Way","hire_date":"2/3/2018","website":"http://t.co","notes":"nulla ut erat id mauris vulputate elementum nullam varius nulla facilisi cras non velit nec nisi","status":5,"type":2,"salary":"$2274.95"}, {"id":148,"employee_id":"057397050-5","first_name":"Val","last_name":"Berthomier","email":"vberthomier43@mozilla.com","phone":"952-537-2739","gender":"Male","department":"Engineering","address":"0 Hanson Junction","hire_date":"2/23/2018","website":"http://smh.com.au","notes":"quam pharetra magna ac consequat metus sapien ut nunc vestibulum ante ipsum primis in","status":3,"type":1,"salary":"$2268.10"}, {"id":149,"employee_id":"594276612-6","first_name":"Brynn","last_name":"Cosgry","email":"bcosgry44@wikimedia.org","phone":"897-152-4927","gender":"Female","department":"Legal","address":"68483 Bowman Pass","hire_date":"6/11/2018","website":"http://unblog.fr","notes":"elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie","status":2,"type":1,"salary":"$304.63"}, {"id":150,"employee_id":"353613312-6","first_name":"Vitoria","last_name":"Crickmoor","email":"vcrickmoor45@taobao.com","phone":"607-928-5380","gender":"Female","department":"Human Resources","address":"77 Browning Avenue","hire_date":"11/20/2017","website":"http://e-recht24.de","notes":"enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis","status":5,"type":3,"salary":"$924.79"}, {"id":151,"employee_id":"291902769-7","first_name":"Carrissa","last_name":"Brownell","email":"cbrownell46@answers.com","phone":"128-824-6498","gender":"Female","department":"Services","address":"32386 Di Loreto Park","hire_date":"1/14/2018","website":"https://cbslocal.com","notes":"praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in","status":4,"type":2,"salary":"$2130.86"}, {"id":152,"employee_id":"842513206-1","first_name":"Dyann","last_name":"Pentecost","email":"dpentecost47@scientificamerican.com","phone":"558-509-9826","gender":"Female","department":"Human Resources","address":"9 Ridgeview Lane","hire_date":"3/25/2018","website":"https://irs.gov","notes":"vitae quam suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris morbi non","status":6,"type":3,"salary":"$954.81"}, {"id":153,"employee_id":"878064554-2","first_name":"Waldo","last_name":"Bessey","email":"wbessey48@auda.org.au","phone":"986-291-1320","gender":"Male","department":"Business Development","address":"18 Roxbury Lane","hire_date":"4/2/2018","website":"https://biglobe.ne.jp","notes":"sagittis dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti in","status":5,"type":3,"salary":"$2452.02"}, {"id":154,"employee_id":"845261853-0","first_name":"Jaymee","last_name":"Longstaffe","email":"jlongstaffe49@comsenz.com","phone":"986-707-1097","gender":"Female","department":"Human Resources","address":"4998 Dakota Drive","hire_date":"7/2/2018","website":"http://comcast.net","notes":"morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl","status":1,"type":1,"salary":"$2401.60"}, {"id":155,"employee_id":"133467041-2","first_name":"Gui","last_name":"Treuge","email":"gtreuge4a@eventbrite.com","phone":"446-433-2464","gender":"Female","department":"Accounting","address":"44 Meadow Ridge Parkway","hire_date":"2/19/2018","website":"http://amazon.com","notes":"vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget","status":3,"type":2,"salary":"$1260.96"}, {"id":156,"employee_id":"430655033-8","first_name":"Robinet","last_name":"Pilpovic","email":"rpilpovic4b@clickbank.net","phone":"719-201-5508","gender":"Female","department":"Business Development","address":"73 Talmadge Terrace","hire_date":"12/14/2017","website":"http://fda.gov","notes":"tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus","status":3,"type":3,"salary":"$996.17"}, {"id":157,"employee_id":"273670127-5","first_name":"Dominique","last_name":"Pinnion","email":"dpinnion4c@myspace.com","phone":"588-678-9990","gender":"Male","department":"Accounting","address":"0 Columbus Parkway","hire_date":"1/16/2018","website":"http://fastcompany.com","notes":"nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget semper rutrum nulla","status":6,"type":1,"salary":"$2052.55"}, {"id":158,"employee_id":"514667447-7","first_name":"Nichole","last_name":"Sneesby","email":"nsneesby4d@google.com.hk","phone":"535-321-5685","gender":"Female","department":"Services","address":"84 Forest Run Trail","hire_date":"6/2/2018","website":"http://ibm.com","notes":"mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean","status":6,"type":3,"salary":"$517.69"}, {"id":159,"employee_id":"959381289-X","first_name":"Evvie","last_name":"Jurek","email":"ejurek4e@dailymail.co.uk","phone":"933-940-5953","gender":"Female","department":"Legal","address":"9807 Hagan Road","hire_date":"1/30/2018","website":"http://jigsy.com","notes":"dui proin leo odio porttitor id consequat in consequat ut","status":6,"type":3,"salary":"$475.90"}, {"id":160,"employee_id":"997401253-8","first_name":"Susana","last_name":"Tessier","email":"stessier4f@ox.ac.uk","phone":"723-896-2166","gender":"Female","department":"Sales","address":"9 Chive Place","hire_date":"4/3/2018","website":"https://google.com.br","notes":"orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum","status":3,"type":3,"salary":"$579.03"}, {"id":161,"employee_id":"252276663-5","first_name":"Kellyann","last_name":"Mangham","email":"kmangham4g@mtv.com","phone":"688-720-2536","gender":"Female","department":"Marketing","address":"70 Muir Court","hire_date":"7/31/2017","website":"https://baidu.com","notes":"non quam nec dui luctus rutrum nulla tellus in sagittis","status":6,"type":1,"salary":"$1833.96"}, {"id":162,"employee_id":"684537562-3","first_name":"Reta","last_name":"Downham","email":"rdownham4h@columbia.edu","phone":"805-542-6622","gender":"Female","department":"Training","address":"3 Sage Hill","hire_date":"10/7/2017","website":"https://cloudflare.com","notes":"erat id mauris vulputate elementum nullam varius nulla facilisi cras non velit nec nisi","status":2,"type":1,"salary":"$254.59"}, {"id":163,"employee_id":"755134881-6","first_name":"Abbe","last_name":"Didsbury","email":"adidsbury4i@usda.gov","phone":"911-906-3632","gender":"Female","department":"Support","address":"3527 Scofield Drive","hire_date":"3/27/2018","website":"http://webs.com","notes":"maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie","status":1,"type":2,"salary":"$1163.39"}, {"id":164,"employee_id":"983150152-7","first_name":"Bobbe","last_name":"Le Frank","email":"blefrank4j@youtube.com","phone":"777-324-7190","gender":"Female","department":"Accounting","address":"56607 Oneill Hill","hire_date":"8/18/2017","website":"http://salon.com","notes":"erat tortor sollicitudin mi sit amet lobortis sapien sapien non mi integer ac neque duis bibendum","status":1,"type":2,"salary":"$2173.86"}, {"id":165,"employee_id":"204907720-3","first_name":"Cal","last_name":"Scothorn","email":"cscothorn4k@miibeian.gov.cn","phone":"194-212-1904","gender":"Male","department":"Training","address":"468 Grim Street","hire_date":"5/19/2018","website":"https://ftc.gov","notes":"vehicula consequat morbi a ipsum integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id","status":4,"type":2,"salary":"$2034.27"}, {"id":166,"employee_id":"697540250-7","first_name":"Lolly","last_name":"Treneman","email":"ltreneman4l@paypal.com","phone":"632-859-5314","gender":"Female","department":"Marketing","address":"72009 Riverside Lane","hire_date":"5/29/2018","website":"https://va.gov","notes":"in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt","status":5,"type":3,"salary":"$753.35"}, {"id":167,"employee_id":"115690768-3","first_name":"Cecilla","last_name":"Lapenna","email":"clapenna4m@123-reg.co.uk","phone":"628-961-1692","gender":"Female","department":"Human Resources","address":"9280 Kings Junction","hire_date":"9/29/2017","website":"https://desdev.cn","notes":"accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor","status":1,"type":1,"salary":"$2311.77"}, {"id":168,"employee_id":"571951854-1","first_name":"Dulcia","last_name":"Salthouse","email":"dsalthouse4n@woothemes.com","phone":"908-491-4688","gender":"Female","department":"Accounting","address":"46165 Lukken Plaza","hire_date":"11/12/2017","website":"https://hostgator.com","notes":"vulputate justo in blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris non","status":6,"type":1,"salary":"$822.82"}, {"id":169,"employee_id":"977337629-X","first_name":"Terrijo","last_name":"Creegan","email":"tcreegan4o@sogou.com","phone":"482-913-3726","gender":"Female","department":"Product Management","address":"4717 Hayes Hill","hire_date":"7/26/2017","website":"https://google.fr","notes":"nulla suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus et","status":6,"type":1,"salary":"$484.63"}, {"id":170,"employee_id":"027232140-0","first_name":"Edsel","last_name":"Coward","email":"ecoward4p@hatena.ne.jp","phone":"612-293-5449","gender":"Male","department":"Product Management","address":"3 Westerfield Plaza","hire_date":"8/8/2017","website":"http://prweb.com","notes":"suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus","status":1,"type":3,"salary":"$592.46"}, {"id":171,"employee_id":"263088468-6","first_name":"Ansel","last_name":"Monteith","email":"amonteith4q@deliciousdays.com","phone":"570-559-5834","gender":"Male","department":"Marketing","address":"3596 Elka Alley","hire_date":"12/15/2017","website":"http://paypal.com","notes":"luctus et ultrices posuere cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a","status":3,"type":3,"salary":"$1449.66"}, {"id":172,"employee_id":"530835369-7","first_name":"Adler","last_name":"Medford","email":"amedford4r@ucsd.edu","phone":"595-468-9382","gender":"Male","department":"Training","address":"87 Namekagon Road","hire_date":"3/13/2018","website":"http://princeton.edu","notes":"sit amet lobortis sapien sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla","status":2,"type":1,"salary":"$399.65"}, {"id":173,"employee_id":"607099253-9","first_name":"Kira","last_name":"Berford","email":"kberford4s@lulu.com","phone":"572-891-2967","gender":"Female","department":"Accounting","address":"414 Ruskin Terrace","hire_date":"1/16/2018","website":"http://instagram.com","notes":"et tempus semper est quam pharetra magna ac consequat metus sapien","status":1,"type":3,"salary":"$1928.81"}, {"id":174,"employee_id":"798630883-4","first_name":"Vivyanne","last_name":"Furzey","email":"vfurzey4t@ca.gov","phone":"278-121-5340","gender":"Female","department":"Human Resources","address":"94 Esch Park","hire_date":"5/17/2018","website":"https://amazon.de","notes":"faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices","status":6,"type":2,"salary":"$2375.11"}, {"id":175,"employee_id":"681999959-3","first_name":"Nikoletta","last_name":"Robelow","email":"nrobelow4u@smugmug.com","phone":"360-351-4307","gender":"Female","department":"Engineering","address":"5 Starling Trail","hire_date":"8/20/2017","website":"https://barnesandnoble.com","notes":"odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi","status":4,"type":2,"salary":"$250.80"}, {"id":176,"employee_id":"011864426-2","first_name":"Mathew","last_name":"Battyll","email":"mbattyll4v@over-blog.com","phone":"321-386-3766","gender":"Male","department":"Research and Development","address":"65072 Carey Crossing","hire_date":"5/15/2018","website":"http://ibm.com","notes":"vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat","status":2,"type":2,"salary":"$636.70"}, {"id":177,"employee_id":"570137655-9","first_name":"Forrest","last_name":"Cowderoy","email":"fcowderoy4w@ask.com","phone":"618-278-7932","gender":"Male","department":"Sales","address":"351 Buell Hill","hire_date":"12/26/2017","website":"https://123-reg.co.uk","notes":"magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet lobortis sapien sapien non mi","status":5,"type":3,"salary":"$699.94"}, {"id":178,"employee_id":"418945567-9","first_name":"Ax","last_name":"Brum","email":"abrum4x@ox.ac.uk","phone":"850-631-2124","gender":"Male","department":"Product Management","address":"261 Evergreen Parkway","hire_date":"8/31/2017","website":"http://narod.ru","notes":"non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in","status":1,"type":2,"salary":"$257.02"}, {"id":179,"employee_id":"848896179-0","first_name":"Travers","last_name":"Francecione","email":"tfrancecione4y@yelp.com","phone":"812-741-5424","gender":"Male","department":"Business Development","address":"425 Redwing Street","hire_date":"10/18/2017","website":"https://examiner.com","notes":"nibh fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse","status":6,"type":3,"salary":"$2117.44"}, {"id":180,"employee_id":"819724851-6","first_name":"Eamon","last_name":"McGarrie","email":"emcgarrie4z@upenn.edu","phone":"778-137-8339","gender":"Male","department":"Accounting","address":"1045 Crest Line Way","hire_date":"8/18/2017","website":"http://whitehouse.gov","notes":"justo eu massa donec dapibus duis at velit eu est congue elementum in hac habitasse platea","status":2,"type":1,"salary":"$493.98"}, {"id":181,"employee_id":"194192430-1","first_name":"Jenda","last_name":"Butts","email":"jbutts50@privacy.gov.au","phone":"396-649-0972","gender":"Female","department":"Research and Development","address":"25264 Sugar Alley","hire_date":"10/16/2017","website":"https://adobe.com","notes":"pede venenatis non sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi","status":1,"type":2,"salary":"$957.15"}, {"id":182,"employee_id":"750517497-5","first_name":"Batsheva","last_name":"O\'Hoey","email":"bohoey51@linkedin.com","phone":"545-981-9250","gender":"Female","department":"Services","address":"83 Swallow Circle","hire_date":"10/20/2017","website":"https://army.mil","notes":"duis at velit eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id","status":1,"type":1,"salary":"$1379.67"}, {"id":183,"employee_id":"222948193-2","first_name":"Garrick","last_name":"Coale","email":"gcoale52@blogspot.com","phone":"891-244-1372","gender":"Male","department":"Research and Development","address":"8 Lien Circle","hire_date":"10/14/2017","website":"https://qq.com","notes":"ligula sit amet eleifend pede libero quis orci nullam molestie nibh in lectus pellentesque at nulla suspendisse potenti cras in","status":4,"type":2,"salary":"$1818.60"}, {"id":184,"employee_id":"006801712-X","first_name":"Cody","last_name":"Myhan","email":"cmyhan53@hc360.com","phone":"271-326-1892","gender":"Male","department":"Sales","address":"1993 Forest Run Pass","hire_date":"3/23/2018","website":"http://vinaora.com","notes":"orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi","status":6,"type":3,"salary":"$1057.20"}, {"id":185,"employee_id":"093515326-8","first_name":"Osbert","last_name":"Musla","email":"omusla54@eventbrite.com","phone":"480-152-0632","gender":"Male","department":"Product Management","address":"032 Annamark Terrace","hire_date":"3/26/2018","website":"http://bbc.co.uk","notes":"neque libero convallis eget eleifend luctus ultricies eu nibh quisque","status":4,"type":2,"salary":"$1241.07"}, {"id":186,"employee_id":"532269185-5","first_name":"Ranice","last_name":"Lebond","email":"rlebond55@google.co.jp","phone":"157-709-4371","gender":"Female","department":"Legal","address":"2 Randy Junction","hire_date":"7/10/2018","website":"https://diigo.com","notes":"ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit","status":3,"type":1,"salary":"$1139.94"}, {"id":187,"employee_id":"820600310-X","first_name":"Guthrie","last_name":"Bandey","email":"gbandey56@studiopress.com","phone":"543-161-2237","gender":"Male","department":"Research and Development","address":"0 Pine View Circle","hire_date":"6/28/2018","website":"https://auda.org.au","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae","status":5,"type":2,"salary":"$2236.51"}, {"id":188,"employee_id":"665284501-6","first_name":"Launce","last_name":"Geldard","email":"lgeldard57@yandex.ru","phone":"506-333-2822","gender":"Male","department":"Accounting","address":"17 Haas Center","hire_date":"12/9/2017","website":"https://newsvine.com","notes":"ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed sagittis nam congue","status":4,"type":1,"salary":"$1815.94"}, {"id":189,"employee_id":"782377092-X","first_name":"Connie","last_name":"Toope","email":"ctoope58@mediafire.com","phone":"651-464-3542","gender":"Female","department":"Training","address":"3 Russell Center","hire_date":"12/14/2017","website":"https://unblog.fr","notes":"eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio odio elementum eu interdum eu tincidunt","status":5,"type":2,"salary":"$1736.72"}, {"id":190,"employee_id":"251188287-6","first_name":"Lawton","last_name":"Prigmore","email":"lprigmore59@cnet.com","phone":"738-575-3587","gender":"Male","department":"Legal","address":"050 Eastlawn Avenue","hire_date":"9/4/2017","website":"http://uol.com.br","notes":"adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue vivamus metus arcu","status":1,"type":1,"salary":"$1670.77"}, {"id":191,"employee_id":"219193763-2","first_name":"Barbara","last_name":"Aleksankin","email":"baleksankin5a@tiny.cc","phone":"224-597-1015","gender":"Female","department":"Engineering","address":"1 Gerald Crossing","hire_date":"6/14/2018","website":"http://soundcloud.com","notes":"imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce posuere","status":3,"type":1,"salary":"$2209.41"}, {"id":192,"employee_id":"643523768-9","first_name":"Bab","last_name":"Vallack","email":"bvallack5b@slashdot.org","phone":"900-188-1943","gender":"Female","department":"Marketing","address":"43013 Rutledge Avenue","hire_date":"5/14/2018","website":"http://addtoany.com","notes":"sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque eget","status":3,"type":1,"salary":"$975.83"}, {"id":193,"employee_id":"524396310-0","first_name":"Billi","last_name":"Palia","email":"bpalia5c@google.de","phone":"328-700-9101","gender":"Female","department":"Marketing","address":"66 Pearson Court","hire_date":"3/5/2018","website":"http://trellian.com","notes":"pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est","status":3,"type":2,"salary":"$1311.25"}, {"id":194,"employee_id":"666722147-1","first_name":"Gallard","last_name":"Gough","email":"ggough5d@comcast.net","phone":"943-155-0838","gender":"Male","department":"Marketing","address":"742 Eliot Street","hire_date":"11/2/2017","website":"http://latimes.com","notes":"consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel lectus in quam fringilla rhoncus mauris enim leo","status":6,"type":3,"salary":"$1869.81"}, {"id":195,"employee_id":"433807272-5","first_name":"Matty","last_name":"Lante","email":"mlante5e@netscape.com","phone":"423-832-1948","gender":"Male","department":"Product Management","address":"33278 Northport Center","hire_date":"4/14/2018","website":"https://cornell.edu","notes":"quisque ut erat curabitur gravida nisi at nibh in hac habitasse","status":6,"type":3,"salary":"$1511.57"}, {"id":196,"employee_id":"082774740-3","first_name":"Niki","last_name":"Surgen","email":"nsurgen5f@unc.edu","phone":"235-964-4962","gender":"Female","department":"Sales","address":"477 Maryland Park","hire_date":"6/3/2018","website":"https://stumbleupon.com","notes":"posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel","status":6,"type":3,"salary":"$1742.42"}, {"id":197,"employee_id":"496412396-0","first_name":"Erek","last_name":"Devereu","email":"edevereu5g@nydailynews.com","phone":"988-854-5635","gender":"Male","department":"Marketing","address":"4222 Gateway Junction","hire_date":"12/2/2017","website":"http://purevolume.com","notes":"posuere cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin","status":3,"type":1,"salary":"$2213.58"}, {"id":198,"employee_id":"815701353-4","first_name":"Ange","last_name":"Bassill","email":"abassill5h@odnoklassniki.ru","phone":"573-589-2234","gender":"Female","department":"Business Development","address":"7450 Maywood Crossing","hire_date":"12/18/2017","website":"http://time.com","notes":"a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis","status":2,"type":3,"salary":"$2381.50"}, {"id":199,"employee_id":"079850265-7","first_name":"Robena","last_name":"Jiggins","email":"rjiggins5i@comcast.net","phone":"202-269-3768","gender":"Female","department":"Accounting","address":"81 Golf View Circle","hire_date":"7/28/2017","website":"http://constantcontact.com","notes":"lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet et","status":6,"type":1,"salary":"$2227.40"}, {"id":200,"employee_id":"710192734-3","first_name":"Lari","last_name":"Sweetenham","email":"lsweetenham5j@amazon.co.jp","phone":"838-858-2584","gender":"Female","department":"Business Development","address":"1021 Mesta Hill","hire_date":"8/11/2017","website":"https://typepad.com","notes":"sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in","status":1,"type":1,"salary":"$1540.09"}, {"id":201,"employee_id":"651581571-9","first_name":"Gaelan","last_name":"Schuh","email":"gschuh5k@1688.com","phone":"745-173-2305","gender":"Male","department":"Support","address":"1 Pennsylvania Parkway","hire_date":"7/10/2018","website":"http://vk.com","notes":"interdum in ante vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus","status":6,"type":2,"salary":"$621.44"}, {"id":202,"employee_id":"396937197-X","first_name":"Valentino","last_name":"Vela","email":"vvela5l@t-online.de","phone":"549-694-5062","gender":"Male","department":"Support","address":"132 Mosinee Court","hire_date":"10/13/2017","website":"http://theglobeandmail.com","notes":"ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae","status":6,"type":2,"salary":"$1570.87"}, {"id":203,"employee_id":"455201347-5","first_name":"Paxton","last_name":"Westwood","email":"pwestwood5m@mashable.com","phone":"404-552-2652","gender":"Male","department":"Research and Development","address":"13644 Pepper Wood Road","hire_date":"4/14/2018","website":"http://amazon.co.uk","notes":"non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque","status":6,"type":1,"salary":"$307.42"}, {"id":204,"employee_id":"963542216-4","first_name":"Gianina","last_name":"Dragon","email":"gdragon5n@cmu.edu","phone":"478-617-0604","gender":"Female","department":"Legal","address":"30 Golf Course Court","hire_date":"10/20/2017","website":"http://taobao.com","notes":"amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus semper interdum","status":1,"type":2,"salary":"$2042.72"}, {"id":205,"employee_id":"005186075-9","first_name":"Patricio","last_name":"Jentges","email":"pjentges5o@cyberchimps.com","phone":"632-971-4495","gender":"Male","department":"Sales","address":"68 Clemons Alley","hire_date":"5/14/2018","website":"http://squidoo.com","notes":"ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam","status":1,"type":3,"salary":"$1983.72"}, {"id":206,"employee_id":"596930988-5","first_name":"Bogey","last_name":"Heisler","email":"bheisler5p@mashable.com","phone":"731-748-1811","gender":"Male","department":"Business Development","address":"58943 Meadow Valley Alley","hire_date":"5/11/2018","website":"http://economist.com","notes":"ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem","status":1,"type":1,"salary":"$1040.61"}, {"id":207,"employee_id":"499909156-9","first_name":"Spenser","last_name":"Pyle","email":"spyle5q@plala.or.jp","phone":"566-843-7913","gender":"Male","department":"Support","address":"900 Fordem Plaza","hire_date":"2/10/2018","website":"https://tinyurl.com","notes":"luctus ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci","status":3,"type":3,"salary":"$2133.09"}, {"id":208,"employee_id":"401266959-1","first_name":"Rayna","last_name":"Crepin","email":"rcrepin5r@webeden.co.uk","phone":"592-304-8987","gender":"Female","department":"Training","address":"469 Dovetail Plaza","hire_date":"7/3/2018","website":"https://ezinearticles.com","notes":"rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus dapibus","status":5,"type":3,"salary":"$1671.45"}, {"id":209,"employee_id":"166602922-X","first_name":"Nathalie","last_name":"Gall","email":"ngall5s@is.gd","phone":"801-654-6290","gender":"Female","department":"Human Resources","address":"4719 Stuart Plaza","hire_date":"3/22/2018","website":"http://blogspot.com","notes":"sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et","status":6,"type":1,"salary":"$1524.49"}, {"id":210,"employee_id":"284177230-6","first_name":"Ransell","last_name":"Ammer","email":"rammer5t@cnet.com","phone":"610-711-4680","gender":"Male","department":"Business Development","address":"48 Thierer Center","hire_date":"2/3/2018","website":"https://e-recht24.de","notes":"ante vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis","status":1,"type":2,"salary":"$892.45"}, {"id":211,"employee_id":"741216645-X","first_name":"Chrissie","last_name":"Devereu","email":"cdevereu5u@chron.com","phone":"763-146-3697","gender":"Male","department":"Research and Development","address":"90 Hansons Point","hire_date":"5/7/2018","website":"https://ebay.co.uk","notes":"sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula","status":2,"type":3,"salary":"$391.22"}, {"id":212,"employee_id":"837406761-6","first_name":"Odell","last_name":"Sherwood","email":"osherwood5v@umich.edu","phone":"959-550-4031","gender":"Male","department":"Sales","address":"04 Talmadge Lane","hire_date":"2/27/2018","website":"https://slideshare.net","notes":"in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum","status":4,"type":3,"salary":"$857.07"}, {"id":213,"employee_id":"411808497-X","first_name":"Baudoin","last_name":"Cesco","email":"bcesco5w@linkedin.com","phone":"416-193-4592","gender":"Male","department":"Legal","address":"1510 Michigan Point","hire_date":"8/1/2017","website":"http://simplemachines.org","notes":"vestibulum quam sapien varius ut blandit non interdum in ante vestibulum","status":1,"type":2,"salary":"$1358.70"}, {"id":214,"employee_id":"261229472-4","first_name":"Carree","last_name":"Edlington","email":"cedlington5x@ebay.com","phone":"194-150-1659","gender":"Female","department":"Research and Development","address":"30 Grayhawk Park","hire_date":"10/14/2017","website":"http://fc2.com","notes":"rutrum nulla nunc purus phasellus in felis donec semper sapien a libero nam dui proin leo","status":4,"type":3,"salary":"$1284.88"}, {"id":215,"employee_id":"929963538-2","first_name":"Mordecai","last_name":"Hatherley","email":"mhatherley5y@amazon.de","phone":"858-490-5169","gender":"Male","department":"Research and Development","address":"13854 Independence Court","hire_date":"8/24/2017","website":"https://sciencedaily.com","notes":"convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel lectus in","status":4,"type":2,"salary":"$2417.62"}, {"id":216,"employee_id":"037752030-6","first_name":"Melosa","last_name":"Overstone","email":"moverstone5z@canalblog.com","phone":"318-948-9174","gender":"Female","department":"Product Management","address":"61986 Emmet Avenue","hire_date":"4/19/2018","website":"http://blogspot.com","notes":"fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet","status":1,"type":2,"salary":"$2259.01"}, {"id":217,"employee_id":"532713055-X","first_name":"Shelden","last_name":"Dinnis","email":"sdinnis60@tinypic.com","phone":"333-186-8762","gender":"Male","department":"Accounting","address":"7255 Utah Way","hire_date":"3/14/2018","website":"https://4shared.com","notes":"libero rutrum ac lobortis vel dapibus at diam nam tristique tortor eu pede","status":3,"type":3,"salary":"$1840.38"}, {"id":218,"employee_id":"967102811-X","first_name":"Loydie","last_name":"Pavese","email":"lpavese61@a8.net","phone":"434-133-4789","gender":"Male","department":"Human Resources","address":"02602 Lien Point","hire_date":"1/4/2018","website":"https://jalbum.net","notes":"donec dapibus duis at velit eu est congue elementum in","status":6,"type":3,"salary":"$434.26"}, {"id":219,"employee_id":"460645399-0","first_name":"Alasteir","last_name":"Swetland","email":"aswetland62@amazon.co.jp","phone":"361-389-4622","gender":"Male","department":"Human Resources","address":"65 Basil Parkway","hire_date":"6/16/2018","website":"https://wikimedia.org","notes":"tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat","status":5,"type":2,"salary":"$1861.28"}, {"id":220,"employee_id":"099453213-X","first_name":"Gabbie","last_name":"McGroarty","email":"gmcgroarty63@ox.ac.uk","phone":"322-282-2538","gender":"Male","department":"Training","address":"686 Hudson Court","hire_date":"7/20/2017","website":"https://telegraph.co.uk","notes":"tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim","status":2,"type":3,"salary":"$1303.59"}, {"id":221,"employee_id":"697803051-1","first_name":"Maryanna","last_name":"McCrossan","email":"mmccrossan64@wsj.com","phone":"830-955-6927","gender":"Female","department":"Services","address":"3 Monument Lane","hire_date":"2/16/2018","website":"https://usda.gov","notes":"suscipit a feugiat et eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare","status":3,"type":2,"salary":"$1091.51"}, {"id":222,"employee_id":"808718144-1","first_name":"Doreen","last_name":"Hutt","email":"dhutt65@jugem.jp","phone":"374-621-0333","gender":"Female","department":"Product Management","address":"198 Sherman Alley","hire_date":"1/16/2018","website":"http://goo.gl","notes":"platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum praesent blandit lacinia","status":4,"type":1,"salary":"$1640.43"}, {"id":223,"employee_id":"749600110-4","first_name":"Valle","last_name":"Toulamain","email":"vtoulamain66@mail.ru","phone":"179-127-8460","gender":"Male","department":"Human Resources","address":"305 North Plaza","hire_date":"10/25/2017","website":"http://blogtalkradio.com","notes":"erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi","status":5,"type":1,"salary":"$2476.02"}, {"id":224,"employee_id":"897432026-6","first_name":"Tymon","last_name":"Melody","email":"tmelody67@discovery.com","phone":"864-587-4461","gender":"Male","department":"Support","address":"9 Pine View Avenue","hire_date":"6/27/2018","website":"http://harvard.edu","notes":"nec sem duis aliquam convallis nunc proin at turpis a pede posuere nonummy integer","status":2,"type":1,"salary":"$722.08"}, {"id":225,"employee_id":"091778125-2","first_name":"Kent","last_name":"Erridge","email":"kerridge68@usnews.com","phone":"608-307-1349","gender":"Male","department":"Marketing","address":"939 Cardinal Street","hire_date":"12/19/2017","website":"http://prlog.org","notes":"curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla","status":6,"type":2,"salary":"$333.09"}, {"id":226,"employee_id":"344788325-1","first_name":"Pincus","last_name":"Bartolomeu","email":"pbartolomeu69@ft.com","phone":"880-734-9013","gender":"Male","department":"Legal","address":"99645 Darwin Terrace","hire_date":"10/7/2017","website":"https://shutterfly.com","notes":"cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec","status":5,"type":2,"salary":"$1874.99"}, {"id":227,"employee_id":"278130480-8","first_name":"Leonardo","last_name":"Gilluley","email":"lgilluley6a@csmonitor.com","phone":"849-982-1955","gender":"Male","department":"Engineering","address":"27 Independence Lane","hire_date":"12/24/2017","website":"https://sitemeter.com","notes":"neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac","status":1,"type":1,"salary":"$805.37"}, {"id":228,"employee_id":"457121251-8","first_name":"Kordula","last_name":"Ebbitt","email":"kebbitt6b@cdc.gov","phone":"683-473-0530","gender":"Female","department":"Support","address":"615 Summerview Street","hire_date":"7/15/2018","website":"http://independent.co.uk","notes":"est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum justo","status":6,"type":3,"salary":"$1696.80"}, {"id":229,"employee_id":"235196309-1","first_name":"Odey","last_name":"Antonelli","email":"oantonelli6c@reddit.com","phone":"454-671-7595","gender":"Male","department":"Engineering","address":"01219 Ronald Regan Parkway","hire_date":"6/11/2018","website":"http://hud.gov","notes":"ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna ac consequat metus sapien","status":4,"type":3,"salary":"$1566.40"}, {"id":230,"employee_id":"741630871-2","first_name":"Terrance","last_name":"Southers","email":"tsouthers6d@aol.com","phone":"892-170-8181","gender":"Male","department":"Research and Development","address":"08453 Jay Junction","hire_date":"9/21/2017","website":"https://cbslocal.com","notes":"odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet","status":2,"type":2,"salary":"$491.31"}, {"id":231,"employee_id":"075615199-6","first_name":"Dina","last_name":"Hazell","email":"dhazell6e@sogou.com","phone":"457-105-6727","gender":"Female","department":"Services","address":"7666 Dovetail Crossing","hire_date":"12/6/2017","website":"http://google.com.br","notes":"vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci eget","status":3,"type":1,"salary":"$1164.56"}, {"id":232,"employee_id":"331046072-X","first_name":"Blake","last_name":"Dove","email":"bdove6f@sphinn.com","phone":"829-670-5501","gender":"Male","department":"Accounting","address":"3 Meadow Ridge Way","hire_date":"1/19/2018","website":"http://nymag.com","notes":"quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a","status":4,"type":2,"salary":"$395.04"}, {"id":233,"employee_id":"211173290-7","first_name":"Chanda","last_name":"Ramsby","email":"cramsby6g@mail.ru","phone":"708-724-7807","gender":"Female","department":"Marketing","address":"21160 Superior Drive","hire_date":"8/24/2017","website":"https://rakuten.co.jp","notes":"habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id mauris vulputate elementum nullam varius","status":6,"type":3,"salary":"$1579.73"}, {"id":234,"employee_id":"581993169-6","first_name":"Kristoforo","last_name":"Palin","email":"kpalin6h@google.fr","phone":"650-336-9896","gender":"Male","department":"Support","address":"7 Mandrake Drive","hire_date":"6/21/2018","website":"http://amazonaws.com","notes":"vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus etiam vel augue","status":5,"type":2,"salary":"$2428.10"}, {"id":235,"employee_id":"508052012-4","first_name":"Dorene","last_name":"Sedman","email":"dsedman6i@squidoo.com","phone":"816-321-8528","gender":"Female","department":"Accounting","address":"34650 Packers Place","hire_date":"7/21/2017","website":"http://fastcompany.com","notes":"suspendisse ornare consequat lectus in est risus auctor sed tristique in","status":2,"type":3,"salary":"$428.63"}, {"id":236,"employee_id":"086709374-9","first_name":"Britney","last_name":"Lefwich","email":"blefwich6j@cyberchimps.com","phone":"924-496-7148","gender":"Female","department":"Human Resources","address":"58387 Waubesa Way","hire_date":"8/15/2017","website":"http://bing.com","notes":"neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel","status":1,"type":1,"salary":"$832.43"}, {"id":237,"employee_id":"826923163-0","first_name":"Dulcea","last_name":"Butchart","email":"dbutchart6k@gnu.org","phone":"644-248-4778","gender":"Female","department":"Product Management","address":"29 Atwood Avenue","hire_date":"2/20/2018","website":"http://boston.com","notes":"nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat","status":2,"type":2,"salary":"$1885.23"}, {"id":238,"employee_id":"161696725-0","first_name":"Rance","last_name":"Moorey","email":"rmoorey6l@wiley.com","phone":"800-827-1401","gender":"Male","department":"Accounting","address":"957 Oak Pass","hire_date":"2/26/2018","website":"https://usda.gov","notes":"viverra eget congue eget semper rutrum nulla nunc purus phasellus in felis","status":1,"type":1,"salary":"$822.53"}, {"id":239,"employee_id":"902700180-4","first_name":"Dody","last_name":"Bissiker","email":"dbissiker6m@ezinearticles.com","phone":"557-955-0252","gender":"Female","department":"Product Management","address":"41 Main Court","hire_date":"11/23/2017","website":"http://theatlantic.com","notes":"sit amet sem fusce consequat nulla nisl nunc nisl duis","status":5,"type":3,"salary":"$1749.03"}, {"id":240,"employee_id":"599787707-8","first_name":"Borden","last_name":"Pagram","email":"bpagram6n@bluehost.com","phone":"612-878-1566","gender":"Male","department":"Support","address":"66497 Longview Court","hire_date":"10/2/2017","website":"https://cocolog-nifty.com","notes":"vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci eget orci vehicula condimentum curabitur in","status":1,"type":1,"salary":"$1261.51"}, {"id":241,"employee_id":"448140376-4","first_name":"Gill","last_name":"Scotson","email":"gscotson6o@wisc.edu","phone":"111-522-6972","gender":"Female","department":"Engineering","address":"3 Katie Place","hire_date":"6/2/2018","website":"https://jimdo.com","notes":"velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus","status":1,"type":2,"salary":"$2332.46"}, {"id":242,"employee_id":"615821017-X","first_name":"Colan","last_name":"Beardsdale","email":"cbeardsdale6p@shutterfly.com","phone":"392-912-6568","gender":"Male","department":"Legal","address":"2 Maple Wood Trail","hire_date":"5/29/2018","website":"http://networksolutions.com","notes":"arcu sed augue aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac habitasse","status":4,"type":2,"salary":"$1949.49"}, {"id":243,"employee_id":"154724310-4","first_name":"Shane","last_name":"Worgen","email":"sworgen6q@prweb.com","phone":"827-972-7207","gender":"Male","department":"Training","address":"4 Meadow Ridge Center","hire_date":"4/14/2018","website":"http://wordpress.com","notes":"posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus","status":2,"type":2,"salary":"$1464.06"}, {"id":244,"employee_id":"026255598-0","first_name":"Kennie","last_name":"Verrier","email":"kverrier6r@reddit.com","phone":"857-439-9419","gender":"Male","department":"Training","address":"1009 Burrows Hill","hire_date":"6/18/2018","website":"https://homestead.com","notes":"a feugiat et eros vestibulum ac est lacinia nisi venenatis","status":4,"type":1,"salary":"$710.71"}, {"id":245,"employee_id":"617423589-0","first_name":"Nora","last_name":"Tiuit","email":"ntiuit6s@opensource.org","phone":"516-119-9392","gender":"Female","department":"Product Management","address":"611 Amoth Trail","hire_date":"2/12/2018","website":"http://redcross.org","notes":"nisl nunc rhoncus dui vel sem sed sagittis nam congue risus","status":6,"type":1,"salary":"$341.28"}, {"id":246,"employee_id":"376249049-X","first_name":"Corbet","last_name":"Glassford","email":"cglassford6t@ycombinator.com","phone":"907-225-7304","gender":"Male","department":"Support","address":"88954 Scott Crossing","hire_date":"1/16/2018","website":"http://simplemachines.org","notes":"nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac est lacinia","status":6,"type":1,"salary":"$900.01"}, {"id":247,"employee_id":"361459129-8","first_name":"Michele","last_name":"primary","email":"mprimary6u@eventbrite.com","phone":"720-375-5170","gender":"Female","department":"Business Development","address":"83 Caliangt Way","hire_date":"6/21/2018","website":"http://fema.gov","notes":"ligula sit amet eleifend pede libero quis orci nullam molestie nibh in lectus pellentesque at nulla suspendisse potenti cras in","status":2,"type":3,"salary":"$1936.51"}, {"id":248,"employee_id":"550893256-9","first_name":"Nev","last_name":"Poskitt","email":"nposkitt6v@amazon.co.uk","phone":"190-312-7807","gender":"Male","department":"Accounting","address":"51 Bartillon Hill","hire_date":"4/9/2018","website":"http://sina.com.cn","notes":"sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci","status":6,"type":3,"salary":"$1977.42"}, {"id":249,"employee_id":"266123172-2","first_name":"Charmian","last_name":"Dionisio","email":"cdionisio6w@sbwire.com","phone":"508-658-4985","gender":"Female","department":"Research and Development","address":"69125 Hoepker Avenue","hire_date":"11/26/2017","website":"http://nasa.gov","notes":"sed accumsan felis ut at dolor quis odio consequat varius integer ac leo pellentesque ultrices","status":4,"type":2,"salary":"$1139.03"}, {"id":250,"employee_id":"901898152-4","first_name":"Waly","last_name":"Braddon","email":"wbraddon6x@etsy.com","phone":"678-859-9650","gender":"Female","department":"Product Management","address":"088 Pennsylvania Parkway","hire_date":"1/1/2018","website":"https://jiathis.com","notes":"enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac","status":5,"type":3,"salary":"$807.26"}, {"id":251,"employee_id":"852226432-5","first_name":"Stanford","last_name":"Stopp","email":"sstopp6y@addthis.com","phone":"637-731-1621","gender":"Male","department":"Human Resources","address":"3338 Fieldstone Terrace","hire_date":"4/5/2018","website":"http://plala.or.jp","notes":"aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet et commodo vulputate justo in","status":4,"type":1,"salary":"$615.82"}, {"id":252,"employee_id":"164816950-3","first_name":"Hieronymus","last_name":"Klimczak","email":"hklimczak6z@marketwatch.com","phone":"553-166-4570","gender":"Male","department":"Support","address":"52161 Thierer Pass","hire_date":"7/5/2018","website":"http://webeden.co.uk","notes":"vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient","status":5,"type":3,"salary":"$899.14"}, {"id":253,"employee_id":"618243263-2","first_name":"Nicolais","last_name":"Rodgier","email":"nrodgier70@123-reg.co.uk","phone":"479-784-1857","gender":"Male","department":"Accounting","address":"603 Amoth Place","hire_date":"1/14/2018","website":"http://columbia.edu","notes":"fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti in","status":4,"type":1,"salary":"$1382.76"}, {"id":254,"employee_id":"602289169-8","first_name":"Tiphany","last_name":"Hammant","email":"thammant71@usgs.gov","phone":"123-624-2612","gender":"Female","department":"Human Resources","address":"0908 Stephen Plaza","hire_date":"2/26/2018","website":"https://ucoz.ru","notes":"eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna pretium","status":5,"type":3,"salary":"$1594.78"}, {"id":255,"employee_id":"916979999-7","first_name":"Hermie","last_name":"Reggler","email":"hreggler72@house.gov","phone":"760-890-0698","gender":"Male","department":"Sales","address":"77322 Gateway Circle","hire_date":"9/11/2017","website":"http://seattletimes.com","notes":"orci pede venenatis non sodales sed tincidunt eu felis fusce","status":2,"type":1,"salary":"$433.44"}, {"id":256,"employee_id":"774356728-1","first_name":"Mason","last_name":"Shingles","email":"mshingles73@jalbum.net","phone":"478-125-6198","gender":"Male","department":"Sales","address":"721 Havey Center","hire_date":"4/13/2018","website":"https://ehow.com","notes":"integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent","status":6,"type":3,"salary":"$566.23"}, {"id":257,"employee_id":"469749753-8","first_name":"Jonah","last_name":"McLugish","email":"jmclugish74@si.edu","phone":"450-313-4218","gender":"Male","department":"Sales","address":"9 Kingsford Drive","hire_date":"2/1/2018","website":"https://businessweek.com","notes":"lectus in quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit amet cursus id turpis integer","status":2,"type":1,"salary":"$1295.46"}, {"id":258,"employee_id":"891738289-4","first_name":"Fonz","last_name":"De\'Vere - Hunt","email":"fdeverehunt75@domainmarket.com","phone":"251-524-2806","gender":"Male","department":"Sales","address":"5 Sauthoff Street","hire_date":"6/12/2018","website":"https://bizjournals.com","notes":"erat curabitur gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin","status":2,"type":2,"salary":"$1604.49"}, {"id":259,"employee_id":"087978435-0","first_name":"Agnola","last_name":"Francescone","email":"afrancescone76@phpbb.com","phone":"535-996-2880","gender":"Female","department":"Accounting","address":"21092 Forster Drive","hire_date":"11/17/2017","website":"http://abc.net.au","notes":"arcu libero rutrum ac lobortis vel dapibus at diam nam tristique tortor eu pede","status":3,"type":3,"salary":"$537.10"}, {"id":260,"employee_id":"735651281-5","first_name":"Jo-ann","last_name":"Moon","email":"jmoon77@home.pl","phone":"971-838-3777","gender":"Female","department":"Support","address":"016 Grim Road","hire_date":"8/29/2017","website":"http://pen.io","notes":"quis turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec","status":6,"type":2,"salary":"$2178.02"}, {"id":261,"employee_id":"405615507-0","first_name":"Christye","last_name":"Ramage","email":"cramage78@twitter.com","phone":"179-607-0154","gender":"Female","department":"Engineering","address":"71 Kenwood Street","hire_date":"7/2/2018","website":"http://harvard.edu","notes":"amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac","status":2,"type":3,"salary":"$2018.25"}, {"id":262,"employee_id":"254124619-6","first_name":"Say","last_name":"Everix","email":"severix79@eepurl.com","phone":"822-477-7882","gender":"Male","department":"Legal","address":"4601 Straubel Center","hire_date":"7/1/2018","website":"http://so-net.ne.jp","notes":"morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum neque sapien placerat ante nulla justo","status":5,"type":2,"salary":"$979.62"}, {"id":263,"employee_id":"714870821-4","first_name":"Mildrid","last_name":"Colliford","email":"mcolliford7a@cpanel.net","phone":"335-841-0402","gender":"Female","department":"Research and Development","address":"7525 Dawn Hill","hire_date":"6/8/2018","website":"http://rambler.ru","notes":"turpis enim blandit mi in porttitor pede justo eu massa donec dapibus duis at velit eu est congue elementum","status":5,"type":1,"salary":"$2332.05"}, {"id":264,"employee_id":"444226998-X","first_name":"Horton","last_name":"Viant","email":"hviant7b@hostgator.com","phone":"522-897-3684","gender":"Male","department":"Engineering","address":"8008 Twin Pines Circle","hire_date":"12/28/2017","website":"http://mozilla.org","notes":"ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis","status":2,"type":3,"salary":"$332.53"}, {"id":265,"employee_id":"638057551-0","first_name":"Shanon","last_name":"Beckley","email":"sbeckley7c@oaic.gov.au","phone":"981-758-8017","gender":"Female","department":"Marketing","address":"49336 Ridgeview Pass","hire_date":"9/22/2017","website":"https://baidu.com","notes":"habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis","status":5,"type":1,"salary":"$1342.00"}, {"id":266,"employee_id":"264528256-3","first_name":"Frasco","last_name":"Doddrell","email":"fdoddrell7d@cisco.com","phone":"953-588-9799","gender":"Male","department":"Accounting","address":"031 Spohn Place","hire_date":"4/29/2018","website":"http://intel.com","notes":"odio porttitor id consequat in consequat ut nulla sed accumsan felis ut at","status":2,"type":3,"salary":"$1821.71"}, {"id":267,"employee_id":"620037444-9","first_name":"Efren","last_name":"Ozelton","email":"eozelton7e@shop-pro.jp","phone":"182-274-8460","gender":"Male","department":"Training","address":"5 Glacier Hill Place","hire_date":"1/11/2018","website":"https://cloudflare.com","notes":"condimentum neque sapien placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit","status":3,"type":3,"salary":"$2446.18"}, {"id":268,"employee_id":"747007151-2","first_name":"Jeremias","last_name":"Ansteys","email":"jansteys7f@pagesperso-orange.fr","phone":"121-687-9691","gender":"Male","department":"Support","address":"206 Waubesa Lane","hire_date":"9/10/2017","website":"http://vistaprint.com","notes":"justo nec condimentum neque sapien placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet","status":3,"type":2,"salary":"$1862.76"}, {"id":269,"employee_id":"633719786-0","first_name":"Had","last_name":"Larmor","email":"hlarmor7g@who.int","phone":"792-815-5244","gender":"Male","department":"Engineering","address":"21479 Lakewood Gardens Terrace","hire_date":"2/2/2018","website":"http://elpais.com","notes":"sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum","status":3,"type":1,"salary":"$754.10"}, {"id":270,"employee_id":"150900253-7","first_name":"Ring","last_name":"Dockerty","email":"rdockerty7h@patch.com","phone":"370-832-2897","gender":"Male","department":"Accounting","address":"6920 Nancy Pass","hire_date":"3/16/2018","website":"http://foxnews.com","notes":"vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia","status":6,"type":3,"salary":"$1398.74"}, {"id":271,"employee_id":"308867780-2","first_name":"Torrance","last_name":"De Beauchemp","email":"tdebeauchemp7i@dyndns.org","phone":"131-659-2943","gender":"Male","department":"Legal","address":"99517 Brown Pass","hire_date":"6/19/2018","website":"https://seesaa.net","notes":"amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus dapibus augue vel","status":1,"type":1,"salary":"$642.34"}, {"id":272,"employee_id":"465210678-5","first_name":"Gerda","last_name":"Kilban","email":"gkilban7j@wordpress.com","phone":"127-861-0265","gender":"Female","department":"Services","address":"953 Corscot Way","hire_date":"4/11/2018","website":"https://bloglines.com","notes":"eget tincidunt eget tempus vel pede morbi porttitor lorem id","status":5,"type":2,"salary":"$1243.66"}, {"id":273,"employee_id":"107092987-5","first_name":"Charin","last_name":"Mityashin","email":"cmityashin7k@theglobeandmail.com","phone":"423-805-4825","gender":"Female","department":"Legal","address":"2 Muir Junction","hire_date":"5/24/2018","website":"http://acquirethisname.com","notes":"augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida","status":6,"type":2,"salary":"$539.31"}, {"id":274,"employee_id":"310707991-X","first_name":"Carmelle","last_name":"Pache","email":"cpache7l@disqus.com","phone":"729-123-0155","gender":"Female","department":"Research and Development","address":"758 Continental Center","hire_date":"11/20/2017","website":"http://usa.gov","notes":"id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus sit amet sem fusce consequat nulla","status":6,"type":1,"salary":"$1876.22"}, {"id":275,"employee_id":"309278497-9","first_name":"Cloe","last_name":"Grono","email":"cgrono7m@rambler.ru","phone":"381-473-5768","gender":"Female","department":"Research and Development","address":"643 Calypso Alley","hire_date":"2/10/2018","website":"http://intel.com","notes":"lectus pellentesque eget nunc donec quis orci eget orci vehicula condimentum curabitur in libero ut massa","status":2,"type":2,"salary":"$328.72"}, {"id":276,"employee_id":"163670883-8","first_name":"Nye","last_name":"Caseborne","email":"ncaseborne7n@nhs.uk","phone":"822-569-2084","gender":"Male","department":"Support","address":"81557 Packers Circle","hire_date":"12/3/2017","website":"https://1688.com","notes":"arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque eget nunc","status":4,"type":2,"salary":"$1951.41"}, {"id":277,"employee_id":"807982530-0","first_name":"Calv","last_name":"Griffe","email":"cgriffe7o@mail.ru","phone":"309-457-7174","gender":"Male","department":"Legal","address":"8980 Jenna Pass","hire_date":"7/30/2017","website":"http://ft.com","notes":"etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat","status":6,"type":3,"salary":"$1857.21"}, {"id":278,"employee_id":"598513541-1","first_name":"Theodoric","last_name":"Wallicker","email":"twallicker7p@e-recht24.de","phone":"266-387-9797","gender":"Male","department":"Business Development","address":"22 Graceland Crossing","hire_date":"2/3/2018","website":"http://army.mil","notes":"et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor lacus at turpis donec posuere","status":3,"type":1,"salary":"$301.36"}, {"id":279,"employee_id":"181306384-2","first_name":"Linn","last_name":"Antonio","email":"lantonio7q@gravatar.com","phone":"462-885-7094","gender":"Male","department":"Human Resources","address":"2 Mockingbird Junction","hire_date":"11/3/2017","website":"https://zimbio.com","notes":"semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero","status":4,"type":1,"salary":"$2085.32"}, {"id":280,"employee_id":"277706165-3","first_name":"Gaylor","last_name":"Suatt","email":"gsuatt7r@hp.com","phone":"684-356-9857","gender":"Male","department":"Business Development","address":"9 Mesta Drive","hire_date":"12/5/2017","website":"http://google.com.hk","notes":"in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim","status":2,"type":1,"salary":"$982.05"}, {"id":281,"employee_id":"301639900-8","first_name":"Nanny","last_name":"Haylock","email":"nhaylock7s@acquirethisname.com","phone":"669-313-8347","gender":"Female","department":"Engineering","address":"269 Fulton Place","hire_date":"6/27/2018","website":"http://sbwire.com","notes":"ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante","status":2,"type":2,"salary":"$292.09"}, {"id":282,"employee_id":"053888448-7","first_name":"Berrie","last_name":"Abbots","email":"babbots7t@lycos.com","phone":"480-456-3043","gender":"Female","department":"Support","address":"7 Luster Circle","hire_date":"8/16/2017","website":"http://slideshare.net","notes":"fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed","status":1,"type":2,"salary":"$685.82"}, {"id":283,"employee_id":"098482265-8","first_name":"Nathaniel","last_name":"Pauls","email":"npauls7u@home.pl","phone":"657-584-6210","gender":"Male","department":"Services","address":"867 Menomonie Road","hire_date":"3/14/2018","website":"https://hubpages.com","notes":"dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non pretium","status":4,"type":1,"salary":"$355.30"}, {"id":284,"employee_id":"087586302-7","first_name":"Hesther","last_name":"Laughlan","email":"hlaughlan7v@jiathis.com","phone":"960-473-6262","gender":"Female","department":"Research and Development","address":"1696 Twin Pines Point","hire_date":"3/23/2018","website":"https://unesco.org","notes":"vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet lobortis sapien sapien non mi","status":2,"type":2,"salary":"$2275.59"}, {"id":285,"employee_id":"237086376-5","first_name":"Darill","last_name":"Milne","email":"dmilne7w@bizjournals.com","phone":"450-941-7221","gender":"Male","department":"Engineering","address":"20 Mitchell Park","hire_date":"2/7/2018","website":"https://omniture.com","notes":"congue etiam justo etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut","status":6,"type":2,"salary":"$1506.88"}, {"id":286,"employee_id":"490608835-X","first_name":"Shawnee","last_name":"Hasselby","email":"shasselby7x@prlog.org","phone":"153-202-4950","gender":"Female","department":"Engineering","address":"8 Scoville Court","hire_date":"4/14/2018","website":"https://ifeng.com","notes":"nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo eu","status":3,"type":2,"salary":"$1316.01"}, {"id":287,"employee_id":"412504905-X","first_name":"Bidget","last_name":"Yerrington","email":"byerrington7y@home.pl","phone":"224-835-3319","gender":"Female","department":"Marketing","address":"45 Sherman Plaza","hire_date":"10/27/2017","website":"http://whitehouse.gov","notes":"nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus","status":5,"type":2,"salary":"$1501.27"}, {"id":288,"employee_id":"223859497-3","first_name":"Sasha","last_name":"Zorzin","email":"szorzin7z@dion.ne.jp","phone":"291-899-2406","gender":"Female","department":"Accounting","address":"2819 Towne Alley","hire_date":"8/8/2017","website":"https://pcworld.com","notes":"pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices","status":1,"type":2,"salary":"$2248.19"}, {"id":289,"employee_id":"403340559-3","first_name":"Dareen","last_name":"Lopez","email":"dlopez80@dion.ne.jp","phone":"368-310-7343","gender":"Female","department":"Legal","address":"8 Anzinger Place","hire_date":"11/23/2017","website":"https://howstuffworks.com","notes":"vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent","status":1,"type":3,"salary":"$1451.44"}, {"id":290,"employee_id":"809667453-6","first_name":"Ericha","last_name":"Mayhew","email":"emayhew81@google.it","phone":"923-107-5382","gender":"Female","department":"Legal","address":"15 Dovetail Point","hire_date":"4/5/2018","website":"http://netlog.com","notes":"mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac","status":4,"type":2,"salary":"$571.91"}, {"id":291,"employee_id":"996544982-1","first_name":"Joana","last_name":"Hurch","email":"jhurch82@blinklist.com","phone":"323-570-3104","gender":"Female","department":"Product Management","address":"6 Gina Junction","hire_date":"9/25/2017","website":"http://51.la","notes":"lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit nam nulla integer pede justo","status":4,"type":1,"salary":"$1845.68"}, {"id":292,"employee_id":"215493075-1","first_name":"Pollyanna","last_name":"le Keux","email":"plekeux83@gravatar.com","phone":"572-731-3140","gender":"Female","department":"Accounting","address":"6 Ridgeway Place","hire_date":"8/5/2017","website":"https://free.fr","notes":"leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac","status":2,"type":3,"salary":"$252.49"}, {"id":293,"employee_id":"037036201-2","first_name":"Nicola","last_name":"Gymlett","email":"ngymlett84@artisteer.com","phone":"574-535-6890","gender":"Female","department":"Engineering","address":"30945 Namekagon Trail","hire_date":"6/2/2018","website":"https://noaa.gov","notes":"quam pharetra magna ac consequat metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci","status":2,"type":1,"salary":"$2458.19"}, {"id":294,"employee_id":"315397200-1","first_name":"Kacy","last_name":"Danilowicz","email":"kdanilowicz85@sakura.ne.jp","phone":"799-523-5840","gender":"Female","department":"Services","address":"110 Oneill Alley","hire_date":"5/8/2018","website":"http://plala.or.jp","notes":"sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue vivamus","status":4,"type":3,"salary":"$2190.39"}, {"id":295,"employee_id":"070718246-8","first_name":"Annemarie","last_name":"Duffyn","email":"aduffyn86@hp.com","phone":"778-883-9811","gender":"Female","department":"Product Management","address":"268 Grasskamp Crossing","hire_date":"3/18/2018","website":"https://cam.ac.uk","notes":"mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a pede posuere nonummy integer","status":6,"type":2,"salary":"$898.77"}, {"id":296,"employee_id":"167312550-6","first_name":"Rebecka","last_name":"Brenard","email":"rbrenard87@tinyurl.com","phone":"499-787-5753","gender":"Female","department":"Services","address":"3 1st Alley","hire_date":"12/30/2017","website":"http://lulu.com","notes":"sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien","status":1,"type":1,"salary":"$873.75"}, {"id":297,"employee_id":"725923240-4","first_name":"Betteanne","last_name":"Fiennes","email":"bfiennes88@free.fr","phone":"827-200-8963","gender":"Female","department":"Accounting","address":"074 Sullivan Plaza","hire_date":"10/8/2017","website":"https://bizjournals.com","notes":"pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut","status":3,"type":1,"salary":"$434.06"}, {"id":298,"employee_id":"150162788-0","first_name":"Devin","last_name":"Scamel","email":"dscamel89@a8.net","phone":"424-569-9626","gender":"Female","department":"Marketing","address":"532 Kings Way","hire_date":"6/2/2018","website":"https://tinyurl.com","notes":"aliquam sit amet diam in magna bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce","status":3,"type":3,"salary":"$1799.64"}, {"id":299,"employee_id":"424818371-4","first_name":"Lavinie","last_name":"Collumbell","email":"lcollumbell8a@issuu.com","phone":"202-877-4681","gender":"Female","department":"Sales","address":"069 Tony Alley","hire_date":"10/23/2017","website":"https://ebay.co.uk","notes":"eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer","status":6,"type":1,"salary":"$1350.61"}, {"id":300,"employee_id":"334187692-8","first_name":"Israel","last_name":"Greening","email":"igreening8b@howstuffworks.com","phone":"870-777-0048","gender":"Male","department":"Legal","address":"16 Crownhardt Trail","hire_date":"7/10/2018","website":"https://ycombinator.com","notes":"justo eu massa donec dapibus duis at velit eu est congue elementum in hac habitasse platea dictumst","status":5,"type":3,"salary":"$899.15"}, {"id":301,"employee_id":"578611988-2","first_name":"Constanta","last_name":"Moro","email":"cmoro8c@yahoo.com","phone":"996-690-8094","gender":"Female","department":"Accounting","address":"59779 Kim Parkway","hire_date":"1/14/2018","website":"https://studiopress.com","notes":"odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam","status":5,"type":1,"salary":"$1689.71"}, {"id":302,"employee_id":"414540897-7","first_name":"Whit","last_name":"Cawdron","email":"wcawdron8d@walmart.com","phone":"610-570-2993","gender":"Male","department":"Training","address":"5 Cherokee Park","hire_date":"3/9/2018","website":"https://altervista.org","notes":"urna pretium nisl ut volutpat sapien arcu sed augue aliquam erat volutpat in congue etiam justo etiam","status":3,"type":3,"salary":"$1301.25"}, {"id":303,"employee_id":"610644395-5","first_name":"Josephine","last_name":"Hustler","email":"jhustler8e@home.pl","phone":"754-290-5586","gender":"Female","department":"Sales","address":"1 Columbus Center","hire_date":"7/8/2018","website":"https://apache.org","notes":"est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum","status":1,"type":3,"salary":"$737.25"}, {"id":304,"employee_id":"247568457-7","first_name":"Padgett","last_name":"Petkovic","email":"ppetkovic8f@sciencedaily.com","phone":"706-883-1715","gender":"Male","department":"Training","address":"7562 Elmside Avenue","hire_date":"8/25/2017","website":"https://dot.gov","notes":"eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio","status":3,"type":1,"salary":"$315.46"}, {"id":305,"employee_id":"284294417-8","first_name":"Hermine","last_name":"Gorick","email":"hgorick8g@deviantart.com","phone":"445-925-1000","gender":"Female","department":"Business Development","address":"018 Lerdahl Alley","hire_date":"7/1/2018","website":"http://spotify.com","notes":"dapibus nulla suscipit ligula in lacus curabitur at ipsum ac","status":2,"type":3,"salary":"$1639.32"}, {"id":306,"employee_id":"165433796-X","first_name":"Solomon","last_name":"Hargess","email":"shargess8h@360.cn","phone":"478-786-0363","gender":"Male","department":"Human Resources","address":"773 Redwing Trail","hire_date":"4/1/2018","website":"https://wunderground.com","notes":"id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed augue aliquam","status":3,"type":2,"salary":"$1006.12"}, {"id":307,"employee_id":"509293137-X","first_name":"Ilaire","last_name":"De Atta","email":"ideatta8i@weather.com","phone":"397-577-1997","gender":"Male","department":"Sales","address":"390 Prairie Rose Street","hire_date":"10/20/2017","website":"http://un.org","notes":"penatibus et magnis dis parturient montes nascetur ridiculus mus etiam vel augue","status":5,"type":3,"salary":"$1657.60"}, {"id":308,"employee_id":"809256679-8","first_name":"Nanny","last_name":"Yakobovitz","email":"nyakobovitz8j@1688.com","phone":"614-500-9492","gender":"Female","department":"Research and Development","address":"341 Cherokee Terrace","hire_date":"1/5/2018","website":"https://census.gov","notes":"cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes","status":5,"type":3,"salary":"$957.73"}, {"id":309,"employee_id":"923853518-3","first_name":"Amelie","last_name":"Swindle","email":"aswindle8k@google.com.hk","phone":"728-901-9623","gender":"Female","department":"Research and Development","address":"6 Clove Road","hire_date":"11/26/2017","website":"https://marketplace.net","notes":"arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque eget","status":3,"type":3,"salary":"$873.12"}, {"id":310,"employee_id":"940525921-0","first_name":"Petunia","last_name":"Tiler","email":"ptiler8l@scientificamerican.com","phone":"225-162-6754","gender":"Female","department":"Business Development","address":"811 Norway Maple Hill","hire_date":"7/22/2017","website":"http://cyberchimps.com","notes":"euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin","status":1,"type":1,"salary":"$1918.35"}, {"id":311,"employee_id":"623711021-6","first_name":"Sonya","last_name":"Yepiskopov","email":"syepiskopov8m@yellowpages.com","phone":"991-193-4740","gender":"Female","department":"Marketing","address":"531 Manitowish Park","hire_date":"7/17/2018","website":"http://surveymonkey.com","notes":"donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum","status":2,"type":3,"salary":"$1770.66"}, {"id":312,"employee_id":"860056745-9","first_name":"Peter","last_name":"Mustard","email":"pmustard8n@topsy.com","phone":"914-359-1940","gender":"Male","department":"Services","address":"7851 Ridgeview Pass","hire_date":"8/5/2017","website":"http://ycombinator.com","notes":"pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique","status":1,"type":2,"salary":"$962.75"}, {"id":313,"employee_id":"692365562-5","first_name":"Alvy","last_name":"Chiommienti","email":"achiommienti8o@ameblo.jp","phone":"142-797-2774","gender":"Male","department":"Legal","address":"030 Eagan Avenue","hire_date":"3/2/2018","website":"http://hc360.com","notes":"mauris eget massa tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu nibh quisque","status":5,"type":1,"salary":"$2481.85"}, {"id":314,"employee_id":"175423636-7","first_name":"Vitoria","last_name":"Glanton","email":"vglanton8p@phoca.cz","phone":"903-826-9993","gender":"Female","department":"Human Resources","address":"811 Pond Road","hire_date":"8/8/2017","website":"http://cornell.edu","notes":"eget orci vehicula condimentum curabitur in libero ut massa volutpat","status":1,"type":3,"salary":"$1908.59"}, {"id":315,"employee_id":"034637767-6","first_name":"Lizbeth","last_name":"McIndrew","email":"lmcindrew8q@washington.edu","phone":"982-226-5817","gender":"Female","department":"Business Development","address":"3625 Charing Cross Avenue","hire_date":"8/18/2017","website":"http://usa.gov","notes":"a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla","status":6,"type":3,"salary":"$2025.44"}, {"id":316,"employee_id":"274398934-3","first_name":"Briana","last_name":"Somes","email":"bsomes8r@yelp.com","phone":"221-769-2932","gender":"Female","department":"Training","address":"528 Old Gate Road","hire_date":"7/23/2017","website":"https://jimdo.com","notes":"donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet","status":1,"type":3,"salary":"$1720.83"}, {"id":317,"employee_id":"129990272-3","first_name":"Artus","last_name":"Balentyne","email":"abalentyne8s@opera.com","phone":"439-249-5582","gender":"Male","department":"Sales","address":"564 Weeping Birch Junction","hire_date":"3/14/2018","website":"https://photobucket.com","notes":"consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue","status":2,"type":1,"salary":"$2115.08"}, {"id":318,"employee_id":"066881048-3","first_name":"Papageno","last_name":"Cosson","email":"pcosson8t@princeton.edu","phone":"443-892-1710","gender":"Male","department":"Business Development","address":"38 Gale Parkway","hire_date":"11/18/2017","website":"http://timesonline.co.uk","notes":"pellentesque at nulla suspendisse potenti cras in purus eu magna vulputate luctus","status":5,"type":1,"salary":"$1177.08"}, {"id":319,"employee_id":"209633838-7","first_name":"Rosalinde","last_name":"Elmar","email":"relmar8u@163.com","phone":"687-330-4390","gender":"Female","department":"Training","address":"89 Ridge Oak Junction","hire_date":"6/19/2018","website":"http://unesco.org","notes":"mi in porttitor pede justo eu massa donec dapibus duis at velit eu est congue elementum in hac","status":3,"type":3,"salary":"$981.78"}, {"id":320,"employee_id":"739849131-X","first_name":"Oralie","last_name":"Walton","email":"owalton8v@upenn.edu","phone":"690-833-6583","gender":"Female","department":"Legal","address":"458 Warner Pass","hire_date":"12/24/2017","website":"https://1688.com","notes":"eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus et","status":6,"type":1,"salary":"$344.13"}, {"id":321,"employee_id":"715189385-X","first_name":"Rosemaria","last_name":"Picopp","email":"rpicopp8w@army.mil","phone":"532-931-5965","gender":"Female","department":"Business Development","address":"76 Loeprich Avenue","hire_date":"9/29/2017","website":"http://woothemes.com","notes":"lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit","status":5,"type":2,"salary":"$288.15"}, {"id":322,"employee_id":"166085089-4","first_name":"Carline","last_name":"Pittwood","email":"cpittwood8x@hatena.ne.jp","phone":"422-530-3879","gender":"Female","department":"Engineering","address":"87585 Derek Point","hire_date":"8/27/2017","website":"http://usatoday.com","notes":"hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem","status":3,"type":3,"salary":"$1207.13"}, {"id":323,"employee_id":"157554253-6","first_name":"Jilleen","last_name":"Cropton","email":"jcropton8y@disqus.com","phone":"828-751-3129","gender":"Female","department":"Legal","address":"0 Kings Hill","hire_date":"6/23/2018","website":"http://mediafire.com","notes":"praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet","status":5,"type":2,"salary":"$1868.72"}, {"id":324,"employee_id":"437111358-3","first_name":"Ailey","last_name":"Wandless","email":"awandless8z@fda.gov","phone":"343-563-1843","gender":"Female","department":"Sales","address":"209 Annamark Terrace","hire_date":"11/29/2017","website":"https://g.co","notes":"sed tristique in tempus sit amet sem fusce consequat nulla nisl","status":6,"type":1,"salary":"$700.60"}, {"id":325,"employee_id":"425405666-4","first_name":"Benn","last_name":"Darnody","email":"bdarnody90@forbes.com","phone":"317-671-4370","gender":"Male","department":"Accounting","address":"6 Annamark Trail","hire_date":"8/1/2017","website":"http://sphinn.com","notes":"ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus sit","status":3,"type":3,"salary":"$1648.12"}, {"id":326,"employee_id":"027147980-9","first_name":"Javier","last_name":"Dobel","email":"jdobel91@ftc.gov","phone":"616-238-3661","gender":"Male","department":"Services","address":"28 Morrow Way","hire_date":"8/28/2017","website":"https://aol.com","notes":"praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit nam nulla integer","status":4,"type":2,"salary":"$1671.91"}, {"id":327,"employee_id":"780064513-4","first_name":"Rodolph","last_name":"Raymond","email":"rraymond92@census.gov","phone":"223-105-4656","gender":"Male","department":"Product Management","address":"1 Superior Road","hire_date":"4/24/2018","website":"http://feedburner.com","notes":"nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan tortor","status":3,"type":2,"salary":"$1793.50"}, {"id":328,"employee_id":"099405312-6","first_name":"Orrin","last_name":"Proctor","email":"oproctor93@boston.com","phone":"894-981-4761","gender":"Male","department":"Accounting","address":"4024 Arapahoe Road","hire_date":"1/28/2018","website":"http://tuttocitta.it","notes":"phasellus id sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean","status":6,"type":1,"salary":"$2362.24"}, {"id":329,"employee_id":"965885138-X","first_name":"Quincey","last_name":"Crofts","email":"qcrofts94@nifty.com","phone":"120-205-1280","gender":"Male","department":"Engineering","address":"607 Ronald Regan Circle","hire_date":"12/2/2017","website":"https://ustream.tv","notes":"nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in","status":1,"type":2,"salary":"$712.06"}, {"id":330,"employee_id":"911951987-7","first_name":"Perri","last_name":"O\'Boyle","email":"poboyle95@sohu.com","phone":"860-677-2496","gender":"Female","department":"Legal","address":"3352 Luster Court","hire_date":"12/11/2017","website":"https://ustream.tv","notes":"venenatis turpis enim blandit mi in porttitor pede justo eu massa donec dapibus","status":4,"type":3,"salary":"$521.69"}, {"id":331,"employee_id":"146914324-0","first_name":"Dante","last_name":"Bolens","email":"dbolens96@bbb.org","phone":"448-274-0240","gender":"Male","department":"Training","address":"63 Oak Valley Terrace","hire_date":"12/12/2017","website":"https://blinklist.com","notes":"a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis molestie lorem quisque ut","status":1,"type":2,"salary":"$1297.71"}, {"id":332,"employee_id":"699716432-3","first_name":"Tamas","last_name":"Stenning","email":"tstenning97@google.com.br","phone":"953-569-7039","gender":"Male","department":"Marketing","address":"37 Trailsway Hill","hire_date":"3/2/2018","website":"https://smugmug.com","notes":"amet lobortis sapien sapien non mi integer ac neque duis","status":3,"type":1,"salary":"$900.97"}, {"id":333,"employee_id":"426960913-3","first_name":"Leighton","last_name":"Milstead","email":"lmilstead98@aboutads.info","phone":"507-834-7444","gender":"Male","department":"Marketing","address":"6334 Havey Pass","hire_date":"9/8/2017","website":"http://oracle.com","notes":"blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing","status":5,"type":3,"salary":"$921.55"}, {"id":334,"employee_id":"333636015-3","first_name":"Marty","last_name":"Filan","email":"mfilan99@guardian.co.uk","phone":"813-841-7462","gender":"Male","department":"Product Management","address":"4 Mesta Circle","hire_date":"11/9/2017","website":"https://jimdo.com","notes":"pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus sit amet","status":5,"type":3,"salary":"$2229.49"}, {"id":335,"employee_id":"380151527-3","first_name":"Daffi","last_name":"Outlaw","email":"doutlaw9a@last.fm","phone":"797-403-3462","gender":"Female","department":"Legal","address":"66927 Eggendart Point","hire_date":"4/13/2018","website":"https://apple.com","notes":"enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus","status":3,"type":1,"salary":"$2463.68"}, {"id":336,"employee_id":"744312874-6","first_name":"Marcy","last_name":"Ritson","email":"mritson9b@examiner.com","phone":"362-495-5706","gender":"Female","department":"Legal","address":"03854 Acker Alley","hire_date":"9/18/2017","website":"http://google.it","notes":"faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse","status":4,"type":1,"salary":"$385.52"}, {"id":337,"employee_id":"254761989-X","first_name":"Stepha","last_name":"Clutten","email":"sclutten9c@adobe.com","phone":"227-882-3037","gender":"Female","department":"Research and Development","address":"259 Bowman Lane","hire_date":"4/24/2018","website":"http://cnn.com","notes":"sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat","status":4,"type":3,"salary":"$576.12"}, {"id":338,"employee_id":"413122637-5","first_name":"Manda","last_name":"Duerdin","email":"mduerdin9d@huffingtonpost.com","phone":"654-685-2155","gender":"Female","department":"Support","address":"84 Golden Leaf Place","hire_date":"9/16/2017","website":"http://state.tx.us","notes":"feugiat et eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna","status":2,"type":2,"salary":"$2102.59"}, {"id":339,"employee_id":"216718181-7","first_name":"Koral","last_name":"Rampton","email":"krampton9e@timesonline.co.uk","phone":"126-699-4471","gender":"Female","department":"Business Development","address":"04894 Sunbrook Alley","hire_date":"7/4/2018","website":"http://mtv.com","notes":"vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris","status":3,"type":3,"salary":"$2066.99"}, {"id":340,"employee_id":"002830020-3","first_name":"Beltran","last_name":"Matteau","email":"bmatteau9f@timesonline.co.uk","phone":"845-424-7176","gender":"Male","department":"Legal","address":"317 Alpine Plaza","hire_date":"4/5/2018","website":"https://issuu.com","notes":"vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus et","status":6,"type":3,"salary":"$1375.13"}, {"id":341,"employee_id":"617967669-0","first_name":"Bob","last_name":"Adolphine","email":"badolphine9g@senate.gov","phone":"778-173-9919","gender":"Male","department":"Product Management","address":"57744 Dahle Hill","hire_date":"1/9/2018","website":"http://dailymotion.com","notes":"nulla suspendisse potenti cras in purus eu magna vulputate luctus cum","status":5,"type":1,"salary":"$2399.60"}, {"id":342,"employee_id":"042033829-2","first_name":"Nikolos","last_name":"Luckes","email":"nluckes9h@youku.com","phone":"389-276-9301","gender":"Male","department":"Engineering","address":"678 Almo Circle","hire_date":"11/14/2017","website":"https://csmonitor.com","notes":"pede ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra","status":4,"type":3,"salary":"$2225.58"}, {"id":343,"employee_id":"012562374-7","first_name":"Melisent","last_name":"Mannock","email":"mmannock9i@google.nl","phone":"664-642-1888","gender":"Female","department":"Product Management","address":"447 Petterle Alley","hire_date":"2/22/2018","website":"http://scribd.com","notes":"sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum","status":6,"type":3,"salary":"$1622.20"}, {"id":344,"employee_id":"527652057-7","first_name":"Rickie","last_name":"McKerron","email":"rmckerron9j@imgur.com","phone":"455-420-1680","gender":"Male","department":"Support","address":"289 Mitchell Plaza","hire_date":"10/5/2017","website":"https://springer.com","notes":"quis orci nullam molestie nibh in lectus pellentesque at nulla suspendisse","status":3,"type":2,"salary":"$2196.49"}, {"id":345,"employee_id":"018785785-7","first_name":"Rutledge","last_name":"Airds","email":"rairds9k@engadget.com","phone":"482-847-4841","gender":"Male","department":"Marketing","address":"295 Glendale Center","hire_date":"6/14/2018","website":"https://dmoz.org","notes":"ut erat id mauris vulputate elementum nullam varius nulla facilisi","status":6,"type":3,"salary":"$378.04"}, {"id":346,"employee_id":"466489704-9","first_name":"Denice","last_name":"Wattins","email":"dwattins9l@ustream.tv","phone":"160-530-4641","gender":"Female","department":"Marketing","address":"47 Summerview Center","hire_date":"7/24/2017","website":"https://foxnews.com","notes":"eu massa donec dapibus duis at velit eu est congue elementum in hac habitasse platea dictumst","status":1,"type":2,"salary":"$2297.89"}, {"id":347,"employee_id":"456501961-2","first_name":"Becki","last_name":"Dace","email":"bdace9m@globo.com","phone":"353-384-3408","gender":"Female","department":"Product Management","address":"1342 Shelley Park","hire_date":"2/3/2018","website":"https://ow.ly","notes":"phasellus id sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus","status":3,"type":3,"salary":"$1806.53"}, {"id":348,"employee_id":"828200940-7","first_name":"Debi","last_name":"Padilla","email":"dpadilla9n@google.pl","phone":"147-413-1467","gender":"Female","department":"Product Management","address":"93 Blaine Avenue","hire_date":"3/16/2018","website":"http://tiny.cc","notes":"vulputate justo in blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing elit","status":2,"type":2,"salary":"$660.15"}, {"id":349,"employee_id":"932799687-9","first_name":"Luella","last_name":"Babington","email":"lbabington9o@nifty.com","phone":"166-814-0072","gender":"Female","department":"Legal","address":"923 Lerdahl Avenue","hire_date":"6/22/2018","website":"https://spotify.com","notes":"dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices","status":3,"type":3,"salary":"$1588.19"}, {"id":350,"employee_id":"773863877-X","first_name":"Michail","last_name":"Alleway","email":"malleway9p@oaic.gov.au","phone":"314-689-0592","gender":"Male","department":"Training","address":"97197 Meadow Vale Place","hire_date":"7/22/2017","website":"http://sbwire.com","notes":"quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida nisi at nibh","status":5,"type":1,"salary":"$710.96"}, {"id":351,"employee_id":"401969383-8","first_name":"Fedora","last_name":"Vescovini","email":"fvescovini9q@mozilla.org","phone":"570-561-0130","gender":"Female","department":"Human Resources","address":"56856 Autumn Leaf Court","hire_date":"3/19/2018","website":"http://lycos.com","notes":"parturient montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et","status":2,"type":2,"salary":"$1640.69"}, {"id":352,"employee_id":"057897886-5","first_name":"Dorisa","last_name":"Truesdale","email":"dtruesdale9r@barnesandnoble.com","phone":"965-618-9058","gender":"Female","department":"Human Resources","address":"96511 Rockefeller Pass","hire_date":"4/16/2018","website":"http://washingtonpost.com","notes":"lectus pellentesque eget nunc donec quis orci eget orci vehicula condimentum curabitur in libero ut","status":2,"type":2,"salary":"$1079.89"}, {"id":353,"employee_id":"667151110-1","first_name":"Wilhelm","last_name":"Sooley","email":"wsooley9s@nature.com","phone":"163-681-8501","gender":"Male","department":"Legal","address":"94 2nd Center","hire_date":"4/10/2018","website":"http://goo.gl","notes":"felis ut at dolor quis odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi","status":1,"type":1,"salary":"$1200.11"}, {"id":354,"employee_id":"885975098-9","first_name":"Marcus","last_name":"Lambirth","email":"mlambirth9t@odnoklassniki.ru","phone":"908-536-3150","gender":"Male","department":"Services","address":"5410 Armistice Court","hire_date":"6/20/2018","website":"https://tiny.cc","notes":"imperdiet et commodo vulputate justo in blandit ultrices enim lorem ipsum dolor sit amet","status":4,"type":3,"salary":"$482.93"}, {"id":355,"employee_id":"948554103-1","first_name":"Edd","last_name":"Longman","email":"elongman9u@people.com.cn","phone":"896-348-2679","gender":"Male","department":"Support","address":"14 Clemons Parkway","hire_date":"8/15/2017","website":"http://t-online.de","notes":"elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in","status":4,"type":3,"salary":"$1724.68"}, {"id":356,"employee_id":"886135245-6","first_name":"Dion","last_name":"Slimm","email":"dslimm9v@cargocollective.com","phone":"552-796-4713","gender":"Male","department":"Engineering","address":"99800 Sundown Road","hire_date":"2/11/2018","website":"http://over-blog.com","notes":"quis odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices","status":3,"type":2,"salary":"$261.88"}, {"id":357,"employee_id":"409704042-1","first_name":"Umberto","last_name":"Parkin","email":"uparkin9w@unc.edu","phone":"530-116-4741","gender":"Male","department":"Human Resources","address":"7 Little Fleur Center","hire_date":"7/12/2018","website":"http://nih.gov","notes":"potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa quis","status":6,"type":3,"salary":"$1385.79"}, {"id":358,"employee_id":"422286342-4","first_name":"Alexia","last_name":"Hunn","email":"ahunn9x@scientificamerican.com","phone":"312-944-0388","gender":"Female","department":"Training","address":"1292 Mifflin Lane","hire_date":"5/5/2018","website":"https://friendfeed.com","notes":"mauris morbi non lectus aliquam sit amet diam in magna bibendum","status":2,"type":2,"salary":"$877.72"}, {"id":359,"employee_id":"375751241-3","first_name":"Sharyl","last_name":"Bewshaw","email":"sbewshaw9y@amazon.com","phone":"453-777-3783","gender":"Female","department":"Research and Development","address":"6147 Scoville Hill","hire_date":"12/20/2017","website":"https://shop-pro.jp","notes":"eleifend luctus ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in","status":3,"type":1,"salary":"$2136.63"}, {"id":360,"employee_id":"140406564-4","first_name":"Alfonso","last_name":"Baudy","email":"abaudy9z@artisteer.com","phone":"827-327-0355","gender":"Male","department":"Support","address":"8 Haas Parkway","hire_date":"1/19/2018","website":"http://state.tx.us","notes":"commodo placerat praesent blandit nam nulla integer pede justo lacinia eget","status":5,"type":3,"salary":"$1029.48"}, {"id":361,"employee_id":"696796090-3","first_name":"Ravi","last_name":"Teape","email":"rteapea0@etsy.com","phone":"424-943-6381","gender":"Male","department":"Business Development","address":"37 Kennedy Street","hire_date":"2/6/2018","website":"https://dell.com","notes":"mollis molestie lorem quisque ut erat curabitur gravida nisi at nibh in","status":3,"type":1,"salary":"$372.63"}, {"id":362,"employee_id":"692676315-1","first_name":"Raye","last_name":"Peacop","email":"rpeacopa1@java.com","phone":"119-830-8805","gender":"Female","department":"Human Resources","address":"94868 Darwin Drive","hire_date":"12/22/2017","website":"https://joomla.org","notes":"donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum","status":4,"type":1,"salary":"$1540.19"}, {"id":363,"employee_id":"782871623-0","first_name":"Horten","last_name":"Ridder","email":"hriddera2@newyorker.com","phone":"805-680-9964","gender":"Male","department":"Services","address":"74641 Marcy Park","hire_date":"4/30/2018","website":"http://chronoengine.com","notes":"pellentesque eget nunc donec quis orci eget orci vehicula condimentum curabitur in","status":4,"type":2,"salary":"$643.01"}, {"id":364,"employee_id":"886175718-9","first_name":"Raffaello","last_name":"Mixer","email":"rmixera3@sogou.com","phone":"437-698-1834","gender":"Male","department":"Research and Development","address":"3735 Crowley Crossing","hire_date":"10/27/2017","website":"http://time.com","notes":"nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum","status":6,"type":3,"salary":"$1573.55"}, {"id":365,"employee_id":"491303919-9","first_name":"Elsa","last_name":"Haccleton","email":"ehaccletona4@mysql.com","phone":"425-783-0366","gender":"Female","department":"Sales","address":"466 Ilene Avenue","hire_date":"12/27/2017","website":"https://bizjournals.com","notes":"tellus semper interdum mauris ullamcorper purus sit amet nulla quisque arcu libero rutrum","status":1,"type":2,"salary":"$488.18"}, {"id":366,"employee_id":"871525779-7","first_name":"Scarface","last_name":"Mayho","email":"smayhoa5@last.fm","phone":"338-818-7650","gender":"Male","department":"Research and Development","address":"54 Morning Hill","hire_date":"9/24/2017","website":"http://tripod.com","notes":"ultrices posuere cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin ut","status":1,"type":1,"salary":"$502.06"}, {"id":367,"employee_id":"482843443-7","first_name":"Bentley","last_name":"Caulder","email":"bcauldera6@goo.ne.jp","phone":"607-353-8589","gender":"Male","department":"Legal","address":"2143 Springview Plaza","hire_date":"2/12/2018","website":"http://loc.gov","notes":"vivamus in felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec","status":4,"type":2,"salary":"$1107.93"}, {"id":368,"employee_id":"410934604-5","first_name":"Casper","last_name":"Hirjak","email":"chirjaka7@europa.eu","phone":"249-837-2403","gender":"Male","department":"Product Management","address":"337 Carpenter Plaza","hire_date":"3/28/2018","website":"http://tinypic.com","notes":"dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida","status":5,"type":3,"salary":"$1080.93"}, {"id":369,"employee_id":"521192163-1","first_name":"Sharai","last_name":"Rainger","email":"sraingera8@godaddy.com","phone":"899-215-8141","gender":"Female","department":"Training","address":"05 Little Fleur Terrace","hire_date":"11/3/2017","website":"https://bloglovin.com","notes":"sapien urna pretium nisl ut volutpat sapien arcu sed augue","status":3,"type":2,"salary":"$2165.31"}, {"id":370,"employee_id":"540010511-4","first_name":"Kelsi","last_name":"Deporte","email":"kdeportea9@cdbaby.com","phone":"823-268-3114","gender":"Female","department":"Sales","address":"2 Crest Line Center","hire_date":"12/16/2017","website":"http://liveinternet.ru","notes":"vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus dolor vel est","status":6,"type":1,"salary":"$2155.92"}, {"id":371,"employee_id":"533771297-7","first_name":"Luigi","last_name":"Beddow","email":"lbeddowaa@issuu.com","phone":"355-329-4187","gender":"Male","department":"Business Development","address":"148 Macpherson Plaza","hire_date":"6/12/2018","website":"http://baidu.com","notes":"sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus","status":2,"type":3,"salary":"$348.10"}, {"id":372,"employee_id":"726780645-7","first_name":"Selig","last_name":"Landeg","email":"slandegab@dailymail.co.uk","phone":"488-197-2573","gender":"Male","department":"Business Development","address":"02 Ridge Oak Terrace","hire_date":"9/16/2017","website":"https://cbslocal.com","notes":"vestibulum sit amet cursus id turpis integer aliquet massa id lobortis","status":5,"type":1,"salary":"$949.25"}, {"id":373,"employee_id":"433933429-4","first_name":"Killian","last_name":"Foxten","email":"kfoxtenac@nih.gov","phone":"806-666-7844","gender":"Male","department":"Legal","address":"2672 Paget Street","hire_date":"4/29/2018","website":"https://irs.gov","notes":"lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula","status":2,"type":3,"salary":"$842.87"}, {"id":374,"employee_id":"169871789-X","first_name":"Lorant","last_name":"Deschlein","email":"ldeschleinad@fda.gov","phone":"266-596-1401","gender":"Male","department":"Services","address":"48451 East Pass","hire_date":"9/28/2017","website":"https://github.io","notes":"integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla","status":5,"type":3,"salary":"$1401.91"}, {"id":375,"employee_id":"486771991-9","first_name":"Nydia","last_name":"Hovy","email":"nhovyae@umich.edu","phone":"180-866-4707","gender":"Female","department":"Marketing","address":"71405 Packers Parkway","hire_date":"8/14/2017","website":"http://economist.com","notes":"nulla elit ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur","status":6,"type":3,"salary":"$537.67"}, {"id":376,"employee_id":"794891441-2","first_name":"Pammy","last_name":"Fronks","email":"pfronksaf@netvibes.com","phone":"549-969-9376","gender":"Female","department":"Marketing","address":"2 Anhalt Pass","hire_date":"4/11/2018","website":"http://hc360.com","notes":"blandit mi in porttitor pede justo eu massa donec dapibus duis at velit eu est congue elementum","status":5,"type":3,"salary":"$834.07"}, {"id":377,"employee_id":"950462922-9","first_name":"Colene","last_name":"Gayforth","email":"cgayforthag@yellowbook.com","phone":"401-816-4281","gender":"Female","department":"Marketing","address":"1877 Fair Oaks Road","hire_date":"3/27/2018","website":"https://epa.gov","notes":"at velit vivamus vel nulla eget eros elementum pellentesque quisque","status":6,"type":2,"salary":"$605.34"}, {"id":378,"employee_id":"654524555-4","first_name":"Percival","last_name":"Sooper","email":"psooperah@cnet.com","phone":"316-921-4227","gender":"Male","department":"Business Development","address":"3931 Veith Circle","hire_date":"12/18/2017","website":"http://bravesites.com","notes":"congue risus semper porta volutpat quam pede lobortis ligula sit amet eleifend pede","status":2,"type":3,"salary":"$2124.14"}, {"id":379,"employee_id":"594683672-2","first_name":"Allan","last_name":"Bysh","email":"abyshai@blinklist.com","phone":"437-275-0839","gender":"Male","department":"Research and Development","address":"0763 Sunbrook Way","hire_date":"4/4/2018","website":"http://arizona.edu","notes":"consequat metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere","status":3,"type":3,"salary":"$301.25"}, {"id":380,"employee_id":"250023659-5","first_name":"Evvy","last_name":"Pottes","email":"epottesaj@epa.gov","phone":"294-798-3537","gender":"Female","department":"Research and Development","address":"68 Londonderry Hill","hire_date":"5/24/2018","website":"http://tamu.edu","notes":"ligula vehicula consequat morbi a ipsum integer a nibh in quis justo maecenas rhoncus aliquam","status":5,"type":3,"salary":"$1492.20"}, {"id":381,"employee_id":"235445053-2","first_name":"Antoinette","last_name":"Wyant","email":"awyantak@squarespace.com","phone":"183-115-5357","gender":"Female","department":"Accounting","address":"1 Maple Alley","hire_date":"8/16/2017","website":"http://microsoft.com","notes":"luctus ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum","status":6,"type":1,"salary":"$1136.98"}, {"id":382,"employee_id":"889752343-9","first_name":"Audrie","last_name":"Belamy","email":"abelamyal@indiatimes.com","phone":"111-820-5489","gender":"Female","department":"Support","address":"2859 Acker Court","hire_date":"6/25/2018","website":"http://jalbum.net","notes":"viverra eget congue eget semper rutrum nulla nunc purus phasellus in felis donec semper sapien a","status":5,"type":2,"salary":"$905.68"}, {"id":383,"employee_id":"622648370-9","first_name":"Rhodia","last_name":"Cosgry","email":"rcosgryam@goo.ne.jp","phone":"350-490-2533","gender":"Female","department":"Engineering","address":"7 Esch Alley","hire_date":"9/2/2017","website":"https://vkontakte.ru","notes":"aliquam erat volutpat in congue etiam justo etiam pretium iaculis","status":1,"type":3,"salary":"$2334.99"}, {"id":384,"employee_id":"803014574-8","first_name":"Fabian","last_name":"Hullyer","email":"fhullyeran@t.co","phone":"127-957-1000","gender":"Male","department":"Training","address":"889 Warbler Pass","hire_date":"7/26/2017","website":"https://mozilla.com","notes":"rutrum nulla nunc purus phasellus in felis donec semper sapien a libero nam dui proin leo odio porttitor id consequat","status":5,"type":3,"salary":"$266.82"}, {"id":385,"employee_id":"847189830-6","first_name":"Pippa","last_name":"Skatcher","email":"pskatcherao@last.fm","phone":"929-459-4415","gender":"Female","department":"Services","address":"5 Novick Way","hire_date":"4/27/2018","website":"http://uol.com.br","notes":"platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis molestie lorem","status":6,"type":2,"salary":"$1044.65"}, {"id":386,"employee_id":"263904965-8","first_name":"Sayers","last_name":"Balmforth","email":"sbalmforthap@de.vu","phone":"358-989-1332","gender":"Male","department":"Services","address":"3 Northwestern Plaza","hire_date":"7/31/2017","website":"https://economist.com","notes":"magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient","status":6,"type":1,"salary":"$1316.51"}, {"id":387,"employee_id":"428252571-1","first_name":"Vinson","last_name":"Saenz","email":"vsaenzaq@sfgate.com","phone":"250-815-8178","gender":"Male","department":"Sales","address":"21 Karstens Place","hire_date":"2/6/2018","website":"http://geocities.jp","notes":"aliquam convallis nunc proin at turpis a pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut","status":1,"type":3,"salary":"$2236.61"}, {"id":388,"employee_id":"161994026-4","first_name":"Genevra","last_name":"Ochiltree","email":"gochiltreear@google.co.jp","phone":"714-600-8674","gender":"Female","department":"Engineering","address":"1 Garrison Crossing","hire_date":"10/8/2017","website":"http://zimbio.com","notes":"orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet lobortis","status":2,"type":1,"salary":"$1088.97"}, {"id":389,"employee_id":"835257032-3","first_name":"Dale","last_name":"Sottell","email":"dsottellas@google.co.jp","phone":"740-537-9773","gender":"Male","department":"Research and Development","address":"08 Anniversary Plaza","hire_date":"4/17/2018","website":"https://wordpress.com","notes":"ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla quisque arcu libero rutrum","status":2,"type":2,"salary":"$1064.50"}, {"id":390,"employee_id":"107313260-9","first_name":"Lida","last_name":"Huxstep","email":"lhuxstepat@ted.com","phone":"889-948-5199","gender":"Female","department":"Legal","address":"4149 Bluejay Street","hire_date":"8/20/2017","website":"https://ask.com","notes":"est risus auctor sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum","status":3,"type":2,"salary":"$2371.16"}, {"id":391,"employee_id":"985451751-9","first_name":"Friedrich","last_name":"Stratz","email":"fstratzau@telegraph.co.uk","phone":"186-112-9915","gender":"Male","department":"Sales","address":"0 Dryden Court","hire_date":"8/9/2017","website":"http://berkeley.edu","notes":"ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis","status":2,"type":3,"salary":"$1988.89"}, {"id":392,"employee_id":"092254097-7","first_name":"Dominik","last_name":"Bartolozzi","email":"dbartolozziav@noaa.gov","phone":"957-324-8100","gender":"Male","department":"Human Resources","address":"991 Onsgard Crossing","hire_date":"3/3/2018","website":"https://ucsd.edu","notes":"libero non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac nulla sed vel enim sit amet","status":5,"type":1,"salary":"$2429.00"}, {"id":393,"employee_id":"830741061-4","first_name":"Sioux","last_name":"Lease","email":"sleaseaw@hhs.gov","phone":"549-636-6532","gender":"Female","department":"Business Development","address":"4 Jackson Point","hire_date":"1/21/2018","website":"http://vk.com","notes":"nascetur ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean","status":6,"type":2,"salary":"$2212.91"}, {"id":394,"employee_id":"877010064-0","first_name":"Neall","last_name":"Cronchey","email":"ncroncheyax@nyu.edu","phone":"739-585-7518","gender":"Male","department":"Legal","address":"7 Hintze Road","hire_date":"6/5/2018","website":"http://wunderground.com","notes":"nam congue risus semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero quis orci nullam molestie","status":1,"type":2,"salary":"$2317.04"}, {"id":395,"employee_id":"499456882-0","first_name":"Berget","last_name":"Matton","email":"bmattonay@answers.com","phone":"619-882-9196","gender":"Female","department":"Marketing","address":"4 Leroy Place","hire_date":"11/8/2017","website":"http://nifty.com","notes":"mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl","status":5,"type":3,"salary":"$1580.67"}, {"id":396,"employee_id":"488959067-6","first_name":"Emelita","last_name":"Robertelli","email":"erobertelliaz@umich.edu","phone":"204-696-0674","gender":"Female","department":"Accounting","address":"95 Lake View Point","hire_date":"6/27/2018","website":"https://paypal.com","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum","status":6,"type":1,"salary":"$1226.25"}, {"id":397,"employee_id":"551305144-3","first_name":"Cindelyn","last_name":"Eveleigh","email":"ceveleighb0@github.com","phone":"176-952-7360","gender":"Female","department":"Product Management","address":"28 Kinsman Place","hire_date":"9/22/2017","website":"https://npr.org","notes":"orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a","status":4,"type":3,"salary":"$1897.98"}, {"id":398,"employee_id":"810440645-0","first_name":"Lorna","last_name":"Kingzett","email":"lkingzettb1@fastcompany.com","phone":"832-292-1374","gender":"Female","department":"Human Resources","address":"48232 Debra Pass","hire_date":"12/21/2017","website":"https://goo.ne.jp","notes":"ante vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris eget massa tempor convallis nulla neque","status":5,"type":3,"salary":"$1026.49"}, {"id":399,"employee_id":"080183001-X","first_name":"Abramo","last_name":"Oakenford","email":"aoakenfordb2@amazon.co.uk","phone":"450-581-3259","gender":"Male","department":"Research and Development","address":"46724 Merchant Crossing","hire_date":"12/13/2017","website":"https://elpais.com","notes":"vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien","status":1,"type":1,"salary":"$1572.74"}, {"id":400,"employee_id":"833852337-2","first_name":"Gabriele","last_name":"Meffan","email":"gmeffanb3@stanford.edu","phone":"944-595-0107","gender":"Male","department":"Product Management","address":"40073 Quincy Plaza","hire_date":"12/19/2017","website":"http://spiegel.de","notes":"justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula","status":5,"type":1,"salary":"$914.07"}, {"id":401,"employee_id":"998052226-7","first_name":"Tabbie","last_name":"Sebrook","email":"tsebrookb4@cocolog-nifty.com","phone":"947-266-9947","gender":"Female","department":"Human Resources","address":"34699 Kingsford Lane","hire_date":"11/4/2017","website":"https://microsoft.com","notes":"bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce posuere felis","status":5,"type":3,"salary":"$1686.77"}, {"id":402,"employee_id":"133779813-4","first_name":"Edmund","last_name":"Hanlon","email":"ehanlonb5@networksolutions.com","phone":"173-176-9011","gender":"Male","department":"Legal","address":"8340 Continental Point","hire_date":"10/7/2017","website":"https://freewebs.com","notes":"blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris non ligula","status":2,"type":1,"salary":"$844.65"}, {"id":403,"employee_id":"613889123-6","first_name":"Terence","last_name":"O\'Beirne","email":"tobeirneb6@cornell.edu","phone":"905-462-3351","gender":"Male","department":"Support","address":"3 Bonner Alley","hire_date":"12/13/2017","website":"http://un.org","notes":"mattis pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac","status":6,"type":2,"salary":"$1577.22"}, {"id":404,"employee_id":"647413403-8","first_name":"Oliviero","last_name":"Sinnatt","email":"osinnattb7@symantec.com","phone":"729-265-7257","gender":"Male","department":"Marketing","address":"1888 Shopko Drive","hire_date":"3/10/2018","website":"https://nsw.gov.au","notes":"cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus vivamus vestibulum sagittis","status":5,"type":1,"salary":"$324.89"}, {"id":405,"employee_id":"389069925-1","first_name":"Rochell","last_name":"Ivanenko","email":"rivanenkob8@wunderground.com","phone":"742-462-3688","gender":"Female","department":"Marketing","address":"259 Lawn Junction","hire_date":"11/17/2017","website":"http://desdev.cn","notes":"consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices","status":4,"type":1,"salary":"$2059.09"}, {"id":406,"employee_id":"796375921-X","first_name":"Zelma","last_name":"Cochrane","email":"zcochraneb9@comsenz.com","phone":"872-855-5401","gender":"Female","department":"Training","address":"5 Westridge Junction","hire_date":"5/14/2018","website":"https://blogtalkradio.com","notes":"enim lorem ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id","status":1,"type":1,"salary":"$2120.66"}, {"id":407,"employee_id":"841989729-9","first_name":"Chauncey","last_name":"Heather","email":"cheatherba@uiuc.edu","phone":"600-700-7118","gender":"Male","department":"Accounting","address":"942 Debs Lane","hire_date":"11/5/2017","website":"https://cmu.edu","notes":"ut volutpat sapien arcu sed augue aliquam erat volutpat in congue etiam justo etiam","status":5,"type":3,"salary":"$1866.02"}, {"id":408,"employee_id":"260368664-X","first_name":"Jacqueline","last_name":"Meininking","email":"jmeininkingbb@ustream.tv","phone":"403-605-5221","gender":"Female","department":"Sales","address":"34807 Lillian Hill","hire_date":"1/22/2018","website":"https://slideshare.net","notes":"ut mauris eget massa tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu nibh quisque id justo","status":6,"type":2,"salary":"$1897.36"}, {"id":409,"employee_id":"905913948-8","first_name":"Levin","last_name":"Mynett","email":"lmynettbc@tripod.com","phone":"562-364-1414","gender":"Male","department":"Accounting","address":"8270 Artisan Avenue","hire_date":"10/6/2017","website":"https://mlb.com","notes":"orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae","status":4,"type":1,"salary":"$2322.53"}, {"id":410,"employee_id":"650442677-5","first_name":"Enriqueta","last_name":"Pencost","email":"epencostbd@weibo.com","phone":"267-901-5489","gender":"Female","department":"Human Resources","address":"598 Arizona Place","hire_date":"3/21/2018","website":"https://webmd.com","notes":"phasellus id sapien in sapien iaculis congue vivamus metus arcu adipiscing","status":3,"type":2,"salary":"$1008.64"}, {"id":411,"employee_id":"421313005-3","first_name":"Cornelius","last_name":"Lazare","email":"clazarebe@w3.org","phone":"564-686-3591","gender":"Male","department":"Research and Development","address":"3048 Sutherland Road","hire_date":"3/2/2018","website":"http://weibo.com","notes":"rutrum nulla tellus in sagittis dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non","status":2,"type":3,"salary":"$1325.42"}, {"id":412,"employee_id":"983822460-X","first_name":"Quincy","last_name":"Grahlmans","email":"qgrahlmansbf@theatlantic.com","phone":"866-507-8470","gender":"Male","department":"Engineering","address":"86 Anthes Way","hire_date":"3/2/2018","website":"http://wikia.com","notes":"lacus at turpis donec posuere metus vitae ipsum aliquam non mauris","status":3,"type":1,"salary":"$363.47"}, {"id":413,"employee_id":"117391982-1","first_name":"Cirilo","last_name":"Clynmans","email":"cclynmansbg@umich.edu","phone":"395-209-8577","gender":"Male","department":"Legal","address":"0069 Towne Parkway","hire_date":"4/3/2018","website":"https://paginegialle.it","notes":"congue risus semper porta volutpat quam pede lobortis ligula sit","status":3,"type":1,"salary":"$2046.10"}, {"id":414,"employee_id":"123040897-5","first_name":"Leola","last_name":"Olive","email":"lolivebh@usda.gov","phone":"255-399-7211","gender":"Female","department":"Training","address":"8 Dexter Street","hire_date":"9/13/2017","website":"https://prlog.org","notes":"at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra","status":1,"type":2,"salary":"$2179.76"}, {"id":415,"employee_id":"048982860-4","first_name":"Bessy","last_name":"Lisett","email":"blisettbi@auda.org.au","phone":"141-333-0171","gender":"Female","department":"Research and Development","address":"5 Myrtle Plaza","hire_date":"9/14/2017","website":"https://wikimedia.org","notes":"nibh in lectus pellentesque at nulla suspendisse potenti cras in purus eu magna","status":1,"type":1,"salary":"$703.89"}, {"id":416,"employee_id":"582613143-8","first_name":"Donella","last_name":"Vanns","email":"dvannsbj@wisc.edu","phone":"970-218-4877","gender":"Female","department":"Services","address":"6848 Huxley Plaza","hire_date":"2/13/2018","website":"https://state.tx.us","notes":"lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus","status":6,"type":1,"salary":"$1145.45"}, {"id":417,"employee_id":"081845515-2","first_name":"Roch","last_name":"McCourt","email":"rmccourtbk@addtoany.com","phone":"882-177-9493","gender":"Female","department":"Research and Development","address":"20412 Merry Hill","hire_date":"1/7/2018","website":"http://cocolog-nifty.com","notes":"integer aliquet massa id lobortis convallis tortor risus dapibus augue vel accumsan tellus","status":4,"type":3,"salary":"$817.33"}, {"id":418,"employee_id":"036363287-5","first_name":"Gratiana","last_name":"Burgwin","email":"gburgwinbl@joomla.org","phone":"494-479-3075","gender":"Female","department":"Training","address":"9 Cherokee Lane","hire_date":"6/9/2018","website":"http://seesaa.net","notes":"in magna bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce posuere felis sed lacus","status":1,"type":3,"salary":"$2007.48"}, {"id":419,"employee_id":"033776599-5","first_name":"Danita","last_name":"Whitney","email":"dwhitneybm@columbia.edu","phone":"910-138-5581","gender":"Female","department":"Engineering","address":"695 Nancy Street","hire_date":"12/8/2017","website":"http://imgur.com","notes":"at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a odio in hac","status":4,"type":1,"salary":"$2237.53"}, {"id":420,"employee_id":"778275184-5","first_name":"Christoffer","last_name":"Poller","email":"cpollerbn@liveinternet.ru","phone":"509-133-8807","gender":"Male","department":"Marketing","address":"5 Arapahoe Pass","hire_date":"10/15/2017","website":"http://google.co.uk","notes":"arcu libero rutrum ac lobortis vel dapibus at diam nam","status":6,"type":1,"salary":"$1722.57"}, {"id":421,"employee_id":"095854373-9","first_name":"Ericha","last_name":"Physic","email":"ephysicbo@dot.gov","phone":"828-235-6456","gender":"Female","department":"Human Resources","address":"1 Shelley Plaza","hire_date":"5/3/2018","website":"https://comcast.net","notes":"id turpis integer aliquet massa id lobortis convallis tortor risus dapibus augue vel accumsan tellus nisi eu orci mauris","status":5,"type":1,"salary":"$2094.79"}, {"id":422,"employee_id":"954333375-0","first_name":"Adelle","last_name":"Northedge","email":"anorthedgebp@digg.com","phone":"369-954-3928","gender":"Female","department":"Human Resources","address":"132 Debs Parkway","hire_date":"9/8/2017","website":"http://timesonline.co.uk","notes":"auctor sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis","status":2,"type":1,"salary":"$436.40"}, {"id":423,"employee_id":"407584814-0","first_name":"Phedra","last_name":"Gynn","email":"pgynnbq@quantcast.com","phone":"511-999-5539","gender":"Female","department":"Business Development","address":"965 Portage Alley","hire_date":"8/2/2017","website":"https://myspace.com","notes":"platea dictumst maecenas ut massa quis augue luctus tincidunt nulla","status":3,"type":3,"salary":"$1684.71"}, {"id":424,"employee_id":"812940375-7","first_name":"Erv","last_name":"Mawne","email":"emawnebr@umich.edu","phone":"680-716-0959","gender":"Male","department":"Legal","address":"2 Glacier Hill Place","hire_date":"6/17/2018","website":"https://salon.com","notes":"quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum","status":1,"type":3,"salary":"$544.33"}, {"id":425,"employee_id":"064808940-1","first_name":"Portie","last_name":"Tremblett","email":"ptremblettbs@sitemeter.com","phone":"529-659-3946","gender":"Male","department":"Research and Development","address":"14 Sachs Drive","hire_date":"4/22/2018","website":"http://acquirethisname.com","notes":"quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida","status":5,"type":1,"salary":"$689.76"}, {"id":426,"employee_id":"151407990-9","first_name":"Jaime","last_name":"Bygraves","email":"jbygravesbt@google.cn","phone":"812-900-3571","gender":"Female","department":"Business Development","address":"25 Del Sol Avenue","hire_date":"10/24/2017","website":"http://indiegogo.com","notes":"mauris ullamcorper purus sit amet nulla quisque arcu libero rutrum ac lobortis vel dapibus at diam","status":4,"type":1,"salary":"$280.64"}, {"id":427,"employee_id":"252278282-7","first_name":"Elle","last_name":"Sellack","email":"esellackbu@imgur.com","phone":"142-859-9709","gender":"Female","department":"Legal","address":"41421 Hooker Plaza","hire_date":"10/29/2017","website":"https://woothemes.com","notes":"feugiat non pretium quis lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa","status":3,"type":2,"salary":"$507.42"}, {"id":428,"employee_id":"109983946-7","first_name":"Roma","last_name":"Kienlein","email":"rkienleinbv@indiatimes.com","phone":"356-265-5875","gender":"Male","department":"Services","address":"65 Warrior Parkway","hire_date":"8/26/2017","website":"https://rakuten.co.jp","notes":"at turpis a pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut","status":6,"type":1,"salary":"$914.01"}, {"id":429,"employee_id":"454856453-5","first_name":"Margarita","last_name":"Wedge","email":"mwedgebw@discuz.net","phone":"745-912-2962","gender":"Female","department":"Training","address":"73167 Farragut Terrace","hire_date":"12/25/2017","website":"http://flickr.com","notes":"luctus nec molestie sed justo pellentesque viverra pede ac diam cras pellentesque","status":1,"type":2,"salary":"$280.02"}, {"id":430,"employee_id":"839482313-0","first_name":"Franciskus","last_name":"Teresia","email":"fteresiabx@nymag.com","phone":"993-710-8153","gender":"Male","department":"Research and Development","address":"78 Valley Edge Alley","hire_date":"10/27/2017","website":"http://accuweather.com","notes":"potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt","status":4,"type":1,"salary":"$699.50"}, {"id":431,"employee_id":"760810405-8","first_name":"Christophorus","last_name":"Enderlein","email":"cenderleinby@hexun.com","phone":"320-344-3696","gender":"Male","department":"Legal","address":"1832 Kings Junction","hire_date":"4/6/2018","website":"http://blogtalkradio.com","notes":"at velit eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id","status":3,"type":1,"salary":"$1994.40"}, {"id":432,"employee_id":"182653883-6","first_name":"Maggi","last_name":"Blofield","email":"mblofieldbz@hao123.com","phone":"382-195-4044","gender":"Female","department":"Marketing","address":"21 Carioca Court","hire_date":"10/29/2017","website":"http://opensource.org","notes":"luctus ultricies eu nibh quisque id justo sit amet sapien dignissim","status":5,"type":2,"salary":"$825.43"}, {"id":433,"employee_id":"966678917-5","first_name":"Ag","last_name":"Wearing","email":"awearingc0@gnu.org","phone":"674-999-6239","gender":"Female","department":"Accounting","address":"4 Carey Court","hire_date":"7/9/2018","website":"https://techcrunch.com","notes":"a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio","status":6,"type":2,"salary":"$2049.80"}, {"id":434,"employee_id":"244727837-3","first_name":"Prentiss","last_name":"Kerman","email":"pkermanc1@adobe.com","phone":"783-187-8171","gender":"Male","department":"Marketing","address":"06910 Aberg Road","hire_date":"5/20/2018","website":"https://webmd.com","notes":"eu interdum eu tincidunt in leo maecenas pulvinar lobortis est","status":1,"type":3,"salary":"$1134.24"}, {"id":435,"employee_id":"018330941-3","first_name":"Laureen","last_name":"Lanon","email":"llanonc2@unc.edu","phone":"611-782-3718","gender":"Female","department":"Services","address":"36 Westend Plaza","hire_date":"11/2/2017","website":"https://e-recht24.de","notes":"accumsan tortor quis turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum","status":1,"type":3,"salary":"$1568.91"}, {"id":436,"employee_id":"081790270-8","first_name":"Larissa","last_name":"Cowill","email":"lcowillc3@go.com","phone":"172-352-8279","gender":"Female","department":"Business Development","address":"1 Onsgard Circle","hire_date":"4/17/2018","website":"http://unblog.fr","notes":"odio consequat varius integer ac leo pellentesque ultrices mattis odio donec","status":4,"type":3,"salary":"$2035.66"}, {"id":437,"employee_id":"767401913-6","first_name":"Arny","last_name":"Mossdale","email":"amossdalec4@ucoz.ru","phone":"859-929-0052","gender":"Male","department":"Accounting","address":"2 Buena Vista Point","hire_date":"4/19/2018","website":"https://umn.edu","notes":"ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna","status":2,"type":1,"salary":"$512.76"}, {"id":438,"employee_id":"086425835-6","first_name":"Deena","last_name":"Kryszkiecicz","email":"dkryszkieciczc5@sitemeter.com","phone":"317-630-8147","gender":"Female","department":"Marketing","address":"9174 Crest Line Junction","hire_date":"7/1/2018","website":"http://microsoft.com","notes":"odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac","status":4,"type":1,"salary":"$491.47"}, {"id":439,"employee_id":"883721633-5","first_name":"Casar","last_name":"Mozzetti","email":"cmozzettic6@pcworld.com","phone":"736-647-0293","gender":"Male","department":"Sales","address":"4147 Bonner Center","hire_date":"1/16/2018","website":"http://nymag.com","notes":"non mi integer ac neque duis bibendum morbi non quam nec dui","status":6,"type":1,"salary":"$1244.14"}, {"id":440,"employee_id":"434650054-4","first_name":"Darice","last_name":"Scripps","email":"dscrippsc7@wix.com","phone":"699-549-7625","gender":"Female","department":"Accounting","address":"4 Daystar Place","hire_date":"9/18/2017","website":"https://wikispaces.com","notes":"in lectus pellentesque at nulla suspendisse potenti cras in purus eu magna vulputate","status":4,"type":1,"salary":"$1786.65"}, {"id":441,"employee_id":"076235846-7","first_name":"Kelsi","last_name":"Cancellieri","email":"kcancellieric8@salon.com","phone":"563-608-6571","gender":"Female","department":"Product Management","address":"470 Holmberg Place","hire_date":"8/4/2017","website":"http://ftc.gov","notes":"velit donec diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante","status":5,"type":3,"salary":"$513.44"}, {"id":442,"employee_id":"569952107-0","first_name":"Curt","last_name":"Tunmore","email":"ctunmorec9@wisc.edu","phone":"782-762-3868","gender":"Male","department":"Legal","address":"16506 Westend Junction","hire_date":"5/16/2018","website":"https://sakura.ne.jp","notes":"sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl","status":2,"type":3,"salary":"$1213.96"}, {"id":443,"employee_id":"383633966-8","first_name":"Fay","last_name":"Kinnerk","email":"fkinnerkca@macromedia.com","phone":"215-422-3554","gender":"Female","department":"Business Development","address":"02657 Lake View Junction","hire_date":"8/2/2017","website":"http://angelfire.com","notes":"posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut ultrices vel augue","status":4,"type":2,"salary":"$407.95"}, {"id":444,"employee_id":"729346815-6","first_name":"Kelbee","last_name":"Dumbleton","email":"kdumbletoncb@behance.net","phone":"749-679-4798","gender":"Male","department":"Training","address":"5 Mariners Cove Street","hire_date":"1/24/2018","website":"https://cyberchimps.com","notes":"nascetur ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id","status":5,"type":1,"salary":"$696.08"}, {"id":445,"employee_id":"747521861-9","first_name":"Davin","last_name":"Merricks","email":"dmerrickscc@ask.com","phone":"785-747-6250","gender":"Male","department":"Research and Development","address":"5142 Montana Way","hire_date":"7/13/2018","website":"https://google.pl","notes":"dolor sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in","status":4,"type":2,"salary":"$642.15"}, {"id":446,"employee_id":"216019302-X","first_name":"Garner","last_name":"Dwyr","email":"gdwyrcd@samsung.com","phone":"385-543-7297","gender":"Male","department":"Research and Development","address":"4 Linden Park","hire_date":"8/25/2017","website":"http://nsw.gov.au","notes":"eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien","status":6,"type":2,"salary":"$1391.05"}, {"id":447,"employee_id":"555101167-4","first_name":"Loella","last_name":"Bartosinski","email":"lbartosinskice@topsy.com","phone":"181-493-0626","gender":"Female","department":"Product Management","address":"4498 Loeprich Trail","hire_date":"5/26/2018","website":"http://about.me","notes":"ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan tortor","status":2,"type":3,"salary":"$917.71"}, {"id":448,"employee_id":"970348373-9","first_name":"Zaccaria","last_name":"Cliff","email":"zcliffcf@goodreads.com","phone":"452-781-4791","gender":"Male","department":"Product Management","address":"27100 8th Trail","hire_date":"9/11/2017","website":"https://i2i.jp","notes":"pede venenatis non sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus","status":2,"type":3,"salary":"$2137.89"}, {"id":449,"employee_id":"561313066-3","first_name":"Lizabeth","last_name":"Darell","email":"ldarellcg@army.mil","phone":"178-691-2018","gender":"Female","department":"Support","address":"3028 Sunbrook Drive","hire_date":"6/20/2018","website":"https://pagesperso-orange.fr","notes":"nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id","status":3,"type":2,"salary":"$548.39"}, {"id":450,"employee_id":"475249315-2","first_name":"Karole","last_name":"Moorhouse","email":"kmoorhousech@ask.com","phone":"971-402-0509","gender":"Female","department":"Human Resources","address":"83274 Blue Bill Park Center","hire_date":"12/31/2017","website":"https://seattletimes.com","notes":"non mauris morbi non lectus aliquam sit amet diam in magna bibendum","status":1,"type":3,"salary":"$1469.00"}, {"id":451,"employee_id":"890740322-8","first_name":"Tyne","last_name":"Carbine","email":"tcarbineci@illinois.edu","phone":"988-771-6510","gender":"Female","department":"Human Resources","address":"8568 American Crossing","hire_date":"12/15/2017","website":"https://apple.com","notes":"nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros","status":3,"type":1,"salary":"$662.93"}, {"id":452,"employee_id":"737691319-X","first_name":"Pattie","last_name":"Ben-Aharon","email":"pbenaharoncj@sciencedirect.com","phone":"261-507-6937","gender":"Male","department":"Research and Development","address":"671 Walton Point","hire_date":"5/8/2018","website":"http://blinklist.com","notes":"vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget","status":5,"type":3,"salary":"$882.17"}, {"id":453,"employee_id":"622434271-7","first_name":"Alberik","last_name":"O\'Regan","email":"aoreganck@gmpg.org","phone":"282-555-1049","gender":"Male","department":"Training","address":"2298 Summer Ridge Way","hire_date":"12/3/2017","website":"https://arstechnica.com","notes":"in felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec euismod scelerisque","status":3,"type":1,"salary":"$1495.86"}, {"id":454,"employee_id":"024409622-8","first_name":"Melessa","last_name":"Jennery","email":"mjennerycl@army.mil","phone":"163-199-2858","gender":"Female","department":"Training","address":"14485 Mandrake Street","hire_date":"10/1/2017","website":"https://macromedia.com","notes":"ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit nam nulla integer pede","status":4,"type":1,"salary":"$1533.74"}, {"id":455,"employee_id":"681357341-1","first_name":"Pablo","last_name":"Kearns","email":"pkearnscm@wunderground.com","phone":"859-351-4526","gender":"Male","department":"Engineering","address":"26982 8th Terrace","hire_date":"11/9/2017","website":"http://huffingtonpost.com","notes":"montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient","status":1,"type":3,"salary":"$1783.68"}, {"id":456,"employee_id":"964951088-5","first_name":"Kyle","last_name":"Shallow","email":"kshallowcn@shop-pro.jp","phone":"328-483-0063","gender":"Male","department":"Support","address":"3 Transport Parkway","hire_date":"11/28/2017","website":"http://guardian.co.uk","notes":"amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed","status":6,"type":2,"salary":"$460.54"}, {"id":457,"employee_id":"312016021-0","first_name":"Gunter","last_name":"Hammatt","email":"ghammattco@slashdot.org","phone":"708-848-5471","gender":"Male","department":"Sales","address":"9 Springview Circle","hire_date":"9/19/2017","website":"http://ucoz.ru","notes":"quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan tortor quis turpis sed ante vivamus tortor","status":1,"type":1,"salary":"$982.54"}, {"id":458,"employee_id":"851918413-8","first_name":"Justis","last_name":"Libby","email":"jlibbycp@answers.com","phone":"142-806-3092","gender":"Male","department":"Accounting","address":"0 Boyd Street","hire_date":"2/21/2018","website":"https://lycos.com","notes":"elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue","status":2,"type":2,"salary":"$641.35"}, {"id":459,"employee_id":"213358260-6","first_name":"Aldus","last_name":"McClintock","email":"amcclintockcq@nydailynews.com","phone":"332-699-9611","gender":"Male","department":"Legal","address":"84181 Westend Way","hire_date":"9/25/2017","website":"http://free.fr","notes":"tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed justo","status":2,"type":2,"salary":"$1369.07"}, {"id":460,"employee_id":"672487599-4","first_name":"Luce","last_name":"Sculley","email":"lsculleycr@myspace.com","phone":"121-950-8814","gender":"Female","department":"Support","address":"008 Fairfield Pass","hire_date":"12/21/2017","website":"http://buzzfeed.com","notes":"dapibus augue vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero","status":5,"type":1,"salary":"$1348.05"}, {"id":461,"employee_id":"647304520-1","first_name":"Guilbert","last_name":"Denty","email":"gdentycs@cbsnews.com","phone":"574-982-6460","gender":"Male","department":"Training","address":"37882 Thierer Crossing","hire_date":"10/28/2017","website":"https://gnu.org","notes":"lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit nam","status":6,"type":2,"salary":"$296.09"}, {"id":462,"employee_id":"189235750-X","first_name":"Erika","last_name":"Eldred","email":"eeldredct@icio.us","phone":"733-760-3435","gender":"Female","department":"Research and Development","address":"94826 Logan Place","hire_date":"2/18/2018","website":"https://freewebs.com","notes":"ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis","status":2,"type":2,"salary":"$741.69"}, {"id":463,"employee_id":"419696894-5","first_name":"Jo","last_name":"Copeman","email":"jcopemancu@geocities.com","phone":"173-702-0656","gender":"Male","department":"Business Development","address":"4949 Kennedy Lane","hire_date":"7/14/2018","website":"https://ed.gov","notes":"nulla facilisi cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros","status":6,"type":2,"salary":"$1835.35"}, {"id":464,"employee_id":"015027493-9","first_name":"Peyter","last_name":"Hellmore","email":"phellmorecv@digg.com","phone":"632-582-9736","gender":"Male","department":"Engineering","address":"3121 Waywood Hill","hire_date":"9/6/2017","website":"https://imdb.com","notes":"nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget semper rutrum nulla nunc","status":6,"type":2,"salary":"$2212.66"}, {"id":465,"employee_id":"832937399-1","first_name":"Orin","last_name":"Barbie","email":"obarbiecw@huffingtonpost.com","phone":"256-215-8770","gender":"Male","department":"Marketing","address":"32669 Iowa Parkway","hire_date":"2/18/2018","website":"http://artisteer.com","notes":"pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue a","status":1,"type":1,"salary":"$1866.77"}, {"id":466,"employee_id":"072281813-0","first_name":"Orelee","last_name":"Copsey","email":"ocopseycx@utexas.edu","phone":"394-385-8452","gender":"Female","department":"Support","address":"8 Drewry Point","hire_date":"10/4/2017","website":"https://constantcontact.com","notes":"enim lorem ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id","status":4,"type":2,"salary":"$1230.46"}, {"id":467,"employee_id":"606044235-8","first_name":"Sigismondo","last_name":"Ofen","email":"sofency@mapquest.com","phone":"341-819-8669","gender":"Male","department":"Research and Development","address":"77396 Doe Crossing Alley","hire_date":"8/11/2017","website":"http://princeton.edu","notes":"pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices enim lorem","status":6,"type":2,"salary":"$1765.19"}, {"id":468,"employee_id":"821273689-X","first_name":"Jedediah","last_name":"MacLaig","email":"jmaclaigcz@360.cn","phone":"534-631-5874","gender":"Male","department":"Services","address":"4 Comanche Parkway","hire_date":"1/12/2018","website":"https://squarespace.com","notes":"curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel","status":4,"type":1,"salary":"$1215.24"}, {"id":469,"employee_id":"066207236-7","first_name":"Beverlee","last_name":"O\' Loughran","email":"boloughrand0@cyberchimps.com","phone":"127-755-5606","gender":"Female","department":"Marketing","address":"74 Lotheville Parkway","hire_date":"12/11/2017","website":"https://nsw.gov.au","notes":"vel lectus in quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit amet cursus id turpis","status":6,"type":3,"salary":"$2307.28"}, {"id":470,"employee_id":"844898553-2","first_name":"Martica","last_name":"Matteoli","email":"mmatteolid1@pen.io","phone":"672-519-4332","gender":"Female","department":"Engineering","address":"2 Badeau Junction","hire_date":"4/12/2018","website":"https://npr.org","notes":"consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue","status":6,"type":3,"salary":"$984.27"}, {"id":471,"employee_id":"311719965-9","first_name":"Huberto","last_name":"Potte","email":"hpotted2@princeton.edu","phone":"863-788-5617","gender":"Male","department":"Marketing","address":"87 Ridge Oak Parkway","hire_date":"4/19/2018","website":"http://washington.edu","notes":"faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec","status":1,"type":3,"salary":"$878.14"}, {"id":472,"employee_id":"582143417-3","first_name":"Cliff","last_name":"Packer","email":"cpackerd3@kickstarter.com","phone":"508-822-7087","gender":"Male","department":"Services","address":"5595 Burrows Point","hire_date":"6/24/2018","website":"https://techcrunch.com","notes":"curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a","status":6,"type":3,"salary":"$381.41"}, {"id":473,"employee_id":"855235495-0","first_name":"Ross","last_name":"Ladley","email":"rladleyd4@cnn.com","phone":"198-656-5423","gender":"Male","department":"Product Management","address":"1 Northport Road","hire_date":"6/15/2018","website":"http://bluehost.com","notes":"dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac nibh fusce lacus purus","status":2,"type":2,"salary":"$2146.81"}, {"id":474,"employee_id":"404159862-1","first_name":"Alyce","last_name":"McCleod","email":"amccleodd5@redcross.org","phone":"880-580-5700","gender":"Female","department":"Human Resources","address":"925 Bultman Parkway","hire_date":"2/25/2018","website":"https://com.com","notes":"fusce congue diam id ornare imperdiet sapien urna pretium nisl ut","status":6,"type":3,"salary":"$1903.25"}, {"id":475,"employee_id":"589835155-8","first_name":"Verina","last_name":"Courvert","email":"vcourvertd6@cafepress.com","phone":"172-360-9828","gender":"Female","department":"Accounting","address":"8974 Spaight Street","hire_date":"7/16/2018","website":"https://google.fr","notes":"duis consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel lectus in quam","status":6,"type":1,"salary":"$1561.79"}, {"id":476,"employee_id":"972641382-6","first_name":"Culver","last_name":"Marchant","email":"cmarchantd7@hhs.gov","phone":"554-336-4806","gender":"Male","department":"Support","address":"399 Loomis Way","hire_date":"3/27/2018","website":"https://simplemachines.org","notes":"dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non pretium","status":4,"type":1,"salary":"$654.68"}, {"id":477,"employee_id":"500316478-5","first_name":"Caye","last_name":"Vogl","email":"cvogld8@weibo.com","phone":"185-256-5198","gender":"Female","department":"Research and Development","address":"96853 Homewood Pass","hire_date":"4/5/2018","website":"https://intel.com","notes":"mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl","status":3,"type":1,"salary":"$1814.29"}, {"id":478,"employee_id":"907436177-3","first_name":"Clerc","last_name":"Ramalhete","email":"cramalheted9@slate.com","phone":"830-908-1520","gender":"Male","department":"Legal","address":"93 Almo Hill","hire_date":"1/1/2018","website":"http://wufoo.com","notes":"sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices","status":5,"type":2,"salary":"$1579.44"}, {"id":479,"employee_id":"995025649-6","first_name":"Tomkin","last_name":"Hasluck","email":"thasluckda@fema.gov","phone":"978-887-7805","gender":"Male","department":"Services","address":"8482 Lindbergh Place","hire_date":"2/16/2018","website":"http://pcworld.com","notes":"vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam","status":3,"type":1,"salary":"$953.22"}, {"id":480,"employee_id":"066615751-0","first_name":"Odette","last_name":"Giabuzzi","email":"ogiabuzzidb@posterous.com","phone":"489-723-2878","gender":"Female","department":"Business Development","address":"45078 Burning Wood Court","hire_date":"3/10/2018","website":"https://oaic.gov.au","notes":"in congue etiam justo etiam pretium iaculis justo in hac habitasse platea","status":3,"type":2,"salary":"$254.89"}, {"id":481,"employee_id":"702181810-6","first_name":"Jervis","last_name":"Agdahl","email":"jagdahldc@typepad.com","phone":"912-890-8348","gender":"Male","department":"Marketing","address":"44161 Trailsway Crossing","hire_date":"11/25/2017","website":"https://furl.net","notes":"nisl nunc rhoncus dui vel sem sed sagittis nam congue risus","status":6,"type":1,"salary":"$1736.06"}, {"id":482,"employee_id":"718527178-9","first_name":"Selby","last_name":"Dore","email":"sdoredd@sogou.com","phone":"273-822-7706","gender":"Male","department":"Sales","address":"9855 Aberg Alley","hire_date":"4/26/2018","website":"http://hp.com","notes":"a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis","status":2,"type":1,"salary":"$665.95"}, {"id":483,"employee_id":"194704747-7","first_name":"Peyter","last_name":"Simonsson","email":"psimonssonde@theguardian.com","phone":"745-367-5082","gender":"Male","department":"Research and Development","address":"26 Donald Avenue","hire_date":"1/17/2018","website":"http://netvibes.com","notes":"sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum praesent blandit","status":4,"type":3,"salary":"$648.55"}, {"id":484,"employee_id":"546275328-4","first_name":"Tarrah","last_name":"Badrick","email":"tbadrickdf@geocities.jp","phone":"197-873-5702","gender":"Female","department":"Support","address":"8 Farmco Hill","hire_date":"4/23/2018","website":"http://hao123.com","notes":"quam nec dui luctus rutrum nulla tellus in sagittis dui","status":2,"type":2,"salary":"$505.63"}, {"id":485,"employee_id":"161723623-3","first_name":"Eduino","last_name":"Trengrouse","email":"etrengrousedg@hao123.com","phone":"225-234-9800","gender":"Male","department":"Business Development","address":"76471 Spaight Drive","hire_date":"5/22/2018","website":"https://ovh.net","notes":"mauris eget massa tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu","status":1,"type":2,"salary":"$1731.67"}, {"id":486,"employee_id":"070034175-7","first_name":"Shir","last_name":"Capper","email":"scapperdh@multiply.com","phone":"537-286-9052","gender":"Female","department":"Research and Development","address":"8 Troy Place","hire_date":"4/5/2018","website":"http://cnet.com","notes":"lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed","status":2,"type":1,"salary":"$494.21"}, {"id":487,"employee_id":"767827536-6","first_name":"Tani","last_name":"Cuxson","email":"tcuxsondi@yahoo.com","phone":"880-339-2128","gender":"Female","department":"Support","address":"8250 Eagan Terrace","hire_date":"4/5/2018","website":"http://howstuffworks.com","notes":"morbi vel lectus in quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit amet","status":6,"type":2,"salary":"$959.94"}, {"id":488,"employee_id":"902168185-4","first_name":"Rand","last_name":"MacQueen","email":"rmacqueendj@bravesites.com","phone":"617-715-8951","gender":"Male","department":"Accounting","address":"08228 Pawling Court","hire_date":"3/14/2018","website":"https://state.tx.us","notes":"vulputate elementum nullam varius nulla facilisi cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus","status":6,"type":2,"salary":"$1160.93"}, {"id":489,"employee_id":"040879291-4","first_name":"Talyah","last_name":"Shernock","email":"tshernockdk@state.tx.us","phone":"741-423-4538","gender":"Female","department":"Sales","address":"20 Melby Avenue","hire_date":"2/25/2018","website":"http://e-recht24.de","notes":"pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna ac consequat metus sapien ut nunc","status":2,"type":1,"salary":"$572.13"}, {"id":490,"employee_id":"474259442-8","first_name":"Jacquelin","last_name":"Santello","email":"jsantellodl@geocities.com","phone":"537-411-8619","gender":"Female","department":"Support","address":"57889 Manitowish Alley","hire_date":"8/20/2017","website":"https://i2i.jp","notes":"sapien placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris","status":3,"type":1,"salary":"$332.58"}, {"id":491,"employee_id":"450169658-3","first_name":"Bell","last_name":"Beckley","email":"bbeckleydm@cloudflare.com","phone":"217-894-3996","gender":"Female","department":"Support","address":"77 Mosinee Drive","hire_date":"6/24/2018","website":"http://sogou.com","notes":"vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat","status":2,"type":2,"salary":"$1353.02"}, {"id":492,"employee_id":"086726928-6","first_name":"Ivory","last_name":"Likly","email":"iliklydn@scientificamerican.com","phone":"609-525-5539","gender":"Female","department":"Training","address":"661 Daystar Pass","hire_date":"8/27/2017","website":"http://sfgate.com","notes":"iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat","status":1,"type":2,"salary":"$1809.00"}, {"id":493,"employee_id":"711819703-3","first_name":"Fae","last_name":"Wiggall","email":"fwiggalldo@columbia.edu","phone":"437-540-3973","gender":"Female","department":"Marketing","address":"36 Forest Dale Circle","hire_date":"9/24/2017","website":"http://newsvine.com","notes":"dui proin leo odio porttitor id consequat in consequat ut","status":4,"type":3,"salary":"$2403.80"}, {"id":494,"employee_id":"290349600-5","first_name":"Ernestine","last_name":"Goalby","email":"egoalbydp@digg.com","phone":"180-831-1929","gender":"Female","department":"Engineering","address":"7 Del Mar Point","hire_date":"10/19/2017","website":"https://tiny.cc","notes":"quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a pede posuere","status":6,"type":3,"salary":"$2336.08"}, {"id":495,"employee_id":"538385022-8","first_name":"Jessie","last_name":"Impey","email":"jimpeydq@washingtonpost.com","phone":"422-805-3725","gender":"Female","department":"Business Development","address":"287 Ryan Point","hire_date":"3/31/2018","website":"https://go.com","notes":"eros suspendisse accumsan tortor quis turpis sed ante vivamus tortor","status":5,"type":2,"salary":"$611.44"}, {"id":496,"employee_id":"143360510-4","first_name":"Yanaton","last_name":"Camplejohn","email":"ycamplejohndr@nhs.uk","phone":"936-368-9176","gender":"Male","department":"Marketing","address":"99 Northland Pass","hire_date":"9/3/2017","website":"https://is.gd","notes":"enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet","status":4,"type":1,"salary":"$2245.39"}, {"id":497,"employee_id":"750684578-4","first_name":"Trudi","last_name":"Overington","email":"toveringtonds@prlog.org","phone":"270-552-8062","gender":"Female","department":"Marketing","address":"7427 Blaine Place","hire_date":"10/17/2017","website":"http://dion.ne.jp","notes":"mauris viverra diam vitae quam suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris","status":1,"type":2,"salary":"$1073.92"}, {"id":498,"employee_id":"221179228-6","first_name":"Clemmie","last_name":"Durek","email":"cdurekdt@whitehouse.gov","phone":"692-244-6198","gender":"Male","department":"Human Resources","address":"58886 Alpine Terrace","hire_date":"4/12/2018","website":"https://senate.gov","notes":"nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula","status":6,"type":2,"salary":"$1969.24"}, {"id":499,"employee_id":"568206519-0","first_name":"Saunder","last_name":"Pain","email":"spaindu@de.vu","phone":"473-272-7672","gender":"Male","department":"Business Development","address":"57956 Packers Trail","hire_date":"9/14/2017","website":"https://wp.com","notes":"amet eleifend pede libero quis orci nullam molestie nibh in","status":3,"type":1,"salary":"$377.29"}, {"id":500,"employee_id":"425526429-5","first_name":"Sam","last_name":"Thomann","email":"sthomanndv@vimeo.com","phone":"614-882-2312","gender":"Female","department":"Human Resources","address":"5 Red Cloud Trail","hire_date":"5/11/2018","website":"http://mtv.com","notes":"purus aliquet at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a odio","status":1,"type":3,"salary":"$1111.96"}, {"id":501,"employee_id":"117610162-5","first_name":"Lindsay","last_name":"Kraut","email":"lkrautdw@cnet.com","phone":"425-547-6447","gender":"Female","department":"Engineering","address":"5672 Clemons Lane","hire_date":"6/8/2018","website":"https://fastcompany.com","notes":"id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede","status":2,"type":1,"salary":"$760.65"}, {"id":502,"employee_id":"984428955-6","first_name":"Sholom","last_name":"Shipman","email":"sshipmandx@networkadvertising.org","phone":"471-320-6739","gender":"Male","department":"Research and Development","address":"10 Sutteridge Crossing","hire_date":"6/10/2018","website":"http://comsenz.com","notes":"adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in ante vestibulum","status":3,"type":1,"salary":"$1776.23"}, {"id":503,"employee_id":"410067431-7","first_name":"Josefa","last_name":"Wynn","email":"jwynndy@cnet.com","phone":"498-617-3001","gender":"Female","department":"Legal","address":"626 Muir Circle","hire_date":"11/10/2017","website":"http://arizona.edu","notes":"integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula suspendisse","status":1,"type":3,"salary":"$1226.60"}, {"id":504,"employee_id":"028594067-8","first_name":"Gae","last_name":"McKane","email":"gmckanedz@washington.edu","phone":"206-954-8266","gender":"Female","department":"Research and Development","address":"29777 Sommers Alley","hire_date":"9/20/2017","website":"http://adobe.com","notes":"porta volutpat quam pede lobortis ligula sit amet eleifend pede libero","status":2,"type":2,"salary":"$407.96"}, {"id":505,"employee_id":"326426622-9","first_name":"Lorinda","last_name":"Tomowicz","email":"ltomowicze0@msu.edu","phone":"328-817-3161","gender":"Female","department":"Product Management","address":"712 Mallard Drive","hire_date":"10/5/2017","website":"https://un.org","notes":"sapien urna pretium nisl ut volutpat sapien arcu sed augue aliquam erat volutpat","status":4,"type":1,"salary":"$2408.57"}, {"id":506,"employee_id":"270468637-8","first_name":"Rafi","last_name":"Mc Harg","email":"rmcharge1@gnu.org","phone":"499-665-2017","gender":"Male","department":"Marketing","address":"355 Milwaukee Pass","hire_date":"9/2/2017","website":"https://apple.com","notes":"sit amet justo morbi ut odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices enim","status":2,"type":1,"salary":"$2260.97"}, {"id":507,"employee_id":"383508689-8","first_name":"Perceval","last_name":"Apark","email":"paparke2@ow.ly","phone":"917-150-4444","gender":"Male","department":"Business Development","address":"369 East Point","hire_date":"10/1/2017","website":"http://icq.com","notes":"integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula","status":5,"type":1,"salary":"$1344.27"}, {"id":508,"employee_id":"195865159-1","first_name":"Dyann","last_name":"Iacobo","email":"diacoboe3@rediff.com","phone":"699-728-7247","gender":"Female","department":"Legal","address":"709 High Crossing Junction","hire_date":"2/20/2018","website":"https://yellowpages.com","notes":"ultrices mattis odio donec vitae nisi nam ultrices libero non mattis","status":6,"type":1,"salary":"$1111.05"}, {"id":509,"employee_id":"981494545-5","first_name":"Cornall","last_name":"Arnfield","email":"carnfielde4@ebay.co.uk","phone":"731-176-4240","gender":"Male","department":"Research and Development","address":"71 Lakewood Way","hire_date":"5/17/2018","website":"http://vk.com","notes":"mauris ullamcorper purus sit amet nulla quisque arcu libero rutrum ac lobortis vel dapibus at diam nam tristique tortor","status":3,"type":2,"salary":"$821.90"}, {"id":510,"employee_id":"088408667-4","first_name":"Wendall","last_name":"Langmaid","email":"wlangmaide5@sourceforge.net","phone":"335-490-0227","gender":"Male","department":"Product Management","address":"20191 Katie Street","hire_date":"9/23/2017","website":"http://dyndns.org","notes":"lorem quisque ut erat curabitur gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer","status":1,"type":3,"salary":"$557.72"}, {"id":511,"employee_id":"725959027-0","first_name":"Gustavo","last_name":"Frowde","email":"gfrowdee6@sciencedaily.com","phone":"226-885-7445","gender":"Male","department":"Marketing","address":"91 Westerfield Park","hire_date":"4/24/2018","website":"http://reddit.com","notes":"ligula sit amet eleifend pede libero quis orci nullam molestie nibh in","status":6,"type":2,"salary":"$795.00"}, {"id":512,"employee_id":"065409990-1","first_name":"Dyann","last_name":"Rousell","email":"drouselle7@so-net.ne.jp","phone":"296-840-4065","gender":"Female","department":"Marketing","address":"82161 Jay Road","hire_date":"9/25/2017","website":"https://blogspot.com","notes":"ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia","status":2,"type":3,"salary":"$765.07"}, {"id":513,"employee_id":"285010494-9","first_name":"Lucienne","last_name":"Castello","email":"lcastelloe8@exblog.jp","phone":"680-565-2679","gender":"Female","department":"Business Development","address":"32620 Sutherland Lane","hire_date":"11/19/2017","website":"http://squidoo.com","notes":"sed tristique in tempus sit amet sem fusce consequat nulla","status":6,"type":2,"salary":"$1540.86"}, {"id":514,"employee_id":"595628191-X","first_name":"Jacquie","last_name":"Millsom","email":"jmillsome9@stanford.edu","phone":"732-658-4644","gender":"Female","department":"Sales","address":"5 West Drive","hire_date":"7/22/2017","website":"http://edublogs.org","notes":"sit amet lobortis sapien sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum","status":4,"type":2,"salary":"$1071.47"}, {"id":515,"employee_id":"067222722-3","first_name":"Agretha","last_name":"Kevern","email":"akevernea@pbs.org","phone":"678-329-6733","gender":"Female","department":"Sales","address":"7099 Prentice Drive","hire_date":"9/22/2017","website":"http://pbs.org","notes":"condimentum neque sapien placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan","status":3,"type":2,"salary":"$335.98"}, {"id":516,"employee_id":"054554550-1","first_name":"Cybill","last_name":"Maddison","email":"cmaddisoneb@angelfire.com","phone":"964-989-9152","gender":"Female","department":"Accounting","address":"87630 Mockingbird Place","hire_date":"5/24/2018","website":"http://unesco.org","notes":"iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque","status":6,"type":1,"salary":"$821.01"}, {"id":517,"employee_id":"817006907-6","first_name":"Abe","last_name":"Barme","email":"abarmeec@yellowbook.com","phone":"767-754-0994","gender":"Male","department":"Human Resources","address":"96 Service Circle","hire_date":"1/14/2018","website":"https://nature.com","notes":"tortor risus dapibus augue vel accumsan tellus nisi eu orci","status":3,"type":3,"salary":"$1875.92"}, {"id":518,"employee_id":"743717134-1","first_name":"Sallee","last_name":"Ephgrave","email":"sephgraveed@usda.gov","phone":"959-505-3973","gender":"Female","department":"Research and Development","address":"913 Laurel Place","hire_date":"3/28/2018","website":"https://bloglovin.com","notes":"dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis molestie","status":5,"type":2,"salary":"$1313.62"}, {"id":519,"employee_id":"385122785-9","first_name":"Vlad","last_name":"Kasbye","email":"vkasbyeee@ycombinator.com","phone":"270-122-0315","gender":"Male","department":"Research and Development","address":"77 Cambridge Crossing","hire_date":"3/23/2018","website":"http://123-reg.co.uk","notes":"sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum","status":1,"type":1,"salary":"$2258.49"}, {"id":520,"employee_id":"891359762-4","first_name":"Aluino","last_name":"Thoresbie","email":"athoresbieef@yellowbook.com","phone":"406-945-8430","gender":"Male","department":"Accounting","address":"08556 Chinook Center","hire_date":"2/7/2018","website":"https://163.com","notes":"diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci","status":5,"type":1,"salary":"$1746.72"}, {"id":521,"employee_id":"009979810-7","first_name":"Pansy","last_name":"Meco","email":"pmecoeg@newsvine.com","phone":"577-321-5002","gender":"Female","department":"Training","address":"2 Anhalt Plaza","hire_date":"6/9/2018","website":"http://godaddy.com","notes":"lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh","status":4,"type":2,"salary":"$996.08"}, {"id":522,"employee_id":"817438242-9","first_name":"Tyrus","last_name":"Jameson","email":"tjamesoneh@example.com","phone":"942-794-5383","gender":"Male","department":"Marketing","address":"1159 Quincy Park","hire_date":"2/16/2018","website":"https://tinypic.com","notes":"non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla","status":1,"type":2,"salary":"$683.93"}, {"id":523,"employee_id":"425717013-1","first_name":"Gasper","last_name":"Casin","email":"gcasinei@bbb.org","phone":"924-594-2762","gender":"Male","department":"Services","address":"54 Butternut Junction","hire_date":"3/6/2018","website":"http://imgur.com","notes":"nisl nunc rhoncus dui vel sem sed sagittis nam congue risus semper porta volutpat quam pede lobortis ligula sit amet","status":6,"type":2,"salary":"$360.97"}, {"id":524,"employee_id":"309675188-9","first_name":"Thatch","last_name":"Crinkley","email":"tcrinkleyej@artisteer.com","phone":"166-901-1673","gender":"Male","department":"Product Management","address":"241 Lighthouse Bay Plaza","hire_date":"10/17/2017","website":"http://mlb.com","notes":"augue aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac habitasse platea","status":5,"type":2,"salary":"$1397.54"}, {"id":525,"employee_id":"578154346-5","first_name":"Dukey","last_name":"Hacun","email":"dhacunek@timesonline.co.uk","phone":"288-708-4115","gender":"Male","department":"Accounting","address":"52824 Transport Place","hire_date":"12/27/2017","website":"https://pcworld.com","notes":"posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui","status":3,"type":3,"salary":"$2376.40"}, {"id":526,"employee_id":"379738361-4","first_name":"Lindy","last_name":"Billo","email":"lbilloel@macromedia.com","phone":"801-573-9373","gender":"Female","department":"Research and Development","address":"54404 Hermina Terrace","hire_date":"10/1/2017","website":"http://nsw.gov.au","notes":"semper sapien a libero nam dui proin leo odio porttitor id consequat in consequat ut nulla","status":6,"type":3,"salary":"$2158.48"}, {"id":527,"employee_id":"466883586-2","first_name":"Dalston","last_name":"Bogace","email":"dbogaceem@vk.com","phone":"295-805-9785","gender":"Male","department":"Product Management","address":"38 Becker Street","hire_date":"9/15/2017","website":"http://tumblr.com","notes":"etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat","status":1,"type":1,"salary":"$1911.79"}, {"id":528,"employee_id":"540218312-0","first_name":"Millard","last_name":"Florentine","email":"mflorentineen@washingtonpost.com","phone":"922-496-0342","gender":"Male","department":"Research and Development","address":"5 Forest Run Street","hire_date":"10/4/2017","website":"https://pen.io","notes":"semper rutrum nulla nunc purus phasellus in felis donec semper sapien a libero nam dui","status":6,"type":2,"salary":"$1686.38"}, {"id":529,"employee_id":"471433513-8","first_name":"Tove","last_name":"Gagan","email":"tgaganeo@google.com.hk","phone":"674-360-2542","gender":"Female","department":"Accounting","address":"12 Dayton Pass","hire_date":"12/20/2017","website":"http://google.com.hk","notes":"donec quis orci eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio odio elementum","status":2,"type":3,"salary":"$560.97"}, {"id":530,"employee_id":"896500909-X","first_name":"Veda","last_name":"Palfrey","email":"vpalfreyep@youku.com","phone":"332-927-5840","gender":"Female","department":"Support","address":"38 Packers Road","hire_date":"12/2/2017","website":"https://dion.ne.jp","notes":"lectus suspendisse potenti in eleifend quam a odio in hac habitasse","status":6,"type":2,"salary":"$1058.94"}, {"id":531,"employee_id":"864412579-6","first_name":"Suellen","last_name":"Canavan","email":"scanavaneq@scientificamerican.com","phone":"576-969-0877","gender":"Female","department":"Accounting","address":"2 Manley Trail","hire_date":"3/22/2018","website":"http://un.org","notes":"etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus","status":6,"type":1,"salary":"$2336.14"}, {"id":532,"employee_id":"361106781-4","first_name":"Hallie","last_name":"Vannoni","email":"hvannonier@flickr.com","phone":"260-478-2440","gender":"Female","department":"Accounting","address":"2567 Lillian Hill","hire_date":"8/16/2017","website":"https://cloudflare.com","notes":"ipsum integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi","status":4,"type":3,"salary":"$1386.77"}, {"id":533,"employee_id":"319328011-9","first_name":"Mersey","last_name":"Schwieso","email":"mschwiesoes@chron.com","phone":"132-552-8514","gender":"Female","department":"Business Development","address":"5 Nelson Point","hire_date":"6/10/2018","website":"http://shutterfly.com","notes":"sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et","status":3,"type":1,"salary":"$824.84"}, {"id":534,"employee_id":"713956296-2","first_name":"Lefty","last_name":"Clute","email":"lcluteet@rambler.ru","phone":"449-868-4056","gender":"Male","department":"Training","address":"7763 Sunnyside Plaza","hire_date":"11/7/2017","website":"http://storify.com","notes":"id lobortis convallis tortor risus dapibus augue vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero nullam sit","status":2,"type":1,"salary":"$1307.33"}, {"id":535,"employee_id":"069730721-2","first_name":"Roxine","last_name":"Shakelady","email":"rshakeladyeu@live.com","phone":"399-312-9948","gender":"Female","department":"Sales","address":"357 Shopko Lane","hire_date":"1/3/2018","website":"http://freewebs.com","notes":"maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum","status":3,"type":2,"salary":"$2481.79"}, {"id":536,"employee_id":"074201811-3","first_name":"Noam","last_name":"Rowlinson","email":"nrowlinsonev@gov.uk","phone":"117-590-9070","gender":"Male","department":"Training","address":"5 Katie Pass","hire_date":"4/11/2018","website":"https://gravatar.com","notes":"pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper","status":1,"type":3,"salary":"$293.52"}, {"id":537,"employee_id":"048139754-X","first_name":"Frasier","last_name":"Prall","email":"fprallew@eventbrite.com","phone":"258-309-4486","gender":"Male","department":"Research and Development","address":"032 Coleman Road","hire_date":"2/12/2018","website":"https://prlog.org","notes":"consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero","status":4,"type":3,"salary":"$1068.17"}, {"id":538,"employee_id":"006004879-4","first_name":"Woodman","last_name":"Walas","email":"wwalasex@virginia.edu","phone":"169-283-0001","gender":"Male","department":"Support","address":"1669 Dennis Pass","hire_date":"11/2/2017","website":"https://mapquest.com","notes":"vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient","status":1,"type":2,"salary":"$1803.38"}, {"id":539,"employee_id":"668179309-6","first_name":"Trenton","last_name":"Raatz","email":"traatzey@goo.ne.jp","phone":"338-986-6038","gender":"Male","department":"Legal","address":"46 International Street","hire_date":"10/16/2017","website":"http://bbb.org","notes":"risus dapibus augue vel accumsan tellus nisi eu orci mauris","status":5,"type":1,"salary":"$309.70"}, {"id":540,"employee_id":"169561284-1","first_name":"Herculie","last_name":"Mainstone","email":"hmainstoneez@abc.net.au","phone":"719-667-5959","gender":"Male","department":"Human Resources","address":"76598 Old Shore Hill","hire_date":"1/27/2018","website":"https://squidoo.com","notes":"adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in ante vestibulum ante ipsum primis","status":2,"type":1,"salary":"$719.96"}, {"id":541,"employee_id":"188941104-3","first_name":"Myrtie","last_name":"Dybald","email":"mdybaldf0@stumbleupon.com","phone":"455-883-9262","gender":"Female","department":"Engineering","address":"27 Continental Trail","hire_date":"9/11/2017","website":"http://photobucket.com","notes":"integer ac leo pellentesque ultrices mattis odio donec vitae nisi","status":2,"type":2,"salary":"$1509.79"}, {"id":542,"employee_id":"672328549-2","first_name":"Mozelle","last_name":"Parrett","email":"mparrettf1@alexa.com","phone":"520-187-8950","gender":"Female","department":"Marketing","address":"7 Kennedy Plaza","hire_date":"5/11/2018","website":"https://ibm.com","notes":"ullamcorper purus sit amet nulla quisque arcu libero rutrum ac","status":4,"type":1,"salary":"$1112.79"}, {"id":543,"employee_id":"233524722-0","first_name":"Winny","last_name":"Rizzelli","email":"wrizzellif2@liveinternet.ru","phone":"638-553-1453","gender":"Female","department":"Legal","address":"64226 Rigney Plaza","hire_date":"7/3/2018","website":"https://globo.com","notes":"magna ac consequat metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus","status":4,"type":2,"salary":"$511.39"}, {"id":544,"employee_id":"980292964-6","first_name":"Rubetta","last_name":"Roberts","email":"rrobertsf3@vimeo.com","phone":"320-783-0613","gender":"Female","department":"Product Management","address":"77 Center Hill","hire_date":"7/11/2018","website":"http://google.com.br","notes":"faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur","status":2,"type":3,"salary":"$2439.32"}, {"id":545,"employee_id":"546244510-5","first_name":"Duffie","last_name":"Coley","email":"dcoleyf4@google.co.jp","phone":"802-258-2354","gender":"Male","department":"Marketing","address":"4960 Portage Way","hire_date":"10/15/2017","website":"http://sphinn.com","notes":"mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent","status":5,"type":1,"salary":"$1205.36"}, {"id":546,"employee_id":"056298206-X","first_name":"Marianna","last_name":"Laxston","email":"mlaxstonf5@issuu.com","phone":"784-812-7862","gender":"Female","department":"Accounting","address":"03 Morningstar Crossing","hire_date":"3/27/2018","website":"http://sohu.com","notes":"orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam","status":4,"type":3,"salary":"$2091.54"}, {"id":547,"employee_id":"854997068-9","first_name":"Leonard","last_name":"Ghilks","email":"lghilksf6@google.com.hk","phone":"344-427-1979","gender":"Male","department":"Business Development","address":"8 Mandrake Trail","hire_date":"9/9/2017","website":"https://gnu.org","notes":"dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat","status":1,"type":1,"salary":"$2360.29"}, {"id":548,"employee_id":"374005192-2","first_name":"Delcine","last_name":"Gibard","email":"dgibardf7@feedburner.com","phone":"486-769-5871","gender":"Female","department":"Engineering","address":"07365 Almo Avenue","hire_date":"1/20/2018","website":"http://telegraph.co.uk","notes":"sollicitudin mi sit amet lobortis sapien sapien non mi integer ac","status":3,"type":1,"salary":"$2194.72"}, {"id":549,"employee_id":"981938694-2","first_name":"Jasen","last_name":"Penella","email":"jpenellaf8@unc.edu","phone":"946-137-4880","gender":"Male","department":"Sales","address":"8245 Lyons Way","hire_date":"7/30/2017","website":"https://alibaba.com","notes":"curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat","status":6,"type":2,"salary":"$2175.16"}, {"id":550,"employee_id":"184850704-6","first_name":"Claresta","last_name":"Lanahan","email":"clanahanf9@redcross.org","phone":"421-926-4102","gender":"Female","department":"Product Management","address":"16627 Glendale Crossing","hire_date":"5/29/2018","website":"https://dailymail.co.uk","notes":"ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor","status":4,"type":1,"salary":"$1947.50"}, {"id":551,"employee_id":"147962271-0","first_name":"Wilbur","last_name":"Bourrel","email":"wbourrelfa@cisco.com","phone":"111-829-9008","gender":"Male","department":"Sales","address":"2 Bay Junction","hire_date":"1/23/2018","website":"http://skype.com","notes":"quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus","status":5,"type":1,"salary":"$2126.19"}, {"id":552,"employee_id":"229215988-0","first_name":"Roseann","last_name":"Hapke","email":"rhapkefb@amazon.co.jp","phone":"253-634-1559","gender":"Female","department":"Training","address":"3 Ilene Way","hire_date":"5/18/2018","website":"https://imdb.com","notes":"in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id mauris vulputate elementum nullam","status":2,"type":3,"salary":"$692.93"}, {"id":553,"employee_id":"751330939-6","first_name":"Tabby","last_name":"Potter","email":"tpotterfc@discuz.net","phone":"798-581-9705","gender":"Male","department":"Research and Development","address":"30 Karstens Trail","hire_date":"10/18/2017","website":"http://ihg.com","notes":"consequat lectus in est risus auctor sed tristique in tempus sit amet sem fusce","status":5,"type":3,"salary":"$1811.07"}, {"id":554,"employee_id":"319386525-7","first_name":"Delmar","last_name":"Maffin","email":"dmaffinfd@go.com","phone":"949-706-8947","gender":"Male","department":"Engineering","address":"7237 Lerdahl Hill","hire_date":"11/23/2017","website":"https://intel.com","notes":"sed justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam","status":5,"type":2,"salary":"$1440.38"}, {"id":555,"employee_id":"180320571-7","first_name":"Mord","last_name":"Plaskett","email":"mplaskettfe@dedecms.com","phone":"428-505-2974","gender":"Male","department":"Marketing","address":"5635 Northridge Alley","hire_date":"10/16/2017","website":"https://goo.gl","notes":"condimentum neque sapien placerat ante nulla justo aliquam quis turpis","status":6,"type":3,"salary":"$870.49"}, {"id":556,"employee_id":"844696576-3","first_name":"Bil","last_name":"Maple","email":"bmapleff@ning.com","phone":"884-552-0647","gender":"Male","department":"Support","address":"6 Sunnyside Court","hire_date":"6/7/2018","website":"https://cdbaby.com","notes":"nulla ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula","status":5,"type":1,"salary":"$391.64"}, {"id":557,"employee_id":"073155412-4","first_name":"Padraic","last_name":"Ambrogetti","email":"pambrogettifg@answers.com","phone":"945-772-9655","gender":"Male","department":"Legal","address":"262 Canary Court","hire_date":"5/4/2018","website":"https://w3.org","notes":"odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero","status":6,"type":1,"salary":"$1676.16"}, {"id":558,"employee_id":"445618451-5","first_name":"Genia","last_name":"Bonehill","email":"gbonehillfh@aol.com","phone":"514-971-7446","gender":"Female","department":"Accounting","address":"1 Oneill Park","hire_date":"2/1/2018","website":"http://theglobeandmail.com","notes":"augue a suscipit nulla elit ac nulla sed vel enim sit amet nunc","status":3,"type":1,"salary":"$867.46"}, {"id":559,"employee_id":"748640207-6","first_name":"Sly","last_name":"Flacke","email":"sflackefi@youku.com","phone":"190-966-7454","gender":"Male","department":"Business Development","address":"2 Straubel Center","hire_date":"4/10/2018","website":"http://yahoo.com","notes":"amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus dapibus augue vel accumsan tellus nisi eu","status":4,"type":3,"salary":"$1797.09"}, {"id":560,"employee_id":"520331874-3","first_name":"Bennett","last_name":"Clampton","email":"bclamptonfj@goo.ne.jp","phone":"435-279-5530","gender":"Male","department":"Accounting","address":"56741 Warner Terrace","hire_date":"10/28/2017","website":"http://google.cn","notes":"justo etiam pretium iaculis justo in hac habitasse platea dictumst","status":3,"type":2,"salary":"$861.37"}, {"id":561,"employee_id":"377676559-3","first_name":"Ophelie","last_name":"Cregeen","email":"ocregeenfk@cisco.com","phone":"614-728-9664","gender":"Female","department":"Product Management","address":"0 Utah Trail","hire_date":"7/9/2018","website":"http://statcounter.com","notes":"nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus","status":5,"type":2,"salary":"$2121.34"}, {"id":562,"employee_id":"833683302-1","first_name":"Daffy","last_name":"Trotter","email":"dtrotterfl@w3.org","phone":"881-221-5716","gender":"Female","department":"Sales","address":"9617 Oak Terrace","hire_date":"9/14/2017","website":"https://msn.com","notes":"ultrices mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla","status":1,"type":2,"salary":"$982.48"}, {"id":563,"employee_id":"297416391-2","first_name":"Rollin","last_name":"Schulke","email":"rschulkefm@blogtalkradio.com","phone":"693-773-2895","gender":"Male","department":"Engineering","address":"0717 Merry Trail","hire_date":"12/10/2017","website":"https://pinterest.com","notes":"sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at","status":5,"type":1,"salary":"$897.96"}, {"id":564,"employee_id":"329686914-X","first_name":"Nanice","last_name":"Sempill","email":"nsempillfn@amazon.de","phone":"360-950-5204","gender":"Female","department":"Engineering","address":"310 Straubel Park","hire_date":"6/12/2018","website":"http://ow.ly","notes":"venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet","status":1,"type":1,"salary":"$2266.13"}, {"id":565,"employee_id":"987885496-5","first_name":"Loleta","last_name":"Berard","email":"lberardfo@kickstarter.com","phone":"385-848-2662","gender":"Female","department":"Marketing","address":"49148 Knutson Road","hire_date":"5/30/2018","website":"https://freewebs.com","notes":"habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt","status":2,"type":1,"salary":"$1899.36"}, {"id":566,"employee_id":"026111923-0","first_name":"Simmonds","last_name":"Herculeson","email":"sherculesonfp@digg.com","phone":"177-792-9992","gender":"Male","department":"Research and Development","address":"09 Derek Junction","hire_date":"10/6/2017","website":"http://google.ru","notes":"iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id","status":4,"type":1,"salary":"$2458.36"}, {"id":567,"employee_id":"738580768-2","first_name":"Isidoro","last_name":"Carluccio","email":"icarlucciofq@ifeng.com","phone":"477-980-2970","gender":"Male","department":"Product Management","address":"32 Lien Junction","hire_date":"2/18/2018","website":"http://a8.net","notes":"vehicula consequat morbi a ipsum integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id","status":6,"type":1,"salary":"$1606.68"}, {"id":568,"employee_id":"451895226-X","first_name":"Dickie","last_name":"Morcombe","email":"dmorcombefr@yellowbook.com","phone":"213-676-7361","gender":"Male","department":"Engineering","address":"94 Blaine Drive","hire_date":"2/28/2018","website":"http://quantcast.com","notes":"faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat","status":3,"type":1,"salary":"$1795.94"}, {"id":569,"employee_id":"120806965-9","first_name":"Garwood","last_name":"Adcock","email":"gadcockfs@europa.eu","phone":"794-670-6493","gender":"Male","department":"Accounting","address":"900 Texas Plaza","hire_date":"5/8/2018","website":"https://wikia.com","notes":"aliquet at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a odio","status":5,"type":1,"salary":"$565.32"}, {"id":570,"employee_id":"056294117-7","first_name":"Lemar","last_name":"Halegarth","email":"lhalegarthft@sfgate.com","phone":"942-570-9030","gender":"Male","department":"Support","address":"37138 Forest Dale Drive","hire_date":"9/14/2017","website":"http://bloomberg.com","notes":"ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus","status":3,"type":3,"salary":"$2046.86"}, {"id":571,"employee_id":"892461613-7","first_name":"Irvine","last_name":"Ruselin","email":"iruselinfu@answers.com","phone":"908-342-9993","gender":"Male","department":"Human Resources","address":"9859 Brickson Park Pass","hire_date":"12/27/2017","website":"http://discuz.net","notes":"porttitor lacus at turpis donec posuere metus vitae ipsum aliquam","status":1,"type":1,"salary":"$1719.02"}, {"id":572,"employee_id":"467294167-1","first_name":"Ingram","last_name":"Maiklem","email":"imaiklemfv@xinhuanet.com","phone":"774-570-3815","gender":"Male","department":"Human Resources","address":"956 Jenifer Alley","hire_date":"8/15/2017","website":"https://bandcamp.com","notes":"cursus urna ut tellus nulla ut erat id mauris vulputate elementum nullam","status":1,"type":2,"salary":"$1208.99"}, {"id":573,"employee_id":"078731029-8","first_name":"Pasquale","last_name":"Carnow","email":"pcarnowfw@over-blog.com","phone":"823-672-5601","gender":"Male","department":"Research and Development","address":"99 Merchant Parkway","hire_date":"4/26/2018","website":"https://ustream.tv","notes":"vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec","status":3,"type":1,"salary":"$1848.12"}, {"id":574,"employee_id":"026664954-8","first_name":"Hermy","last_name":"Paiton","email":"hpaitonfx@digg.com","phone":"764-229-1805","gender":"Male","department":"Product Management","address":"698 Thackeray Way","hire_date":"1/11/2018","website":"http://imdb.com","notes":"in hac habitasse platea dictumst etiam faucibus cursus urna ut","status":1,"type":2,"salary":"$1518.69"}, {"id":575,"employee_id":"672706698-1","first_name":"Ruby","last_name":"Barritt","email":"rbarrittfy@reuters.com","phone":"272-671-6978","gender":"Female","department":"Business Development","address":"0 Ilene Pass","hire_date":"7/26/2017","website":"http://samsung.com","notes":"in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante","status":5,"type":2,"salary":"$2404.07"}, {"id":576,"employee_id":"959234324-1","first_name":"Reinwald","last_name":"Connolly","email":"rconnollyfz@unc.edu","phone":"256-757-8941","gender":"Male","department":"Support","address":"176 Cardinal Hill","hire_date":"9/18/2017","website":"http://constantcontact.com","notes":"hac habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum neque sapien","status":6,"type":2,"salary":"$2121.45"}, {"id":577,"employee_id":"032000879-7","first_name":"Ferdie","last_name":"Paydon","email":"fpaydong0@businesswire.com","phone":"760-201-4090","gender":"Male","department":"Marketing","address":"84 Eastwood Road","hire_date":"12/5/2017","website":"https://nba.com","notes":"gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem","status":2,"type":3,"salary":"$2155.61"}, {"id":578,"employee_id":"265514291-8","first_name":"Jozef","last_name":"Lafranconi","email":"jlafranconig1@mediafire.com","phone":"306-419-6170","gender":"Male","department":"Human Resources","address":"904 Holy Cross Alley","hire_date":"1/5/2018","website":"http://google.es","notes":"volutpat convallis morbi odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis","status":1,"type":3,"salary":"$817.24"}, {"id":579,"employee_id":"213313648-7","first_name":"Dennison","last_name":"Corryer","email":"dcorryerg2@biblegateway.com","phone":"267-774-3581","gender":"Male","department":"Product Management","address":"99154 Red Cloud Way","hire_date":"6/4/2018","website":"http://cpanel.net","notes":"nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo","status":6,"type":3,"salary":"$1341.78"}, {"id":580,"employee_id":"473015388-X","first_name":"Englebert","last_name":"Fulleylove","email":"efulleyloveg3@photobucket.com","phone":"398-931-0902","gender":"Male","department":"Marketing","address":"32500 Amoth Plaza","hire_date":"2/23/2018","website":"https://netscape.com","notes":"justo eu massa donec dapibus duis at velit eu est","status":5,"type":3,"salary":"$325.00"}, {"id":581,"employee_id":"143330915-7","first_name":"Allyn","last_name":"Kill","email":"akillg4@timesonline.co.uk","phone":"842-460-7843","gender":"Female","department":"Training","address":"419 Utah Road","hire_date":"4/10/2018","website":"http://google.co.uk","notes":"rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie","status":6,"type":2,"salary":"$1613.53"}, {"id":582,"employee_id":"282580938-1","first_name":"Lynett","last_name":"Bayford","email":"lbayfordg5@vistaprint.com","phone":"132-193-4754","gender":"Female","department":"Sales","address":"2330 Summit Way","hire_date":"5/4/2018","website":"http://marketplace.net","notes":"justo in blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing","status":2,"type":1,"salary":"$326.91"}, {"id":583,"employee_id":"617313819-0","first_name":"Hazlett","last_name":"Baroch","email":"hbarochg6@geocities.jp","phone":"985-965-6967","gender":"Male","department":"Accounting","address":"605 Golden Leaf Plaza","hire_date":"2/18/2018","website":"https://google.ca","notes":"quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida nisi at","status":6,"type":3,"salary":"$1988.10"}, {"id":584,"employee_id":"708172793-X","first_name":"Bertrand","last_name":"Enrigo","email":"benrigog7@blinklist.com","phone":"582-769-9744","gender":"Male","department":"Support","address":"39527 Kim Alley","hire_date":"7/10/2018","website":"https://eepurl.com","notes":"suspendisse potenti in eleifend quam a odio in hac habitasse","status":2,"type":3,"salary":"$1834.97"}, {"id":585,"employee_id":"275070512-6","first_name":"Tess","last_name":"Pagen","email":"tpageng8@mit.edu","phone":"942-433-3855","gender":"Female","department":"Training","address":"06 Loftsgordon Avenue","hire_date":"3/8/2018","website":"https://java.com","notes":"mi pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices","status":6,"type":3,"salary":"$1516.81"}, {"id":586,"employee_id":"689460094-5","first_name":"Jeramie","last_name":"Stanlock","email":"jstanlockg9@epa.gov","phone":"304-355-0889","gender":"Male","department":"Research and Development","address":"92 Marquette Court","hire_date":"9/7/2017","website":"http://bandcamp.com","notes":"elit ac nulla sed vel enim sit amet nunc viverra dapibus","status":3,"type":1,"salary":"$502.42"}, {"id":587,"employee_id":"806406122-9","first_name":"Giovanni","last_name":"Garmons","email":"ggarmonsga@ustream.tv","phone":"230-839-9491","gender":"Male","department":"Business Development","address":"06 Grim Parkway","hire_date":"4/8/2018","website":"http://nifty.com","notes":"enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis","status":1,"type":1,"salary":"$2256.86"}, {"id":588,"employee_id":"739999179-0","first_name":"Hanan","last_name":"Maudsley","email":"hmaudsleygb@so-net.ne.jp","phone":"175-280-1081","gender":"Male","department":"Engineering","address":"79 Muir Avenue","hire_date":"6/12/2018","website":"http://icio.us","notes":"posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut","status":5,"type":1,"salary":"$1049.23"}, {"id":589,"employee_id":"706661556-5","first_name":"Elliott","last_name":"Scoone","email":"escoonegc@ted.com","phone":"609-922-2496","gender":"Male","department":"Human Resources","address":"531 Sunbrook Crossing","hire_date":"5/21/2018","website":"https://businessweek.com","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae duis","status":5,"type":1,"salary":"$1289.79"}, {"id":590,"employee_id":"647600560-X","first_name":"Caressa","last_name":"Haylands","email":"chaylandsgd@deliciousdays.com","phone":"330-761-2112","gender":"Female","department":"Business Development","address":"41 Ludington Point","hire_date":"2/2/2018","website":"http://ovh.net","notes":"orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi","status":3,"type":3,"salary":"$836.63"}, {"id":591,"employee_id":"205991586-4","first_name":"Hollie","last_name":"Salt","email":"hsaltge@imageshack.us","phone":"273-911-3845","gender":"Female","department":"Marketing","address":"1 Pepper Wood Pass","hire_date":"7/11/2018","website":"https://china.com.cn","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi","status":5,"type":3,"salary":"$1099.82"}, {"id":592,"employee_id":"965356355-6","first_name":"Darcy","last_name":"Hanington","email":"dhaningtongf@deliciousdays.com","phone":"574-882-0980","gender":"Male","department":"Business Development","address":"63 Evergreen Terrace","hire_date":"3/9/2018","website":"https://elpais.com","notes":"in libero ut massa volutpat convallis morbi odio odio elementum eu interdum eu tincidunt","status":1,"type":2,"salary":"$735.59"}, {"id":593,"employee_id":"764631584-2","first_name":"Norby","last_name":"Dearsley","email":"ndearsleygg@umich.edu","phone":"502-882-6268","gender":"Male","department":"Training","address":"53903 Weeping Birch Junction","hire_date":"12/15/2017","website":"https://fda.gov","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti","status":4,"type":2,"salary":"$1928.30"}, {"id":594,"employee_id":"714591085-3","first_name":"Justino","last_name":"Kernes","email":"jkernesgh@gravatar.com","phone":"978-345-2401","gender":"Male","department":"Research and Development","address":"728 Emmet Pass","hire_date":"2/1/2018","website":"https://timesonline.co.uk","notes":"adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis","status":1,"type":3,"salary":"$2298.11"}, {"id":595,"employee_id":"742011723-3","first_name":"Orly","last_name":"Eunson","email":"oeunsongi@discovery.com","phone":"264-270-5870","gender":"Female","department":"Sales","address":"61373 Arizona Way","hire_date":"12/21/2017","website":"http://hud.gov","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae donec","status":1,"type":3,"salary":"$1270.96"}, {"id":596,"employee_id":"659860506-7","first_name":"Denny","last_name":"Medhurst","email":"dmedhurstgj@salon.com","phone":"415-409-9800","gender":"Male","department":"Human Resources","address":"57516 Summerview Point","hire_date":"9/24/2017","website":"https://smugmug.com","notes":"donec ut mauris eget massa tempor convallis nulla neque libero convallis eget eleifend","status":3,"type":3,"salary":"$473.45"}, {"id":597,"employee_id":"280034283-8","first_name":"Sheree","last_name":"Milward","email":"smilwardgk@java.com","phone":"924-677-2252","gender":"Female","department":"Services","address":"6 Mifflin Way","hire_date":"1/9/2018","website":"http://deviantart.com","notes":"gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer","status":2,"type":1,"salary":"$598.68"}, {"id":598,"employee_id":"708571091-8","first_name":"Evvy","last_name":"Blyth","email":"eblythgl@theglobeandmail.com","phone":"578-126-0856","gender":"Female","department":"Services","address":"9270 Di Loreto Court","hire_date":"6/7/2018","website":"https://livejournal.com","notes":"nunc purus phasellus in felis donec semper sapien a libero nam dui","status":1,"type":3,"salary":"$348.86"}, {"id":599,"employee_id":"349704535-7","first_name":"Zaria","last_name":"McEntagart","email":"zmcentagartgm@barnesandnoble.com","phone":"395-247-3033","gender":"Female","department":"Services","address":"2 Dahle Parkway","hire_date":"11/9/2017","website":"https://ted.com","notes":"et tempus semper est quam pharetra magna ac consequat metus sapien ut nunc vestibulum ante ipsum primis in","status":5,"type":1,"salary":"$1690.86"}, {"id":600,"employee_id":"696865945-X","first_name":"Rania","last_name":"Joll","email":"rjollgn@flickr.com","phone":"896-350-6175","gender":"Female","department":"Marketing","address":"53 Wayridge Road","hire_date":"7/18/2018","website":"https://toplist.cz","notes":"nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan tortor quis turpis sed","status":5,"type":3,"salary":"$2093.20"}, {"id":601,"employee_id":"991762911-4","first_name":"Viv","last_name":"Benn","email":"vbenngo@ning.com","phone":"312-736-0023","gender":"Female","department":"Marketing","address":"07 Derek Crossing","hire_date":"5/21/2018","website":"http://alibaba.com","notes":"amet eros suspendisse accumsan tortor quis turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec","status":2,"type":1,"salary":"$1872.12"}, {"id":602,"employee_id":"382390348-9","first_name":"Ilaire","last_name":"Wasling","email":"iwaslinggp@scientificamerican.com","phone":"173-493-6304","gender":"Male","department":"Human Resources","address":"12922 Mandrake Crossing","hire_date":"8/27/2017","website":"http://facebook.com","notes":"a libero nam dui proin leo odio porttitor id consequat","status":5,"type":3,"salary":"$1725.89"}, {"id":603,"employee_id":"552719023-8","first_name":"Burke","last_name":"Monkhouse","email":"bmonkhousegq@oakley.com","phone":"905-500-1112","gender":"Male","department":"Product Management","address":"94 Loftsgordon Junction","hire_date":"5/28/2018","website":"http://timesonline.co.uk","notes":"ut erat id mauris vulputate elementum nullam varius nulla facilisi","status":2,"type":3,"salary":"$1893.79"}, {"id":604,"employee_id":"798859457-5","first_name":"Chrissie","last_name":"Kordes","email":"ckordesgr@unc.edu","phone":"892-349-2152","gender":"Female","department":"Human Resources","address":"2262 Kedzie Drive","hire_date":"1/29/2018","website":"https://admin.ch","notes":"magna at nunc commodo placerat praesent blandit nam nulla integer pede justo lacinia","status":2,"type":2,"salary":"$1612.86"}, {"id":605,"employee_id":"790837382-8","first_name":"Lawry","last_name":"Mussen","email":"lmussengs@w3.org","phone":"218-185-0171","gender":"Male","department":"Support","address":"7846 Randy Parkway","hire_date":"8/4/2017","website":"https://boston.com","notes":"id luctus nec molestie sed justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est et","status":3,"type":3,"salary":"$1954.32"}, {"id":606,"employee_id":"699240792-9","first_name":"Poul","last_name":"Goggins","email":"pgogginsgt@linkedin.com","phone":"293-675-2005","gender":"Male","department":"Sales","address":"530 Butternut Alley","hire_date":"12/26/2017","website":"https://facebook.com","notes":"aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in","status":3,"type":1,"salary":"$2373.61"}, {"id":607,"employee_id":"751445107-2","first_name":"Cleon","last_name":"MacDirmid","email":"cmacdirmidgu@squarespace.com","phone":"614-981-7314","gender":"Male","department":"Marketing","address":"2037 Oak Road","hire_date":"12/7/2017","website":"https://apple.com","notes":"mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci","status":6,"type":1,"salary":"$2126.42"}, {"id":608,"employee_id":"377293929-5","first_name":"Aristotle","last_name":"Kenna","email":"akennagv@usda.gov","phone":"937-264-8841","gender":"Male","department":"Human Resources","address":"7054 Nancy Street","hire_date":"6/8/2018","website":"https://bizjournals.com","notes":"euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis","status":2,"type":1,"salary":"$1552.69"}, {"id":609,"employee_id":"572760268-8","first_name":"Loise","last_name":"Jewster","email":"ljewstergw@paypal.com","phone":"750-588-5224","gender":"Female","department":"Sales","address":"65006 La Follette Hill","hire_date":"3/28/2018","website":"https://etsy.com","notes":"vestibulum quam sapien varius ut blandit non interdum in ante vestibulum ante ipsum primis","status":2,"type":2,"salary":"$1714.69"}, {"id":610,"employee_id":"286782603-9","first_name":"Derril","last_name":"Gildersleeve","email":"dgildersleevegx@360.cn","phone":"980-730-4259","gender":"Male","department":"Sales","address":"344 Maple Wood Drive","hire_date":"6/5/2018","website":"https://nps.gov","notes":"justo eu massa donec dapibus duis at velit eu est congue elementum","status":6,"type":3,"salary":"$1941.04"}, {"id":611,"employee_id":"060727167-1","first_name":"Carny","last_name":"Kid","email":"ckidgy@ebay.co.uk","phone":"223-113-6069","gender":"Male","department":"Training","address":"39 Blaine Lane","hire_date":"11/12/2017","website":"https://typepad.com","notes":"tristique est et tempus semper est quam pharetra magna ac consequat metus","status":2,"type":2,"salary":"$1198.62"}, {"id":612,"employee_id":"887378830-0","first_name":"Cymbre","last_name":"Yewdale","email":"cyewdalegz@xinhuanet.com","phone":"420-452-2167","gender":"Female","department":"Training","address":"47 Bunker Hill Plaza","hire_date":"9/14/2017","website":"https://hc360.com","notes":"felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec","status":3,"type":2,"salary":"$938.61"}, {"id":613,"employee_id":"839681912-2","first_name":"Stan","last_name":"Liccardo","email":"sliccardoh0@omniture.com","phone":"587-732-3349","gender":"Male","department":"Research and Development","address":"2 Vahlen Pass","hire_date":"5/18/2018","website":"https://sun.com","notes":"porttitor pede justo eu massa donec dapibus duis at velit eu est congue elementum in hac habitasse platea dictumst","status":3,"type":2,"salary":"$1151.20"}, {"id":614,"employee_id":"049388805-5","first_name":"Dorry","last_name":"Chinn","email":"dchinnh1@mtv.com","phone":"327-579-7951","gender":"Female","department":"Services","address":"695 Gina Hill","hire_date":"2/6/2018","website":"http://163.com","notes":"tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet erat nulla tempus","status":2,"type":2,"salary":"$2293.47"}, {"id":615,"employee_id":"261839282-5","first_name":"Homere","last_name":"Caughtry","email":"hcaughtryh2@marketwatch.com","phone":"251-532-7745","gender":"Male","department":"Business Development","address":"42 Clarendon Trail","hire_date":"1/2/2018","website":"http://princeton.edu","notes":"lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id","status":1,"type":2,"salary":"$778.37"}, {"id":616,"employee_id":"063355832-X","first_name":"Tresa","last_name":"Stert","email":"tsterth3@bigcartel.com","phone":"918-850-0143","gender":"Female","department":"Product Management","address":"50 Jenifer Plaza","hire_date":"1/6/2018","website":"http://jalbum.net","notes":"libero nam dui proin leo odio porttitor id consequat in consequat ut nulla sed accumsan felis","status":6,"type":2,"salary":"$1409.15"}, {"id":617,"employee_id":"227188136-6","first_name":"Megan","last_name":"Roles","email":"mrolesh4@fastcompany.com","phone":"987-824-9818","gender":"Female","department":"Accounting","address":"6317 Anderson Alley","hire_date":"9/27/2017","website":"https://cyberchimps.com","notes":"in ante vestibulum ante ipsum primis in faucibus orci luctus","status":4,"type":2,"salary":"$2235.13"}, {"id":618,"employee_id":"797674915-3","first_name":"Alexa","last_name":"MacElroy","email":"amacelroyh5@naver.com","phone":"702-634-3451","gender":"Female","department":"Training","address":"9 Hanover Center","hire_date":"9/9/2017","website":"http://tinypic.com","notes":"sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in ante vestibulum","status":5,"type":1,"salary":"$330.74"}, {"id":619,"employee_id":"176850987-5","first_name":"Binny","last_name":"Warfield","email":"bwarfieldh6@skyrock.com","phone":"728-172-7160","gender":"Female","department":"Research and Development","address":"2 Tony Hill","hire_date":"1/23/2018","website":"https://ucsd.edu","notes":"tristique est et tempus semper est quam pharetra magna ac consequat","status":6,"type":1,"salary":"$2051.56"}, {"id":620,"employee_id":"347858539-2","first_name":"Sallee","last_name":"Joder","email":"sjoderh7@plala.or.jp","phone":"906-345-0526","gender":"Female","department":"Product Management","address":"7 Pennsylvania Junction","hire_date":"6/15/2018","website":"http://ning.com","notes":"scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin","status":1,"type":2,"salary":"$2256.31"}, {"id":621,"employee_id":"059946664-2","first_name":"Stacee","last_name":"Noar","email":"snoarh8@wired.com","phone":"460-477-6620","gender":"Male","department":"Services","address":"5601 Waywood Circle","hire_date":"11/4/2017","website":"https://google.cn","notes":"id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in","status":5,"type":3,"salary":"$933.67"}, {"id":622,"employee_id":"594411543-2","first_name":"Carroll","last_name":"Challiss","email":"cchallissh9@mozilla.org","phone":"880-420-7393","gender":"Male","department":"Legal","address":"0618 Delladonna Street","hire_date":"4/12/2018","website":"https://vinaora.com","notes":"nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie","status":4,"type":3,"salary":"$2495.94"}, {"id":623,"employee_id":"879915683-0","first_name":"Merrie","last_name":"Mundford","email":"mmundfordha@instagram.com","phone":"229-802-1367","gender":"Female","department":"Business Development","address":"2 Amoth Trail","hire_date":"9/20/2017","website":"http://theatlantic.com","notes":"tempus semper est quam pharetra magna ac consequat metus sapien ut","status":4,"type":3,"salary":"$1461.98"}, {"id":624,"employee_id":"137646308-3","first_name":"Alwyn","last_name":"Von Brook","email":"avonbrookhb@cafepress.com","phone":"871-592-1630","gender":"Male","department":"Engineering","address":"70212 Novick Circle","hire_date":"5/9/2018","website":"http://wikipedia.org","notes":"quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan tortor quis turpis sed ante vivamus tortor","status":4,"type":3,"salary":"$2106.64"}, {"id":625,"employee_id":"787463921-9","first_name":"Brock","last_name":"Snasdell","email":"bsnasdellhc@rediff.com","phone":"935-728-8645","gender":"Male","department":"Sales","address":"3 Larry Terrace","hire_date":"4/18/2018","website":"http://ucoz.ru","notes":"aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed","status":5,"type":3,"salary":"$2363.71"}, {"id":626,"employee_id":"867263586-8","first_name":"Camilla","last_name":"Rainsden","email":"crainsdenhd@diigo.com","phone":"509-638-6802","gender":"Female","department":"Human Resources","address":"75896 Hallows Avenue","hire_date":"3/6/2018","website":"https://statcounter.com","notes":"integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio","status":5,"type":1,"salary":"$2310.38"}, {"id":627,"employee_id":"364771698-7","first_name":"Magnum","last_name":"Leiden","email":"mleidenhe@cam.ac.uk","phone":"599-231-2724","gender":"Male","department":"Training","address":"91705 Merry Alley","hire_date":"1/18/2018","website":"https://tiny.cc","notes":"ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl","status":4,"type":1,"salary":"$2273.73"}, {"id":628,"employee_id":"764688429-4","first_name":"Letisha","last_name":"Norbury","email":"lnorburyhf@posterous.com","phone":"205-259-8870","gender":"Female","department":"Services","address":"3 Pawling Park","hire_date":"1/27/2018","website":"https://networkadvertising.org","notes":"integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas","status":4,"type":3,"salary":"$1816.51"}, {"id":629,"employee_id":"442460799-2","first_name":"Amble","last_name":"Eplate","email":"aeplatehg@de.vu","phone":"701-264-7714","gender":"Male","department":"Engineering","address":"454 Cambridge Alley","hire_date":"8/12/2017","website":"http://sohu.com","notes":"donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac est lacinia nisi venenatis tristique","status":2,"type":1,"salary":"$1681.54"}, {"id":630,"employee_id":"474911199-6","first_name":"Josefa","last_name":"Mourant","email":"jmouranthh@hao123.com","phone":"298-448-8394","gender":"Female","department":"Research and Development","address":"93255 Red Cloud Crossing","hire_date":"7/14/2018","website":"http://indiegogo.com","notes":"ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed sagittis","status":1,"type":3,"salary":"$1833.27"}, {"id":631,"employee_id":"695137935-1","first_name":"Ransom","last_name":"Elliff","email":"relliffhi@lycos.com","phone":"920-413-1926","gender":"Male","department":"Marketing","address":"24358 Bultman Point","hire_date":"4/5/2018","website":"http://addtoany.com","notes":"aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas","status":2,"type":3,"salary":"$1861.24"}, {"id":632,"employee_id":"568146198-X","first_name":"Anne","last_name":"Fratson","email":"afratsonhj@techcrunch.com","phone":"922-130-4570","gender":"Female","department":"Training","address":"9324 Fordem Trail","hire_date":"12/30/2017","website":"http://homestead.com","notes":"feugiat non pretium quis lectus suspendisse potenti in eleifend quam a odio in hac habitasse","status":5,"type":1,"salary":"$1365.92"}, {"id":633,"employee_id":"429529294-X","first_name":"Raina","last_name":"Dorre","email":"rdorrehk@addtoany.com","phone":"953-229-7547","gender":"Female","department":"Accounting","address":"1 Elgar Alley","hire_date":"10/31/2017","website":"https://ox.ac.uk","notes":"duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor","status":1,"type":2,"salary":"$1956.17"}, {"id":634,"employee_id":"107889117-6","first_name":"Wiley","last_name":"Iddy","email":"widdyhl@sourceforge.net","phone":"386-571-8918","gender":"Male","department":"Accounting","address":"0 Coolidge Avenue","hire_date":"3/19/2018","website":"https://reverbnation.com","notes":"tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis","status":1,"type":1,"salary":"$1932.76"}, {"id":635,"employee_id":"924614982-3","first_name":"Kimberly","last_name":"Lethem","email":"klethemhm@google.nl","phone":"297-178-9058","gender":"Female","department":"Sales","address":"07496 Derek Avenue","hire_date":"10/23/2017","website":"http://feedburner.com","notes":"at lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at","status":2,"type":2,"salary":"$538.26"}, {"id":636,"employee_id":"308444064-6","first_name":"Arabele","last_name":"Abden","email":"aabdenhn@china.com.cn","phone":"624-843-4335","gender":"Female","department":"Services","address":"095 Service Center","hire_date":"12/25/2017","website":"http://webnode.com","notes":"est phasellus sit amet erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi nulla","status":5,"type":2,"salary":"$592.81"}, {"id":637,"employee_id":"523748690-8","first_name":"Ophelia","last_name":"Le Count","email":"olecountho@sitemeter.com","phone":"205-789-9629","gender":"Female","department":"Marketing","address":"01 Dryden Pass","hire_date":"3/22/2018","website":"http://flavors.me","notes":"parturient montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient","status":2,"type":3,"salary":"$1696.76"}, {"id":638,"employee_id":"584599054-8","first_name":"Veronique","last_name":"Stobbie","email":"vstobbiehp@bizjournals.com","phone":"136-411-6967","gender":"Female","department":"Business Development","address":"284 Macpherson Drive","hire_date":"12/6/2017","website":"https://tamu.edu","notes":"fermentum justo nec condimentum neque sapien placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque","status":3,"type":2,"salary":"$2113.44"}, {"id":639,"employee_id":"767407623-7","first_name":"Carry","last_name":"Kloska","email":"ckloskahq@cargocollective.com","phone":"141-900-2603","gender":"Female","department":"Business Development","address":"910 Graceland Lane","hire_date":"8/5/2017","website":"https://hud.gov","notes":"morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum","status":2,"type":1,"salary":"$779.14"}, {"id":640,"employee_id":"544682250-1","first_name":"Raff","last_name":"Elven","email":"relvenhr@scribd.com","phone":"502-507-5023","gender":"Male","department":"Training","address":"0069 Raven Circle","hire_date":"8/18/2017","website":"http://creativecommons.org","notes":"molestie sed justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas","status":6,"type":3,"salary":"$2217.71"}, {"id":641,"employee_id":"468714743-7","first_name":"Walsh","last_name":"Kenwell","email":"wkenwellhs@shinystat.com","phone":"238-899-2487","gender":"Male","department":"Human Resources","address":"5 Mesta Alley","hire_date":"5/26/2018","website":"https://nydailynews.com","notes":"ornare consequat lectus in est risus auctor sed tristique in tempus sit amet sem fusce","status":4,"type":1,"salary":"$1185.95"}, {"id":642,"employee_id":"032700633-1","first_name":"Fonzie","last_name":"Peter","email":"fpeterht@google.cn","phone":"499-539-6881","gender":"Male","department":"Engineering","address":"463 Summit Way","hire_date":"10/3/2017","website":"http://soundcloud.com","notes":"in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl","status":2,"type":1,"salary":"$1990.65"}, {"id":643,"employee_id":"726333865-3","first_name":"Keen","last_name":"Getcliffe","email":"kgetcliffehu@youku.com","phone":"287-632-1636","gender":"Male","department":"Accounting","address":"52 Buena Vista Trail","hire_date":"1/1/2018","website":"http://paypal.com","notes":"at velit eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id","status":5,"type":3,"salary":"$846.62"}, {"id":644,"employee_id":"873252076-X","first_name":"Charin","last_name":"Oldfield","email":"coldfieldhv@xrea.com","phone":"653-485-6635","gender":"Female","department":"Training","address":"5 Dapin Street","hire_date":"6/17/2018","website":"http://archive.org","notes":"ligula sit amet eleifend pede libero quis orci nullam molestie","status":2,"type":2,"salary":"$771.23"}, {"id":645,"employee_id":"337248013-9","first_name":"Durward","last_name":"Scarsbrick","email":"dscarsbrickhw@adobe.com","phone":"108-243-8896","gender":"Male","department":"Research and Development","address":"2 Beilfuss Road","hire_date":"11/4/2017","website":"https://creativecommons.org","notes":"iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id","status":6,"type":1,"salary":"$947.17"}, {"id":646,"employee_id":"575139382-1","first_name":"Fredek","last_name":"Leckie","email":"fleckiehx@unblog.fr","phone":"548-937-3036","gender":"Male","department":"Marketing","address":"4 Dunning Plaza","hire_date":"12/24/2017","website":"http://bluehost.com","notes":"lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit","status":4,"type":1,"salary":"$2121.82"}, {"id":647,"employee_id":"217054904-8","first_name":"Jakob","last_name":"Muddle","email":"jmuddlehy@digg.com","phone":"341-109-8160","gender":"Male","department":"Marketing","address":"69879 Clyde Gallagher Park","hire_date":"11/24/2017","website":"http://pbs.org","notes":"posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor lacus at turpis donec","status":4,"type":2,"salary":"$949.75"}, {"id":648,"employee_id":"749343103-5","first_name":"Janek","last_name":"Archbould","email":"jarchbouldhz@ca.gov","phone":"430-705-0254","gender":"Male","department":"Marketing","address":"554 Eastlawn Street","hire_date":"6/2/2018","website":"http://cmu.edu","notes":"luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti","status":3,"type":1,"salary":"$2090.48"}, {"id":649,"employee_id":"443501439-4","first_name":"Dorise","last_name":"Beevis","email":"dbeevisi0@com.com","phone":"608-666-7708","gender":"Female","department":"Support","address":"510 Huxley Trail","hire_date":"10/6/2017","website":"https://creativecommons.org","notes":"id consequat in consequat ut nulla sed accumsan felis ut at dolor quis odio consequat varius integer","status":4,"type":3,"salary":"$2093.86"}, {"id":650,"employee_id":"993540218-5","first_name":"Damiano","last_name":"Rutherforth","email":"drutherforthi1@macromedia.com","phone":"894-812-9541","gender":"Male","department":"Business Development","address":"0 Hayes Hill","hire_date":"1/3/2018","website":"https://usa.gov","notes":"pretium nisl ut volutpat sapien arcu sed augue aliquam erat volutpat","status":5,"type":3,"salary":"$1610.28"}, {"id":651,"employee_id":"186912282-8","first_name":"Kitty","last_name":"Dorney","email":"kdorneyi2@shareasale.com","phone":"979-945-0835","gender":"Female","department":"Training","address":"169 Daystar Lane","hire_date":"7/21/2017","website":"https://chron.com","notes":"sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh","status":6,"type":3,"salary":"$684.03"}, {"id":652,"employee_id":"936661876-6","first_name":"Krishnah","last_name":"Swancock","email":"kswancocki3@cpanel.net","phone":"846-389-6298","gender":"Male","department":"Engineering","address":"49291 Sutteridge Point","hire_date":"2/18/2018","website":"https://nydailynews.com","notes":"at dolor quis odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae","status":4,"type":2,"salary":"$2342.65"}, {"id":653,"employee_id":"378446883-7","first_name":"Crin","last_name":"Hatry","email":"chatryi4@sun.com","phone":"375-283-4304","gender":"Female","department":"Marketing","address":"24657 Golden Leaf Street","hire_date":"10/9/2017","website":"http://sciencedirect.com","notes":"mattis egestas metus aenean fermentum donec ut mauris eget massa tempor convallis nulla neque","status":4,"type":2,"salary":"$1152.71"}, {"id":654,"employee_id":"725816535-5","first_name":"Josephine","last_name":"Bocke","email":"jbockei5@dedecms.com","phone":"709-218-2121","gender":"Female","department":"Engineering","address":"73 Eastwood Pass","hire_date":"5/1/2018","website":"http://discovery.com","notes":"amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere","status":1,"type":1,"salary":"$610.57"}, {"id":655,"employee_id":"655537935-9","first_name":"Munmro","last_name":"McCudden","email":"mmccuddeni6@dedecms.com","phone":"527-809-4175","gender":"Male","department":"Accounting","address":"84 Lakeland Way","hire_date":"1/15/2018","website":"https://sciencedirect.com","notes":"dapibus duis at velit eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id","status":5,"type":3,"salary":"$2472.25"}, {"id":656,"employee_id":"534384518-5","first_name":"Peta","last_name":"Grouvel","email":"pgrouveli7@businessweek.com","phone":"677-920-9635","gender":"Female","department":"Research and Development","address":"2 Sloan Way","hire_date":"12/19/2017","website":"https://mapy.cz","notes":"duis at velit eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium iaculis","status":6,"type":2,"salary":"$1952.65"}, {"id":657,"employee_id":"932900385-0","first_name":"Estell","last_name":"Rex","email":"erexi8@instagram.com","phone":"469-507-4629","gender":"Female","department":"Accounting","address":"7544 Eastlawn Pass","hire_date":"12/6/2017","website":"https://hao123.com","notes":"est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac est","status":6,"type":1,"salary":"$1383.51"}, {"id":658,"employee_id":"470307437-0","first_name":"Mitzi","last_name":"Gyurkovics","email":"mgyurkovicsi9@over-blog.com","phone":"715-681-1395","gender":"Female","department":"Services","address":"4438 Service Hill","hire_date":"2/9/2018","website":"http://aboutads.info","notes":"a suscipit nulla elit ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula","status":6,"type":3,"salary":"$1117.55"}, {"id":659,"employee_id":"353982188-0","first_name":"Livy","last_name":"Cowlam","email":"lcowlamia@is.gd","phone":"164-158-3762","gender":"Female","department":"Legal","address":"0 Washington Road","hire_date":"4/23/2018","website":"https://indiatimes.com","notes":"duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis","status":1,"type":3,"salary":"$1251.71"}, {"id":660,"employee_id":"993200248-8","first_name":"Myrtice","last_name":"Edes","email":"medesib@usnews.com","phone":"855-416-8542","gender":"Female","department":"Sales","address":"6 Lotheville Avenue","hire_date":"10/20/2017","website":"http://wikispaces.com","notes":"magna bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt","status":4,"type":3,"salary":"$1997.01"}, {"id":661,"employee_id":"599617941-5","first_name":"Tommie","last_name":"Deakan","email":"tdeakanic@github.io","phone":"561-829-3186","gender":"Male","department":"Legal","address":"58 Bashford Alley","hire_date":"1/31/2018","website":"https://ebay.co.uk","notes":"ac nibh fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a","status":4,"type":1,"salary":"$2022.04"}, {"id":662,"employee_id":"799194014-4","first_name":"Kellie","last_name":"Marquot","email":"kmarquotid@behance.net","phone":"258-367-6848","gender":"Female","department":"Sales","address":"6 Ohio Point","hire_date":"2/2/2018","website":"https://plala.or.jp","notes":"faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut","status":1,"type":2,"salary":"$336.28"}, {"id":663,"employee_id":"647492770-4","first_name":"Alfredo","last_name":"Huygen","email":"ahuygenie@usnews.com","phone":"552-673-7436","gender":"Male","department":"Engineering","address":"32 Saint Paul Hill","hire_date":"3/19/2018","website":"http://bloglovin.com","notes":"vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque","status":5,"type":3,"salary":"$912.19"}, {"id":664,"employee_id":"636062781-7","first_name":"Dulcinea","last_name":"Molyneaux","email":"dmolyneauxif@dropbox.com","phone":"438-696-8082","gender":"Female","department":"Business Development","address":"443 Drewry Plaza","hire_date":"8/5/2017","website":"https://arizona.edu","notes":"fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti","status":2,"type":2,"salary":"$910.29"}, {"id":665,"employee_id":"389443969-6","first_name":"Giff","last_name":"Kettel","email":"gkettelig@shop-pro.jp","phone":"446-416-7541","gender":"Male","department":"Human Resources","address":"06149 Shelley Park","hire_date":"2/27/2018","website":"http://stumbleupon.com","notes":"dui maecenas tristique est et tempus semper est quam pharetra magna ac consequat metus sapien ut nunc vestibulum ante","status":1,"type":3,"salary":"$917.04"}, {"id":666,"employee_id":"413322681-X","first_name":"Elmore","last_name":"Fitzharris","email":"efitzharrisih@google.cn","phone":"989-524-4294","gender":"Male","department":"Legal","address":"66860 Ridgeway Plaza","hire_date":"6/22/2018","website":"https://instagram.com","notes":"mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue a suscipit","status":5,"type":3,"salary":"$2186.02"}, {"id":667,"employee_id":"815407726-4","first_name":"Angy","last_name":"Durban","email":"adurbanii@wikia.com","phone":"897-122-5541","gender":"Female","department":"Training","address":"457 Glendale Pass","hire_date":"1/19/2018","website":"http://usatoday.com","notes":"massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet et","status":4,"type":3,"salary":"$1943.00"}, {"id":668,"employee_id":"593533936-6","first_name":"Cinda","last_name":"Eisak","email":"ceisakij@gov.uk","phone":"364-878-8239","gender":"Female","department":"Marketing","address":"72410 Tomscot Hill","hire_date":"6/13/2018","website":"https://ask.com","notes":"leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper","status":1,"type":1,"salary":"$477.81"}, {"id":669,"employee_id":"386431667-7","first_name":"Ilsa","last_name":"Lergan","email":"ilerganik@epa.gov","phone":"363-773-1838","gender":"Female","department":"Legal","address":"627 Bluejay Alley","hire_date":"4/5/2018","website":"http://nba.com","notes":"tellus in sagittis dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat","status":3,"type":2,"salary":"$864.59"}, {"id":670,"employee_id":"327529124-6","first_name":"Joana","last_name":"Tilliard","email":"jtilliardil@icio.us","phone":"317-579-8921","gender":"Female","department":"Sales","address":"83056 Killdeer Drive","hire_date":"1/24/2018","website":"https://sina.com.cn","notes":"porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit","status":1,"type":3,"salary":"$826.57"}, {"id":671,"employee_id":"716488501-X","first_name":"Dorri","last_name":"Spaughton","email":"dspaughtonim@diigo.com","phone":"775-248-9772","gender":"Female","department":"Engineering","address":"17 Charing Cross Pass","hire_date":"11/9/2017","website":"http://naver.com","notes":"lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna pretium nisl","status":1,"type":1,"salary":"$2058.08"}, {"id":672,"employee_id":"815967924-6","first_name":"Livvyy","last_name":"Reaveley","email":"lreaveleyin@newyorker.com","phone":"470-922-5582","gender":"Female","department":"Human Resources","address":"507 Granby Court","hire_date":"7/6/2018","website":"https://abc.net.au","notes":"in faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor lacus","status":3,"type":3,"salary":"$2390.00"}, {"id":673,"employee_id":"353903060-3","first_name":"Doris","last_name":"Piscopo","email":"dpiscopoio@reverbnation.com","phone":"709-930-1076","gender":"Female","department":"Training","address":"64 Annamark Center","hire_date":"12/10/2017","website":"http://bluehost.com","notes":"luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis","status":3,"type":1,"salary":"$2146.37"}, {"id":674,"employee_id":"985746807-1","first_name":"Massimo","last_name":"Breche","email":"mbrecheip@rediff.com","phone":"154-869-4732","gender":"Male","department":"Research and Development","address":"34443 Sheridan Junction","hire_date":"12/24/2017","website":"https://posterous.com","notes":"blandit non interdum in ante vestibulum ante ipsum primis in faucibus","status":1,"type":3,"salary":"$747.93"}, {"id":675,"employee_id":"138241196-0","first_name":"Marc","last_name":"Sowden","email":"msowdeniq@ovh.net","phone":"989-224-4253","gender":"Male","department":"Training","address":"6 Maple Wood Park","hire_date":"4/12/2018","website":"https://foxnews.com","notes":"eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio odio","status":3,"type":3,"salary":"$1227.61"}, {"id":676,"employee_id":"448198510-0","first_name":"Miguelita","last_name":"Clinning","email":"mclinningir@google.it","phone":"723-381-2446","gender":"Female","department":"Engineering","address":"48121 Roth Way","hire_date":"11/15/2017","website":"http://washingtonpost.com","notes":"adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in ante","status":6,"type":1,"salary":"$389.30"}, {"id":677,"employee_id":"638949538-2","first_name":"Cletus","last_name":"Gerlack","email":"cgerlackis@networksolutions.com","phone":"269-695-5505","gender":"Male","department":"Product Management","address":"4602 Northland Way","hire_date":"4/27/2018","website":"http://a8.net","notes":"aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac","status":2,"type":3,"salary":"$918.72"}, {"id":678,"employee_id":"252449741-0","first_name":"Zackariah","last_name":"Crowson","email":"zcrowsonit@google.fr","phone":"522-425-6878","gender":"Male","department":"Research and Development","address":"25 La Follette Street","hire_date":"7/26/2017","website":"http://bbc.co.uk","notes":"fusce congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat","status":2,"type":2,"salary":"$716.93"}, {"id":679,"employee_id":"840831888-8","first_name":"Papageno","last_name":"Maslin","email":"pmasliniu@usda.gov","phone":"552-899-5637","gender":"Male","department":"Business Development","address":"499 Ridgeway Alley","hire_date":"7/29/2017","website":"https://geocities.jp","notes":"placerat praesent blandit nam nulla integer pede justo lacinia eget tincidunt eget tempus vel pede","status":1,"type":3,"salary":"$299.08"}, {"id":680,"employee_id":"602937124-X","first_name":"Carmel","last_name":"St. Ledger","email":"cstledgeriv@harvard.edu","phone":"634-788-2799","gender":"Female","department":"Sales","address":"87 Lakeland Place","hire_date":"8/15/2017","website":"http://bluehost.com","notes":"maecenas pulvinar lobortis est phasellus sit amet erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi","status":2,"type":2,"salary":"$2452.58"}, {"id":681,"employee_id":"166132011-2","first_name":"Sara-ann","last_name":"Whitticks","email":"swhitticksiw@google.com.au","phone":"712-132-0455","gender":"Female","department":"Marketing","address":"499 Prentice Road","hire_date":"7/25/2017","website":"https://uol.com.br","notes":"quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac nibh fusce lacus purus","status":6,"type":1,"salary":"$1604.40"}, {"id":682,"employee_id":"820641726-5","first_name":"Marji","last_name":"Scupham","email":"mscuphamix@patch.com","phone":"889-178-4698","gender":"Female","department":"Research and Development","address":"254 Brown Street","hire_date":"3/29/2018","website":"http://fema.gov","notes":"felis fusce posuere felis sed lacus morbi sem mauris laoreet ut","status":4,"type":1,"salary":"$1060.14"}, {"id":683,"employee_id":"513253217-9","first_name":"Lisha","last_name":"Cossor","email":"lcossoriy@typepad.com","phone":"286-473-6032","gender":"Female","department":"Marketing","address":"49694 Stephen Trail","hire_date":"8/7/2017","website":"https://nps.gov","notes":"iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id mauris vulputate","status":3,"type":2,"salary":"$2378.68"}, {"id":684,"employee_id":"249557946-9","first_name":"Rancell","last_name":"Sowten","email":"rsowteniz@github.com","phone":"875-923-2726","gender":"Male","department":"Accounting","address":"66514 Eliot Drive","hire_date":"11/2/2017","website":"http://etsy.com","notes":"ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor","status":4,"type":2,"salary":"$1318.09"}, {"id":685,"employee_id":"049179644-7","first_name":"Nicolea","last_name":"Ehlerding","email":"nehlerdingj0@stanford.edu","phone":"406-593-6125","gender":"Female","department":"Services","address":"70 Hayes Parkway","hire_date":"2/10/2018","website":"https://wordpress.org","notes":"quis turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris eget massa tempor convallis nulla","status":1,"type":3,"salary":"$545.73"}, {"id":686,"employee_id":"063656962-4","first_name":"Madalena","last_name":"Simonian","email":"msimonianj1@psu.edu","phone":"989-634-8212","gender":"Female","department":"Research and Development","address":"9486 Kinsman Court","hire_date":"9/1/2017","website":"https://cnn.com","notes":"sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus dolor vel","status":4,"type":2,"salary":"$394.67"}, {"id":687,"employee_id":"221473129-6","first_name":"Flss","last_name":"Duro","email":"fduroj2@mayoclinic.com","phone":"654-676-9069","gender":"Female","department":"Training","address":"6 Moland Park","hire_date":"6/24/2018","website":"https://squidoo.com","notes":"sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed sagittis nam congue risus semper","status":4,"type":2,"salary":"$300.04"}, {"id":688,"employee_id":"672662135-3","first_name":"Sidonnie","last_name":"Bisp","email":"sbispj3@eventbrite.com","phone":"592-258-0085","gender":"Female","department":"Legal","address":"164 Fieldstone Alley","hire_date":"12/25/2017","website":"https://fema.gov","notes":"vel est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac","status":3,"type":3,"salary":"$2405.89"}, {"id":689,"employee_id":"932752723-2","first_name":"Mack","last_name":"Sirr","email":"msirrj4@jigsy.com","phone":"678-932-0326","gender":"Male","department":"Training","address":"71 Del Sol Lane","hire_date":"1/21/2018","website":"http://about.me","notes":"massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet","status":5,"type":1,"salary":"$522.47"}, {"id":690,"employee_id":"158019071-5","first_name":"Zola","last_name":"Beirne","email":"zbeirnej5@qq.com","phone":"338-170-4611","gender":"Female","department":"Training","address":"4 Doe Crossing Junction","hire_date":"9/29/2017","website":"http://skype.com","notes":"neque sapien placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros","status":3,"type":3,"salary":"$1334.49"}, {"id":691,"employee_id":"893906095-4","first_name":"Roxane","last_name":"Stares","email":"rstaresj6@scientificamerican.com","phone":"371-437-8341","gender":"Female","department":"Marketing","address":"9740 Mcbride Court","hire_date":"5/10/2018","website":"http://odnoklassniki.ru","notes":"fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo","status":2,"type":1,"salary":"$2296.43"}, {"id":692,"employee_id":"601370084-2","first_name":"Nicole","last_name":"MacMickan","email":"nmacmickanj7@google.cn","phone":"193-701-1820","gender":"Female","department":"Product Management","address":"26025 Pawling Terrace","hire_date":"8/26/2017","website":"https://ca.gov","notes":"felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo eu massa donec","status":3,"type":1,"salary":"$1509.18"}, {"id":693,"employee_id":"356952132-X","first_name":"Norry","last_name":"Bruce","email":"nbrucej8@ocn.ne.jp","phone":"343-447-0594","gender":"Male","department":"Training","address":"37 Thierer Pass","hire_date":"6/19/2018","website":"https://fc2.com","notes":"mauris vulputate elementum nullam varius nulla facilisi cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus","status":3,"type":3,"salary":"$2334.36"}, {"id":694,"employee_id":"650802152-4","first_name":"Maxie","last_name":"Macvain","email":"mmacvainj9@edublogs.org","phone":"915-723-4900","gender":"Male","department":"Product Management","address":"8058 Sheridan Drive","hire_date":"6/7/2018","website":"http://theatlantic.com","notes":"curabitur gravida nisi at nibh in hac habitasse platea dictumst","status":6,"type":1,"salary":"$1063.50"}, {"id":695,"employee_id":"330548767-4","first_name":"Octavia","last_name":"Blas","email":"oblasja@aboutads.info","phone":"453-949-8257","gender":"Female","department":"Sales","address":"916 Bunker Hill Lane","hire_date":"3/8/2018","website":"http://wiley.com","notes":"primis in faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus dolor vel est donec","status":4,"type":1,"salary":"$2255.72"}, {"id":696,"employee_id":"504533227-9","first_name":"Fidelia","last_name":"Lowten","email":"flowtenjb@china.com.cn","phone":"985-183-9461","gender":"Female","department":"Marketing","address":"533 Arizona Way","hire_date":"1/2/2018","website":"http://theguardian.com","notes":"eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget semper","status":5,"type":2,"salary":"$2173.91"}, {"id":697,"employee_id":"286438381-0","first_name":"Cordie","last_name":"Dear","email":"cdearjc@prweb.com","phone":"305-150-9917","gender":"Male","department":"Sales","address":"86801 Pine View Way","hire_date":"11/1/2017","website":"http://toplist.cz","notes":"adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a pede posuere","status":3,"type":3,"salary":"$943.97"}, {"id":698,"employee_id":"651996975-3","first_name":"Ambros","last_name":"Hagan","email":"ahaganjd@sciencedaily.com","phone":"137-312-6328","gender":"Male","department":"Business Development","address":"37 Bowman Hill","hire_date":"4/17/2018","website":"http://indiatimes.com","notes":"sollicitudin ut suscipit a feugiat et eros vestibulum ac est lacinia nisi venenatis tristique fusce","status":6,"type":2,"salary":"$1508.52"}, {"id":699,"employee_id":"090524267-X","first_name":"Paige","last_name":"Poulett","email":"ppoulettje@guardian.co.uk","phone":"919-567-9670","gender":"Female","department":"Sales","address":"56 Kingsford Hill","hire_date":"3/22/2018","website":"https://alibaba.com","notes":"vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur","status":2,"type":1,"salary":"$1217.96"}, {"id":700,"employee_id":"645400820-7","first_name":"Merrile","last_name":"Gullifant","email":"mgullifantjf@ft.com","phone":"222-616-8973","gender":"Female","department":"Training","address":"88 Parkside Pass","hire_date":"12/26/2017","website":"http://europa.eu","notes":"in est risus auctor sed tristique in tempus sit amet sem","status":3,"type":1,"salary":"$408.05"}, {"id":701,"employee_id":"894005173-4","first_name":"Cletus","last_name":"Khoter","email":"ckhoterjg@mlb.com","phone":"319-165-9067","gender":"Male","department":"Sales","address":"02019 Mendota Plaza","hire_date":"1/22/2018","website":"http://slate.com","notes":"vel nisl duis ac nibh fusce lacus purus aliquet at feugiat","status":5,"type":3,"salary":"$1554.16"}, {"id":702,"employee_id":"213179655-2","first_name":"Jeannette","last_name":"Ipgrave","email":"jipgravejh@timesonline.co.uk","phone":"725-413-1695","gender":"Female","department":"Legal","address":"1925 Onsgard Road","hire_date":"1/5/2018","website":"http://ihg.com","notes":"vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus","status":1,"type":3,"salary":"$2083.56"}, {"id":703,"employee_id":"810266120-8","first_name":"Dotty","last_name":"Andreini","email":"dandreiniji@cbc.ca","phone":"679-249-9520","gender":"Female","department":"Sales","address":"9563 Cherokee Crossing","hire_date":"1/18/2018","website":"https://seesaa.net","notes":"suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam","status":6,"type":1,"salary":"$1521.92"}, {"id":704,"employee_id":"493468147-7","first_name":"Serene","last_name":"Ricket","email":"sricketjj@tinypic.com","phone":"502-419-3371","gender":"Female","department":"Product Management","address":"025 Iowa Parkway","hire_date":"11/18/2017","website":"http://xinhuanet.com","notes":"eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur","status":6,"type":2,"salary":"$1404.60"}, {"id":705,"employee_id":"570931159-6","first_name":"Rip","last_name":"Aldiss","email":"raldissjk@cnet.com","phone":"507-836-2057","gender":"Male","department":"Engineering","address":"19144 Columbus Pass","hire_date":"10/12/2017","website":"http://ow.ly","notes":"non ligula pellentesque ultrices phasellus id sapien in sapien iaculis","status":6,"type":3,"salary":"$1030.97"}, {"id":706,"employee_id":"855788471-0","first_name":"Forbes","last_name":"Heaslip","email":"fheaslipjl@nymag.com","phone":"669-963-3068","gender":"Male","department":"Human Resources","address":"83 Dawn Terrace","hire_date":"2/22/2018","website":"http://histats.com","notes":"gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio","status":5,"type":1,"salary":"$1071.79"}, {"id":707,"employee_id":"063855246-X","first_name":"Anette","last_name":"Issit","email":"aissitjm@trellian.com","phone":"488-677-2177","gender":"Female","department":"Engineering","address":"86 Westerfield Plaza","hire_date":"4/14/2018","website":"https://usatoday.com","notes":"amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus","status":3,"type":1,"salary":"$655.17"}, {"id":708,"employee_id":"113037184-0","first_name":"Joseito","last_name":"Darrel","email":"jdarreljn@senate.gov","phone":"572-615-9650","gender":"Male","department":"Human Resources","address":"94 Delaware Avenue","hire_date":"11/14/2017","website":"http://sbwire.com","notes":"eget semper rutrum nulla nunc purus phasellus in felis donec semper sapien a","status":6,"type":2,"salary":"$2420.09"}, {"id":709,"employee_id":"067166587-1","first_name":"Clayton","last_name":"Coventry","email":"ccoventryjo@state.tx.us","phone":"996-796-8145","gender":"Male","department":"Business Development","address":"7715 Blaine Trail","hire_date":"7/18/2018","website":"http://washington.edu","notes":"ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices","status":1,"type":1,"salary":"$1149.72"}, {"id":710,"employee_id":"502322291-8","first_name":"Ashleigh","last_name":"Cook","email":"acookjp@wunderground.com","phone":"578-756-0819","gender":"Female","department":"Research and Development","address":"0 Bunting Crossing","hire_date":"2/7/2018","website":"http://google.ca","notes":"quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis","status":4,"type":3,"salary":"$2396.14"}, {"id":711,"employee_id":"964219398-1","first_name":"Gregorius","last_name":"Whaplington","email":"gwhaplingtonjq@who.int","phone":"867-493-5512","gender":"Male","department":"Services","address":"9 Anhalt Avenue","hire_date":"7/22/2017","website":"https://msu.edu","notes":"leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede","status":5,"type":3,"salary":"$780.84"}, {"id":712,"employee_id":"857753635-1","first_name":"Jaymie","last_name":"Saterthwait","email":"jsaterthwaitjr@slashdot.org","phone":"584-535-3130","gender":"Male","department":"Support","address":"993 Anthes Junction","hire_date":"9/19/2017","website":"https://friendfeed.com","notes":"donec ut dolor morbi vel lectus in quam fringilla rhoncus mauris enim leo","status":6,"type":2,"salary":"$1582.30"}, {"id":713,"employee_id":"110435325-3","first_name":"Chas","last_name":"Liepina","email":"cliepinajs@home.pl","phone":"118-369-7905","gender":"Male","department":"Support","address":"43 Dixon Center","hire_date":"12/15/2017","website":"http://sciencedirect.com","notes":"amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus","status":1,"type":1,"salary":"$1048.75"}, {"id":714,"employee_id":"858122083-5","first_name":"Montgomery","last_name":"Fairlaw","email":"mfairlawjt@sciencedirect.com","phone":"922-490-3988","gender":"Male","department":"Research and Development","address":"360 Katie Alley","hire_date":"10/27/2017","website":"http://surveymonkey.com","notes":"mauris enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis","status":5,"type":1,"salary":"$1218.41"}, {"id":715,"employee_id":"953911433-0","first_name":"Abraham","last_name":"Cowie","email":"acowieju@4shared.com","phone":"239-800-8947","gender":"Male","department":"Human Resources","address":"8315 Stoughton Junction","hire_date":"2/18/2018","website":"https://wufoo.com","notes":"libero quis orci nullam molestie nibh in lectus pellentesque at nulla suspendisse potenti cras in purus eu magna vulputate luctus","status":2,"type":2,"salary":"$1431.58"}, {"id":716,"employee_id":"980188704-4","first_name":"Ryann","last_name":"Nutkins","email":"rnutkinsjv@qq.com","phone":"986-164-8594","gender":"Female","department":"Sales","address":"92 Vahlen Lane","hire_date":"9/8/2017","website":"https://skype.com","notes":"nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque","status":2,"type":2,"salary":"$2320.72"}, {"id":717,"employee_id":"496180526-2","first_name":"Catina","last_name":"Baser","email":"cbaserjw@businessweek.com","phone":"532-723-4330","gender":"Female","department":"Services","address":"4199 Hanson Hill","hire_date":"9/21/2017","website":"http://reddit.com","notes":"vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac nulla sed","status":4,"type":1,"salary":"$704.47"}, {"id":718,"employee_id":"569821610-X","first_name":"Adrea","last_name":"Thrussell","email":"athrusselljx@wikipedia.org","phone":"121-272-3387","gender":"Female","department":"Sales","address":"97263 Riverside Junction","hire_date":"12/11/2017","website":"http://jalbum.net","notes":"sagittis dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse","status":1,"type":1,"salary":"$1502.79"}, {"id":719,"employee_id":"635471406-1","first_name":"Harry","last_name":"O\'Corr","email":"hocorrjy@globo.com","phone":"628-461-4876","gender":"Male","department":"Support","address":"5 Crownhardt Drive","hire_date":"12/28/2017","website":"https://wix.com","notes":"diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus","status":3,"type":3,"salary":"$1743.03"}, {"id":720,"employee_id":"357220718-5","first_name":"Nance","last_name":"Corness","email":"ncornessjz@about.com","phone":"506-196-3218","gender":"Female","department":"Sales","address":"41697 Springview Circle","hire_date":"10/17/2017","website":"http://angelfire.com","notes":"pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna ac","status":6,"type":2,"salary":"$766.20"}, {"id":721,"employee_id":"288703491-X","first_name":"Andrus","last_name":"Thomerson","email":"athomersonk0@abc.net.au","phone":"473-877-4517","gender":"Male","department":"Training","address":"8 Cherokee Court","hire_date":"10/24/2017","website":"http://fema.gov","notes":"ligula nec sem duis aliquam convallis nunc proin at turpis a pede","status":3,"type":1,"salary":"$1700.61"}, {"id":722,"employee_id":"139646871-4","first_name":"Roxanne","last_name":"Hecks","email":"rhecksk1@google.es","phone":"679-836-5987","gender":"Female","department":"Sales","address":"79 Main Center","hire_date":"10/31/2017","website":"http://naver.com","notes":"diam cras pellentesque volutpat dui maecenas tristique est et tempus","status":5,"type":2,"salary":"$2165.50"}, {"id":723,"employee_id":"106514862-3","first_name":"Tremayne","last_name":"Proffitt","email":"tproffittk2@dailymotion.com","phone":"212-607-7025","gender":"Male","department":"Engineering","address":"4 Sunnyside Road","hire_date":"1/23/2018","website":"http://pbs.org","notes":"amet lobortis sapien sapien non mi integer ac neque duis bibendum morbi non quam nec","status":3,"type":3,"salary":"$618.28"}, {"id":724,"employee_id":"979600546-8","first_name":"Lannie","last_name":"Ettels","email":"lettelsk3@sina.com.cn","phone":"110-670-1034","gender":"Male","department":"Business Development","address":"50733 Farmco Avenue","hire_date":"7/27/2017","website":"https://washingtonpost.com","notes":"rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum","status":1,"type":1,"salary":"$2157.28"}, {"id":725,"employee_id":"455215314-5","first_name":"Simon","last_name":"Kimblen","email":"skimblenk4@nature.com","phone":"632-400-5992","gender":"Male","department":"Support","address":"5100 Atwood Street","hire_date":"10/12/2017","website":"https://cisco.com","notes":"ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere","status":6,"type":3,"salary":"$841.35"}, {"id":726,"employee_id":"244157015-3","first_name":"Bing","last_name":"Lytell","email":"blytellk5@zdnet.com","phone":"104-793-5468","gender":"Male","department":"Legal","address":"194 Continental Way","hire_date":"4/4/2018","website":"https://weibo.com","notes":"justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus","status":6,"type":3,"salary":"$797.43"}, {"id":727,"employee_id":"918765161-0","first_name":"Shell","last_name":"Salvadori","email":"ssalvadorik6@addthis.com","phone":"608-475-2435","gender":"Female","department":"Services","address":"009 Walton Parkway","hire_date":"11/8/2017","website":"https://oracle.com","notes":"tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede","status":2,"type":1,"salary":"$369.19"}, {"id":728,"employee_id":"297398731-8","first_name":"Carey","last_name":"Vockings","email":"cvockingsk7@163.com","phone":"714-839-9140","gender":"Male","department":"Human Resources","address":"389 Calypso Park","hire_date":"3/4/2018","website":"http://admin.ch","notes":"natoque penatibus et magnis dis parturient montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum","status":4,"type":1,"salary":"$433.80"}, {"id":729,"employee_id":"547893183-7","first_name":"Pernell","last_name":"Frontczak","email":"pfrontczakk8@gizmodo.com","phone":"263-776-3928","gender":"Male","department":"Services","address":"9682 Barnett Place","hire_date":"11/6/2017","website":"http://shinystat.com","notes":"nulla neque libero convallis eget eleifend luctus ultricies eu nibh quisque id justo sit amet","status":5,"type":2,"salary":"$1877.01"}, {"id":730,"employee_id":"871014844-2","first_name":"Mahmoud","last_name":"Smelley","email":"msmelleyk9@hibu.com","phone":"971-916-0272","gender":"Male","department":"Human Resources","address":"263 John Wall Avenue","hire_date":"10/24/2017","website":"https://yandex.ru","notes":"nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula","status":2,"type":1,"salary":"$1653.35"}, {"id":731,"employee_id":"601496906-3","first_name":"Joshia","last_name":"Camerana","email":"jcameranaka@soup.io","phone":"512-287-9399","gender":"Male","department":"Support","address":"53310 Corben Center","hire_date":"4/22/2018","website":"http://wired.com","notes":"rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet","status":1,"type":2,"salary":"$1489.98"}, {"id":732,"employee_id":"051552235-X","first_name":"Gus","last_name":"Killingback","email":"gkillingbackkb@webnode.com","phone":"394-825-4059","gender":"Female","department":"Business Development","address":"6275 Vidon Avenue","hire_date":"3/19/2018","website":"https://fotki.com","notes":"turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris eget massa tempor","status":4,"type":2,"salary":"$310.68"}, {"id":733,"employee_id":"464520984-1","first_name":"Beckie","last_name":"Lorentz","email":"blorentzkc@lycos.com","phone":"345-121-8865","gender":"Female","department":"Sales","address":"36832 Delaware Pass","hire_date":"2/20/2018","website":"https://dion.ne.jp","notes":"dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac nibh","status":3,"type":1,"salary":"$1055.28"}, {"id":734,"employee_id":"227389953-X","first_name":"Hal","last_name":"Bearman","email":"hbearmankd@purevolume.com","phone":"557-110-4474","gender":"Male","department":"Research and Development","address":"81 Rutledge Drive","hire_date":"9/25/2017","website":"http://time.com","notes":"maecenas pulvinar lobortis est phasellus sit amet erat nulla tempus vivamus in felis","status":2,"type":1,"salary":"$2126.72"}, {"id":735,"employee_id":"953650773-0","first_name":"Lianna","last_name":"Utton","email":"luttonke@i2i.jp","phone":"176-288-4750","gender":"Female","department":"Services","address":"147 Harbort Pass","hire_date":"6/13/2018","website":"https://reference.com","notes":"lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a","status":3,"type":3,"salary":"$1122.12"}, {"id":736,"employee_id":"086191597-6","first_name":"Field","last_name":"Speight","email":"fspeightkf@bandcamp.com","phone":"555-358-8933","gender":"Male","department":"Sales","address":"88302 Express Circle","hire_date":"4/1/2018","website":"https://homestead.com","notes":"sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien","status":5,"type":3,"salary":"$393.67"}, {"id":737,"employee_id":"169320493-2","first_name":"Frayda","last_name":"McNeachtain","email":"fmcneachtainkg@sbwire.com","phone":"118-638-1568","gender":"Female","department":"Engineering","address":"36649 Mandrake Avenue","hire_date":"2/17/2018","website":"http://blog.com","notes":"tempus sit amet sem fusce consequat nulla nisl nunc nisl","status":4,"type":1,"salary":"$619.57"}, {"id":738,"employee_id":"612245514-8","first_name":"Daisey","last_name":"Neath","email":"dneathkh@foxnews.com","phone":"698-436-9176","gender":"Female","department":"Training","address":"9715 Knutson Place","hire_date":"5/26/2018","website":"http://tamu.edu","notes":"ultrices posuere cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin","status":2,"type":2,"salary":"$1674.16"}, {"id":739,"employee_id":"233363217-8","first_name":"Philip","last_name":"Wedmore.","email":"pwedmoreki@alexa.com","phone":"820-745-6102","gender":"Male","department":"Human Resources","address":"6969 Hudson Drive","hire_date":"2/6/2018","website":"https://php.net","notes":"felis eu sapien cursus vestibulum proin eu mi nulla ac enim in","status":1,"type":1,"salary":"$2421.30"}, {"id":740,"employee_id":"388586195-X","first_name":"Kessiah","last_name":"Farrens","email":"kfarrenskj@cloudflare.com","phone":"195-961-2704","gender":"Female","department":"Engineering","address":"7001 Bashford Plaza","hire_date":"7/30/2017","website":"https://google.de","notes":"pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus","status":3,"type":3,"salary":"$1148.86"}, {"id":741,"employee_id":"577264956-6","first_name":"Devan","last_name":"Mancer","email":"dmancerkk@nasa.gov","phone":"527-727-0360","gender":"Female","department":"Services","address":"715 Alpine Point","hire_date":"10/10/2017","website":"http://prlog.org","notes":"facilisi cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus","status":4,"type":1,"salary":"$483.23"}, {"id":742,"employee_id":"906086622-3","first_name":"Jessa","last_name":"Chadwyck","email":"jchadwyckkl@skype.com","phone":"380-842-5113","gender":"Female","department":"Support","address":"6 Kingsford Pass","hire_date":"5/8/2018","website":"https://lycos.com","notes":"pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed","status":1,"type":3,"salary":"$559.83"}, {"id":743,"employee_id":"291832829-4","first_name":"Etta","last_name":"Cubbin","email":"ecubbinkm@360.cn","phone":"524-585-7456","gender":"Female","department":"Marketing","address":"6 Steensland Park","hire_date":"3/22/2018","website":"http://phoca.cz","notes":"duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo eu","status":1,"type":3,"salary":"$1759.01"}, {"id":744,"employee_id":"884673346-0","first_name":"Goldarina","last_name":"Hallick","email":"ghallickkn@cornell.edu","phone":"735-265-4985","gender":"Female","department":"Business Development","address":"77046 Anthes Park","hire_date":"8/15/2017","website":"http://youku.com","notes":"proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum","status":3,"type":2,"salary":"$1702.89"}, {"id":745,"employee_id":"929468064-9","first_name":"Dru","last_name":"Fearon","email":"dfearonko@toplist.cz","phone":"792-396-1723","gender":"Female","department":"Product Management","address":"752 Florence Center","hire_date":"8/1/2017","website":"https://homestead.com","notes":"porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus sit amet sem fusce","status":3,"type":2,"salary":"$1664.47"}, {"id":746,"employee_id":"451339697-0","first_name":"Ashla","last_name":"Marder","email":"amarderkp@free.fr","phone":"125-745-4335","gender":"Female","department":"Marketing","address":"77260 Annamark Way","hire_date":"1/28/2018","website":"http://cyberchimps.com","notes":"ornare consequat lectus in est risus auctor sed tristique in tempus sit","status":2,"type":1,"salary":"$1727.85"}, {"id":747,"employee_id":"302964454-5","first_name":"Suzanne","last_name":"Maltman","email":"smaltmankq@businessweek.com","phone":"161-281-1125","gender":"Female","department":"Marketing","address":"2 Thackeray Point","hire_date":"12/3/2017","website":"https://indiatimes.com","notes":"eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id","status":1,"type":2,"salary":"$2094.54"}, {"id":748,"employee_id":"575721334-5","first_name":"Bevan","last_name":"Hatt","email":"bhattkr@youku.com","phone":"183-692-4271","gender":"Male","department":"Sales","address":"47 Lake View Terrace","hire_date":"6/28/2018","website":"https://arizona.edu","notes":"donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit","status":2,"type":3,"salary":"$2187.91"}, {"id":749,"employee_id":"476712324-0","first_name":"Penni","last_name":"Swiffin","email":"pswiffinks@ustream.tv","phone":"508-193-8676","gender":"Female","department":"Sales","address":"33 Coleman Crossing","hire_date":"10/5/2017","website":"http://issuu.com","notes":"placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet","status":5,"type":2,"salary":"$1052.26"}, {"id":750,"employee_id":"330191798-4","first_name":"Janis","last_name":"Clery","email":"jclerykt@addtoany.com","phone":"507-351-2373","gender":"Female","department":"Legal","address":"73 Lakewood Junction","hire_date":"8/20/2017","website":"https://auda.org.au","notes":"consequat dui nec nisi volutpat eleifend donec ut dolor morbi","status":4,"type":3,"salary":"$1817.49"}, {"id":751,"employee_id":"851528476-6","first_name":"Lyndy","last_name":"Balasin","email":"lbalasinku@sohu.com","phone":"732-480-2676","gender":"Female","department":"Product Management","address":"2 Straubel Pass","hire_date":"8/16/2017","website":"https://hp.com","notes":"nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros","status":4,"type":1,"salary":"$1810.39"}, {"id":752,"employee_id":"775182812-9","first_name":"Ingemar","last_name":"Feuell","email":"ifeuellkv@sina.com.cn","phone":"464-180-8449","gender":"Male","department":"Legal","address":"046 Magdeline Road","hire_date":"1/27/2018","website":"https://sphinn.com","notes":"quis lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus","status":4,"type":2,"salary":"$566.88"}, {"id":753,"employee_id":"522465201-4","first_name":"Roderic","last_name":"Danielsky","email":"rdanielskykw@goo.ne.jp","phone":"648-156-2583","gender":"Male","department":"Training","address":"5 Kim Junction","hire_date":"12/9/2017","website":"https://dailymotion.com","notes":"lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna pretium","status":2,"type":2,"salary":"$1915.96"}, {"id":754,"employee_id":"506203118-4","first_name":"Mohandis","last_name":"Neubigging","email":"mneubiggingkx@zimbio.com","phone":"813-421-1638","gender":"Male","department":"Legal","address":"301 Elka Terrace","hire_date":"4/3/2018","website":"https://1688.com","notes":"venenatis turpis enim blandit mi in porttitor pede justo eu massa donec dapibus duis at","status":6,"type":2,"salary":"$1446.16"}, {"id":755,"employee_id":"837202041-8","first_name":"Egor","last_name":"Baus","email":"ebausky@myspace.com","phone":"973-860-4459","gender":"Male","department":"Legal","address":"1 Meadow Ridge Circle","hire_date":"7/10/2018","website":"http://reverbnation.com","notes":"justo in blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris","status":6,"type":3,"salary":"$1402.85"}, {"id":756,"employee_id":"851990157-3","first_name":"Elias","last_name":"Buckthorp","email":"ebuckthorpkz@sourceforge.net","phone":"383-782-5504","gender":"Male","department":"Accounting","address":"17 Maple Circle","hire_date":"6/10/2018","website":"http://cbc.ca","notes":"in felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor","status":6,"type":2,"salary":"$1628.69"}, {"id":757,"employee_id":"136037018-8","first_name":"Annemarie","last_name":"Klarzynski","email":"aklarzynskil0@un.org","phone":"606-347-7535","gender":"Female","department":"Research and Development","address":"47457 Oxford Terrace","hire_date":"4/18/2018","website":"http://toplist.cz","notes":"turpis donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in","status":2,"type":2,"salary":"$1318.80"}, {"id":758,"employee_id":"819408506-3","first_name":"Elladine","last_name":"Luckie","email":"eluckiel1@oaic.gov.au","phone":"958-846-3367","gender":"Female","department":"Engineering","address":"45089 Hallows Plaza","hire_date":"12/18/2017","website":"https://msn.com","notes":"suscipit nulla elit ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula","status":4,"type":3,"salary":"$372.14"}, {"id":759,"employee_id":"998636425-6","first_name":"Denise","last_name":"Grundon","email":"dgrundonl2@berkeley.edu","phone":"526-336-1234","gender":"Female","department":"Sales","address":"8988 Welch Crossing","hire_date":"7/17/2018","website":"https://weibo.com","notes":"congue risus semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero quis orci nullam molestie nibh in","status":2,"type":1,"salary":"$489.95"}, {"id":760,"employee_id":"184019292-5","first_name":"Ludovika","last_name":"Yewen","email":"lyewenl3@google.com","phone":"131-144-1624","gender":"Female","department":"Engineering","address":"88 Cardinal Hill","hire_date":"9/26/2017","website":"https://weibo.com","notes":"fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo","status":4,"type":1,"salary":"$1651.19"}, {"id":761,"employee_id":"998923606-2","first_name":"Giffy","last_name":"Florentine","email":"gflorentinel4@marketwatch.com","phone":"631-489-6012","gender":"Male","department":"Marketing","address":"431 Hagan Place","hire_date":"10/27/2017","website":"http://disqus.com","notes":"sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit","status":5,"type":3,"salary":"$1174.22"}, {"id":762,"employee_id":"141148008-2","first_name":"Levy","last_name":"Edmott","email":"ledmottl5@topsy.com","phone":"278-821-2455","gender":"Male","department":"Research and Development","address":"98566 Barnett Trail","hire_date":"4/15/2018","website":"https://wordpress.com","notes":"eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio","status":6,"type":1,"salary":"$1988.62"}, {"id":763,"employee_id":"049603703-X","first_name":"Tarrah","last_name":"Borlease","email":"tborleasel6@merriam-webster.com","phone":"933-263-6101","gender":"Female","department":"Product Management","address":"5853 Eastwood Plaza","hire_date":"10/28/2017","website":"https://ft.com","notes":"morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor","status":3,"type":1,"salary":"$1958.92"}, {"id":764,"employee_id":"708787705-4","first_name":"Chrystel","last_name":"Bendik","email":"cbendikl7@hhs.gov","phone":"587-253-8983","gender":"Female","department":"Services","address":"1 Oxford Terrace","hire_date":"5/3/2018","website":"http://fda.gov","notes":"consequat lectus in est risus auctor sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis","status":1,"type":2,"salary":"$1453.37"}, {"id":765,"employee_id":"138485319-7","first_name":"Hershel","last_name":"Grelak","email":"hgrelakl8@cnbc.com","phone":"203-361-3308","gender":"Male","department":"Legal","address":"54057 Scoville Lane","hire_date":"11/10/2017","website":"https://pagesperso-orange.fr","notes":"eget nunc donec quis orci eget orci vehicula condimentum curabitur in libero ut","status":6,"type":2,"salary":"$721.76"}, {"id":766,"employee_id":"556654694-3","first_name":"Joni","last_name":"Saunt","email":"jsauntl9@auda.org.au","phone":"964-566-0479","gender":"Female","department":"Legal","address":"8993 Meadow Vale Place","hire_date":"9/25/2017","website":"http://bandcamp.com","notes":"posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam","status":5,"type":2,"salary":"$1489.95"}, {"id":767,"employee_id":"352383808-8","first_name":"Vanda","last_name":"Jindrak","email":"vjindrakla@army.mil","phone":"592-225-3910","gender":"Female","department":"Accounting","address":"55577 Texas Circle","hire_date":"4/15/2018","website":"https://qq.com","notes":"vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna","status":5,"type":2,"salary":"$1262.62"}, {"id":768,"employee_id":"024565800-9","first_name":"Zaccaria","last_name":"Kornel","email":"zkornellb@ihg.com","phone":"650-254-6349","gender":"Male","department":"Business Development","address":"11874 Atwood Park","hire_date":"5/11/2018","website":"https://tripadvisor.com","notes":"felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus","status":2,"type":3,"salary":"$715.65"}, {"id":769,"employee_id":"751780558-4","first_name":"Carlene","last_name":"Chatenet","email":"cchatenetlc@paginegialle.it","phone":"646-191-7557","gender":"Female","department":"Product Management","address":"914 Pierstorff Way","hire_date":"5/9/2018","website":"https://amazonaws.com","notes":"felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec","status":2,"type":3,"salary":"$425.29"}, {"id":770,"employee_id":"680798737-4","first_name":"Hyacinthe","last_name":"Gulvin","email":"hgulvinld@time.com","phone":"766-455-2185","gender":"Female","department":"Research and Development","address":"52032 Crescent Oaks Trail","hire_date":"4/5/2018","website":"http://about.com","notes":"consequat metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices","status":2,"type":1,"salary":"$433.74"}, {"id":771,"employee_id":"020830472-X","first_name":"Jacklin","last_name":"Kezor","email":"jkezorle@123-reg.co.uk","phone":"533-153-5896","gender":"Female","department":"Human Resources","address":"95187 Comanche Road","hire_date":"10/30/2017","website":"https://goo.ne.jp","notes":"turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris","status":4,"type":3,"salary":"$541.46"}, {"id":772,"employee_id":"384837986-4","first_name":"Farley","last_name":"Keggin","email":"fkegginlf@uiuc.edu","phone":"256-957-5424","gender":"Male","department":"Accounting","address":"0 Rockefeller Drive","hire_date":"9/17/2017","website":"https://umn.edu","notes":"vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac","status":5,"type":2,"salary":"$2489.99"}, {"id":773,"employee_id":"217698341-6","first_name":"Karry","last_name":"Mussalli","email":"kmussallilg@shinystat.com","phone":"604-426-4935","gender":"Female","department":"Research and Development","address":"5 Steensland Alley","hire_date":"12/30/2017","website":"https://princeton.edu","notes":"sit amet erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi nulla ac","status":4,"type":2,"salary":"$1972.87"}, {"id":774,"employee_id":"337028137-6","first_name":"Kiersten","last_name":"Trimble","email":"ktrimblelh@angelfire.com","phone":"482-420-7278","gender":"Female","department":"Marketing","address":"3 Parkside Street","hire_date":"10/28/2017","website":"https://amazonaws.com","notes":"morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum neque sapien placerat ante nulla","status":2,"type":1,"salary":"$1741.59"}, {"id":775,"employee_id":"971844527-7","first_name":"Marget","last_name":"Sizland","email":"msizlandli@vistaprint.com","phone":"492-485-1277","gender":"Female","department":"Marketing","address":"51041 Toban Avenue","hire_date":"1/17/2018","website":"http://google.com.hk","notes":"cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna ac consequat metus sapien ut nunc","status":5,"type":3,"salary":"$2434.08"}, {"id":776,"employee_id":"610098778-3","first_name":"Nanine","last_name":"Doohey","email":"ndooheylj@devhub.com","phone":"772-873-6018","gender":"Female","department":"Engineering","address":"0294 Ludington Circle","hire_date":"1/24/2018","website":"https://tinyurl.com","notes":"morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum neque sapien placerat ante","status":5,"type":2,"salary":"$1397.82"}, {"id":777,"employee_id":"226237088-5","first_name":"Victor","last_name":"Street","email":"vstreetlk@sitemeter.com","phone":"795-451-0197","gender":"Male","department":"Business Development","address":"07520 Hagan Lane","hire_date":"11/14/2017","website":"http://europa.eu","notes":"nulla elit ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum","status":1,"type":3,"salary":"$462.01"}, {"id":778,"employee_id":"271193556-6","first_name":"Koren","last_name":"Allicock","email":"kallicockll@taobao.com","phone":"437-920-3466","gender":"Female","department":"Services","address":"6 6th Point","hire_date":"8/20/2017","website":"http://icio.us","notes":"semper est quam pharetra magna ac consequat metus sapien ut nunc vestibulum","status":2,"type":3,"salary":"$1589.23"}, {"id":779,"employee_id":"263513301-8","first_name":"Zoe","last_name":"Woodall","email":"zwoodalllm@surveymonkey.com","phone":"518-192-1416","gender":"Female","department":"Accounting","address":"37384 Steensland Court","hire_date":"2/8/2018","website":"http://washingtonpost.com","notes":"justo morbi ut odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices enim","status":1,"type":1,"salary":"$740.26"}, {"id":780,"employee_id":"733220236-0","first_name":"Gregorio","last_name":"O\'Hannen","email":"gohannenln@smugmug.com","phone":"292-651-6749","gender":"Male","department":"Business Development","address":"1 Dapin Hill","hire_date":"1/27/2018","website":"http://reddit.com","notes":"ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla quisque arcu libero","status":6,"type":3,"salary":"$688.37"}, {"id":781,"employee_id":"436266716-4","first_name":"Cchaddie","last_name":"Awmack","email":"cawmacklo@bigcartel.com","phone":"725-885-3599","gender":"Male","department":"Engineering","address":"18 Coolidge Terrace","hire_date":"10/27/2017","website":"https://va.gov","notes":"tempus sit amet sem fusce consequat nulla nisl nunc nisl","status":6,"type":1,"salary":"$727.41"}, {"id":782,"employee_id":"311545185-7","first_name":"Sandro","last_name":"Dixsee","email":"sdixseelp@privacy.gov.au","phone":"536-788-8629","gender":"Male","department":"Research and Development","address":"96 Meadow Ridge Junction","hire_date":"5/3/2018","website":"http://nationalgeographic.com","notes":"amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor","status":4,"type":1,"salary":"$1884.62"}, {"id":783,"employee_id":"417867865-5","first_name":"Reilly","last_name":"Hourahan","email":"rhourahanlq@goodreads.com","phone":"487-266-9652","gender":"Male","department":"Sales","address":"71 Talmadge Terrace","hire_date":"3/28/2018","website":"http://gravatar.com","notes":"integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices","status":2,"type":2,"salary":"$887.30"}, {"id":784,"employee_id":"959654095-5","first_name":"Perla","last_name":"Bielby","email":"pbielbylr@cbc.ca","phone":"942-335-0976","gender":"Female","department":"Marketing","address":"225 7th Way","hire_date":"1/3/2018","website":"https://odnoklassniki.ru","notes":"congue risus semper porta volutpat quam pede lobortis ligula sit amet","status":4,"type":2,"salary":"$2415.35"}, {"id":785,"employee_id":"463941874-4","first_name":"Jecho","last_name":"Ganniclifft","email":"jganniclifftls@de.vu","phone":"587-690-5131","gender":"Male","department":"Services","address":"1 Glendale Lane","hire_date":"1/1/2018","website":"https://walmart.com","notes":"lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed","status":1,"type":1,"salary":"$1052.20"}, {"id":786,"employee_id":"668177772-4","first_name":"Corie","last_name":"Stenett","email":"cstenettlt@mail.ru","phone":"410-118-0485","gender":"Female","department":"Support","address":"8770 Monument Park","hire_date":"1/2/2018","website":"http://ycombinator.com","notes":"diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed augue aliquam erat","status":2,"type":1,"salary":"$302.53"}, {"id":787,"employee_id":"750892159-3","first_name":"Marya","last_name":"Renachowski","email":"mrenachowskilu@archive.org","phone":"234-917-9091","gender":"Female","department":"Services","address":"73 Bay Circle","hire_date":"10/8/2017","website":"http://usa.gov","notes":"nec sem duis aliquam convallis nunc proin at turpis a pede posuere","status":2,"type":2,"salary":"$1001.15"}, {"id":788,"employee_id":"546260319-3","first_name":"Chandler","last_name":"Pardue","email":"cparduelv@godaddy.com","phone":"253-709-1935","gender":"Male","department":"Accounting","address":"5 North Place","hire_date":"2/24/2018","website":"http://umn.edu","notes":"pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut ultrices vel","status":6,"type":3,"salary":"$1052.23"}, {"id":789,"employee_id":"791728813-7","first_name":"Almeda","last_name":"Illsley","email":"aillsleylw@posterous.com","phone":"202-999-4761","gender":"Female","department":"Marketing","address":"6626 Truax Trail","hire_date":"1/23/2018","website":"http://com.com","notes":"lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea","status":4,"type":2,"salary":"$2053.46"}, {"id":790,"employee_id":"640790420-X","first_name":"Kerri","last_name":"Costard","email":"kcostardlx@utexas.edu","phone":"466-313-3400","gender":"Female","department":"Product Management","address":"66 Loeprich Terrace","hire_date":"10/12/2017","website":"http://flickr.com","notes":"dui maecenas tristique est et tempus semper est quam pharetra","status":6,"type":3,"salary":"$397.40"}, {"id":791,"employee_id":"213817571-5","first_name":"Opal","last_name":"Attack","email":"oattackly@discuz.net","phone":"364-997-1710","gender":"Female","department":"Legal","address":"40 Melby Drive","hire_date":"7/27/2017","website":"https://mozilla.com","notes":"in ante vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan","status":4,"type":2,"salary":"$1947.19"}, {"id":792,"employee_id":"855588374-1","first_name":"Kerrie","last_name":"Spens","email":"kspenslz@whitehouse.gov","phone":"206-606-4566","gender":"Female","department":"Legal","address":"61689 Nelson Alley","hire_date":"2/4/2018","website":"https://usnews.com","notes":"odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet erat nulla","status":4,"type":3,"salary":"$309.33"}, {"id":793,"employee_id":"408276383-X","first_name":"Alexi","last_name":"Lownes","email":"alownesm0@census.gov","phone":"249-263-4112","gender":"Female","department":"Legal","address":"6 Randy Lane","hire_date":"9/3/2017","website":"https://naver.com","notes":"congue risus semper porta volutpat quam pede lobortis ligula sit amet eleifend","status":6,"type":2,"salary":"$2030.25"}, {"id":794,"employee_id":"121098905-0","first_name":"Korrie","last_name":"Balaam","email":"kbalaamm1@umich.edu","phone":"841-183-3396","gender":"Female","department":"Research and Development","address":"7 Pankratz Park","hire_date":"6/23/2018","website":"http://tinypic.com","notes":"eu massa donec dapibus duis at velit eu est congue elementum in hac habitasse platea dictumst","status":2,"type":3,"salary":"$1815.21"}, {"id":795,"employee_id":"732280161-X","first_name":"Abbye","last_name":"Lisle","email":"alislem2@cafepress.com","phone":"811-214-0555","gender":"Female","department":"Business Development","address":"0665 Knutson Park","hire_date":"10/7/2017","website":"https://nyu.edu","notes":"tortor quis turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum","status":6,"type":2,"salary":"$1745.97"}, {"id":796,"employee_id":"939143806-7","first_name":"Letizia","last_name":"Burgwin","email":"lburgwinm3@hostgator.com","phone":"314-217-7762","gender":"Female","department":"Human Resources","address":"68 Meadow Ridge Center","hire_date":"3/24/2018","website":"https://canalblog.com","notes":"quis odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero","status":2,"type":1,"salary":"$622.82"}, {"id":797,"employee_id":"931230824-6","first_name":"Hazel","last_name":"Micheu","email":"hmicheum4@scribd.com","phone":"415-802-8407","gender":"Male","department":"Business Development","address":"353 Ludington Hill","hire_date":"8/5/2017","website":"http://hexun.com","notes":"erat vestibulum sed magna at nunc commodo placerat praesent blandit nam nulla integer pede justo lacinia eget tincidunt","status":4,"type":3,"salary":"$494.96"}, {"id":798,"employee_id":"507962072-2","first_name":"Les","last_name":"Sloam","email":"lsloamm5@wikia.com","phone":"785-126-0550","gender":"Male","department":"Product Management","address":"09330 Spohn Circle","hire_date":"6/6/2018","website":"http://timesonline.co.uk","notes":"et eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam","status":6,"type":2,"salary":"$1118.02"}, {"id":799,"employee_id":"212703331-0","first_name":"Giorgia","last_name":"Guidera","email":"gguideram6@theguardian.com","phone":"327-880-9189","gender":"Female","department":"Engineering","address":"2 Corry Point","hire_date":"4/5/2018","website":"https://merriam-webster.com","notes":"donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit","status":1,"type":3,"salary":"$2303.44"}, {"id":800,"employee_id":"576570473-5","first_name":"Baudoin","last_name":"Ffrench","email":"bffrenchm7@irs.gov","phone":"562-970-6433","gender":"Male","department":"Sales","address":"56 4th Court","hire_date":"11/24/2017","website":"https://tinyurl.com","notes":"sapien varius ut blandit non interdum in ante vestibulum ante ipsum primis in","status":1,"type":2,"salary":"$1587.82"}, {"id":801,"employee_id":"181943676-4","first_name":"Cordell","last_name":"Jantet","email":"cjantetm8@seattletimes.com","phone":"597-880-5051","gender":"Male","department":"Support","address":"1 Warrior Avenue","hire_date":"5/6/2018","website":"http://who.int","notes":"venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet et commodo","status":1,"type":2,"salary":"$1580.06"}, {"id":802,"employee_id":"857791408-9","first_name":"Rochella","last_name":"Deavin","email":"rdeavinm9@yellowbook.com","phone":"157-458-3422","gender":"Female","department":"Business Development","address":"99155 Forest Trail","hire_date":"12/27/2017","website":"https://twitpic.com","notes":"luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet","status":6,"type":2,"salary":"$1138.03"}, {"id":803,"employee_id":"673618968-3","first_name":"Em","last_name":"Empson","email":"eempsonma@answers.com","phone":"250-516-4358","gender":"Male","department":"Legal","address":"0329 Village Green Avenue","hire_date":"2/17/2018","website":"http://wufoo.com","notes":"tellus nisi eu orci mauris lacinia sapien quis libero nullam","status":3,"type":2,"salary":"$1999.72"}, {"id":804,"employee_id":"043477209-7","first_name":"Ty","last_name":"Bulfit","email":"tbulfitmb@businessweek.com","phone":"381-955-9639","gender":"Male","department":"Training","address":"60213 Longview Circle","hire_date":"4/8/2018","website":"https://phoca.cz","notes":"placerat ante nulla justo aliquam quis turpis eget elit sodales","status":3,"type":2,"salary":"$1438.39"}, {"id":805,"employee_id":"167345466-6","first_name":"Loretta","last_name":"Jackett","email":"ljackettmc@pinterest.com","phone":"543-716-4727","gender":"Female","department":"Human Resources","address":"95 Swallow Avenue","hire_date":"10/10/2017","website":"https://cocolog-nifty.com","notes":"vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus","status":5,"type":2,"salary":"$1322.57"}, {"id":806,"employee_id":"844767394-4","first_name":"Amabel","last_name":"Lestrange","email":"alestrangemd@cargocollective.com","phone":"755-174-7238","gender":"Female","department":"Marketing","address":"0 Prairieview Place","hire_date":"1/28/2018","website":"https://storify.com","notes":"platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum","status":1,"type":1,"salary":"$1288.32"}, {"id":807,"employee_id":"716764899-X","first_name":"Gerald","last_name":"Heberden","email":"gheberdenme@slideshare.net","phone":"196-441-8295","gender":"Male","department":"Business Development","address":"88 Schlimgen Point","hire_date":"7/27/2017","website":"http://posterous.com","notes":"amet diam in magna bibendum imperdiet nullam orci pede venenatis non","status":1,"type":3,"salary":"$2228.42"}, {"id":808,"employee_id":"607496737-7","first_name":"Symon","last_name":"Veart","email":"sveartmf@google.co.uk","phone":"442-410-1960","gender":"Male","department":"Sales","address":"0 Maple Wood Court","hire_date":"11/7/2017","website":"http://hatena.ne.jp","notes":"suspendisse accumsan tortor quis turpis sed ante vivamus tortor duis","status":2,"type":3,"salary":"$1510.75"}, {"id":809,"employee_id":"864135592-8","first_name":"Rolfe","last_name":"Cleare","email":"rclearemg@fema.gov","phone":"102-452-1227","gender":"Male","department":"Engineering","address":"137 Florence Hill","hire_date":"4/23/2018","website":"http://mysql.com","notes":"volutpat erat quisque erat eros viverra eget congue eget semper rutrum","status":3,"type":3,"salary":"$1341.99"}, {"id":810,"employee_id":"342600434-8","first_name":"Callean","last_name":"Jerrolt","email":"cjerroltmh@g.co","phone":"795-810-1691","gender":"Male","department":"Product Management","address":"30693 Burrows Road","hire_date":"1/24/2018","website":"https://cbslocal.com","notes":"praesent blandit nam nulla integer pede justo lacinia eget tincidunt eget tempus vel pede","status":2,"type":3,"salary":"$796.65"}, {"id":811,"employee_id":"205902301-7","first_name":"Shawna","last_name":"Rosborough","email":"srosboroughmi@opera.com","phone":"209-749-1562","gender":"Female","department":"Marketing","address":"039 Ludington Way","hire_date":"5/31/2018","website":"https://delicious.com","notes":"eget eleifend luctus ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus","status":4,"type":1,"salary":"$301.37"}, {"id":812,"employee_id":"301219263-8","first_name":"Noelyn","last_name":"McEnteggart","email":"nmcenteggartmj@ow.ly","phone":"539-327-6367","gender":"Female","department":"Marketing","address":"0022 Lukken Drive","hire_date":"9/18/2017","website":"http://canalblog.com","notes":"pede ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra","status":2,"type":3,"salary":"$432.49"}, {"id":813,"employee_id":"718416820-8","first_name":"Bart","last_name":"Dyneley","email":"bdyneleymk@google.com.au","phone":"231-398-0202","gender":"Male","department":"Product Management","address":"9421 Green Street","hire_date":"11/20/2017","website":"http://dot.gov","notes":"nulla suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis","status":6,"type":3,"salary":"$539.57"}, {"id":814,"employee_id":"632205591-7","first_name":"Correy","last_name":"Colquete","email":"ccolqueteml@google.co.jp","phone":"300-874-9684","gender":"Male","department":"Legal","address":"08 Garrison Alley","hire_date":"6/24/2018","website":"http://who.int","notes":"pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus sit amet","status":2,"type":2,"salary":"$2303.71"}, {"id":815,"employee_id":"426716297-2","first_name":"Rodge","last_name":"Hourston","email":"rhourstonmm@newsvine.com","phone":"492-284-8794","gender":"Male","department":"Business Development","address":"62 Brown Place","hire_date":"3/10/2018","website":"http://washington.edu","notes":"elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam","status":4,"type":1,"salary":"$1139.65"}, {"id":816,"employee_id":"638277031-0","first_name":"Kesley","last_name":"Liff","email":"kliffmn@fda.gov","phone":"279-346-8257","gender":"Female","department":"Services","address":"33317 Golden Leaf Alley","hire_date":"3/18/2018","website":"http://feedburner.com","notes":"erat curabitur gravida nisi at nibh in hac habitasse platea","status":1,"type":3,"salary":"$1721.96"}, {"id":817,"employee_id":"180232918-8","first_name":"Peirce","last_name":"Cluley","email":"pcluleymo@dailymail.co.uk","phone":"742-672-2952","gender":"Male","department":"Legal","address":"9209 Merchant Lane","hire_date":"10/15/2017","website":"https://cornell.edu","notes":"in est risus auctor sed tristique in tempus sit amet sem fusce consequat","status":5,"type":3,"salary":"$1636.79"}, {"id":818,"employee_id":"863979892-3","first_name":"Frayda","last_name":"Pickersail","email":"fpickersailmp@123-reg.co.uk","phone":"971-770-7430","gender":"Female","department":"Product Management","address":"0822 Sage Terrace","hire_date":"1/16/2018","website":"https://liveinternet.ru","notes":"ultrices posuere cubilia curae nulla dapibus dolor vel est donec odio justo","status":6,"type":3,"salary":"$1913.44"}, {"id":819,"employee_id":"192493662-3","first_name":"Anselm","last_name":"Gibbonson","email":"agibbonsonmq@wikia.com","phone":"863-906-7411","gender":"Male","department":"Support","address":"8 Pawling Circle","hire_date":"7/2/2018","website":"http://rambler.ru","notes":"quisque porta volutpat erat quisque erat eros viverra eget congue eget semper rutrum nulla nunc purus phasellus in felis","status":2,"type":2,"salary":"$1742.85"}, {"id":820,"employee_id":"200052209-2","first_name":"Elberta","last_name":"Persicke","email":"epersickemr@blogger.com","phone":"668-943-3372","gender":"Female","department":"Research and Development","address":"8174 6th Crossing","hire_date":"9/27/2017","website":"https://mozilla.com","notes":"at velit eu est congue elementum in hac habitasse platea dictumst","status":2,"type":1,"salary":"$867.17"}, {"id":821,"employee_id":"395194882-5","first_name":"Sandro","last_name":"Marre","email":"smarrems@imdb.com","phone":"406-798-3488","gender":"Male","department":"Sales","address":"9212 Kropf Avenue","hire_date":"3/2/2018","website":"https://sciencedirect.com","notes":"donec ut dolor morbi vel lectus in quam fringilla rhoncus","status":6,"type":1,"salary":"$635.08"}, {"id":822,"employee_id":"855157045-5","first_name":"Mirabelle","last_name":"Varrow","email":"mvarrowmt@jiathis.com","phone":"756-556-9120","gender":"Female","department":"Support","address":"22554 Butternut Point","hire_date":"10/21/2017","website":"https://netvibes.com","notes":"proin at turpis a pede posuere nonummy integer non velit","status":5,"type":3,"salary":"$1613.32"}, {"id":823,"employee_id":"704941465-4","first_name":"Raoul","last_name":"Stuer","email":"rstuermu@cbsnews.com","phone":"189-643-4969","gender":"Male","department":"Services","address":"9 Debra Center","hire_date":"7/8/2018","website":"http://umich.edu","notes":"natoque penatibus et magnis dis parturient montes nascetur ridiculus mus etiam vel augue vestibulum rutrum","status":5,"type":3,"salary":"$2328.21"}, {"id":824,"employee_id":"732581584-0","first_name":"Ned","last_name":"Bru","email":"nbrumv@storify.com","phone":"128-130-4321","gender":"Male","department":"Business Development","address":"557 Gulseth Trail","hire_date":"10/5/2017","website":"https://unblog.fr","notes":"faucibus cursus urna ut tellus nulla ut erat id mauris vulputate elementum nullam varius nulla facilisi cras","status":6,"type":3,"salary":"$961.24"}, {"id":825,"employee_id":"091790688-8","first_name":"Rick","last_name":"Ciccone","email":"rcicconemw@imdb.com","phone":"856-504-8970","gender":"Male","department":"Accounting","address":"66255 Westport Alley","hire_date":"8/8/2017","website":"https://infoseek.co.jp","notes":"etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut","status":5,"type":1,"salary":"$1186.43"}, {"id":826,"employee_id":"520293949-3","first_name":"Corinne","last_name":"Fownes","email":"cfownesmx@ehow.com","phone":"440-823-7406","gender":"Female","department":"Support","address":"26742 Debs Lane","hire_date":"1/11/2018","website":"https://baidu.com","notes":"ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend","status":2,"type":2,"salary":"$554.62"}, {"id":827,"employee_id":"365292994-2","first_name":"Cammy","last_name":"Holtaway","email":"choltawaymy@dion.ne.jp","phone":"194-960-1147","gender":"Female","department":"Services","address":"1131 Jay Junction","hire_date":"3/24/2018","website":"http://earthlink.net","notes":"praesent blandit nam nulla integer pede justo lacinia eget tincidunt eget tempus vel pede","status":2,"type":3,"salary":"$1863.85"}, {"id":828,"employee_id":"843722533-7","first_name":"Fayth","last_name":"Haill","email":"fhaillmz@disqus.com","phone":"744-567-8110","gender":"Female","department":"Business Development","address":"33 Merrick Circle","hire_date":"3/15/2018","website":"https://cafepress.com","notes":"odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue","status":1,"type":3,"salary":"$2355.13"}, {"id":829,"employee_id":"322169240-4","first_name":"Trixi","last_name":"Pendlenton","email":"tpendlentonn0@taobao.com","phone":"957-310-2126","gender":"Female","department":"Marketing","address":"5 Jenna Avenue","hire_date":"8/29/2017","website":"https://nymag.com","notes":"ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor","status":3,"type":1,"salary":"$652.58"}, {"id":830,"employee_id":"135439312-0","first_name":"Hewe","last_name":"Prisk","email":"hpriskn1@ox.ac.uk","phone":"978-865-1619","gender":"Male","department":"Support","address":"97189 Fair Oaks Trail","hire_date":"12/24/2017","website":"http://sciencedirect.com","notes":"ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem","status":3,"type":1,"salary":"$440.95"}, {"id":831,"employee_id":"349704938-7","first_name":"Ezekiel","last_name":"De Haven","email":"edehavenn2@sbwire.com","phone":"793-431-3934","gender":"Male","department":"Support","address":"73 Tomscot Court","hire_date":"3/28/2018","website":"http://yale.edu","notes":"molestie nibh in lectus pellentesque at nulla suspendisse potenti cras in purus eu magna","status":2,"type":2,"salary":"$307.26"}, {"id":832,"employee_id":"468212952-X","first_name":"Lou","last_name":"Saffell","email":"lsaffelln3@jigsy.com","phone":"635-726-3361","gender":"Female","department":"Business Development","address":"7279 Green Ridge Trail","hire_date":"7/27/2017","website":"http://google.it","notes":"ut nulla sed accumsan felis ut at dolor quis odio consequat varius","status":6,"type":3,"salary":"$2220.38"}, {"id":833,"employee_id":"946703651-7","first_name":"Kinnie","last_name":"Maryin","email":"kmaryinn4@taobao.com","phone":"407-291-2839","gender":"Male","department":"Business Development","address":"689 Reinke Drive","hire_date":"3/31/2018","website":"http://e-recht24.de","notes":"mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue","status":4,"type":3,"salary":"$1743.63"}, {"id":834,"employee_id":"469462469-5","first_name":"Gardie","last_name":"Bernli","email":"gbernlin5@printfriendly.com","phone":"655-626-8380","gender":"Male","department":"Research and Development","address":"05 Reinke Plaza","hire_date":"4/20/2018","website":"http://springer.com","notes":"faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat","status":6,"type":2,"salary":"$2438.74"}, {"id":835,"employee_id":"041162428-8","first_name":"Leticia","last_name":"Josefer","email":"ljosefern6@chronoengine.com","phone":"101-342-0106","gender":"Female","department":"Engineering","address":"3656 Bobwhite Trail","hire_date":"12/17/2017","website":"http://wordpress.org","notes":"orci pede venenatis non sodales sed tincidunt eu felis fusce","status":6,"type":2,"salary":"$1397.56"}, {"id":836,"employee_id":"589695198-1","first_name":"Darrick","last_name":"Granger","email":"dgrangern7@weather.com","phone":"205-150-7029","gender":"Male","department":"Support","address":"2 Roth Center","hire_date":"11/10/2017","website":"http://youku.com","notes":"elementum ligula vehicula consequat morbi a ipsum integer a nibh in quis justo maecenas rhoncus","status":5,"type":3,"salary":"$2094.14"}, {"id":837,"employee_id":"278485362-4","first_name":"Dyana","last_name":"Digger","email":"ddiggern8@omniture.com","phone":"750-673-1281","gender":"Female","department":"Legal","address":"49619 Graceland Drive","hire_date":"4/26/2018","website":"http://smh.com.au","notes":"aenean fermentum donec ut mauris eget massa tempor convallis nulla neque libero convallis eget eleifend","status":1,"type":1,"salary":"$1973.01"}, {"id":838,"employee_id":"779146008-4","first_name":"Lydon","last_name":"Masdon","email":"lmasdonn9@a8.net","phone":"212-527-6705","gender":"Male","department":"Training","address":"753 Golf Course Crossing","hire_date":"11/13/2017","website":"http://ucsd.edu","notes":"eget massa tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu nibh quisque id justo sit amet sapien","status":6,"type":3,"salary":"$753.19"}, {"id":839,"employee_id":"547768354-6","first_name":"Angelika","last_name":"Darch","email":"adarchna@tiny.cc","phone":"648-106-0061","gender":"Female","department":"Marketing","address":"5984 Hallows Point","hire_date":"5/13/2018","website":"http://omniture.com","notes":"tellus nulla ut erat id mauris vulputate elementum nullam varius nulla facilisi cras non","status":5,"type":2,"salary":"$622.00"}, {"id":840,"employee_id":"211575367-4","first_name":"Hilliary","last_name":"Corkel","email":"hcorkelnb@yale.edu","phone":"145-299-6840","gender":"Female","department":"Human Resources","address":"39 Ridgeview Center","hire_date":"5/31/2018","website":"http://sbwire.com","notes":"nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse","status":6,"type":2,"salary":"$2237.81"}, {"id":841,"employee_id":"858981932-9","first_name":"Simeon","last_name":"Hearson","email":"shearsonnc@amazonaws.com","phone":"694-518-1962","gender":"Male","department":"Engineering","address":"8700 Esker Terrace","hire_date":"2/27/2018","website":"http://dedecms.com","notes":"nisi volutpat eleifend donec ut dolor morbi vel lectus in quam fringilla rhoncus mauris enim leo rhoncus sed","status":6,"type":2,"salary":"$1122.62"}, {"id":842,"employee_id":"431756926-4","first_name":"Tuck","last_name":"MacInnes","email":"tmacinnesnd@wordpress.org","phone":"783-303-6460","gender":"Male","department":"Support","address":"21 Veith Trail","hire_date":"9/2/2017","website":"https://marketwatch.com","notes":"mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui","status":5,"type":3,"salary":"$719.94"}, {"id":843,"employee_id":"597581423-5","first_name":"Sanders","last_name":"Yantsev","email":"syantsevne@pinterest.com","phone":"163-830-1851","gender":"Male","department":"Support","address":"92682 Stone Corner Court","hire_date":"9/23/2017","website":"http://house.gov","notes":"quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac","status":6,"type":1,"salary":"$1833.46"}, {"id":844,"employee_id":"528020275-4","first_name":"Sissy","last_name":"Innwood","email":"sinnwoodnf@example.com","phone":"340-721-2264","gender":"Female","department":"Product Management","address":"7857 Hayes Park","hire_date":"10/20/2017","website":"http://jigsy.com","notes":"risus semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero quis","status":1,"type":3,"salary":"$432.76"}, {"id":845,"employee_id":"717372604-2","first_name":"Saunder","last_name":"Flarity","email":"sflarityng@multiply.com","phone":"816-385-5389","gender":"Male","department":"Legal","address":"11 Hoepker Park","hire_date":"9/15/2017","website":"http://youtube.com","notes":"condimentum id luctus nec molestie sed justo pellentesque viverra pede","status":2,"type":3,"salary":"$2470.02"}, {"id":846,"employee_id":"225292769-0","first_name":"Denney","last_name":"Oakden","email":"doakdennh@bing.com","phone":"920-869-3544","gender":"Male","department":"Human Resources","address":"68494 Maple Alley","hire_date":"2/4/2018","website":"http://usatoday.com","notes":"ut nulla sed accumsan felis ut at dolor quis odio consequat varius integer ac leo pellentesque","status":4,"type":1,"salary":"$2220.67"}, {"id":847,"employee_id":"467850974-7","first_name":"Elita","last_name":"Burthom","email":"eburthomni@hp.com","phone":"335-219-3625","gender":"Female","department":"Accounting","address":"274 Katie Park","hire_date":"2/9/2018","website":"https://de.vu","notes":"ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae","status":4,"type":2,"salary":"$847.49"}, {"id":848,"employee_id":"898160045-7","first_name":"Stacie","last_name":"Hebner","email":"shebnernj@liveinternet.ru","phone":"890-770-6048","gender":"Female","department":"Human Resources","address":"44506 Bayside Drive","hire_date":"4/23/2018","website":"http://freewebs.com","notes":"massa donec dapibus duis at velit eu est congue elementum in hac habitasse platea","status":2,"type":1,"salary":"$356.40"}, {"id":849,"employee_id":"818484277-5","first_name":"Betta","last_name":"Leakner","email":"bleaknernk@hud.gov","phone":"313-659-0867","gender":"Female","department":"Marketing","address":"09485 Dovetail Terrace","hire_date":"7/29/2017","website":"https://123-reg.co.uk","notes":"sapien arcu sed augue aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac habitasse platea dictumst","status":1,"type":2,"salary":"$1884.90"}, {"id":850,"employee_id":"087125652-5","first_name":"Kyle","last_name":"Wiggington","email":"kwiggingtonnl@latimes.com","phone":"297-144-3797","gender":"Male","department":"Legal","address":"0 Ronald Regan Crossing","hire_date":"4/6/2018","website":"http://csmonitor.com","notes":"eget nunc donec quis orci eget orci vehicula condimentum curabitur","status":5,"type":3,"salary":"$2215.86"}, {"id":851,"employee_id":"377288512-8","first_name":"Nara","last_name":"Resun","email":"nresunnm@mit.edu","phone":"731-180-4173","gender":"Female","department":"Sales","address":"7074 Golf Center","hire_date":"11/5/2017","website":"http://pinterest.com","notes":"vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra","status":5,"type":3,"salary":"$2166.61"}, {"id":852,"employee_id":"918618308-7","first_name":"Allene","last_name":"Gilstoun","email":"agilstounnn@cam.ac.uk","phone":"679-115-5305","gender":"Female","department":"Training","address":"70602 Schiller Trail","hire_date":"5/15/2018","website":"http://google.nl","notes":"nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices","status":1,"type":3,"salary":"$2047.71"}, {"id":853,"employee_id":"171710057-0","first_name":"Jarrett","last_name":"Kareman","email":"jkaremanno@mashable.com","phone":"571-811-3029","gender":"Male","department":"Research and Development","address":"135 Merry Hill","hire_date":"11/7/2017","website":"https://digg.com","notes":"curabitur gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae","status":2,"type":2,"salary":"$1898.66"}, {"id":854,"employee_id":"668119849-X","first_name":"Alidia","last_name":"Elias","email":"aeliasnp@hao123.com","phone":"621-868-7561","gender":"Female","department":"Business Development","address":"4467 Basil Circle","hire_date":"3/27/2018","website":"http://illinois.edu","notes":"id sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate","status":6,"type":2,"salary":"$700.05"}, {"id":855,"employee_id":"359970386-8","first_name":"Audrey","last_name":"Cassel","email":"acasselnq@feedburner.com","phone":"110-165-9967","gender":"Female","department":"Engineering","address":"652 Dixon Junction","hire_date":"5/9/2018","website":"http://earthlink.net","notes":"suspendisse accumsan tortor quis turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec","status":5,"type":2,"salary":"$1663.68"}, {"id":856,"employee_id":"853032462-5","first_name":"Gwyn","last_name":"Agiolfinger","email":"gagiolfingernr@fotki.com","phone":"990-944-9334","gender":"Female","department":"Engineering","address":"88005 Delaware Center","hire_date":"4/21/2018","website":"http://marketwatch.com","notes":"velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat","status":6,"type":3,"salary":"$594.90"}, {"id":857,"employee_id":"059215254-5","first_name":"Tuesday","last_name":"Akid","email":"takidns@weibo.com","phone":"673-912-7877","gender":"Female","department":"Marketing","address":"9652 Banding Avenue","hire_date":"8/16/2017","website":"https://samsung.com","notes":"ullamcorper purus sit amet nulla quisque arcu libero rutrum ac lobortis vel dapibus at diam nam tristique tortor eu","status":4,"type":3,"salary":"$583.68"}, {"id":858,"employee_id":"474123789-3","first_name":"Carmel","last_name":"Morison","email":"cmorisonnt@com.com","phone":"767-605-1813","gender":"Female","department":"Business Development","address":"49 Valley Edge Street","hire_date":"6/29/2018","website":"https://goodreads.com","notes":"maecenas pulvinar lobortis est phasellus sit amet erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi","status":1,"type":1,"salary":"$2025.43"}, {"id":859,"employee_id":"626321755-3","first_name":"Salem","last_name":"Tomblings","email":"stomblingsnu@quantcast.com","phone":"841-956-0344","gender":"Male","department":"Product Management","address":"1522 Esch Alley","hire_date":"6/15/2018","website":"https://weibo.com","notes":"ut nulla sed accumsan felis ut at dolor quis odio consequat varius integer","status":3,"type":2,"salary":"$426.68"}, {"id":860,"employee_id":"434074089-6","first_name":"Micky","last_name":"Prester","email":"mpresternv@flickr.com","phone":"934-275-4620","gender":"Female","department":"Marketing","address":"39 Nancy Drive","hire_date":"2/8/2018","website":"http://reference.com","notes":"faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam","status":1,"type":3,"salary":"$1926.90"}, {"id":861,"employee_id":"795857739-7","first_name":"Bernice","last_name":"Swinbourne","email":"bswinbournenw@yale.edu","phone":"936-824-2359","gender":"Female","department":"Sales","address":"216 Crowley Parkway","hire_date":"8/19/2017","website":"http://timesonline.co.uk","notes":"a odio in hac habitasse platea dictumst maecenas ut massa","status":3,"type":2,"salary":"$1384.84"}, {"id":862,"employee_id":"389656737-3","first_name":"Jacqui","last_name":"Fairbank","email":"jfairbanknx@macromedia.com","phone":"835-651-1622","gender":"Female","department":"Marketing","address":"7794 Talisman Park","hire_date":"5/23/2018","website":"https://liveinternet.ru","notes":"sed interdum venenatis turpis enim blandit mi in porttitor pede justo eu massa","status":4,"type":2,"salary":"$363.54"}, {"id":863,"employee_id":"038925263-8","first_name":"Rochelle","last_name":"MacFadin","email":"rmacfadinny@narod.ru","phone":"443-239-8405","gender":"Female","department":"Marketing","address":"26 Shelley Hill","hire_date":"9/22/2017","website":"http://indiatimes.com","notes":"at vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci eget","status":4,"type":2,"salary":"$2179.15"}, {"id":864,"employee_id":"657345006-X","first_name":"Any","last_name":"Heilds","email":"aheildsnz@theatlantic.com","phone":"954-253-2413","gender":"Male","department":"Support","address":"3694 Tomscot Road","hire_date":"2/10/2018","website":"https://huffingtonpost.com","notes":"sapien arcu sed augue aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac","status":5,"type":3,"salary":"$1128.45"}, {"id":865,"employee_id":"965469830-7","first_name":"Babbette","last_name":"Patchett","email":"bpatchetto0@usnews.com","phone":"670-691-5401","gender":"Female","department":"Business Development","address":"4 Prentice Park","hire_date":"5/29/2018","website":"http://cisco.com","notes":"in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt","status":5,"type":3,"salary":"$1734.90"}, {"id":866,"employee_id":"330409850-X","first_name":"Norrie","last_name":"Goghin","email":"ngoghino1@baidu.com","phone":"491-790-2918","gender":"Female","department":"Business Development","address":"645 Browning Lane","hire_date":"10/13/2017","website":"https://foxnews.com","notes":"ut blandit non interdum in ante vestibulum ante ipsum primis in faucibus orci","status":2,"type":2,"salary":"$430.97"}, {"id":867,"employee_id":"040434544-1","first_name":"Nichole","last_name":"Russel","email":"nrusselo2@cargocollective.com","phone":"540-530-3814","gender":"Male","department":"Services","address":"90419 Manley Terrace","hire_date":"12/7/2017","website":"http://joomla.org","notes":"pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna","status":3,"type":1,"salary":"$654.35"}, {"id":868,"employee_id":"351531103-3","first_name":"Hatti","last_name":"O\' Lone","email":"holoneo3@cargocollective.com","phone":"795-856-1540","gender":"Female","department":"Marketing","address":"3 Hazelcrest Way","hire_date":"1/22/2018","website":"http://ucla.edu","notes":"blandit mi in porttitor pede justo eu massa donec dapibus duis at","status":6,"type":2,"salary":"$2334.45"}, {"id":869,"employee_id":"353987017-2","first_name":"Vinny","last_name":"Sterland","email":"vsterlando4@vk.com","phone":"169-336-7150","gender":"Female","department":"Business Development","address":"417 Sundown Avenue","hire_date":"8/6/2017","website":"https://telegraph.co.uk","notes":"amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus semper interdum","status":3,"type":1,"salary":"$1521.90"}, {"id":870,"employee_id":"281066414-5","first_name":"Heather","last_name":"Attwell","email":"hattwello5@ebay.com","phone":"938-751-5370","gender":"Female","department":"Accounting","address":"0 Corscot Parkway","hire_date":"2/28/2018","website":"https://com.com","notes":"tristique est et tempus semper est quam pharetra magna ac consequat metus sapien","status":4,"type":3,"salary":"$2166.56"}, {"id":871,"employee_id":"149270060-6","first_name":"Batsheva","last_name":"O\'Sheilds","email":"bosheildso6@utexas.edu","phone":"894-295-9511","gender":"Female","department":"Training","address":"60564 Orin Park","hire_date":"9/7/2017","website":"http://unesco.org","notes":"tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a","status":6,"type":3,"salary":"$1727.86"}, {"id":872,"employee_id":"643611254-5","first_name":"Willow","last_name":"Deeth","email":"wdeetho7@harvard.edu","phone":"159-925-5389","gender":"Female","department":"Accounting","address":"607 Anthes Lane","hire_date":"7/16/2018","website":"http://eventbrite.com","notes":"augue a suscipit nulla elit ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus","status":5,"type":2,"salary":"$1190.81"}, {"id":873,"employee_id":"058405556-0","first_name":"Mic","last_name":"Dengel","email":"mdengelo8@networksolutions.com","phone":"727-927-8796","gender":"Male","department":"Accounting","address":"785 Dawn Terrace","hire_date":"9/30/2017","website":"https://zimbio.com","notes":"justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus","status":2,"type":1,"salary":"$298.54"}, {"id":874,"employee_id":"549865806-0","first_name":"Hortense","last_name":"Mandell","email":"hmandello9@illinois.edu","phone":"572-206-1688","gender":"Female","department":"Services","address":"7958 Sherman Plaza","hire_date":"12/22/2017","website":"http://cdc.gov","notes":"nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo","status":1,"type":1,"salary":"$1498.34"}, {"id":875,"employee_id":"908338420-9","first_name":"Gilemette","last_name":"Bagenal","email":"gbagenaloa@diigo.com","phone":"475-315-9575","gender":"Female","department":"Engineering","address":"6193 6th Drive","hire_date":"8/29/2017","website":"http://reverbnation.com","notes":"tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula","status":5,"type":1,"salary":"$2230.76"}, {"id":876,"employee_id":"977156817-5","first_name":"Aloisia","last_name":"De Minico","email":"ademinicoob@delicious.com","phone":"120-288-0753","gender":"Female","department":"Accounting","address":"844 Blue Bill Park Avenue","hire_date":"10/14/2017","website":"http://friendfeed.com","notes":"proin eu mi nulla ac enim in tempor turpis nec euismod scelerisque","status":1,"type":1,"salary":"$608.47"}, {"id":877,"employee_id":"885815976-4","first_name":"Reece","last_name":"Slyvester","email":"rslyvesteroc@apple.com","phone":"776-585-2812","gender":"Male","department":"Support","address":"49 Del Sol Park","hire_date":"4/28/2018","website":"http://yale.edu","notes":"dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac nibh","status":6,"type":3,"salary":"$2352.46"}, {"id":878,"employee_id":"577787056-2","first_name":"Kean","last_name":"Venes","email":"kvenesod@forbes.com","phone":"580-228-2393","gender":"Male","department":"Support","address":"7890 Blue Bill Park Parkway","hire_date":"7/9/2018","website":"https://sbwire.com","notes":"quam suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris morbi non","status":4,"type":2,"salary":"$1752.92"}, {"id":879,"employee_id":"070850529-5","first_name":"Cathee","last_name":"Farquar","email":"cfarquaroe@jugem.jp","phone":"427-616-2628","gender":"Female","department":"Research and Development","address":"7849 Anthes Pass","hire_date":"8/11/2017","website":"http://nyu.edu","notes":"dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla","status":6,"type":1,"salary":"$1249.57"}, {"id":880,"employee_id":"573192593-3","first_name":"Koren","last_name":"Grayland","email":"kgraylandof@qq.com","phone":"522-950-3145","gender":"Female","department":"Research and Development","address":"23753 Bay Crossing","hire_date":"7/23/2017","website":"https://pagesperso-orange.fr","notes":"pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac nulla sed vel enim sit amet nunc viverra dapibus","status":1,"type":1,"salary":"$2393.05"}, {"id":881,"employee_id":"509885019-3","first_name":"Phip","last_name":"Phateplace","email":"pphateplaceog@squidoo.com","phone":"901-708-2027","gender":"Male","department":"Product Management","address":"5966 Gulseth Drive","hire_date":"7/5/2018","website":"https://example.com","notes":"suscipit ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla quisque","status":6,"type":2,"salary":"$1635.88"}, {"id":882,"employee_id":"701133697-4","first_name":"Moses","last_name":"Helix","email":"mhelixoh@jugem.jp","phone":"947-652-3546","gender":"Male","department":"Sales","address":"5 Westerfield Way","hire_date":"3/9/2018","website":"https://google.it","notes":"ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit nam nulla integer pede","status":4,"type":2,"salary":"$452.06"}, {"id":883,"employee_id":"445368708-7","first_name":"Zebadiah","last_name":"Redington","email":"zredingtonoi@squarespace.com","phone":"106-887-0468","gender":"Male","department":"Training","address":"42 Di Loreto Point","hire_date":"2/17/2018","website":"http://sina.com.cn","notes":"in felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec euismod","status":1,"type":3,"salary":"$2018.44"}, {"id":884,"employee_id":"023371746-3","first_name":"Morna","last_name":"Beckwith","email":"mbeckwithoj@usnews.com","phone":"447-925-5378","gender":"Female","department":"Business Development","address":"9836 Browning Park","hire_date":"3/10/2018","website":"http://ihg.com","notes":"sapien sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus","status":2,"type":3,"salary":"$721.52"}, {"id":885,"employee_id":"254571653-7","first_name":"Zorine","last_name":"Shervil","email":"zshervilok@yolasite.com","phone":"203-384-0989","gender":"Female","department":"Product Management","address":"51051 Golden Leaf Avenue","hire_date":"4/25/2018","website":"https://studiopress.com","notes":"sit amet diam in magna bibendum imperdiet nullam orci pede venenatis non sodales","status":2,"type":2,"salary":"$2409.49"}, {"id":886,"employee_id":"960030935-3","first_name":"Cory","last_name":"Ackland","email":"cacklandol@epa.gov","phone":"686-765-5372","gender":"Male","department":"Legal","address":"17 Colorado Circle","hire_date":"6/30/2018","website":"http://dropbox.com","notes":"vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non pretium quis lectus","status":1,"type":1,"salary":"$1792.46"}, {"id":887,"employee_id":"087598468-1","first_name":"Oona","last_name":"Schriren","email":"oschrirenom@biblegateway.com","phone":"757-810-4691","gender":"Female","department":"Marketing","address":"08 Oxford Plaza","hire_date":"3/7/2018","website":"https://newyorker.com","notes":"cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna ac consequat","status":1,"type":2,"salary":"$310.95"}, {"id":888,"employee_id":"913978565-3","first_name":"Cary","last_name":"Nutty","email":"cnuttyon@zimbio.com","phone":"906-633-9244","gender":"Male","department":"Support","address":"893 Melrose Circle","hire_date":"4/15/2018","website":"https://businessweek.com","notes":"enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa id","status":5,"type":1,"salary":"$1885.07"}, {"id":889,"employee_id":"852709101-1","first_name":"Marys","last_name":"Colling","email":"mcollingoo@weather.com","phone":"953-749-3087","gender":"Female","department":"Training","address":"87987 Duke Lane","hire_date":"9/28/2017","website":"https://blogtalkradio.com","notes":"justo morbi ut odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices enim","status":5,"type":2,"salary":"$2235.04"}, {"id":890,"employee_id":"291123541-X","first_name":"Peggy","last_name":"Flockhart","email":"pflockhartop@bing.com","phone":"415-872-2156","gender":"Female","department":"Support","address":"1 Jay Avenue","hire_date":"4/14/2018","website":"http://fastcompany.com","notes":"nec nisi volutpat eleifend donec ut dolor morbi vel lectus in","status":1,"type":3,"salary":"$1097.99"}, {"id":891,"employee_id":"061820725-2","first_name":"Em","last_name":"Trippett","email":"etrippettoq@reverbnation.com","phone":"838-745-0517","gender":"Male","department":"Accounting","address":"71881 Warrior Circle","hire_date":"11/25/2017","website":"http://marketwatch.com","notes":"leo odio porttitor id consequat in consequat ut nulla sed accumsan felis ut at dolor quis odio consequat varius integer","status":4,"type":1,"salary":"$1944.75"}, {"id":892,"employee_id":"246309066-9","first_name":"Benedikta","last_name":"Anelay","email":"banelayor@wired.com","phone":"402-214-4561","gender":"Female","department":"Legal","address":"6996 Magdeline Trail","hire_date":"9/16/2017","website":"https://spotify.com","notes":"non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit","status":5,"type":1,"salary":"$2424.53"}, {"id":893,"employee_id":"340359317-7","first_name":"Emma","last_name":"Fidoe","email":"efidoeos@nyu.edu","phone":"499-385-6103","gender":"Female","department":"Accounting","address":"1 Springs Junction","hire_date":"1/17/2018","website":"https://bloglines.com","notes":"a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet","status":1,"type":2,"salary":"$1109.61"}, {"id":894,"employee_id":"647906622-7","first_name":"Derwin","last_name":"Cuffe","email":"dcuffeot@washington.edu","phone":"386-529-5089","gender":"Male","department":"Accounting","address":"9404 Kedzie Point","hire_date":"5/8/2018","website":"https://topsy.com","notes":"ante vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris eget massa","status":4,"type":3,"salary":"$784.33"}, {"id":895,"employee_id":"734537898-5","first_name":"Cheston","last_name":"Laherty","email":"clahertyou@sphinn.com","phone":"237-651-6840","gender":"Male","department":"Accounting","address":"136 Bowman Way","hire_date":"6/21/2018","website":"http://last.fm","notes":"massa tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu nibh quisque id","status":1,"type":3,"salary":"$1384.83"}, {"id":896,"employee_id":"517246133-7","first_name":"Francklyn","last_name":"Tellesson","email":"ftellessonov@sbwire.com","phone":"431-989-9730","gender":"Male","department":"Engineering","address":"8663 Grover Pass","hire_date":"2/10/2018","website":"https://exblog.jp","notes":"id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in","status":1,"type":1,"salary":"$515.07"}, {"id":897,"employee_id":"244720621-6","first_name":"Rossy","last_name":"Rubinowicz","email":"rrubinowiczow@privacy.gov.au","phone":"128-751-6213","gender":"Male","department":"Sales","address":"6 Park Meadow Drive","hire_date":"7/18/2018","website":"http://360.cn","notes":"eros suspendisse accumsan tortor quis turpis sed ante vivamus tortor duis mattis egestas metus","status":5,"type":1,"salary":"$1665.47"}, {"id":898,"employee_id":"239166941-0","first_name":"Whitman","last_name":"Klezmski","email":"wklezmskiox@phpbb.com","phone":"833-785-5590","gender":"Male","department":"Training","address":"2 American Ash Court","hire_date":"5/20/2018","website":"http://mayoclinic.com","notes":"posuere nonummy integer non velit donec diam neque vestibulum eget","status":2,"type":2,"salary":"$2110.09"}, {"id":899,"employee_id":"289033043-5","first_name":"Ivory","last_name":"Witcombe","email":"iwitcombeoy@mysql.com","phone":"195-438-5956","gender":"Female","department":"Support","address":"4652 Maywood Circle","hire_date":"6/10/2018","website":"http://toplist.cz","notes":"orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam","status":4,"type":1,"salary":"$1509.44"}, {"id":900,"employee_id":"735454334-9","first_name":"Marcelia","last_name":"Scrannage","email":"mscrannageoz@phpbb.com","phone":"867-246-0019","gender":"Female","department":"Product Management","address":"798 Gulseth Way","hire_date":"6/16/2018","website":"https://bloglovin.com","notes":"vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus","status":6,"type":3,"salary":"$2235.67"}, {"id":901,"employee_id":"628040894-9","first_name":"Ariel","last_name":"Schiefersten","email":"aschieferstenp0@earthlink.net","phone":"576-850-5308","gender":"Female","department":"Marketing","address":"28 Westend Terrace","hire_date":"8/11/2017","website":"https://cnbc.com","notes":"vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum neque sapien placerat","status":3,"type":3,"salary":"$1638.83"}, {"id":902,"employee_id":"417689860-7","first_name":"Neala","last_name":"Schofield","email":"nschofieldp1@earthlink.net","phone":"827-705-9400","gender":"Female","department":"Training","address":"4989 Orin Plaza","hire_date":"1/27/2018","website":"http://bloomberg.com","notes":"eget tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in","status":6,"type":3,"salary":"$1248.12"}, {"id":903,"employee_id":"678441197-8","first_name":"Ody","last_name":"Craster","email":"ocrasterp2@histats.com","phone":"982-198-5117","gender":"Male","department":"Accounting","address":"44477 Ridgeview Junction","hire_date":"4/1/2018","website":"http://rambler.ru","notes":"dapibus duis at velit eu est congue elementum in hac habitasse platea","status":2,"type":1,"salary":"$714.64"}, {"id":904,"employee_id":"601468081-0","first_name":"Frazer","last_name":"Joinsey","email":"fjoinseyp3@sogou.com","phone":"826-605-9383","gender":"Male","department":"Sales","address":"5219 Village Green Center","hire_date":"9/20/2017","website":"http://devhub.com","notes":"mi nulla ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem","status":3,"type":3,"salary":"$1477.02"}, {"id":905,"employee_id":"182272871-1","first_name":"Euell","last_name":"Parsand","email":"eparsandp4@answers.com","phone":"695-370-0261","gender":"Male","department":"Accounting","address":"8355 Upham Way","hire_date":"12/7/2017","website":"https://myspace.com","notes":"est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien","status":6,"type":2,"salary":"$1642.29"}, {"id":906,"employee_id":"123091226-6","first_name":"Gloriane","last_name":"Boatswain","email":"gboatswainp5@1688.com","phone":"284-454-8780","gender":"Female","department":"Human Resources","address":"31 Sunnyside Place","hire_date":"4/21/2018","website":"http://acquirethisname.com","notes":"sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere","status":5,"type":1,"salary":"$382.88"}, {"id":907,"employee_id":"910029012-2","first_name":"Cymbre","last_name":"Josefson","email":"cjosefsonp6@dot.gov","phone":"965-996-9224","gender":"Female","department":"Services","address":"678 Sauthoff Circle","hire_date":"10/16/2017","website":"https://mysql.com","notes":"scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at","status":4,"type":2,"salary":"$2055.21"}, {"id":908,"employee_id":"326145281-1","first_name":"Hiram","last_name":"Server","email":"hserverp7@e-recht24.de","phone":"713-883-2136","gender":"Male","department":"Legal","address":"647 Crowley Road","hire_date":"9/7/2017","website":"http://pagesperso-orange.fr","notes":"ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing","status":4,"type":2,"salary":"$1835.86"}, {"id":909,"employee_id":"822859393-7","first_name":"Olin","last_name":"Blanpein","email":"oblanpeinp8@desdev.cn","phone":"330-588-2934","gender":"Male","department":"Sales","address":"2 Merry Avenue","hire_date":"9/28/2017","website":"https://altervista.org","notes":"pede lobortis ligula sit amet eleifend pede libero quis orci nullam molestie nibh in","status":1,"type":3,"salary":"$1559.85"}, {"id":910,"employee_id":"622152688-4","first_name":"Roderic","last_name":"Goldthorpe","email":"rgoldthorpep9@nba.com","phone":"337-140-9491","gender":"Male","department":"Accounting","address":"462 Talmadge Plaza","hire_date":"9/23/2017","website":"http://webs.com","notes":"ut volutpat sapien arcu sed augue aliquam erat volutpat in","status":5,"type":1,"salary":"$2497.67"}, {"id":911,"employee_id":"081619141-7","first_name":"Dimitri","last_name":"Birkmyre","email":"dbirkmyrepa@surveymonkey.com","phone":"342-895-5184","gender":"Male","department":"Accounting","address":"0 Mcbride Park","hire_date":"8/27/2017","website":"http://ow.ly","notes":"non velit donec diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus","status":2,"type":3,"salary":"$281.75"}, {"id":912,"employee_id":"782208639-1","first_name":"Riobard","last_name":"Beatey","email":"rbeateypb@blog.com","phone":"162-210-1893","gender":"Male","department":"Accounting","address":"9 Green Ridge Alley","hire_date":"2/22/2018","website":"https://bing.com","notes":"in faucibus orci luctus et ultrices posuere cubilia curae donec","status":1,"type":2,"salary":"$1265.73"}, {"id":913,"employee_id":"660920982-0","first_name":"Natalya","last_name":"Hinze","email":"nhinzepc@angelfire.com","phone":"732-647-5264","gender":"Female","department":"Legal","address":"7 Larry Park","hire_date":"12/1/2017","website":"https://weibo.com","notes":"volutpat eleifend donec ut dolor morbi vel lectus in quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit amet","status":4,"type":2,"salary":"$1530.93"}, {"id":914,"employee_id":"432319797-7","first_name":"Chickie","last_name":"Mounfield","email":"cmounfieldpd@nba.com","phone":"560-730-2512","gender":"Female","department":"Training","address":"51236 Holy Cross Trail","hire_date":"10/28/2017","website":"https://shutterfly.com","notes":"convallis nunc proin at turpis a pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut ultrices","status":5,"type":1,"salary":"$2235.54"}, {"id":915,"employee_id":"406004760-0","first_name":"See","last_name":"Jeenes","email":"sjeenespe@arizona.edu","phone":"268-712-4165","gender":"Male","department":"Engineering","address":"230 Nova Street","hire_date":"10/20/2017","website":"https://goo.gl","notes":"sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis","status":2,"type":3,"salary":"$1222.20"}, {"id":916,"employee_id":"047059394-6","first_name":"Vassili","last_name":"Capener","email":"vcapenerpf@t.co","phone":"986-924-0785","gender":"Male","department":"Human Resources","address":"61178 Scofield Trail","hire_date":"8/25/2017","website":"https://washingtonpost.com","notes":"cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a feugiat et","status":5,"type":3,"salary":"$1949.74"}, {"id":917,"employee_id":"180396440-5","first_name":"Bill","last_name":"Larvent","email":"blarventpg@naver.com","phone":"529-947-5325","gender":"Male","department":"Business Development","address":"44 Hansons Park","hire_date":"8/30/2017","website":"https://hud.gov","notes":"eget congue eget semper rutrum nulla nunc purus phasellus in felis donec semper sapien a libero nam dui proin","status":4,"type":2,"salary":"$841.10"}, {"id":918,"employee_id":"283546824-2","first_name":"Basile","last_name":"Digges","email":"bdiggesph@myspace.com","phone":"206-710-6581","gender":"Male","department":"Research and Development","address":"083 Hanson Avenue","hire_date":"1/18/2018","website":"http://simplemachines.org","notes":"sed magna at nunc commodo placerat praesent blandit nam nulla integer pede","status":2,"type":2,"salary":"$586.02"}, {"id":919,"employee_id":"347048793-6","first_name":"Nissy","last_name":"Di Boldi","email":"ndiboldipi@state.gov","phone":"166-264-1516","gender":"Female","department":"Legal","address":"92 Dixon Center","hire_date":"8/14/2017","website":"https://domainmarket.com","notes":"duis consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel lectus in quam fringilla rhoncus mauris enim","status":2,"type":2,"salary":"$1528.40"}, {"id":920,"employee_id":"954552593-2","first_name":"Fraze","last_name":"Zamora","email":"fzamorapj@google.nl","phone":"149-538-9076","gender":"Male","department":"Human Resources","address":"4 Linden Trail","hire_date":"1/19/2018","website":"http://theglobeandmail.com","notes":"orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi","status":6,"type":2,"salary":"$1091.36"}, {"id":921,"employee_id":"120102828-0","first_name":"Cecilla","last_name":"Gorrie","email":"cgorriepk@auda.org.au","phone":"513-939-0970","gender":"Female","department":"Product Management","address":"384 Clarendon Center","hire_date":"1/20/2018","website":"https://economist.com","notes":"consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel","status":1,"type":1,"salary":"$525.41"}, {"id":922,"employee_id":"920174569-9","first_name":"Annalise","last_name":"Kerins","email":"akerinspl@surveymonkey.com","phone":"545-661-7432","gender":"Female","department":"Marketing","address":"6522 Reindahl Plaza","hire_date":"8/3/2017","website":"https://wordpress.com","notes":"morbi odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet","status":3,"type":3,"salary":"$905.14"}, {"id":923,"employee_id":"784253584-1","first_name":"Lamar","last_name":"Livingston","email":"llivingstonpm@mail.ru","phone":"709-300-9506","gender":"Male","department":"Services","address":"18117 Reindahl Junction","hire_date":"1/13/2018","website":"http://dagondesign.com","notes":"rhoncus mauris enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa","status":4,"type":3,"salary":"$2443.20"}, {"id":924,"employee_id":"988584613-1","first_name":"Helaina","last_name":"Alenov","email":"halenovpn@4shared.com","phone":"572-441-0032","gender":"Female","department":"Services","address":"469 Manitowish Center","hire_date":"5/10/2018","website":"http://foxnews.com","notes":"placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros","status":4,"type":1,"salary":"$560.67"}, {"id":925,"employee_id":"049938321-4","first_name":"Brocky","last_name":"Tuite","email":"btuitepo@gmpg.org","phone":"512-393-7521","gender":"Male","department":"Services","address":"408 Fairview Hill","hire_date":"7/1/2018","website":"https://myspace.com","notes":"turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis","status":3,"type":3,"salary":"$2028.73"}, {"id":926,"employee_id":"902267560-2","first_name":"Urbanus","last_name":"Ambrogi","email":"uambrogipp@dailymotion.com","phone":"232-264-1680","gender":"Male","department":"Engineering","address":"0 Thierer Circle","hire_date":"4/3/2018","website":"https://infoseek.co.jp","notes":"amet erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor","status":2,"type":2,"salary":"$1764.44"}, {"id":927,"employee_id":"991397372-4","first_name":"Cissy","last_name":"Anmore","email":"canmorepq@cpanel.net","phone":"202-901-2748","gender":"Female","department":"Human Resources","address":"80876 Amoth Place","hire_date":"9/30/2017","website":"https://taobao.com","notes":"cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum","status":2,"type":2,"salary":"$2243.19"}, {"id":928,"employee_id":"102182510-7","first_name":"Gaven","last_name":"MacTrustey","email":"gmactrusteypr@go.com","phone":"654-262-2808","gender":"Male","department":"Legal","address":"04978 Kensington Alley","hire_date":"2/13/2018","website":"https://ask.com","notes":"eleifend pede libero quis orci nullam molestie nibh in lectus pellentesque at nulla suspendisse potenti cras","status":5,"type":3,"salary":"$2414.43"}, {"id":929,"employee_id":"094556174-1","first_name":"Lawrence","last_name":"Lloyds","email":"llloydsps@sogou.com","phone":"858-645-8381","gender":"Male","department":"Marketing","address":"602 Division Lane","hire_date":"3/2/2018","website":"https://patch.com","notes":"at turpis a pede posuere nonummy integer non velit donec diam","status":2,"type":1,"salary":"$1515.11"}, {"id":930,"employee_id":"391075695-6","first_name":"Kleon","last_name":"Hawket","email":"khawketpt@reference.com","phone":"129-947-4020","gender":"Male","department":"Product Management","address":"4501 Ronald Regan Pass","hire_date":"1/21/2018","website":"http://google.ru","notes":"lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus","status":2,"type":2,"salary":"$1414.43"}, {"id":931,"employee_id":"131408718-5","first_name":"Casar","last_name":"Willers","email":"cwillerspu@example.com","phone":"768-642-6411","gender":"Male","department":"Training","address":"3 Clemons Pass","hire_date":"5/9/2018","website":"https://dyndns.org","notes":"risus dapibus augue vel accumsan tellus nisi eu orci mauris lacinia sapien","status":6,"type":1,"salary":"$396.91"}, {"id":932,"employee_id":"555033377-5","first_name":"Marcia","last_name":"Wasling","email":"mwaslingpv@china.com.cn","phone":"337-344-8789","gender":"Female","department":"Research and Development","address":"4 Merrick Alley","hire_date":"4/27/2018","website":"http://paypal.com","notes":"imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce","status":4,"type":2,"salary":"$640.93"}, {"id":933,"employee_id":"581222296-7","first_name":"Samuel","last_name":"Alenov","email":"salenovpw@moonfruit.com","phone":"348-435-6018","gender":"Male","department":"Marketing","address":"0 Carpenter Point","hire_date":"10/11/2017","website":"http://ihg.com","notes":"nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi","status":6,"type":1,"salary":"$1490.27"}, {"id":934,"employee_id":"778142125-6","first_name":"Auberta","last_name":"Scase","email":"ascasepx@imdb.com","phone":"787-786-1888","gender":"Female","department":"Engineering","address":"39926 Hollow Ridge Center","hire_date":"3/17/2018","website":"https://examiner.com","notes":"bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede","status":2,"type":1,"salary":"$937.82"}, {"id":935,"employee_id":"736149611-3","first_name":"Twila","last_name":"Yousef","email":"tyousefpy@discuz.net","phone":"168-625-3515","gender":"Female","department":"Sales","address":"85 Eggendart Lane","hire_date":"8/4/2017","website":"http://feedburner.com","notes":"aenean fermentum donec ut mauris eget massa tempor convallis nulla neque","status":5,"type":1,"salary":"$2163.57"}, {"id":936,"employee_id":"910688087-8","first_name":"Rhona","last_name":"Skate","email":"rskatepz@discovery.com","phone":"865-106-4351","gender":"Female","department":"Engineering","address":"327 Duke Pass","hire_date":"9/17/2017","website":"http://ucoz.com","notes":"ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit","status":3,"type":2,"salary":"$1706.28"}, {"id":937,"employee_id":"248948482-6","first_name":"Hilario","last_name":"Hefford","email":"hheffordq0@list-manage.com","phone":"190-986-6387","gender":"Male","department":"Support","address":"355 Hallows Center","hire_date":"7/25/2017","website":"http://sina.com.cn","notes":"quam a odio in hac habitasse platea dictumst maecenas ut massa quis","status":6,"type":2,"salary":"$791.03"}, {"id":938,"employee_id":"679369811-7","first_name":"Nomi","last_name":"Gascone","email":"ngasconeq1@simplemachines.org","phone":"116-610-1692","gender":"Female","department":"Product Management","address":"58021 Mesta Drive","hire_date":"3/30/2018","website":"http://people.com.cn","notes":"massa donec dapibus duis at velit eu est congue elementum","status":2,"type":1,"salary":"$1925.68"}, {"id":939,"employee_id":"419630112-6","first_name":"Les","last_name":"Vaar","email":"lvaarq2@oakley.com","phone":"278-817-5498","gender":"Male","department":"Marketing","address":"1564 Sage Point","hire_date":"6/29/2018","website":"http://cam.ac.uk","notes":"integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi","status":5,"type":3,"salary":"$2379.48"}, {"id":940,"employee_id":"975095812-8","first_name":"Melicent","last_name":"Hassell","email":"mhassellq3@networksolutions.com","phone":"617-316-4628","gender":"Female","department":"Legal","address":"2845 Barnett Avenue","hire_date":"2/3/2018","website":"http://ucoz.com","notes":"tortor risus dapibus augue vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero nullam sit","status":4,"type":2,"salary":"$2427.08"}, {"id":941,"employee_id":"312852638-9","first_name":"Breena","last_name":"Scranney","email":"bscranneyq4@gmpg.org","phone":"103-742-8337","gender":"Female","department":"Support","address":"83 Del Mar Street","hire_date":"5/12/2018","website":"http://parallels.com","notes":"integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem","status":3,"type":2,"salary":"$2473.28"}, {"id":942,"employee_id":"664027710-7","first_name":"Mitchel","last_name":"Ashingden","email":"mashingdenq5@jimdo.com","phone":"680-971-9551","gender":"Male","department":"Services","address":"52259 Tomscot Point","hire_date":"11/17/2017","website":"http://globo.com","notes":"cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus","status":1,"type":2,"salary":"$1456.29"}, {"id":943,"employee_id":"669043116-9","first_name":"Diena","last_name":"Kilroy","email":"dkilroyq6@blog.com","phone":"500-474-5258","gender":"Female","department":"Human Resources","address":"0 Rowland Street","hire_date":"4/14/2018","website":"http://goo.gl","notes":"in lectus pellentesque at nulla suspendisse potenti cras in purus","status":2,"type":2,"salary":"$1964.78"}, {"id":944,"employee_id":"231599768-2","first_name":"Birgitta","last_name":"Creedland","email":"bcreedlandq7@shinystat.com","phone":"885-813-9256","gender":"Female","department":"Research and Development","address":"2604 Eastwood Hill","hire_date":"2/7/2018","website":"https://g.co","notes":"adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a","status":3,"type":3,"salary":"$273.43"}, {"id":945,"employee_id":"718392098-4","first_name":"Chelsie","last_name":"Blazeby","email":"cblazebyq8@myspace.com","phone":"455-370-2509","gender":"Female","department":"Engineering","address":"4488 Pennsylvania Hill","hire_date":"6/1/2018","website":"https://oaic.gov.au","notes":"sagittis nam congue risus semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero quis orci nullam","status":1,"type":2,"salary":"$1532.30"}, {"id":946,"employee_id":"730262510-7","first_name":"Kip","last_name":"Yglesias","email":"kyglesiasq9@mediafire.com","phone":"744-205-9308","gender":"Male","department":"Services","address":"2618 Sauthoff Circle","hire_date":"1/8/2018","website":"http://sciencedaily.com","notes":"lorem quisque ut erat curabitur gravida nisi at nibh in hac habitasse","status":3,"type":2,"salary":"$2255.08"}, {"id":947,"employee_id":"409668021-4","first_name":"Arte","last_name":"Mityukov","email":"amityukovqa@simplemachines.org","phone":"662-302-6515","gender":"Male","department":"Product Management","address":"2098 Sage Terrace","hire_date":"4/27/2018","website":"http://angelfire.com","notes":"odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices enim lorem","status":2,"type":3,"salary":"$1715.17"}, {"id":948,"employee_id":"251173974-7","first_name":"Wini","last_name":"Dorian","email":"wdorianqb@netlog.com","phone":"490-887-4082","gender":"Female","department":"Services","address":"93 Milwaukee Parkway","hire_date":"11/10/2017","website":"https://yellowbook.com","notes":"ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel","status":4,"type":2,"salary":"$1795.30"}, {"id":949,"employee_id":"026173862-3","first_name":"Brana","last_name":"Koppes","email":"bkoppesqc@g.co","phone":"968-368-9173","gender":"Female","department":"Human Resources","address":"59 Waubesa Junction","hire_date":"4/9/2018","website":"https://google.es","notes":"curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla quisque arcu libero rutrum ac","status":2,"type":3,"salary":"$679.08"}, {"id":950,"employee_id":"669220838-6","first_name":"Karry","last_name":"Perkins","email":"kperkinsqd@blogspot.com","phone":"484-507-3283","gender":"Female","department":"Business Development","address":"1 Nevada Terrace","hire_date":"7/29/2017","website":"http://issuu.com","notes":"praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit nam nulla integer","status":5,"type":3,"salary":"$1679.37"}, {"id":951,"employee_id":"762086972-7","first_name":"Shepperd","last_name":"Hazlewood","email":"shazlewoodqe@g.co","phone":"311-254-3012","gender":"Male","department":"Accounting","address":"5427 Cardinal Plaza","hire_date":"6/21/2018","website":"https://whitehouse.gov","notes":"sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus","status":3,"type":3,"salary":"$1217.62"}, {"id":952,"employee_id":"418422991-3","first_name":"Sergei","last_name":"Juckes","email":"sjuckesqf@technorati.com","phone":"486-896-2040","gender":"Male","department":"Sales","address":"50 Leroy Avenue","hire_date":"8/14/2017","website":"http://zdnet.com","notes":"vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet lobortis sapien sapien non mi integer ac neque duis bibendum morbi","status":3,"type":2,"salary":"$2488.72"}, {"id":953,"employee_id":"393004703-9","first_name":"Renaldo","last_name":"Pearson","email":"rpearsonqg@adobe.com","phone":"921-422-0993","gender":"Male","department":"Product Management","address":"9 Lighthouse Bay Street","hire_date":"7/18/2018","website":"http://dion.ne.jp","notes":"aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean","status":6,"type":3,"salary":"$970.25"}, {"id":954,"employee_id":"557626711-7","first_name":"Lucila","last_name":"Carles","email":"lcarlesqh@parallels.com","phone":"793-968-2100","gender":"Female","department":"Services","address":"0263 Oriole Park","hire_date":"7/8/2018","website":"https://wufoo.com","notes":"vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus","status":4,"type":1,"salary":"$960.36"}, {"id":955,"employee_id":"172444633-9","first_name":"Tedie","last_name":"Ginnell","email":"tginnellqi@youtu.be","phone":"589-792-0068","gender":"Male","department":"Services","address":"5772 Division Park","hire_date":"8/22/2017","website":"https://nature.com","notes":"eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec euismod scelerisque quam","status":2,"type":1,"salary":"$311.19"}, {"id":956,"employee_id":"037254971-3","first_name":"Carce","last_name":"Sheircliffe","email":"csheircliffeqj@craigslist.org","phone":"623-714-6450","gender":"Male","department":"Support","address":"09 Merry Way","hire_date":"12/20/2017","website":"http://exblog.jp","notes":"imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi","status":1,"type":1,"salary":"$1905.11"}, {"id":957,"employee_id":"007863387-7","first_name":"Mellisa","last_name":"Pentland","email":"mpentlandqk@flavors.me","phone":"631-934-5783","gender":"Female","department":"Services","address":"93095 1st Junction","hire_date":"1/5/2018","website":"http://ycombinator.com","notes":"nunc proin at turpis a pede posuere nonummy integer non velit","status":4,"type":1,"salary":"$839.00"}, {"id":958,"employee_id":"610993337-6","first_name":"Wilden","last_name":"Edinborough","email":"wedinboroughql@lulu.com","phone":"903-407-0431","gender":"Male","department":"Training","address":"71371 Kropf Crossing","hire_date":"12/2/2017","website":"https://comsenz.com","notes":"faucibus cursus urna ut tellus nulla ut erat id mauris vulputate elementum nullam varius nulla facilisi cras non velit","status":5,"type":1,"salary":"$1278.54"}, {"id":959,"employee_id":"311880498-X","first_name":"Marjie","last_name":"Hanssmann","email":"mhanssmannqm@myspace.com","phone":"718-670-6224","gender":"Female","department":"Marketing","address":"9 Sunbrook Place","hire_date":"8/30/2017","website":"http://ucoz.ru","notes":"convallis nunc proin at turpis a pede posuere nonummy integer non velit donec diam","status":5,"type":3,"salary":"$1962.65"}, {"id":960,"employee_id":"403658203-8","first_name":"Cary","last_name":"Trayford","email":"ctrayfordqn@globo.com","phone":"585-236-7329","gender":"Female","department":"Sales","address":"766 Alpine Avenue","hire_date":"9/27/2017","website":"http://surveymonkey.com","notes":"at nulla suspendisse potenti cras in purus eu magna vulputate","status":2,"type":3,"salary":"$1927.79"}, {"id":961,"employee_id":"871186561-X","first_name":"Dominica","last_name":"Feehely","email":"dfeehelyqo@goo.gl","phone":"418-146-9893","gender":"Female","department":"Product Management","address":"163 Weeping Birch Drive","hire_date":"6/16/2018","website":"http://github.com","notes":"quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum","status":5,"type":3,"salary":"$344.23"}, {"id":962,"employee_id":"464431218-5","first_name":"Ilyssa","last_name":"Van der Hoeven","email":"ivanderhoevenqp@qq.com","phone":"740-535-7157","gender":"Female","department":"Accounting","address":"3 Huxley Point","hire_date":"7/13/2018","website":"https://eventbrite.com","notes":"phasellus id sapien in sapien iaculis congue vivamus metus arcu","status":3,"type":1,"salary":"$2135.61"}, {"id":963,"employee_id":"802727037-5","first_name":"Don","last_name":"Woffinden","email":"dwoffindenqq@kickstarter.com","phone":"815-956-1326","gender":"Male","department":"Marketing","address":"8 Fairview Street","hire_date":"5/3/2018","website":"https://tuttocitta.it","notes":"feugiat et eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam","status":2,"type":1,"salary":"$1928.24"}, {"id":964,"employee_id":"939154702-8","first_name":"Clovis","last_name":"Leindecker","email":"cleindeckerqr@rakuten.co.jp","phone":"581-992-5821","gender":"Female","department":"Business Development","address":"7003 Nova Parkway","hire_date":"3/31/2018","website":"https://simplemachines.org","notes":"nulla sed accumsan felis ut at dolor quis odio consequat varius integer ac leo pellentesque ultrices mattis odio","status":4,"type":1,"salary":"$1101.46"}, {"id":965,"employee_id":"977079512-7","first_name":"Row","last_name":"Curtin","email":"rcurtinqs@pcworld.com","phone":"366-505-1893","gender":"Female","department":"Legal","address":"37626 Butterfield Court","hire_date":"3/12/2018","website":"https://yellowbook.com","notes":"nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan tortor quis turpis","status":3,"type":2,"salary":"$734.46"}, {"id":966,"employee_id":"056387772-3","first_name":"Lesli","last_name":"Northey","email":"lnortheyqt@mediafire.com","phone":"834-818-7685","gender":"Female","department":"Research and Development","address":"1819 Northwestern Place","hire_date":"4/21/2018","website":"https://pagesperso-orange.fr","notes":"nulla ut erat id mauris vulputate elementum nullam varius nulla","status":2,"type":3,"salary":"$1675.32"}, {"id":967,"employee_id":"605313562-3","first_name":"Lamont","last_name":"Bunn","email":"lbunnqu@java.com","phone":"450-703-5969","gender":"Male","department":"Support","address":"75 Dayton Road","hire_date":"5/29/2018","website":"https://adobe.com","notes":"eu sapien cursus vestibulum proin eu mi nulla ac enim","status":5,"type":3,"salary":"$1506.99"}, {"id":968,"employee_id":"343791568-1","first_name":"Steve","last_name":"Pawellek","email":"spawellekqv@usda.gov","phone":"144-500-5254","gender":"Male","department":"Support","address":"1187 Glacier Hill Hill","hire_date":"8/8/2017","website":"https://netvibes.com","notes":"a ipsum integer a nibh in quis justo maecenas rhoncus aliquam","status":2,"type":1,"salary":"$1337.06"}, {"id":969,"employee_id":"520606017-8","first_name":"Ody","last_name":"Casterton","email":"ocastertonqw@goo.ne.jp","phone":"512-527-3787","gender":"Male","department":"Sales","address":"748 Fallview Drive","hire_date":"5/31/2018","website":"https://smh.com.au","notes":"sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum","status":1,"type":2,"salary":"$2356.26"}, {"id":970,"employee_id":"876243880-8","first_name":"Aldus","last_name":"Scrimgeour","email":"ascrimgeourqx@wufoo.com","phone":"851-634-3915","gender":"Male","department":"Engineering","address":"30579 Bunker Hill Point","hire_date":"11/3/2017","website":"https://bluehost.com","notes":"ligula suspendisse ornare consequat lectus in est risus auctor sed tristique","status":1,"type":3,"salary":"$1699.96"}, {"id":971,"employee_id":"680532532-3","first_name":"Addi","last_name":"Haydon","email":"ahaydonqy@acquirethisname.com","phone":"567-229-6507","gender":"Female","department":"Sales","address":"451 Mayer Trail","hire_date":"7/7/2018","website":"https://addtoany.com","notes":"nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac diam cras","status":1,"type":1,"salary":"$804.36"}, {"id":972,"employee_id":"971576765-6","first_name":"Vernen","last_name":"Welbeck","email":"vwelbeckqz@cocolog-nifty.com","phone":"557-652-6455","gender":"Male","department":"Research and Development","address":"02 Pleasure Drive","hire_date":"12/24/2017","website":"https://php.net","notes":"turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a","status":2,"type":1,"salary":"$1893.89"}, {"id":973,"employee_id":"645560109-2","first_name":"Melli","last_name":"Jentzsch","email":"mjentzschr0@livejournal.com","phone":"320-961-5015","gender":"Female","department":"Support","address":"30457 Kings Plaza","hire_date":"7/20/2017","website":"http://yahoo.com","notes":"nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo","status":4,"type":1,"salary":"$601.90"}, {"id":974,"employee_id":"888672351-2","first_name":"Algernon","last_name":"Tweedle","email":"atweedler1@oracle.com","phone":"804-263-5735","gender":"Male","department":"Business Development","address":"978 Dorton Alley","hire_date":"1/31/2018","website":"https://tinyurl.com","notes":"luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis","status":5,"type":1,"salary":"$1415.96"}, {"id":975,"employee_id":"981656239-1","first_name":"Gilly","last_name":"Hallatt","email":"ghallattr2@china.com.cn","phone":"501-263-2764","gender":"Female","department":"Marketing","address":"3836 Anzinger Terrace","hire_date":"4/11/2018","website":"http://taobao.com","notes":"consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum","status":1,"type":2,"salary":"$2471.44"}, {"id":976,"employee_id":"615969001-9","first_name":"Rikki","last_name":"Galley","email":"rgalleyr3@imageshack.us","phone":"130-690-7439","gender":"Female","department":"Business Development","address":"52 Talmadge Hill","hire_date":"10/10/2017","website":"https://jalbum.net","notes":"et ultrices posuere cubilia curae mauris viverra diam vitae quam","status":4,"type":3,"salary":"$1090.85"}, {"id":977,"employee_id":"022321369-1","first_name":"Gaye","last_name":"Ranger","email":"grangerr4@fema.gov","phone":"671-189-2403","gender":"Female","department":"Engineering","address":"35 Donald Junction","hire_date":"2/3/2018","website":"https://g.co","notes":"sed nisl nunc rhoncus dui vel sem sed sagittis nam congue risus semper porta volutpat quam pede lobortis ligula","status":3,"type":2,"salary":"$1481.67"}, {"id":978,"employee_id":"008938404-0","first_name":"Tommie","last_name":"Reace","email":"treacer5@ucla.edu","phone":"786-291-3851","gender":"Female","department":"Business Development","address":"873 Superior Plaza","hire_date":"2/14/2018","website":"https://amazon.de","notes":"metus aenean fermentum donec ut mauris eget massa tempor convallis nulla neque libero convallis eget","status":6,"type":1,"salary":"$1046.10"}, {"id":979,"employee_id":"080841532-8","first_name":"Patti","last_name":"Sirman","email":"psirmanr6@forbes.com","phone":"332-411-3746","gender":"Female","department":"Marketing","address":"19 Nova Plaza","hire_date":"2/8/2018","website":"http://dell.com","notes":"felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc","status":3,"type":2,"salary":"$1291.83"}, {"id":980,"employee_id":"316441122-7","first_name":"Leo","last_name":"Oloshkin","email":"loloshkinr7@wikimedia.org","phone":"924-235-4010","gender":"Male","department":"Business Development","address":"20344 Columbus Plaza","hire_date":"7/15/2018","website":"http://imageshack.us","notes":"vel augue vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia","status":1,"type":2,"salary":"$1299.64"}, {"id":981,"employee_id":"942913030-7","first_name":"Marco","last_name":"Bezemer","email":"mbezemerr8@blogger.com","phone":"739-838-7322","gender":"Male","department":"Business Development","address":"99 Lien Way","hire_date":"4/16/2018","website":"https://rediff.com","notes":"vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus","status":6,"type":3,"salary":"$2186.06"}, {"id":982,"employee_id":"723635281-0","first_name":"Crissy","last_name":"Shoosmith","email":"cshoosmithr9@mediafire.com","phone":"339-935-3368","gender":"Female","department":"Services","address":"649 Bartelt Hill","hire_date":"2/3/2018","website":"http://cnbc.com","notes":"turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a pede posuere","status":1,"type":2,"salary":"$560.64"}, {"id":983,"employee_id":"724639902-X","first_name":"Georgiana","last_name":"Chartre","email":"gchartrera@t-online.de","phone":"772-156-4637","gender":"Female","department":"Business Development","address":"12 Derek Lane","hire_date":"11/6/2017","website":"https://miibeian.gov.cn","notes":"a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id","status":1,"type":3,"salary":"$1125.39"}, {"id":984,"employee_id":"539030881-6","first_name":"Ninetta","last_name":"Thorburn","email":"nthorburnrb@acquirethisname.com","phone":"130-745-1755","gender":"Female","department":"Accounting","address":"9373 High Crossing Pass","hire_date":"2/8/2018","website":"https://wix.com","notes":"eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet erat nulla tempus vivamus","status":5,"type":2,"salary":"$937.40"}, {"id":985,"employee_id":"250191052-4","first_name":"Julietta","last_name":"Canning","email":"jcanningrc@engadget.com","phone":"602-616-3819","gender":"Female","department":"Business Development","address":"6316 Schurz Parkway","hire_date":"6/13/2018","website":"https://reference.com","notes":"quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed","status":2,"type":3,"salary":"$1982.96"}, {"id":986,"employee_id":"090768281-2","first_name":"Cornie","last_name":"Alsop","email":"calsoprd@dropbox.com","phone":"749-584-3743","gender":"Female","department":"Human Resources","address":"02546 Spaight Place","hire_date":"6/24/2018","website":"http://technorati.com","notes":"non mauris morbi non lectus aliquam sit amet diam in magna bibendum","status":4,"type":2,"salary":"$1048.30"}, {"id":987,"employee_id":"438335362-2","first_name":"Linnea","last_name":"Tippin","email":"ltippinre@canalblog.com","phone":"853-711-1666","gender":"Female","department":"Marketing","address":"7331 Emmet Pass","hire_date":"12/30/2017","website":"https://cam.ac.uk","notes":"sapien sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla","status":6,"type":3,"salary":"$1261.24"}, {"id":988,"employee_id":"399525643-0","first_name":"Kathye","last_name":"Vinson","email":"kvinsonrf@rediff.com","phone":"774-672-3524","gender":"Female","department":"Sales","address":"22 Bonner Street","hire_date":"10/7/2017","website":"http://dyndns.org","notes":"integer non velit donec diam neque vestibulum eget vulputate ut ultrices vel","status":5,"type":2,"salary":"$1041.96"}, {"id":989,"employee_id":"425067933-0","first_name":"Kandace","last_name":"Hatter","email":"khatterrg@cafepress.com","phone":"631-169-9684","gender":"Female","department":"Research and Development","address":"709 Lien Road","hire_date":"5/26/2018","website":"https://bloglines.com","notes":"habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec","status":3,"type":3,"salary":"$1450.62"}, {"id":990,"employee_id":"786003350-X","first_name":"Kacie","last_name":"Rowson","email":"krowsonrh@chronoengine.com","phone":"333-530-2269","gender":"Female","department":"Engineering","address":"612 Thackeray Court","hire_date":"7/30/2017","website":"https://odnoklassniki.ru","notes":"nulla integer pede justo lacinia eget tincidunt eget tempus vel pede morbi","status":2,"type":3,"salary":"$552.57"}, {"id":991,"employee_id":"046546123-9","first_name":"Selby","last_name":"Gillimgham","email":"sgillimghamri@house.gov","phone":"469-918-1790","gender":"Male","department":"Accounting","address":"63767 Dwight Avenue","hire_date":"6/20/2018","website":"http://adobe.com","notes":"ut dolor morbi vel lectus in quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit","status":1,"type":2,"salary":"$1425.75"}, {"id":992,"employee_id":"206309950-2","first_name":"Lyon","last_name":"Gravenor","email":"lgravenorrj@ucsd.edu","phone":"807-329-4234","gender":"Male","department":"Support","address":"51713 Dorton Terrace","hire_date":"1/10/2018","website":"https://list-manage.com","notes":"sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci","status":1,"type":1,"salary":"$1735.57"}, {"id":993,"employee_id":"444851642-3","first_name":"Lynnell","last_name":"Drewes","email":"ldrewesrk@census.gov","phone":"540-267-8327","gender":"Female","department":"Legal","address":"0 Coolidge Drive","hire_date":"11/26/2017","website":"http://weibo.com","notes":"in est risus auctor sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis","status":3,"type":3,"salary":"$539.88"}, {"id":994,"employee_id":"085878174-3","first_name":"Alaric","last_name":"Marczyk","email":"amarczykrl@apple.com","phone":"616-684-3991","gender":"Male","department":"Engineering","address":"06514 Hollow Ridge Circle","hire_date":"8/5/2017","website":"https://ftc.gov","notes":"libero convallis eget eleifend luctus ultricies eu nibh quisque id justo sit","status":4,"type":1,"salary":"$2144.32"}, {"id":995,"employee_id":"740945020-7","first_name":"Tallie","last_name":"Keller","email":"tkellerrm@ustream.tv","phone":"678-664-1529","gender":"Male","department":"Product Management","address":"04209 Toban Park","hire_date":"5/20/2018","website":"https://nasa.gov","notes":"libero non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac nulla sed vel enim sit amet nunc","status":4,"type":1,"salary":"$2263.14"}, {"id":996,"employee_id":"796497559-5","first_name":"Buiron","last_name":"Alsina","email":"balsinarn@amazon.de","phone":"643-351-2865","gender":"Male","department":"Accounting","address":"522 Marcy Center","hire_date":"6/2/2018","website":"http://google.es","notes":"ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa id","status":3,"type":1,"salary":"$1306.20"}, {"id":997,"employee_id":"057599692-7","first_name":"Hall","last_name":"Cattell","email":"hcattellro@who.int","phone":"609-612-7472","gender":"Male","department":"Training","address":"9 Autumn Leaf Parkway","hire_date":"1/26/2018","website":"https://google.com","notes":"tortor quis turpis sed ante vivamus tortor duis mattis egestas metus aenean","status":4,"type":2,"salary":"$2065.65"}, {"id":998,"employee_id":"764038753-1","first_name":"Orton","last_name":"Davie","email":"odavierp@sbwire.com","phone":"245-526-0063","gender":"Male","department":"Research and Development","address":"4 Bellgrove Parkway","hire_date":"6/15/2018","website":"https://china.com.cn","notes":"a pede posuere nonummy integer non velit donec diam neque","status":4,"type":1,"salary":"$1616.21"}, {"id":999,"employee_id":"447607191-0","first_name":"Hortense","last_name":"Robez","email":"hrobezrq@tripadvisor.com","phone":"362-207-0143","gender":"Female","department":"Marketing","address":"657 Victoria Drive","hire_date":"3/16/2018","website":"http://eventbrite.com","notes":"ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci pede venenatis","status":3,"type":2,"salary":"$2095.85"}, {"id":1000,"employee_id":"588935146-X","first_name":"Cosette","last_name":"Jonson","email":"cjonsonrr@dailymotion.com","phone":"188-171-1078","gender":"Female","department":"Research and Development","address":"2372 Myrtle Drive","hire_date":"9/22/2017","website":"http://hugedomains.com","notes":"erat volutpat in congue etiam justo etiam pretium iaculis justo","status":5,"type":1,"salary":"$550.38"}]'),a=$("#kt_datatable_modal_2"),t=$("#kt_datatable_2").KTDatatable({data:{type:"local",source:e,pageSize:10},layout:{scroll:!0,height:400,minHeight:400,footer:!1},sortable:!0,pagination:!0,search:{input:a.find("#kt_datatable_search_query_3"),key:"generalSearch"},columns:[{field:"id",title:"#",sortable:!1,width:20,type:"number",selector:{class:""},textAlign:"center"},{field:"employee_id",title:"Employee ID"},{field:"name",title:"Name",template:function(e){return e.first_name+" "+e.last_name}},{field:"hire_date",title:"Hire Date",type:"date",format:"MM/DD/YYYY"},{field:"gender",title:"Gender"},{field:"status",title:"Status",template:function(e){var a={1:{title:"Pending",class:"label-light-primary"},2:{title:"Delivered",class:" label-light-success"},3:{title:"Canceled",class:" label-light-primary"},4:{title:"Success",class:" label-light-success"},5:{title:"Info",class:" label-light-info"},6:{title:"Danger",class:" label-light-danger"},7:{title:"Warning",class:" label-light-warning"}};return''+a[e.status].title+""}},{field:"type",title:"Type",autoHide:!1,template:function(e){var a={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"accent"}};return''+a[e.type].title+""}},{field:"Actions",title:"Actions",sortable:!1,width:125,overflow:"visible",autoHide:!1,template:function(){return'
'}}]}),$("#kt_datatable_search_status").on("change",function(){t.search($(this).val().toLowerCase(),"Status")}),$("#kt_datatable_search_type").on("change",function(){t.search($(this).val().toLowerCase(),"Type")}),$("#kt_datatable_search_status, #kt_datatable_search_type").selectpicker()}};jQuery(document).ready(function(){KTDatatableJsonRemoteDemo.init()});
\ No newline at end of file
diff --git a/public/assets/js/pages/crud/ktdatatable/base/data-local.js b/public/assets/js/pages/crud/ktdatatable/base/data-local.js
new file mode 100644
index 0000000..42af433
--- /dev/null
+++ b/public/assets/js/pages/crud/ktdatatable/base/data-local.js
@@ -0,0 +1,330 @@
+'use strict';
+// Class definition
+
+var KTDatatableDataLocalDemo = function() {
+ // Private functions
+
+ // demo initializer
+ var demo = function() {
+ var dataJSONArray = JSON.parse('[{"RecordID":1,"OrderID":"0374-5070","Country":"China","ShipCountry":"CN","ShipCity":"Jiujie","ShipName":"Rempel Inc","ShipAddress":"60310 Schiller Center","CompanyEmail":"cdodman0@wsj.com","CompanyAgent":"Cordi Dodman","CompanyName":"Kris-Wehner","Currency":"CNY","Notes":"sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus","Department":"Kids","Website":"tripadvisor.com","Latitude":39.952319,"Longitude":119.598195,"ShipDate":"8/27/2017","PaymentDate":"2016-09-15 22:18:06","TimeZone":"Asia/Chongqing","TotalPayment":"$336309.10","Status":6,"Type":2,"Actions":null},\n' +
+ '{"RecordID":2,"OrderID":"63868-257","Country":"Philippines","ShipCountry":"PH","ShipCity":"Gibgos","ShipName":"Muller, Leannon and McKenzie","ShipAddress":"26734 Mitchell Drive","CompanyEmail":"kscritch1@google.es","CompanyAgent":"Katrinka Scritch","CompanyName":"Stanton, Friesen and Grant","Currency":"PHP","Notes":"ante vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur","Department":"Tools","Website":"elpais.com","Latitude":13.8503992,"Longitude":123.7585154,"ShipDate":"9/3/2017","PaymentDate":"2016-09-05 16:27:07","TimeZone":"Asia/Manila","TotalPayment":"$786612.37","Status":1,"Type":2,"Actions":null},\n' +
+ '{"RecordID":3,"OrderID":"49288-0815","Country":"Paraguay","ShipCountry":"PY","ShipCity":"General Elizardo Aquino","ShipName":"Fahey, Rosenbaum and Leannon","ShipAddress":"9 Daystar Center","CompanyEmail":"neberlein2@google.ca","CompanyAgent":"Nevin Eberlein","CompanyName":"Cartwright, Hilpert and Hartmann","Currency":"PYG","Notes":"bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris","Department":"Electronics","Website":"bing.com","Latitude":-24.4436327,"Longitude":-56.9014072,"ShipDate":"4/23/2016","PaymentDate":"2016-01-01 08:03:07","TimeZone":"America/Asuncion","TotalPayment":"$216102.85","Status":5,"Type":1,"Actions":null},\n' +
+ '{"RecordID":4,"OrderID":"49288-0039","Country":"Azerbaijan","ShipCountry":"AZ","ShipCity":"Maştağa","ShipName":"Gaylord-Aufderhar","ShipAddress":"68 Bunker Hill Street","CompanyEmail":"sdenge3@discuz.net","CompanyAgent":"Syd Denge","CompanyName":"Bednar-Grant","Currency":"AZN","Notes":"suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus","Department":"Computers","Website":"nbcnews.com","Latitude":40.5329933,"Longitude":50.0035678,"ShipDate":"9/6/2017","PaymentDate":"2016-08-26 05:27:20","TimeZone":"Asia/Baku","TotalPayment":"$555545.40","Status":1,"Type":2,"Actions":null},\n' +
+ '{"RecordID":5,"OrderID":"59762-0009","Country":"Brazil","ShipCountry":"BR","ShipCity":"Corrego Grande","ShipName":"Zemlak-Ward","ShipAddress":"8 Orin Terrace","CompanyEmail":"mtreanor4@histats.com","CompanyAgent":"Mallory Treanor","CompanyName":"Feeney Inc","Currency":"BRL","Notes":"luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat","Department":"Computers","Website":"rediff.com","Latitude":-27.593609,"Longitude":-48.5027406,"ShipDate":"10/28/2017","PaymentDate":"2017-02-20 12:31:25","TimeZone":"America/Sao_Paulo","TotalPayment":"$968744.59","Status":5,"Type":1,"Actions":null},\n' +
+ '{"RecordID":6,"OrderID":"43419-020","Country":"Honduras","ShipCountry":"HN","ShipCity":"San Juan Pueblo","ShipName":"Marvin-D\'Amore","ShipAddress":"660 Riverside Place","CompanyEmail":"lyankishin5@jiathis.com","CompanyAgent":"Lanae Yankishin","CompanyName":"Bechtelar, Wisoky and Homenick","Currency":"HNL","Notes":"tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis","Department":"Beauty","Website":"wordpress.org","Latitude":15.5973118,"Longitude":-87.2145498,"ShipDate":"4/6/2017","PaymentDate":"2017-10-22 02:33:29","TimeZone":"America/Tegucigalpa","TotalPayment":"$1119199.00","Status":5,"Type":3,"Actions":null},\n' +
+ '{"RecordID":7,"OrderID":"33261-641","Country":"China","ShipCountry":"CN","ShipCity":"Yihe","ShipName":"MacGyver, Witting and Gleason","ShipAddress":"757 Daystar Crossing","CompanyEmail":"mmangeot6@harvard.edu","CompanyAgent":"Margy Mangeot","CompanyName":"Towne, MacGyver and Greenholt","Currency":"CNY","Notes":"metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet","Department":"Garden","Website":"huffingtonpost.com","Latitude":23.2196922,"Longitude":113.3138804,"ShipDate":"4/15/2017","PaymentDate":"2016-01-30 06:42:56","TimeZone":"Asia/Chongqing","TotalPayment":"$629781.98","Status":3,"Type":2,"Actions":null},\n' +
+ '{"RecordID":8,"OrderID":"68462-221","Country":"France","ShipCountry":"FR","ShipCity":"Saint-Leu-la-Forêt","ShipName":"Turner-Parisian","ShipAddress":"21390 Golf Course Lane","CompanyEmail":"apolo7@opera.com","CompanyAgent":"Aubree Polo","CompanyName":"Lubowitz Inc","Currency":"EUR","Notes":"blandit nam nulla integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula suspendisse","Department":"Clothing","Website":"dell.com","Latitude":49.0301146,"Longitude":2.2509675,"ShipDate":"6/13/2016","PaymentDate":"2017-03-01 14:18:47","TimeZone":"Europe/Paris","TotalPayment":"$1106347.34","Status":6,"Type":2,"Actions":null},\n' +
+ '{"RecordID":9,"OrderID":"68084-555","Country":"Mexico","ShipCountry":"MX","ShipCity":"Hidalgo","ShipName":"O\'Kon, Heller and Flatley","ShipAddress":"960 Vahlen Avenue","CompanyEmail":"lsneddon8@hugedomains.com","CompanyAgent":"Leif Sneddon","CompanyName":"Larson Inc","Currency":"MXN","Notes":"rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut","Department":"Sports","Website":"ifeng.com","Latitude":20.0910963,"Longitude":-98.7623874,"ShipDate":"11/14/2016","PaymentDate":"2016-09-21 23:32:43","TimeZone":"America/Mexico_City","TotalPayment":"$677621.03","Status":4,"Type":2,"Actions":null},\n' +
+ '{"RecordID":10,"OrderID":"10565-013","Country":"Greece","ShipCountry":"GR","ShipCity":"Emporeío","ShipName":"Gutkowski Group","ShipAddress":"42 Reindahl Court","CompanyEmail":"rjerrold9@ucla.edu","CompanyAgent":"Roy Jerrold","CompanyName":"Hoeger-Waelchi","Currency":"EUR","Notes":"tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed","Department":"Toys","Website":"stumbleupon.com","Latitude":36.3573462,"Longitude":25.4459308,"ShipDate":"8/2/2017","PaymentDate":"2016-10-29 23:25:04","TimeZone":"Europe/Athens","TotalPayment":"$910133.41","Status":6,"Type":1,"Actions":null},\n' +
+ '{"RecordID":11,"OrderID":"68026-422","Country":"United States","ShipCountry":"US","ShipCity":"Cleveland","ShipName":"Gaylord-Parker","ShipAddress":"8072 Waywood Crossing","CompanyEmail":"keffnerta@marketwatch.com","CompanyAgent":"Kane Effnert","CompanyName":"Legros, Oberbrunner and Gleason","Currency":"USD","Notes":"enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis","Department":"Tools","Website":"java.com","Latitude":41.451118,"Longitude":-81.6309078,"ShipDate":"3/11/2017","PaymentDate":"2017-03-17 12:57:30","TimeZone":"America/New_York","TotalPayment":"$936141.99","Status":5,"Type":2,"Actions":null},\n' +
+ '{"RecordID":12,"OrderID":"0264-7780","Country":"Indonesia","ShipCountry":"ID","ShipCity":"Amerta","ShipName":"Braun, Spinka and Haley","ShipAddress":"8 Chive Junction","CompanyEmail":"ecavellb@miibeian.gov.cn","CompanyAgent":"Elwyn Cavell","CompanyName":"Kassulke and Sons","Currency":"IDR","Notes":"aliquet massa id lobortis convallis tortor risus dapibus augue vel accumsan tellus nisi eu","Department":"Clothing","Website":"china.com.cn","Latitude":-6.2629253,"Longitude":106.7826245,"ShipDate":"9/29/2016","PaymentDate":"2017-10-31 02:33:49","TimeZone":"Asia/Jakarta","TotalPayment":"$583287.30","Status":4,"Type":1,"Actions":null},\n' +
+ '{"RecordID":13,"OrderID":"50813-0001","Country":"Tunisia","ShipCountry":"TN","ShipCity":"Kairouan","ShipName":"Kirlin LLC","ShipAddress":"26 West Park","CompanyEmail":"pbacherc@independent.co.uk","CompanyAgent":"Pier Bacher","CompanyName":"Cole-Hamill","Currency":"TND","Notes":"quam a odio in hac habitasse platea dictumst maecenas ut massa","Department":"Clothing","Website":"yellowpages.com","Latitude":35.6759137,"Longitude":10.0919243,"ShipDate":"3/4/2016","PaymentDate":"2017-11-24 17:22:53","TimeZone":"Africa/Tunis","TotalPayment":"$1182339.20","Status":3,"Type":2,"Actions":null},\n' +
+ '{"RecordID":14,"OrderID":"21695-353","Country":"Argentina","ShipCountry":"AR","ShipCity":"Unquillo","ShipName":"Rempel and Sons","ShipAddress":"098 Hagan Crossing","CompanyEmail":"smuckiand@is.gd","CompanyAgent":"Spence Muckian","CompanyName":"Frami Inc","Currency":"ARS","Notes":"elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue vivamus metus arcu","Department":"Grocery","Website":"seesaa.net","Latitude":-31.372506,"Longitude":-64.182416,"ShipDate":"10/4/2017","PaymentDate":"2017-06-13 14:50:30","TimeZone":"America/Argentina/Cordoba","TotalPayment":"$658920.05","Status":3,"Type":2,"Actions":null},\n' +
+ '{"RecordID":15,"OrderID":"63304-791","Country":"Poland","ShipCountry":"PL","ShipCity":"Kąty Wrocławskie","ShipName":"Rodriguez, Lindgren and Collier","ShipAddress":"90016 Susan Place","CompanyEmail":"dgervaisee@buzzfeed.com","CompanyAgent":"Darcy Gervaise","CompanyName":"Bauch LLC","Currency":"PLN","Notes":"sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae","Department":"Movies","Website":"mysql.com","Latitude":51.0309199,"Longitude":16.7675963,"ShipDate":"8/3/2016","PaymentDate":"2017-08-15 01:48:22","TimeZone":"Europe/Warsaw","TotalPayment":"$361414.46","Status":1,"Type":2,"Actions":null},\n' +
+ '{"RecordID":16,"OrderID":"42352-1001","Country":"Azerbaijan","ShipCountry":"AZ","ShipCity":"Saray","ShipName":"Raynor and Sons","ShipAddress":"4 4th Drive","CompanyEmail":"epaffordf@prweb.com","CompanyAgent":"Eli Pafford","CompanyName":"Moen, Walsh and Bednar","Currency":"AZN","Notes":"in consequat ut nulla sed accumsan felis ut at dolor quis odio consequat varius integer ac leo pellentesque","Department":"Health","Website":"wordpress.org","Latitude":40.5323093,"Longitude":49.710366,"ShipDate":"6/13/2017","PaymentDate":"2017-09-17 04:40:17","TimeZone":"Asia/Baku","TotalPayment":"$69543.85","Status":3,"Type":2,"Actions":null},\n' +
+ '{"RecordID":17,"OrderID":"68275-320","Country":"Estonia","ShipCountry":"EE","ShipCity":"Narva-Jõesuu","ShipName":"Emard-Von","ShipAddress":"37 Fremont Lane","CompanyEmail":"yjoriozg@icq.com","CompanyAgent":"Yovonnda Jorioz","CompanyName":"Connelly Group","Currency":"EUR","Notes":"lacus at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros","Department":"Sports","Website":"google.ca","Latitude":59.4609192,"Longitude":28.0395999,"ShipDate":"10/13/2016","PaymentDate":"2016-12-26 09:59:48","TimeZone":"Europe/Tallinn","TotalPayment":"$137265.28","Status":4,"Type":1,"Actions":null},\n' +
+ '{"RecordID":18,"OrderID":"41190-308","Country":"Panama","ShipCountry":"PA","ShipCity":"Puerto Obaldía","ShipName":"Howell Inc","ShipAddress":"8751 Lighthouse Bay Terrace","CompanyEmail":"jsollarsh@seattletimes.com","CompanyAgent":"Judy Sollars","CompanyName":"Johns-Lueilwitz","Currency":"PAB","Notes":"rutrum nulla tellus in sagittis dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat","Department":"Movies","Website":"nationalgeographic.com","Latitude":8.6663907,"Longitude":-77.420826,"ShipDate":"8/1/2016","PaymentDate":"2017-10-05 17:04:04","TimeZone":"America/Bogota","TotalPayment":"$827677.19","Status":2,"Type":2,"Actions":null},\n' +
+ '{"RecordID":19,"OrderID":"51655-802","Country":"Iran","ShipCountry":"IR","ShipCity":"Eyvān","ShipName":"Monahan, Pacocha and Effertz","ShipAddress":"1 Anthes Place","CompanyEmail":"cpericoi@springer.com","CompanyAgent":"Cobbie Perico","CompanyName":"Mosciski-Williamson","Currency":"IRR","Notes":"sit amet eleifend pede libero quis orci nullam molestie nibh in lectus pellentesque at","Department":"Baby","Website":"nymag.com","Latitude":33.8297993,"Longitude":46.3073161,"ShipDate":"11/15/2016","PaymentDate":"2017-12-22 08:07:51","TimeZone":"Asia/Tehran","TotalPayment":"$171018.99","Status":5,"Type":1,"Actions":null},\n' +
+ '{"RecordID":20,"OrderID":"68151-2713","Country":"Costa Rica","ShipCountry":"CR","ShipCity":"Pital","ShipName":"Romaguera-Batz","ShipAddress":"6 Schlimgen Lane","CompanyEmail":"labeauj@mashable.com","CompanyAgent":"Lucretia Abeau","CompanyName":"Vandervort, Lesch and Bins","Currency":"CRC","Notes":"habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum neque","Department":"Clothing","Website":"naver.com","Latitude":10.4492758,"Longitude":-84.2725621,"ShipDate":"4/22/2017","PaymentDate":"2016-10-31 13:12:03","TimeZone":"America/Costa_Rica","TotalPayment":"$444445.05","Status":1,"Type":1,"Actions":null},\n' +
+ '{"RecordID":21,"OrderID":"68382-161","Country":"Japan","ShipCountry":"JP","ShipCity":"Itoman","ShipName":"Kessler, Boyle and Volkman","ShipAddress":"9 Lawn Point","CompanyEmail":"mlinkletk@wp.com","CompanyAgent":"Mireielle Linklet","CompanyName":"Maggio-Friesen","Currency":"JPY","Notes":"venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet","Department":"Computers","Website":"reference.com","Latitude":26.1288392,"Longitude":127.6681281,"ShipDate":"4/26/2017","PaymentDate":"2016-05-13 03:10:54","TimeZone":"Asia/Tokyo","TotalPayment":"$469295.83","Status":5,"Type":3,"Actions":null},\n' +
+ '{"RecordID":22,"OrderID":"51345-061","Country":"Russia","ShipCountry":"RU","ShipCity":"Mirny","ShipName":"Baumbach Group","ShipAddress":"4649 Clarendon Terrace","CompanyEmail":"bbigmorel@nationalgeographic.com","CompanyAgent":"Belita Bigmore","CompanyName":"Rath Group","Currency":"RUB","Notes":"diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam","Department":"Industrial","Website":"tiny.cc","Latitude":62.5412431,"Longitude":113.9960031,"ShipDate":"6/6/2017","PaymentDate":"2017-04-07 03:26:21","TimeZone":"Asia/Yakutsk","TotalPayment":"$1097247.60","Status":4,"Type":1,"Actions":null},\n' +
+ '{"RecordID":23,"OrderID":"33342-072","Country":"Philippines","ShipCountry":"PH","ShipCity":"Lepanto","ShipName":"VonRueden, Satterfield and Pacocha","ShipAddress":"9 Green Way","CompanyEmail":"fdurramm@themeforest.net","CompanyAgent":"Fabio Durram","CompanyName":"Gutkowski-Bartell","Currency":"PHP","Notes":"posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec","Department":"Beauty","Website":"smugmug.com","Latitude":9.3136403,"Longitude":123.3036704,"ShipDate":"6/14/2017","PaymentDate":"2016-08-01 06:55:55","TimeZone":"Asia/Manila","TotalPayment":"$335706.25","Status":1,"Type":2,"Actions":null},\n' +
+ '{"RecordID":24,"OrderID":"0113-0274","Country":"Philippines","ShipCountry":"PH","ShipCity":"Kolambugan","ShipName":"Grady, Barton and Mosciski","ShipAddress":"832 Loftsgordon Court","CompanyEmail":"hheseyn@bandcamp.com","CompanyAgent":"Haskel Hesey","CompanyName":"Brown, Glover and Bednar","Currency":"PHP","Notes":"diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna","Department":"Movies","Website":"apple.com","Latitude":8.1113884,"Longitude":123.8961588,"ShipDate":"10/6/2017","PaymentDate":"2016-10-15 21:51:09","TimeZone":"Asia/Manila","TotalPayment":"$298650.19","Status":1,"Type":1,"Actions":null},\n' +
+ '{"RecordID":25,"OrderID":"60637-013","Country":"Sweden","ShipCountry":"SE","ShipCity":"Vallentuna","ShipName":"Bednar-Wyman","ShipAddress":"9945 Old Gate Way","CompanyEmail":"gdurringtono@fda.gov","CompanyAgent":"Gregorius Durrington","CompanyName":"Haag Inc","Currency":"SEK","Notes":"potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam","Department":"Jewelery","Website":"sbwire.com","Latitude":59.6535297,"Longitude":18.3648033,"ShipDate":"4/28/2017","PaymentDate":"2017-07-19 06:11:51","TimeZone":"Europe/Stockholm","TotalPayment":"$52391.03","Status":5,"Type":1,"Actions":null},\n' +
+ '{"RecordID":26,"OrderID":"0781-5626","Country":"China","ShipCountry":"CN","ShipCity":"Kertai","ShipName":"Weissnat Group","ShipAddress":"0 Shoshone Hill","CompanyEmail":"bdolbyp@comcast.net","CompanyAgent":"Berky Dolby","CompanyName":"Hodkiewicz-Ledner","Currency":"CNY","Notes":"scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis","Department":"Toys","Website":"google.com.hk","Latitude":46.900546,"Longitude":124.214976,"ShipDate":"9/27/2017","PaymentDate":"2016-05-14 03:23:30","TimeZone":"Asia/Harbin","TotalPayment":"$327211.21","Status":2,"Type":2,"Actions":null},\n' +
+ '{"RecordID":27,"OrderID":"10742-8095","Country":"Philippines","ShipCountry":"PH","ShipCity":"Malinta","ShipName":"Powlowski and Sons","ShipAddress":"8569 Laurel Hill","CompanyEmail":"ccollettq@themeforest.net","CompanyAgent":"Cobbie Collett","CompanyName":"Emard Group","Currency":"PHP","Notes":"lobortis sapien sapien non mi integer ac neque duis bibendum morbi non","Department":"Electronics","Website":"newyorker.com","Latitude":14.6925451,"Longitude":120.9653066,"ShipDate":"9/20/2016","PaymentDate":"2016-11-04 21:58:05","TimeZone":"Asia/Manila","TotalPayment":"$111977.88","Status":4,"Type":3,"Actions":null},\n' +
+ '{"RecordID":28,"OrderID":"49288-0426","Country":"Hungary","ShipCountry":"HU","ShipCity":"Budapest","ShipName":"Bahringer-Kautzer","ShipAddress":"532 Donald Street","CompanyEmail":"ssangwiner@bizjournals.com","CompanyAgent":"Sheilakathryn Sangwine","CompanyName":"Morar, Bosco and Rosenbaum","Currency":"HUF","Notes":"in congue etiam justo etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus","Department":"Toys","Website":"vkontakte.ru","Latitude":47.53708,"Longitude":19.127509,"ShipDate":"12/5/2017","PaymentDate":"2017-11-17 07:49:20","TimeZone":"Europe/Budapest","TotalPayment":"$808043.78","Status":2,"Type":2,"Actions":null},\n' +
+ '{"RecordID":29,"OrderID":"59091-2001","Country":"Netherlands","ShipCountry":"NL","ShipCity":"Arnhem","ShipName":"Kreiger, Hermiston and Maggio","ShipAddress":"395 Maple Road","CompanyEmail":"blents@goo.ne.jp","CompanyAgent":"Bernadene Lent","CompanyName":"Heathcote-Lueilwitz","Currency":"EUR","Notes":"in lectus pellentesque at nulla suspendisse potenti cras in purus eu","Department":"Computers","Website":"howstuffworks.com","Latitude":51.9489686,"Longitude":5.8564699,"ShipDate":"7/8/2016","PaymentDate":"2016-05-23 20:05:31","TimeZone":"Europe/Amsterdam","TotalPayment":"$940709.22","Status":6,"Type":2,"Actions":null},\n' +
+ '{"RecordID":30,"OrderID":"63629-1299","Country":"Russia","ShipCountry":"RU","ShipCity":"Naro-Fominsk","ShipName":"Klocko Inc","ShipAddress":"8 Mitchell Way","CompanyEmail":"mrivallantt@nyu.edu","CompanyAgent":"Miquela Rivallant","CompanyName":"Harber-Hyatt","Currency":"RUB","Notes":"mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci pede venenatis non","Department":"Health","Website":"yale.edu","Latitude":55.4211657,"Longitude":36.6585689,"ShipDate":"8/10/2017","PaymentDate":"2017-03-22 16:45:31","TimeZone":"Europe/Moscow","TotalPayment":"$1158882.77","Status":5,"Type":1,"Actions":null},\n' +
+ '{"RecordID":31,"OrderID":"49527-022","Country":"French Polynesia","ShipCountry":"PF","ShipCity":"Anau","ShipName":"Renner, Metz and Kuphal","ShipAddress":"3 4th Road","CompanyEmail":"epickersgillu@mapy.cz","CompanyAgent":"Erie Pickersgill","CompanyName":"Hermiston, Stanton and Weissnat","Currency":"XPF","Notes":"elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in ante vestibulum ante ipsum","Department":"Movies","Website":"canalblog.com","Latitude":-17.3878955,"Longitude":-145.582949,"ShipDate":"8/10/2017","PaymentDate":"2016-01-13 22:56:10","TimeZone":"Pacific/Tahiti","TotalPayment":"$865927.89","Status":2,"Type":1,"Actions":null},\n' +
+ '{"RecordID":32,"OrderID":"44523-535","Country":"Argentina","ShipCountry":"AR","ShipCity":"Palpalá","ShipName":"Sanford Inc","ShipAddress":"397 Mendota Lane","CompanyEmail":"htawsev@desdev.cn","CompanyAgent":"Harriett Tawse","CompanyName":"Zboncak, Hickle and McLaughlin","Currency":"ARS","Notes":"ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed sagittis nam congue risus semper porta","Department":"Games","Website":"theguardian.com","Latitude":-31.4561755,"Longitude":-64.2111608,"ShipDate":"2/16/2017","PaymentDate":"2016-04-21 02:02:40","TimeZone":"America/Argentina/Jujuy","TotalPayment":"$1168618.71","Status":1,"Type":3,"Actions":null},\n' +
+ '{"RecordID":33,"OrderID":"63402-306","Country":"Sweden","ShipCountry":"SE","ShipCity":"Olofström","ShipName":"Zboncak Inc","ShipAddress":"248 Reindahl Alley","CompanyEmail":"rcrafterw@sina.com.cn","CompanyAgent":"Richie Crafter","CompanyName":"Larkin-Armstrong","Currency":"SEK","Notes":"sapien urna pretium nisl ut volutpat sapien arcu sed augue aliquam erat volutpat in congue etiam justo etiam","Department":"Garden","Website":"barnesandnoble.com","Latitude":56.2462038,"Longitude":14.6265298,"ShipDate":"1/29/2016","PaymentDate":"2016-09-30 20:24:13","TimeZone":"Europe/Stockholm","TotalPayment":"$966796.75","Status":3,"Type":1,"Actions":null},\n' +
+ '{"RecordID":34,"OrderID":"63629-3798","Country":"El Salvador","ShipCountry":"SV","ShipCity":"Guaymango","ShipName":"Koelpin-Jast","ShipAddress":"62878 Maple Wood Plaza","CompanyEmail":"yjotchamx@bloglovin.com","CompanyAgent":"Yolanthe Jotcham","CompanyName":"Kohler Inc","Currency":"USD","Notes":"tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus","Department":"Baby","Website":"washington.edu","Latitude":13.748419,"Longitude":-89.8452348,"ShipDate":"11/29/2017","PaymentDate":"2016-05-26 22:12:21","TimeZone":"America/El_Salvador","TotalPayment":"$62449.09","Status":6,"Type":1,"Actions":null},\n' +
+ '{"RecordID":35,"OrderID":"49981-010","Country":"Philippines","ShipCountry":"PH","ShipCity":"Sindangan","ShipName":"Eichmann, Hills and McCullough","ShipAddress":"3201 Katie Street","CompanyEmail":"bwoosnamy@zdnet.com","CompanyAgent":"Barthel Woosnam","CompanyName":"Goodwin and Sons","Currency":"PHP","Notes":"felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel","Department":"Outdoors","Website":"stumbleupon.com","Latitude":8.3104933,"Longitude":122.9938347,"ShipDate":"11/27/2017","PaymentDate":"2016-01-14 10:54:05","TimeZone":"Asia/Manila","TotalPayment":"$320289.72","Status":3,"Type":2,"Actions":null},\n' +
+ '{"RecordID":36,"OrderID":"0023-4383","Country":"Philippines","ShipCountry":"PH","ShipCity":"Tiguha","ShipName":"Schmidt and Sons","ShipAddress":"912 Lyons Street","CompanyEmail":"crayez@kickstarter.com","CompanyAgent":"Christean Raye","CompanyName":"Witting, Lindgren and Kessler","Currency":"PHP","Notes":"non velit donec diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum","Department":"Books","Website":"ft.com","Latitude":7.7151954,"Longitude":123.2089252,"ShipDate":"1/29/2017","PaymentDate":"2016-12-05 19:36:44","TimeZone":"Asia/Manila","TotalPayment":"$922800.64","Status":4,"Type":1,"Actions":null},\n' +
+ '{"RecordID":37,"OrderID":"50988-254","Country":"Philippines","ShipCountry":"PH","ShipCity":"Manila","ShipName":"Glover Inc","ShipAddress":"661 Mesta Crossing","CompanyEmail":"lfronzek10@addtoany.com","CompanyAgent":"Lida Fronzek","CompanyName":"Yundt-Jacobs","Currency":"PHP","Notes":"dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus","Department":"Jewelery","Website":"elegantthemes.com","Latitude":14.3641338,"Longitude":120.9314495,"ShipDate":"12/12/2016","PaymentDate":"2016-08-16 01:47:41","TimeZone":"Asia/Manila","TotalPayment":"$64883.89","Status":6,"Type":2,"Actions":null},\n' +
+ '{"RecordID":38,"OrderID":"68788-9924","Country":"Norway","ShipCountry":"NO","ShipCity":"Kristiansand S","ShipName":"Treutel, Hirthe and Runolfsson","ShipAddress":"2312 Upham Pass","CompanyEmail":"friehm11@army.mil","CompanyAgent":"Fax Riehm","CompanyName":"Schulist Inc","Currency":"NOK","Notes":"fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet","Department":"Computers","Website":"toplist.cz","Latitude":58.1348867,"Longitude":8.006095,"ShipDate":"9/15/2017","PaymentDate":"2016-01-08 14:30:49","TimeZone":"Europe/Oslo","TotalPayment":"$435466.56","Status":2,"Type":2,"Actions":null},\n' +
+ '{"RecordID":39,"OrderID":"31722-500","Country":"Philippines","ShipCountry":"PH","ShipCity":"Salcedo","ShipName":"Larson-Vandervort","ShipAddress":"8 Red Cloud Plaza","CompanyEmail":"tbowry12@statcounter.com","CompanyAgent":"Taddeusz Bowry","CompanyName":"Koelpin Inc","Currency":"PHP","Notes":"massa quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida","Department":"Tools","Website":"youtu.be","Latitude":14.5560877,"Longitude":121.0155081,"ShipDate":"5/4/2017","PaymentDate":"2017-04-18 17:53:19","TimeZone":"Asia/Manila","TotalPayment":"$677626.59","Status":3,"Type":1,"Actions":null},\n' +
+ '{"RecordID":40,"OrderID":"50436-7053","Country":"Poland","ShipCountry":"PL","ShipCity":"Iłowo -Osada","ShipName":"Batz LLC","ShipAddress":"9434 Packers Road","CompanyEmail":"kdunmuir13@ucoz.ru","CompanyAgent":"Kayley Dunmuir","CompanyName":"Lockman-Baumbach","Currency":"PLN","Notes":"faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor","Department":"Garden","Website":"theguardian.com","Latitude":53.1664955,"Longitude":20.2914434,"ShipDate":"2/5/2016","PaymentDate":"2016-04-25 10:48:48","TimeZone":"Europe/Warsaw","TotalPayment":"$123550.24","Status":4,"Type":1,"Actions":null},\n' +
+ '{"RecordID":41,"OrderID":"63736-027","Country":"China","ShipCountry":"CN","ShipCity":"Bazi","ShipName":"Stark-Brown","ShipAddress":"3 Gerald Park","CompanyEmail":"tlotte14@histats.com","CompanyAgent":"Tim Lotte","CompanyName":"Larson Inc","Currency":"CNY","Notes":"pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus","Department":"Garden","Website":"salon.com","Latitude":30.7959602,"Longitude":120.6060568,"ShipDate":"10/21/2016","PaymentDate":"2016-07-23 01:21:17","TimeZone":"Asia/Shanghai","TotalPayment":"$326161.60","Status":4,"Type":2,"Actions":null},\n' +
+ '{"RecordID":42,"OrderID":"54575-228","Country":"China","ShipCountry":"CN","ShipCity":"Dongyang","ShipName":"Effertz LLC","ShipAddress":"7311 Hollow Ridge Trail","CompanyEmail":"smcintee15@google.pl","CompanyAgent":"Sterne McIntee","CompanyName":"Robel, Hegmann and Grimes","Currency":"CNY","Notes":"condimentum curabitur in libero ut massa volutpat convallis morbi odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar","Department":"Garden","Website":"nbcnews.com","Latitude":29.289648,"Longitude":120.241565,"ShipDate":"11/13/2017","PaymentDate":"2017-10-01 15:42:11","TimeZone":"Asia/Chongqing","TotalPayment":"$875336.96","Status":1,"Type":1,"Actions":null},\n' +
+ '{"RecordID":43,"OrderID":"52125-370","Country":"China","ShipCountry":"CN","ShipCity":"Changzheng","ShipName":"Kozey, Roob and Howell","ShipAddress":"3591 Oxford Plaza","CompanyEmail":"tepperson16@dagondesign.com","CompanyAgent":"Thedrick Epperson","CompanyName":"Armstrong, Shields and Osinski","Currency":"CNY","Notes":"vitae nisi nam ultrices libero non mattis pulvinar nulla pede","Department":"Movies","Website":"cloudflare.com","Latitude":31.23285,"Longitude":121.467218,"ShipDate":"3/25/2016","PaymentDate":"2016-04-05 06:38:33","TimeZone":"Asia/Chongqing","TotalPayment":"$89415.23","Status":5,"Type":1,"Actions":null},\n' +
+ '{"RecordID":44,"OrderID":"36987-3290","Country":"South Africa","ShipCountry":"ZA","ShipCity":"Tugela Ferry","ShipName":"Ward, Little and Flatley","ShipAddress":"7627 Sycamore Crossing","CompanyEmail":"pilsley17@nba.com","CompanyAgent":"Patty Ilsley","CompanyName":"Larson-Kunze","Currency":"ZAR","Notes":"nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula","Department":"Health","Website":"wordpress.com","Latitude":-28.7415512,"Longitude":30.461686,"ShipDate":"7/9/2016","PaymentDate":"2017-08-08 07:23:41","TimeZone":"Africa/Johannesburg","TotalPayment":"$12440.25","Status":3,"Type":2,"Actions":null},\n' +
+ '{"RecordID":45,"OrderID":"68737-236","Country":"Russia","ShipCountry":"RU","ShipCity":"Omutninsk","ShipName":"Wisoky-Huels","ShipAddress":"5647 Vahlen Way","CompanyEmail":"apolding18@domainmarket.com","CompanyAgent":"Amandy Polding","CompanyName":"Cronin-Purdy","Currency":"RUB","Notes":"ut nulla sed accumsan felis ut at dolor quis odio consequat varius integer ac leo pellentesque","Department":"Beauty","Website":"dyndns.org","Latitude":58.6772898,"Longitude":52.190142,"ShipDate":"5/31/2016","PaymentDate":"2016-02-19 06:37:37","TimeZone":"Europe/Volgograd","TotalPayment":"$107259.06","Status":2,"Type":1,"Actions":null},\n' +
+ '{"RecordID":46,"OrderID":"54868-5511","Country":"Portugal","ShipCountry":"PT","ShipCity":"Cabeça Gorda","ShipName":"Kilback Group","ShipAddress":"526 Springview Crossing","CompanyEmail":"eroset19@businessweek.com","CompanyAgent":"Estella Roset","CompanyName":"Skiles-McCullough","Currency":"EUR","Notes":"molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque eget nunc","Department":"Books","Website":"squarespace.com","Latitude":39.1955731,"Longitude":-9.263539,"ShipDate":"5/16/2017","PaymentDate":"2017-06-16 22:18:36","TimeZone":"Europe/Lisbon","TotalPayment":"$607759.63","Status":2,"Type":1,"Actions":null},\n' +
+ '{"RecordID":47,"OrderID":"51389-112","Country":"Poland","ShipCountry":"PL","ShipCity":"Lubenia","ShipName":"Pacocha-Wolff","ShipAddress":"4 Reindahl Hill","CompanyEmail":"ssanderson1a@sciencedaily.com","CompanyAgent":"Stillman Sanderson","CompanyName":"Kub LLC","Currency":"PLN","Notes":"luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet lobortis sapien","Department":"Music","Website":"istockphoto.com","Latitude":49.9409133,"Longitude":21.9374619,"ShipDate":"9/5/2016","PaymentDate":"2016-11-01 20:40:41","TimeZone":"Europe/Warsaw","TotalPayment":"$940344.95","Status":5,"Type":2,"Actions":null},\n' +
+ '{"RecordID":48,"OrderID":"53346-1330","Country":"Indonesia","ShipCountry":"ID","ShipCity":"Wonocolo","ShipName":"Hudson and Sons","ShipAddress":"523 Namekagon Trail","CompanyEmail":"lhoyland1b@sphinn.com","CompanyAgent":"Lynn Hoyland","CompanyName":"Mraz-Spinka","Currency":"IDR","Notes":"volutpat convallis morbi odio odio elementum eu interdum eu tincidunt","Department":"Industrial","Website":"examiner.com","Latitude":-7.3198199,"Longitude":112.7420274,"ShipDate":"5/8/2016","PaymentDate":"2017-12-24 00:13:05","TimeZone":"Asia/Jakarta","TotalPayment":"$612744.04","Status":3,"Type":2,"Actions":null},\n' +
+ '{"RecordID":49,"OrderID":"11410-803","Country":"China","ShipCountry":"CN","ShipCity":"Baimajing","ShipName":"Reynolds, Botsford and MacGyver","ShipAddress":"6 Summit Road","CompanyEmail":"estansfield1c@webs.com","CompanyAgent":"Emmalee Stansfield","CompanyName":"Cartwright-Cole","Currency":"CNY","Notes":"posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam","Department":"Home","Website":"bbc.co.uk","Latitude":19.696407,"Longitude":109.218734,"ShipDate":"12/24/2017","PaymentDate":"2016-03-20 19:34:44","TimeZone":"Asia/Chongqing","TotalPayment":"$427176.05","Status":3,"Type":3,"Actions":null},\n' +
+ '{"RecordID":50,"OrderID":"54473-254","Country":"Australia","ShipCountry":"AU","ShipCity":"Sydney","ShipName":"Schroeder-Schulist","ShipAddress":"84 2nd Place","CompanyEmail":"hleyban1d@cocolog-nifty.com","CompanyAgent":"Henrietta Leyban","CompanyName":"Ankunding-Hudson","Currency":"AUD","Notes":"potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur","Department":"Health","Website":"pinterest.com","Latitude":-33.8688197,"Longitude":151.2092955,"ShipDate":"9/6/2016","PaymentDate":"2017-07-30 00:54:38","TimeZone":"Australia/Sydney","TotalPayment":"$269139.08","Status":2,"Type":1,"Actions":null},\n' +
+ '{"RecordID":51,"OrderID":"49967-106","Country":"Indonesia","ShipCountry":"ID","ShipCity":"Margasari","ShipName":"Watsica and Sons","ShipAddress":"2004 Scofield Drive","CompanyEmail":"uruddlesden1e@meetup.com","CompanyAgent":"Ulrike Ruddlesden","CompanyName":"Koch and Sons","Currency":"IDR","Notes":"dui maecenas tristique est et tempus semper est quam pharetra","Department":"Baby","Website":"angelfire.com","Latitude":-7.0976672,"Longitude":109.0215438,"ShipDate":"12/6/2017","PaymentDate":"2016-03-24 02:22:17","TimeZone":"Asia/Jakarta","TotalPayment":"$511041.28","Status":4,"Type":2,"Actions":null},\n' +
+ '{"RecordID":52,"OrderID":"65649-501","Country":"Philippines","ShipCountry":"PH","ShipCity":"Buenavista","ShipName":"Larkin Inc","ShipAddress":"7 Maple Trail","CompanyEmail":"wmancktelow1f@princeton.edu","CompanyAgent":"Wilone Mancktelow","CompanyName":"Marvin Group","Currency":"PHP","Notes":"erat quisque erat eros viverra eget congue eget semper rutrum nulla nunc purus phasellus in","Department":"Health","Website":"tamu.edu","Latitude":8.972681,"Longitude":125.408732,"ShipDate":"8/19/2016","PaymentDate":"2017-06-29 22:18:35","TimeZone":"Asia/Manila","TotalPayment":"$945403.35","Status":5,"Type":2,"Actions":null},\n' +
+ '{"RecordID":53,"OrderID":"11695-1405","Country":"Albania","ShipCountry":"AL","ShipCity":"Rrasa e Sipërme","ShipName":"Smith, Kovacek and Bogan","ShipAddress":"7633 Towne Street","CompanyEmail":"dlees1g@barnesandnoble.com","CompanyAgent":"Deidre Lees","CompanyName":"Sanford, Hoeger and Stanton","Currency":"ALL","Notes":"sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris eget massa tempor","Department":"Grocery","Website":"nationalgeographic.com","Latitude":"40.96778","Longitude":"19.82111","ShipDate":"3/14/2017","PaymentDate":"2016-10-10 16:32:23","TimeZone":"Europe/Tirane","TotalPayment":"$455561.49","Status":2,"Type":2,"Actions":null},\n' +
+ '{"RecordID":54,"OrderID":"68788-6760","Country":"China","ShipCountry":"CN","ShipCity":"Xiaping","ShipName":"Dickinson Group","ShipAddress":"2985 Merry Plaza","CompanyEmail":"mbourne1h@macromedia.com","CompanyAgent":"Malorie Bourne","CompanyName":"Blick-Farrell","Currency":"CNY","Notes":"orci vehicula condimentum curabitur in libero ut massa volutpat convallis","Department":"Computers","Website":"1und1.de","Latitude":27.568278,"Longitude":117.562238,"ShipDate":"8/13/2017","PaymentDate":"2016-09-11 19:00:24","TimeZone":"Asia/Chongqing","TotalPayment":"$147162.27","Status":3,"Type":2,"Actions":null},\n' +
+ '{"RecordID":55,"OrderID":"0268-1441","Country":"China","ShipCountry":"CN","ShipCity":"Zhangjiawan","ShipName":"Welch-Gislason","ShipAddress":"31 Mcbride Place","CompanyEmail":"hgammie1i@globo.com","CompanyAgent":"Horton Gammie","CompanyName":"Hegmann-Hettinger","Currency":"CNY","Notes":"rutrum at lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc","Department":"Music","Website":"yandex.ru","Latitude":31.686188,"Longitude":104.969819,"ShipDate":"5/27/2016","PaymentDate":"2016-08-19 17:30:11","TimeZone":"Asia/Harbin","TotalPayment":"$974736.80","Status":4,"Type":2,"Actions":null},\n' +
+ '{"RecordID":56,"OrderID":"62032-524","Country":"Israel","ShipCountry":"IL","ShipCity":"Ramat Gan","ShipName":"Stokes-Homenick","ShipAddress":"95694 Clove Crossing","CompanyEmail":"fsante1j@php.net","CompanyAgent":"Frannie Sante","CompanyName":"Kerluke, Witting and Zboncak","Currency":"ILS","Notes":"gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam","Department":"Movies","Website":"deliciousdays.com","Latitude":32.068424,"Longitude":34.824785,"ShipDate":"5/6/2017","PaymentDate":"2016-10-29 15:41:43","TimeZone":"Asia/Jerusalem","TotalPayment":"$939821.62","Status":6,"Type":2,"Actions":null},\n' +
+ '{"RecordID":57,"OrderID":"42291-218","Country":"Yemen","ShipCountry":"YE","ShipCity":"Raydah","ShipName":"Pfannerstill LLC","ShipAddress":"4867 Warner Lane","CompanyEmail":"onazer1k@github.com","CompanyAgent":"Orlando Nazer","CompanyName":"Barton-Mann","Currency":"YER","Notes":"consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo","Department":"Automotive","Website":"nytimes.com","Latitude":15.8161032,"Longitude":44.041335,"ShipDate":"12/6/2017","PaymentDate":"2017-07-15 23:15:32","TimeZone":"Asia/Aden","TotalPayment":"$971056.71","Status":1,"Type":1,"Actions":null},\n' +
+ '{"RecordID":58,"OrderID":"0536-3233","Country":"Indonesia","ShipCountry":"ID","ShipCity":"Krajan Srigonco","ShipName":"Torphy, Bosco and Ortiz","ShipAddress":"8379 Shopko Circle","CompanyEmail":"platliff1l@theatlantic.com","CompanyAgent":"Pavel Latliff","CompanyName":"Feil, Mante and Becker","Currency":"IDR","Notes":"sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien","Department":"Garden","Website":"angelfire.com","Latitude":"-8.3418","Longitude":"112.5618","ShipDate":"3/10/2016","PaymentDate":"2017-03-06 12:26:09","TimeZone":"Asia/Jakarta","TotalPayment":"$1176948.84","Status":2,"Type":1,"Actions":null},\n' +
+ '{"RecordID":59,"OrderID":"0143-1265","Country":"Indonesia","ShipCountry":"ID","ShipCity":"Panggungasri","ShipName":"Schiller LLC","ShipAddress":"75 Barnett Crossing","CompanyEmail":"bpackwood1m@salon.com","CompanyAgent":"Benetta Packwood","CompanyName":"Zboncak-Hettinger","Currency":"IDR","Notes":"lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa quis augue","Department":"Music","Website":"issuu.com","Latitude":-8.2182795,"Longitude":112.2950314,"ShipDate":"7/7/2017","PaymentDate":"2017-09-23 10:42:52","TimeZone":"Asia/Jakarta","TotalPayment":"$214315.57","Status":3,"Type":2,"Actions":null},\n' +
+ '{"RecordID":60,"OrderID":"64980-119","Country":"Macedonia","ShipCountry":"MK","ShipCity":"Јегуновце","ShipName":"Hyatt, Kovacek and Schulist","ShipAddress":"1562 Mesta Center","CompanyEmail":"mcolliar1n@hugedomains.com","CompanyAgent":"Merilee Colliar","CompanyName":"Moore, Toy and McCullough","Currency":"MKD","Notes":"turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi","Department":"Tools","Website":"craigslist.org","Latitude":42.0733374,"Longitude":21.1202878,"ShipDate":"2/3/2017","PaymentDate":"2016-05-12 12:43:48","TimeZone":"Europe/Skopje","TotalPayment":"$526035.07","Status":2,"Type":2,"Actions":null},\n' +
+ '{"RecordID":61,"OrderID":"0363-0198","Country":"Philippines","ShipCountry":"PH","ShipCity":"Nagrumbuan","ShipName":"Hills-Mayert","ShipAddress":"505 Cardinal Drive","CompanyEmail":"epoyner1o@zimbio.com","CompanyAgent":"Ennis Poyner","CompanyName":"Simonis and Sons","Currency":"PHP","Notes":"odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis molestie lorem quisque","Department":"Tools","Website":"mayoclinic.com","Latitude":16.8991985,"Longitude":121.7075195,"ShipDate":"8/30/2017","PaymentDate":"2017-04-05 11:19:31","TimeZone":"Asia/Manila","TotalPayment":"$925471.01","Status":5,"Type":1,"Actions":null},\n' +
+ '{"RecordID":62,"OrderID":"65862-142","Country":"Indonesia","ShipCountry":"ID","ShipCity":"Leuwipicung","ShipName":"Schultz-Cronin","ShipAddress":"306 Beilfuss Parkway","CompanyEmail":"apetherick1p@hatena.ne.jp","CompanyAgent":"Ailyn Petherick","CompanyName":"Dach-Ernser","Currency":"IDR","Notes":"sed tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus","Department":"Garden","Website":"house.gov","Latitude":-7.71725,"Longitude":108.07666,"ShipDate":"3/4/2016","PaymentDate":"2017-01-12 13:27:43","TimeZone":"Asia/Jakarta","TotalPayment":"$300684.83","Status":6,"Type":1,"Actions":null},\n' +
+ '{"RecordID":63,"OrderID":"67510-1561","Country":"Peru","ShipCountry":"PE","ShipCity":"Patambuco","ShipName":"Crist and Sons","ShipAddress":"90561 Superior Parkway","CompanyEmail":"sgasking1q@sun.com","CompanyAgent":"Saba Gasking","CompanyName":"Wisozk-Ratke","Currency":"PEN","Notes":"leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede","Department":"Jewelery","Website":"apple.com","Latitude":-14.27079,"Longitude":-69.567879,"ShipDate":"6/27/2017","PaymentDate":"2017-02-14 05:11:52","TimeZone":"America/Lima","TotalPayment":"$296798.64","Status":5,"Type":2,"Actions":null},\n' +
+ '{"RecordID":64,"OrderID":"67877-169","Country":"Brazil","ShipCountry":"BR","ShipCity":"Sananduva","ShipName":"Koss, Yost and Wintheiser","ShipAddress":"76 Di Loreto Place","CompanyEmail":"kmatitiaho1r@networkadvertising.org","CompanyAgent":"Kelly Matitiaho","CompanyName":"Schuster, Flatley and Ledner","Currency":"BRL","Notes":"hendrerit at vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci eget orci","Department":"Automotive","Website":"squidoo.com","Latitude":-27.950568,"Longitude":-51.8148609,"ShipDate":"9/21/2017","PaymentDate":"2016-04-14 15:50:12","TimeZone":"America/Sao_Paulo","TotalPayment":"$683140.08","Status":4,"Type":2,"Actions":null},\n' +
+ '{"RecordID":65,"OrderID":"13537-402","Country":"Uganda","ShipCountry":"UG","ShipCity":"Pader Palwo","ShipName":"Konopelski, Goyette and Borer","ShipAddress":"34 Charing Cross Junction","CompanyEmail":"dgasperi1s@newsvine.com","CompanyAgent":"Daron Gasperi","CompanyName":"Kuphal Inc","Currency":"UGX","Notes":"curabitur gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam","Department":"Electronics","Website":"com.com","Latitude":2.7798518,"Longitude":33.0057261,"ShipDate":"7/8/2016","PaymentDate":"2016-12-02 10:21:48","TimeZone":"Africa/Kampala","TotalPayment":"$245786.01","Status":2,"Type":2,"Actions":null},\n' +
+ '{"RecordID":66,"OrderID":"48951-8237","Country":"Portugal","ShipCountry":"PT","ShipCity":"Portela","ShipName":"Marks-Batz","ShipAddress":"114 Barnett Avenue","CompanyEmail":"meustes1t@nsw.gov.au","CompanyAgent":"Marketa Eustes","CompanyName":"Kautzer Inc","Currency":"EUR","Notes":"proin leo odio porttitor id consequat in consequat ut nulla sed accumsan","Department":"Outdoors","Website":"paypal.com","Latitude":41.1604713,"Longitude":-7.7452871,"ShipDate":"12/6/2016","PaymentDate":"2016-01-03 07:39:20","TimeZone":"Europe/Lisbon","TotalPayment":"$148246.67","Status":1,"Type":1,"Actions":null},\n' +
+ '{"RecordID":67,"OrderID":"36987-3279","Country":"Spain","ShipCountry":"ES","ShipCity":"Badajoz","ShipName":"Osinski, Nitzsche and Schaden","ShipAddress":"6 Commercial Center","CompanyEmail":"bshowl1u@lycos.com","CompanyAgent":"Bernita Showl","CompanyName":"Jacobson-Brakus","Currency":"EUR","Notes":"odio porttitor id consequat in consequat ut nulla sed accumsan felis ut at dolor quis odio consequat varius","Department":"Movies","Website":"wikimedia.org","Latitude":38.8794495,"Longitude":-6.9706535,"ShipDate":"11/2/2016","PaymentDate":"2016-09-19 10:42:38","TimeZone":"Europe/Madrid","TotalPayment":"$1145811.38","Status":2,"Type":3,"Actions":null},\n' +
+ '{"RecordID":68,"OrderID":"36987-3092","Country":"Belarus","ShipCountry":"BY","ShipCity":"Hlybokaye","ShipName":"Fahey-Jones","ShipAddress":"43 Scott Lane","CompanyEmail":"dohoey1v@sitemeter.com","CompanyAgent":"Danielle O\'Hoey","CompanyName":"Sipes, Schaden and Larkin","Currency":"BYR","Notes":"nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris morbi","Department":"Toys","Website":"joomla.org","Latitude":55.1391321,"Longitude":27.6842905,"ShipDate":"4/12/2017","PaymentDate":"2017-01-03 22:32:16","TimeZone":"Europe/Minsk","TotalPayment":"$1075453.72","Status":3,"Type":3,"Actions":null},\n' +
+ '{"RecordID":69,"OrderID":"17271-503","Country":"Slovenia","ShipCountry":"SI","ShipCity":"Slovenska Bistrica","ShipName":"Padberg, West and Hoeger","ShipAddress":"48462 Jackson Avenue","CompanyEmail":"sstanistrete1w@samsung.com","CompanyAgent":"Susana Stanistrete","CompanyName":"Reinger Inc","Currency":"EUR","Notes":"tortor quis turpis sed ante vivamus tortor duis mattis egestas metus aenean","Department":"Clothing","Website":"people.com.cn","Latitude":46.3919813,"Longitude":15.5727869,"ShipDate":"6/26/2017","PaymentDate":"2016-10-01 11:26:13","TimeZone":"Europe/Ljubljana","TotalPayment":"$1113114.34","Status":4,"Type":1,"Actions":null},\n' +
+ '{"RecordID":70,"OrderID":"49288-0206","Country":"France","ShipCountry":"FR","ShipCity":"Aix-en-Provence","ShipName":"Johnson, Beahan and McCullough","ShipAddress":"8 Bartillon Pass","CompanyEmail":"domrod1x@ihg.com","CompanyAgent":"Denys Omrod","CompanyName":"Dicki and Sons","Currency":"EUR","Notes":"vestibulum proin eu mi nulla ac enim in tempor turpis nec euismod scelerisque quam","Department":"Electronics","Website":"lulu.com","Latitude":43.5190858,"Longitude":5.4431946,"ShipDate":"11/18/2017","PaymentDate":"2016-07-28 12:41:30","TimeZone":"Europe/Paris","TotalPayment":"$264342.99","Status":6,"Type":3,"Actions":null},\n' +
+ '{"RecordID":71,"OrderID":"55312-118","Country":"Belarus","ShipCountry":"BY","ShipCity":"Pyetrykaw","ShipName":"Howell, Swaniawski and Mosciski","ShipAddress":"16514 Glendale Road","CompanyEmail":"pmallall1y@cnet.com","CompanyAgent":"Phillipe Mallall","CompanyName":"Jacobs, Blanda and Dickinson","Currency":"BYR","Notes":"quis lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea dictumst","Department":"Movies","Website":"desdev.cn","Latitude":52.1267722,"Longitude":28.4919521,"ShipDate":"10/13/2017","PaymentDate":"2017-06-17 12:58:28","TimeZone":"Europe/Minsk","TotalPayment":"$366433.13","Status":3,"Type":1,"Actions":null},\n' +
+ '{"RecordID":72,"OrderID":"49035-111","Country":"Brazil","ShipCountry":"BR","ShipCity":"Caieiras","ShipName":"Skiles, Mayert and Huels","ShipAddress":"551 Briar Crest Drive","CompanyEmail":"fmantha1z@usatoday.com","CompanyAgent":"Flinn Mantha","CompanyName":"Zboncak-Dooley","Currency":"BRL","Notes":"justo morbi ut odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices","Department":"Beauty","Website":"wired.com","Latitude":-23.3711864,"Longitude":-46.7575221,"ShipDate":"1/18/2016","PaymentDate":"2016-06-28 10:50:05","TimeZone":"America/Sao_Paulo","TotalPayment":"$623396.37","Status":2,"Type":3,"Actions":null},\n' +
+ '{"RecordID":73,"OrderID":"33261-888","Country":"China","ShipCountry":"CN","ShipCity":"Yicheng","ShipName":"Boyer, Koepp and O\'Hara","ShipAddress":"1 Blue Bill Park Way","CompanyEmail":"mgange20@wix.com","CompanyAgent":"Melodie Gange","CompanyName":"Lemke Inc","Currency":"CNY","Notes":"eros elementum pellentesque quisque porta volutpat erat quisque erat eros","Department":"Garden","Website":"yellowpages.com","Latitude":31.719806,"Longitude":112.257788,"ShipDate":"11/24/2016","PaymentDate":"2017-06-17 19:57:08","TimeZone":"Asia/Chongqing","TotalPayment":"$668062.14","Status":5,"Type":2,"Actions":null},\n' +
+ '{"RecordID":74,"OrderID":"60709-105","Country":"Philippines","ShipCountry":"PH","ShipCity":"Babug","ShipName":"Muller-Rosenbaum","ShipAddress":"69 Northview Parkway","CompanyEmail":"rdabner21@indiatimes.com","CompanyAgent":"Randi Dabner","CompanyName":"Schimmel, Mohr and Kutch","Currency":"PHP","Notes":"eu sapien cursus vestibulum proin eu mi nulla ac enim in","Department":"Sports","Website":"wikimedia.org","Latitude":14.8744012,"Longitude":120.8130073,"ShipDate":"5/21/2017","PaymentDate":"2017-09-15 19:14:19","TimeZone":"Asia/Manila","TotalPayment":"$990135.61","Status":5,"Type":1,"Actions":null},\n' +
+ '{"RecordID":75,"OrderID":"63629-2679","Country":"Finland","ShipCountry":"FI","ShipCity":"Koski Tl","ShipName":"Crona, Halvorson and Larkin","ShipAddress":"0 Vernon Center","CompanyEmail":"ggabbat22@newsvine.com","CompanyAgent":"Ginnie Gabbat","CompanyName":"Bergnaum-Kozey","Currency":"EUR","Notes":"donec quis orci eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio odio","Department":"Jewelery","Website":"newyorker.com","Latitude":60.6569706,"Longitude":23.1385333,"ShipDate":"11/20/2016","PaymentDate":"2017-06-21 16:16:24","TimeZone":"Europe/Helsinki","TotalPayment":"$232536.81","Status":4,"Type":1,"Actions":null},\n' +
+ '{"RecordID":76,"OrderID":"36800-277","Country":"Serbia","ShipCountry":"RS","ShipCity":"Radenka","ShipName":"Hahn LLC","ShipAddress":"0 Erie Plaza","CompanyEmail":"jadnett23@about.com","CompanyAgent":"Josi Adnett","CompanyName":"Schulist-Yost","Currency":"RSD","Notes":"ipsum dolor sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non","Department":"Computers","Website":"google.de","Latitude":44.5847556,"Longitude":21.7503934,"ShipDate":"9/19/2017","PaymentDate":"2017-11-09 17:37:52","TimeZone":"Europe/Belgrade","TotalPayment":"$830071.82","Status":1,"Type":3,"Actions":null},\n' +
+ '{"RecordID":77,"OrderID":"52125-910","Country":"Armenia","ShipCountry":"AM","ShipCity":"Gogaran","ShipName":"Will-Dooley","ShipAddress":"57 Arapahoe Way","CompanyEmail":"nyerill24@rediff.com","CompanyAgent":"Nathanial Yerill","CompanyName":"Rosenbaum Inc","Currency":"AMD","Notes":"volutpat in congue etiam justo etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus","Department":"Baby","Website":"webmd.com","Latitude":40.894048,"Longitude":44.1992229,"ShipDate":"5/24/2017","PaymentDate":"2017-04-15 08:51:50","TimeZone":"Asia/Yerevan","TotalPayment":"$97687.69","Status":5,"Type":3,"Actions":null},\n' +
+ '{"RecordID":78,"OrderID":"24236-120","Country":"France","ShipCountry":"FR","ShipCity":"Mâcon","ShipName":"Okuneva, Metz and Stamm","ShipAddress":"40389 Buell Alley","CompanyEmail":"pbrewin25@timesonline.co.uk","CompanyAgent":"Priscilla Brewin","CompanyName":"Witting-Von","Currency":"EUR","Notes":"sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus","Department":"Movies","Website":"hp.com","Latitude":46.2993504,"Longitude":4.8265786,"ShipDate":"2/5/2016","PaymentDate":"2017-07-02 14:21:54","TimeZone":"Europe/Paris","TotalPayment":"$892539.18","Status":6,"Type":1,"Actions":null},\n' +
+ '{"RecordID":79,"OrderID":"76173-1008","Country":"Pakistan","ShipCountry":"PK","ShipCity":"Kandhkot","ShipName":"Quigley-Halvorson","ShipAddress":"9 1st Alley","CompanyEmail":"ballard26@google.ca","CompanyAgent":"Barbabas Allard","CompanyName":"Kunde-Veum","Currency":"PKR","Notes":"cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros","Department":"Music","Website":"trellian.com","Latitude":28.1771009,"Longitude":68.7257945,"ShipDate":"1/29/2016","PaymentDate":"2017-08-08 19:08:11","TimeZone":"Asia/Karachi","TotalPayment":"$64027.72","Status":6,"Type":2,"Actions":null},\n' +
+ '{"RecordID":80,"OrderID":"41163-146","Country":"China","ShipCountry":"CN","ShipCity":"Dadianzi","ShipName":"Hilll Inc","ShipAddress":"4569 Heath Street","CompanyEmail":"mcassie27@canalblog.com","CompanyAgent":"Marshall Cassie","CompanyName":"Brown-Hudson","Currency":"CNY","Notes":"ut erat id mauris vulputate elementum nullam varius nulla facilisi cras","Department":"Toys","Website":"tripadvisor.com","Latitude":43.661922,"Longitude":128.500964,"ShipDate":"3/5/2016","PaymentDate":"2016-02-25 11:11:16","TimeZone":"Asia/Harbin","TotalPayment":"$620902.30","Status":2,"Type":2,"Actions":null},\n' +
+ '{"RecordID":81,"OrderID":"68084-198","Country":"Philippines","ShipCountry":"PH","ShipCity":"Pagatin","ShipName":"Nikolaus, Zulauf and Gutkowski","ShipAddress":"70 Coolidge Hill","CompanyEmail":"wferneley28@studiopress.com","CompanyAgent":"William Ferneley","CompanyName":"Adams, Macejkovic and Little","Currency":"PHP","Notes":"sit amet nulla quisque arcu libero rutrum ac lobortis vel dapibus at diam nam tristique tortor","Department":"Jewelery","Website":"netvibes.com","Latitude":6.7640051,"Longitude":124.3754414,"ShipDate":"10/4/2017","PaymentDate":"2016-10-19 03:43:03","TimeZone":"Asia/Manila","TotalPayment":"$33879.28","Status":2,"Type":3,"Actions":null},\n' +
+ '{"RecordID":82,"OrderID":"60512-1043","Country":"Portugal","ShipCountry":"PT","ShipCity":"Cimo de Vila","ShipName":"Cole-Daniel","ShipAddress":"08329 Marcy Trail","CompanyEmail":"jjallin29@latimes.com","CompanyAgent":"Josy Jallin","CompanyName":"Osinski LLC","Currency":"EUR","Notes":"pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet lobortis sapien sapien","Department":"Grocery","Website":"imgur.com","Latitude":41.3389801,"Longitude":-8.1591621,"ShipDate":"8/23/2017","PaymentDate":"2016-11-17 23:27:10","TimeZone":"Europe/Lisbon","TotalPayment":"$45465.01","Status":5,"Type":1,"Actions":null},\n' +
+ '{"RecordID":83,"OrderID":"21695-139","Country":"Slovenia","ShipCountry":"SI","ShipCity":"Kobarid","ShipName":"Wuckert-Corkery","ShipAddress":"9576 Russell Alley","CompanyEmail":"tbuxton2a@seesaa.net","CompanyAgent":"Tomasine Buxton","CompanyName":"Schaefer-Smith","Currency":"EUR","Notes":"in faucibus orci luctus et ultrices posuere cubilia curae duis","Department":"Books","Website":"fda.gov","Latitude":46.2476549,"Longitude":13.5791749,"ShipDate":"4/27/2017","PaymentDate":"2016-02-14 15:10:51","TimeZone":"Europe/Rome","TotalPayment":"$271185.36","Status":3,"Type":3,"Actions":null},\n' +
+ '{"RecordID":84,"OrderID":"0228-3003","Country":"Dominican Republic","ShipCountry":"DO","ShipCity":"Bajos de Haina","ShipName":"Grady-Connelly","ShipAddress":"2079 Larry Way","CompanyEmail":"cpaskerful2b@i2i.jp","CompanyAgent":"Cairistiona Paskerful","CompanyName":"Wiegand and Sons","Currency":"DOP","Notes":"habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum justo","Department":"Computers","Website":"china.com.cn","Latitude":18.4091399,"Longitude":-70.031039,"ShipDate":"11/14/2016","PaymentDate":"2017-11-01 16:40:06","TimeZone":"America/Santo_Domingo","TotalPayment":"$612602.70","Status":2,"Type":1,"Actions":null},\n' +
+ '{"RecordID":85,"OrderID":"36800-124","Country":"Mexico","ShipCountry":"MX","ShipCity":"El Rosario","ShipName":"Rogahn Group","ShipAddress":"5332 Cambridge Way","CompanyEmail":"gboggis2c@sbwire.com","CompanyAgent":"Godwin Boggis","CompanyName":"Cartwright, Mante and Kris","Currency":"MXN","Notes":"ut massa quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur","Department":"Automotive","Website":"flickr.com","Latitude":30.059549,"Longitude":-115.725753,"ShipDate":"1/13/2016","PaymentDate":"2016-01-24 18:48:06","TimeZone":"America/Mexico_City","TotalPayment":"$1014910.05","Status":5,"Type":2,"Actions":null},\n' +
+ '{"RecordID":86,"OrderID":"59746-175","Country":"Philippines","ShipCountry":"PH","ShipCity":"Concepcion","ShipName":"Tromp, Wisozk and Stiedemann","ShipAddress":"74705 Oakridge Point","CompanyEmail":"khayzer2d@marriott.com","CompanyAgent":"Kirbie Hayzer","CompanyName":"Nicolas-Bayer","Currency":"PHP","Notes":"commodo vulputate justo in blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing","Department":"Computers","Website":"issuu.com","Latitude":14.6688068,"Longitude":121.1138058,"ShipDate":"5/20/2016","PaymentDate":"2017-03-14 05:05:26","TimeZone":"Asia/Manila","TotalPayment":"$201601.94","Status":2,"Type":1,"Actions":null},\n' +
+ '{"RecordID":87,"OrderID":"0268-1481","Country":"Palestinian Territory","ShipCountry":"PS","ShipCity":"‘Aşīrah al Qiblīyah","ShipName":"Morissette Inc","ShipAddress":"4339 Armistice Circle","CompanyEmail":"cgresley2e@wsj.com","CompanyAgent":"Cherlyn Gresley","CompanyName":"Langosh, Kris and Ernser","Currency":"ILS","Notes":"sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus dapibus augue vel","Department":"Jewelery","Website":"google.co.uk","Latitude":"32.17842","Longitude":"35.21569","ShipDate":"4/2/2016","PaymentDate":"2017-01-21 06:18:17","TimeZone":"Asia/Hebron","TotalPayment":"$435115.69","Status":3,"Type":3,"Actions":null},\n' +
+ '{"RecordID":88,"OrderID":"58411-157","Country":"China","ShipCountry":"CN","ShipCity":"Baisha","ShipName":"Morissette-Schoen","ShipAddress":"2 Menomonie Terrace","CompanyEmail":"hshorto2f@imdb.com","CompanyAgent":"Horatio Shorto","CompanyName":"Lueilwitz-Cole","Currency":"CNY","Notes":"vestibulum velit id pretium iaculis diam erat fermentum justo nec","Department":"Sports","Website":"about.me","Latitude":26.641315,"Longitude":100.222545,"ShipDate":"9/11/2017","PaymentDate":"2017-03-30 06:17:36","TimeZone":"Asia/Chongqing","TotalPayment":"$428954.11","Status":1,"Type":1,"Actions":null},\n' +
+ '{"RecordID":89,"OrderID":"54569-6438","Country":"Portugal","ShipCountry":"PT","ShipCity":"Brejieira","ShipName":"Nikolaus-Lesch","ShipAddress":"1 Union Park","CompanyEmail":"lcrayden2g@multiply.com","CompanyAgent":"Lorrin Crayden","CompanyName":"Price Group","Currency":"EUR","Notes":"ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et","Department":"Industrial","Website":"csmonitor.com","Latitude":39.764261,"Longitude":-8.7386338,"ShipDate":"9/17/2016","PaymentDate":"2017-05-24 15:56:55","TimeZone":"Europe/Lisbon","TotalPayment":"$101625.67","Status":3,"Type":3,"Actions":null},\n' +
+ '{"RecordID":90,"OrderID":"64720-141","Country":"China","ShipCountry":"CN","ShipCity":"Xiangtan","ShipName":"Wilderman and Sons","ShipAddress":"54779 Talisman Pass","CompanyEmail":"mlilburn2h@fotki.com","CompanyAgent":"Marci Lilburn","CompanyName":"Hackett-Olson","Currency":"CNY","Notes":"hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante","Department":"Electronics","Website":"microsoft.com","Latitude":27.829795,"Longitude":112.944026,"ShipDate":"7/2/2017","PaymentDate":"2016-11-02 16:08:14","TimeZone":"Asia/Chongqing","TotalPayment":"$453268.63","Status":5,"Type":2,"Actions":null},\n' +
+ '{"RecordID":91,"OrderID":"53145-059","Country":"Brazil","ShipCountry":"BR","ShipCity":"Penedo","ShipName":"Torp, Brekke and Mitchell","ShipAddress":"994 Heffernan Alley","CompanyEmail":"gsoaper2i@dailymotion.com","CompanyAgent":"Giavani Soaper","CompanyName":"Pfeffer, Harber and Hintz","Currency":"BRL","Notes":"et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor","Department":"Electronics","Website":"prnewswire.com","Latitude":-10.2735517,"Longitude":-36.5536172,"ShipDate":"6/26/2017","PaymentDate":"2017-08-01 21:21:10","TimeZone":"America/Maceio","TotalPayment":"$461213.42","Status":2,"Type":1,"Actions":null},\n' +
+ '{"RecordID":92,"OrderID":"57520-0396","Country":"China","ShipCountry":"CN","ShipCity":"Wanshi","ShipName":"Lockman-Davis","ShipAddress":"75440 Loftsgordon Avenue","CompanyEmail":"kgowenlock2j@a8.net","CompanyAgent":"Karine Gowenlock","CompanyName":"Kirlin, Goldner and Upton","Currency":"CNY","Notes":"posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed","Department":"Kids","Website":"behance.net","Latitude":31.471686,"Longitude":119.934764,"ShipDate":"9/11/2017","PaymentDate":"2016-05-06 03:36:46","TimeZone":"Asia/Shanghai","TotalPayment":"$290389.01","Status":5,"Type":3,"Actions":null},\n' +
+ '{"RecordID":93,"OrderID":"24236-184","Country":"Azerbaijan","ShipCountry":"AZ","ShipCity":"Lökbatan","ShipName":"Morissette-Gislason","ShipAddress":"8338 Saint Paul Plaza","CompanyEmail":"tsandon2k@trellian.com","CompanyAgent":"Tallie Sandon","CompanyName":"Herman-Erdman","Currency":"AZN","Notes":"at vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci","Department":"Games","Website":"ebay.co.uk","Latitude":40.3281802,"Longitude":49.7355969,"ShipDate":"9/16/2016","PaymentDate":"2016-12-24 08:27:33","TimeZone":"Asia/Baku","TotalPayment":"$525119.41","Status":3,"Type":1,"Actions":null},\n' +
+ '{"RecordID":94,"OrderID":"11822-9854","Country":"Indonesia","ShipCountry":"ID","ShipCity":"Pasirpanjang","ShipName":"Dietrich-Langworth","ShipAddress":"5 Hollow Ridge Plaza","CompanyEmail":"mtrayhorn2l@sciencedirect.com","CompanyAgent":"Marcos Trayhorn","CompanyName":"Pacocha-Kling","Currency":"IDR","Notes":"justo sollicitudin ut suscipit a feugiat et eros vestibulum ac est","Department":"Sports","Website":"chicagotribune.com","Latitude":0.845865,"Longitude":108.8796091,"ShipDate":"3/27/2016","PaymentDate":"2017-06-08 14:15:50","TimeZone":"Asia/Jakarta","TotalPayment":"$362198.01","Status":4,"Type":3,"Actions":null},\n' +
+ '{"RecordID":95,"OrderID":"49643-120","Country":"Russia","ShipCountry":"RU","ShipCity":"Muchkapskiy","ShipName":"Conn LLC","ShipAddress":"68 5th Drive","CompanyEmail":"fmunford2m@tiny.cc","CompanyAgent":"Francis Munford","CompanyName":"Smith-Stokes","Currency":"RUB","Notes":"tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat","Department":"Beauty","Website":"ox.ac.uk","Latitude":51.8478427,"Longitude":42.4697909,"ShipDate":"9/12/2016","PaymentDate":"2017-01-27 16:06:13","TimeZone":"Europe/Moscow","TotalPayment":"$1001206.62","Status":4,"Type":1,"Actions":null},\n' +
+ '{"RecordID":96,"OrderID":"56062-393","Country":"Guam","ShipCountry":"GU","ShipCity":"Agana Heights Village","ShipName":"Mayer-Cole","ShipAddress":"04373 Golden Leaf Center","CompanyEmail":"ckahler2n@histats.com","CompanyAgent":"Catriona Kahler","CompanyName":"Lynch-Satterfield","Currency":"USD","Notes":"ullamcorper purus sit amet nulla quisque arcu libero rutrum ac lobortis vel dapibus at diam","Department":"Jewelery","Website":"newyorker.com","Latitude":13.4677672,"Longitude":144.7453228,"ShipDate":"7/18/2017","PaymentDate":"2016-06-21 16:10:22","TimeZone":"Pacific/Guam","TotalPayment":"$717532.21","Status":5,"Type":1,"Actions":null},\n' +
+ '{"RecordID":97,"OrderID":"50436-0120","Country":"Dominica","ShipCountry":"DM","ShipCity":"Soufrière","ShipName":"Ernser, Miller and Barton","ShipAddress":"7 Canary Crossing","CompanyEmail":"gkleinplatz2o@naver.com","CompanyAgent":"Giuseppe Kleinplatz","CompanyName":"Denesik-Wyman","Currency":"XCD","Notes":"congue elementum in hac habitasse platea dictumst morbi vestibulum velit id","Department":"Kids","Website":"miibeian.gov.cn","Latitude":15.2338798,"Longitude":-61.3567483,"ShipDate":"12/20/2017","PaymentDate":"2016-08-13 23:06:00","TimeZone":"America/Dominica","TotalPayment":"$630409.34","Status":2,"Type":3,"Actions":null},\n' +
+ '{"RecordID":98,"OrderID":"42507-004","Country":"Mexico","ShipCountry":"MX","ShipCity":"Rancho Nuevo","ShipName":"Borer and Sons","ShipAddress":"424 Birchwood Terrace","CompanyEmail":"lgrinishin2p@hubpages.com","CompanyAgent":"Lucky Grinishin","CompanyName":"O\'Reilly, Block and Goyette","Currency":"MXN","Notes":"mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh","Department":"Tools","Website":"hexun.com","Latitude":22.2222241,"Longitude":-100.9256085,"ShipDate":"12/22/2017","PaymentDate":"2016-04-09 03:07:19","TimeZone":"America/Mexico_City","TotalPayment":"$314052.63","Status":2,"Type":3,"Actions":null},\n' +
+ '{"RecordID":99,"OrderID":"49230-191","Country":"Japan","ShipCountry":"JP","ShipCity":"Yokosuka","ShipName":"White, Legros and Carroll","ShipAddress":"8 Annamark Place","CompanyEmail":"mellse2q@xinhuanet.com","CompanyAgent":"Meade Ellse","CompanyName":"Purdy-Carroll","Currency":"JPY","Notes":"magna ac consequat metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia","Department":"Sports","Website":"abc.net.au","Latitude":34.6830797,"Longitude":137.9865313,"ShipDate":"12/12/2016","PaymentDate":"2016-08-30 12:27:38","TimeZone":"Asia/Tokyo","TotalPayment":"$1127673.96","Status":1,"Type":1,"Actions":null},\n' +
+ '{"RecordID":100,"OrderID":"50865-056","Country":"Honduras","ShipCountry":"HN","ShipCity":"Yuscarán","ShipName":"Anderson, Pfannerstill and Miller","ShipAddress":"116 Bay Way","CompanyEmail":"hensley2r@businessweek.com","CompanyAgent":"Hamil Ensley","CompanyName":"Kessler, Greenfelder and Gaylord","Currency":"HNL","Notes":"nulla ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis","Department":"Kids","Website":"dell.com","Latitude":13.9448964,"Longitude":-86.8508942,"ShipDate":"1/14/2016","PaymentDate":"2016-12-27 22:25:10","TimeZone":"America/Tegucigalpa","TotalPayment":"$386091.31","Status":6,"Type":3,"Actions":null}]');
+
+ var datatable = $('#kt_datatable').KTDatatable({
+ // datasource definition
+ data: {
+ type: 'local',
+ source: dataJSONArray,
+ pageSize: 10,
+ },
+
+ // layout definition
+ layout: {
+ scroll: false, // enable/disable datatable scroll both horizontal and vertical when needed.
+ // height: 450, // datatable's body's fixed height
+ footer: false, // display/hide footer
+ },
+
+ // column sorting
+ sortable: true,
+
+ pagination: true,
+
+ search: {
+ input: $('#kt_datatable_search_query'),
+ key: 'generalSearch'
+ },
+
+ // columns definition
+ columns: [{
+ field: 'RecordID',
+ title: '#',
+ sortable: false,
+ width: 20,
+ type: 'number',
+ selector: {
+ class: ''
+ },
+ textAlign: 'center',
+ }, {
+ field: 'OrderID',
+ title: 'Order ID',
+ }, {
+ field: 'Country',
+ title: 'Country',
+ template: function(row) {
+ return row.Country + ' ' + row.ShipCountry;
+ },
+ }, {
+ field: 'ShipDate',
+ title: 'Ship Date',
+ type: 'date',
+ format: 'MM/DD/YYYY',
+ }, {
+ field: 'CompanyName',
+ title: 'Company Name',
+ }, {
+ field: 'Status',
+ title: 'Status',
+ // callback function support for column rendering
+ template: function(row) {
+ var status = {
+ 1: {
+ 'title': 'Pending',
+ 'class': ' label-light-success'
+ },
+ 2: {
+ 'title': 'Delivered',
+ 'class': ' label-light-danger'
+ },
+ 3: {
+ 'title': 'Canceled',
+ 'class': ' label-light-primary'
+ },
+ 4: {
+ 'title': 'Success',
+ 'class': ' label-light-success'
+ },
+ 5: {
+ 'title': 'Info',
+ 'class': ' label-light-info'
+ },
+ 6: {
+ 'title': 'Danger',
+ 'class': ' label-light-danger'
+ },
+ 7: {
+ 'title': 'Warning',
+ 'class': ' label-light-warning'
+ },
+ };
+ return '' + status[row.Status].title + '';
+ },
+ }, {
+ field: 'Type',
+ title: 'Type',
+ autoHide: false,
+ // callback function support for column rendering
+ template: function(row) {
+ var status = {
+ 1: {
+ 'title': 'Online',
+ 'state': 'danger'
+ },
+ 2: {
+ 'title': 'Retail',
+ 'state': 'primary'
+ },
+ 3: {
+ 'title': 'Direct',
+ 'state': 'success'
+ },
+ };
+ return '' +
+ status[row.Type].title + '';
+ },
+ }, {
+ field: 'Actions',
+ title: 'Actions',
+ sortable: false,
+ width: 125,
+ overflow: 'visible',
+ autoHide: false,
+ template: function() {
+ return '\
+
\
+ \
+ \
+ \
+ \
+ \
+ \
+ \
+ \
+ \
+ \
+ ';
+ },
+ }],
+ });
+
+ $('#kt_datatable_search_status').on('change', function() {
+ datatable.search($(this).val().toLowerCase(), 'Status');
+ });
+
+ $('#kt_datatable_search_type').on('change', function() {
+ datatable.search($(this).val().toLowerCase(), 'Type');
+ });
+
+ $('#kt_datatable_search_status, #kt_datatable_search_type').selectpicker();
+ };
+
+ return {
+ // Public functions
+ init: function() {
+ // init dmeo
+ demo();
+ },
+ };
+}();
+
+jQuery(document).ready(function() {
+ KTDatatableDataLocalDemo.init();
+});
diff --git a/public/assets/js/pages/crud/ktdatatable/base/data-local.min.js b/public/assets/js/pages/crud/ktdatatable/base/data-local.min.js
new file mode 100644
index 0000000..fe6bee5
--- /dev/null
+++ b/public/assets/js/pages/crud/ktdatatable/base/data-local.min.js
@@ -0,0 +1 @@
+"use strict";var KTDatatableDataLocalDemo={init:function(){var e,t;e=JSON.parse('[{"RecordID":1,"OrderID":"0374-5070","Country":"China","ShipCountry":"CN","ShipCity":"Jiujie","ShipName":"Rempel Inc","ShipAddress":"60310 Schiller Center","CompanyEmail":"cdodman0@wsj.com","CompanyAgent":"Cordi Dodman","CompanyName":"Kris-Wehner","Currency":"CNY","Notes":"sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus","Department":"Kids","Website":"tripadvisor.com","Latitude":39.952319,"Longitude":119.598195,"ShipDate":"8/27/2017","PaymentDate":"2016-09-15 22:18:06","TimeZone":"Asia/Chongqing","TotalPayment":"$336309.10","Status":6,"Type":2,"Actions":null},\n{"RecordID":2,"OrderID":"63868-257","Country":"Philippines","ShipCountry":"PH","ShipCity":"Gibgos","ShipName":"Muller, Leannon and McKenzie","ShipAddress":"26734 Mitchell Drive","CompanyEmail":"kscritch1@google.es","CompanyAgent":"Katrinka Scritch","CompanyName":"Stanton, Friesen and Grant","Currency":"PHP","Notes":"ante vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur","Department":"Tools","Website":"elpais.com","Latitude":13.8503992,"Longitude":123.7585154,"ShipDate":"9/3/2017","PaymentDate":"2016-09-05 16:27:07","TimeZone":"Asia/Manila","TotalPayment":"$786612.37","Status":1,"Type":2,"Actions":null},\n{"RecordID":3,"OrderID":"49288-0815","Country":"Paraguay","ShipCountry":"PY","ShipCity":"General Elizardo Aquino","ShipName":"Fahey, Rosenbaum and Leannon","ShipAddress":"9 Daystar Center","CompanyEmail":"neberlein2@google.ca","CompanyAgent":"Nevin Eberlein","CompanyName":"Cartwright, Hilpert and Hartmann","Currency":"PYG","Notes":"bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris","Department":"Electronics","Website":"bing.com","Latitude":-24.4436327,"Longitude":-56.9014072,"ShipDate":"4/23/2016","PaymentDate":"2016-01-01 08:03:07","TimeZone":"America/Asuncion","TotalPayment":"$216102.85","Status":5,"Type":1,"Actions":null},\n{"RecordID":4,"OrderID":"49288-0039","Country":"Azerbaijan","ShipCountry":"AZ","ShipCity":"Maştağa","ShipName":"Gaylord-Aufderhar","ShipAddress":"68 Bunker Hill Street","CompanyEmail":"sdenge3@discuz.net","CompanyAgent":"Syd Denge","CompanyName":"Bednar-Grant","Currency":"AZN","Notes":"suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus","Department":"Computers","Website":"nbcnews.com","Latitude":40.5329933,"Longitude":50.0035678,"ShipDate":"9/6/2017","PaymentDate":"2016-08-26 05:27:20","TimeZone":"Asia/Baku","TotalPayment":"$555545.40","Status":1,"Type":2,"Actions":null},\n{"RecordID":5,"OrderID":"59762-0009","Country":"Brazil","ShipCountry":"BR","ShipCity":"Corrego Grande","ShipName":"Zemlak-Ward","ShipAddress":"8 Orin Terrace","CompanyEmail":"mtreanor4@histats.com","CompanyAgent":"Mallory Treanor","CompanyName":"Feeney Inc","Currency":"BRL","Notes":"luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat","Department":"Computers","Website":"rediff.com","Latitude":-27.593609,"Longitude":-48.5027406,"ShipDate":"10/28/2017","PaymentDate":"2017-02-20 12:31:25","TimeZone":"America/Sao_Paulo","TotalPayment":"$968744.59","Status":5,"Type":1,"Actions":null},\n{"RecordID":6,"OrderID":"43419-020","Country":"Honduras","ShipCountry":"HN","ShipCity":"San Juan Pueblo","ShipName":"Marvin-D\'Amore","ShipAddress":"660 Riverside Place","CompanyEmail":"lyankishin5@jiathis.com","CompanyAgent":"Lanae Yankishin","CompanyName":"Bechtelar, Wisoky and Homenick","Currency":"HNL","Notes":"tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis","Department":"Beauty","Website":"wordpress.org","Latitude":15.5973118,"Longitude":-87.2145498,"ShipDate":"4/6/2017","PaymentDate":"2017-10-22 02:33:29","TimeZone":"America/Tegucigalpa","TotalPayment":"$1119199.00","Status":5,"Type":3,"Actions":null},\n{"RecordID":7,"OrderID":"33261-641","Country":"China","ShipCountry":"CN","ShipCity":"Yihe","ShipName":"MacGyver, Witting and Gleason","ShipAddress":"757 Daystar Crossing","CompanyEmail":"mmangeot6@harvard.edu","CompanyAgent":"Margy Mangeot","CompanyName":"Towne, MacGyver and Greenholt","Currency":"CNY","Notes":"metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet","Department":"Garden","Website":"huffingtonpost.com","Latitude":23.2196922,"Longitude":113.3138804,"ShipDate":"4/15/2017","PaymentDate":"2016-01-30 06:42:56","TimeZone":"Asia/Chongqing","TotalPayment":"$629781.98","Status":3,"Type":2,"Actions":null},\n{"RecordID":8,"OrderID":"68462-221","Country":"France","ShipCountry":"FR","ShipCity":"Saint-Leu-la-Forêt","ShipName":"Turner-Parisian","ShipAddress":"21390 Golf Course Lane","CompanyEmail":"apolo7@opera.com","CompanyAgent":"Aubree Polo","CompanyName":"Lubowitz Inc","Currency":"EUR","Notes":"blandit nam nulla integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula suspendisse","Department":"Clothing","Website":"dell.com","Latitude":49.0301146,"Longitude":2.2509675,"ShipDate":"6/13/2016","PaymentDate":"2017-03-01 14:18:47","TimeZone":"Europe/Paris","TotalPayment":"$1106347.34","Status":6,"Type":2,"Actions":null},\n{"RecordID":9,"OrderID":"68084-555","Country":"Mexico","ShipCountry":"MX","ShipCity":"Hidalgo","ShipName":"O\'Kon, Heller and Flatley","ShipAddress":"960 Vahlen Avenue","CompanyEmail":"lsneddon8@hugedomains.com","CompanyAgent":"Leif Sneddon","CompanyName":"Larson Inc","Currency":"MXN","Notes":"rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut","Department":"Sports","Website":"ifeng.com","Latitude":20.0910963,"Longitude":-98.7623874,"ShipDate":"11/14/2016","PaymentDate":"2016-09-21 23:32:43","TimeZone":"America/Mexico_City","TotalPayment":"$677621.03","Status":4,"Type":2,"Actions":null},\n{"RecordID":10,"OrderID":"10565-013","Country":"Greece","ShipCountry":"GR","ShipCity":"Emporeío","ShipName":"Gutkowski Group","ShipAddress":"42 Reindahl Court","CompanyEmail":"rjerrold9@ucla.edu","CompanyAgent":"Roy Jerrold","CompanyName":"Hoeger-Waelchi","Currency":"EUR","Notes":"tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed","Department":"Toys","Website":"stumbleupon.com","Latitude":36.3573462,"Longitude":25.4459308,"ShipDate":"8/2/2017","PaymentDate":"2016-10-29 23:25:04","TimeZone":"Europe/Athens","TotalPayment":"$910133.41","Status":6,"Type":1,"Actions":null},\n{"RecordID":11,"OrderID":"68026-422","Country":"United States","ShipCountry":"US","ShipCity":"Cleveland","ShipName":"Gaylord-Parker","ShipAddress":"8072 Waywood Crossing","CompanyEmail":"keffnerta@marketwatch.com","CompanyAgent":"Kane Effnert","CompanyName":"Legros, Oberbrunner and Gleason","Currency":"USD","Notes":"enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis","Department":"Tools","Website":"java.com","Latitude":41.451118,"Longitude":-81.6309078,"ShipDate":"3/11/2017","PaymentDate":"2017-03-17 12:57:30","TimeZone":"America/New_York","TotalPayment":"$936141.99","Status":5,"Type":2,"Actions":null},\n{"RecordID":12,"OrderID":"0264-7780","Country":"Indonesia","ShipCountry":"ID","ShipCity":"Amerta","ShipName":"Braun, Spinka and Haley","ShipAddress":"8 Chive Junction","CompanyEmail":"ecavellb@miibeian.gov.cn","CompanyAgent":"Elwyn Cavell","CompanyName":"Kassulke and Sons","Currency":"IDR","Notes":"aliquet massa id lobortis convallis tortor risus dapibus augue vel accumsan tellus nisi eu","Department":"Clothing","Website":"china.com.cn","Latitude":-6.2629253,"Longitude":106.7826245,"ShipDate":"9/29/2016","PaymentDate":"2017-10-31 02:33:49","TimeZone":"Asia/Jakarta","TotalPayment":"$583287.30","Status":4,"Type":1,"Actions":null},\n{"RecordID":13,"OrderID":"50813-0001","Country":"Tunisia","ShipCountry":"TN","ShipCity":"Kairouan","ShipName":"Kirlin LLC","ShipAddress":"26 West Park","CompanyEmail":"pbacherc@independent.co.uk","CompanyAgent":"Pier Bacher","CompanyName":"Cole-Hamill","Currency":"TND","Notes":"quam a odio in hac habitasse platea dictumst maecenas ut massa","Department":"Clothing","Website":"yellowpages.com","Latitude":35.6759137,"Longitude":10.0919243,"ShipDate":"3/4/2016","PaymentDate":"2017-11-24 17:22:53","TimeZone":"Africa/Tunis","TotalPayment":"$1182339.20","Status":3,"Type":2,"Actions":null},\n{"RecordID":14,"OrderID":"21695-353","Country":"Argentina","ShipCountry":"AR","ShipCity":"Unquillo","ShipName":"Rempel and Sons","ShipAddress":"098 Hagan Crossing","CompanyEmail":"smuckiand@is.gd","CompanyAgent":"Spence Muckian","CompanyName":"Frami Inc","Currency":"ARS","Notes":"elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue vivamus metus arcu","Department":"Grocery","Website":"seesaa.net","Latitude":-31.372506,"Longitude":-64.182416,"ShipDate":"10/4/2017","PaymentDate":"2017-06-13 14:50:30","TimeZone":"America/Argentina/Cordoba","TotalPayment":"$658920.05","Status":3,"Type":2,"Actions":null},\n{"RecordID":15,"OrderID":"63304-791","Country":"Poland","ShipCountry":"PL","ShipCity":"Kąty Wrocławskie","ShipName":"Rodriguez, Lindgren and Collier","ShipAddress":"90016 Susan Place","CompanyEmail":"dgervaisee@buzzfeed.com","CompanyAgent":"Darcy Gervaise","CompanyName":"Bauch LLC","Currency":"PLN","Notes":"sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae","Department":"Movies","Website":"mysql.com","Latitude":51.0309199,"Longitude":16.7675963,"ShipDate":"8/3/2016","PaymentDate":"2017-08-15 01:48:22","TimeZone":"Europe/Warsaw","TotalPayment":"$361414.46","Status":1,"Type":2,"Actions":null},\n{"RecordID":16,"OrderID":"42352-1001","Country":"Azerbaijan","ShipCountry":"AZ","ShipCity":"Saray","ShipName":"Raynor and Sons","ShipAddress":"4 4th Drive","CompanyEmail":"epaffordf@prweb.com","CompanyAgent":"Eli Pafford","CompanyName":"Moen, Walsh and Bednar","Currency":"AZN","Notes":"in consequat ut nulla sed accumsan felis ut at dolor quis odio consequat varius integer ac leo pellentesque","Department":"Health","Website":"wordpress.org","Latitude":40.5323093,"Longitude":49.710366,"ShipDate":"6/13/2017","PaymentDate":"2017-09-17 04:40:17","TimeZone":"Asia/Baku","TotalPayment":"$69543.85","Status":3,"Type":2,"Actions":null},\n{"RecordID":17,"OrderID":"68275-320","Country":"Estonia","ShipCountry":"EE","ShipCity":"Narva-Jõesuu","ShipName":"Emard-Von","ShipAddress":"37 Fremont Lane","CompanyEmail":"yjoriozg@icq.com","CompanyAgent":"Yovonnda Jorioz","CompanyName":"Connelly Group","Currency":"EUR","Notes":"lacus at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros","Department":"Sports","Website":"google.ca","Latitude":59.4609192,"Longitude":28.0395999,"ShipDate":"10/13/2016","PaymentDate":"2016-12-26 09:59:48","TimeZone":"Europe/Tallinn","TotalPayment":"$137265.28","Status":4,"Type":1,"Actions":null},\n{"RecordID":18,"OrderID":"41190-308","Country":"Panama","ShipCountry":"PA","ShipCity":"Puerto Obaldía","ShipName":"Howell Inc","ShipAddress":"8751 Lighthouse Bay Terrace","CompanyEmail":"jsollarsh@seattletimes.com","CompanyAgent":"Judy Sollars","CompanyName":"Johns-Lueilwitz","Currency":"PAB","Notes":"rutrum nulla tellus in sagittis dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat","Department":"Movies","Website":"nationalgeographic.com","Latitude":8.6663907,"Longitude":-77.420826,"ShipDate":"8/1/2016","PaymentDate":"2017-10-05 17:04:04","TimeZone":"America/Bogota","TotalPayment":"$827677.19","Status":2,"Type":2,"Actions":null},\n{"RecordID":19,"OrderID":"51655-802","Country":"Iran","ShipCountry":"IR","ShipCity":"Eyvān","ShipName":"Monahan, Pacocha and Effertz","ShipAddress":"1 Anthes Place","CompanyEmail":"cpericoi@springer.com","CompanyAgent":"Cobbie Perico","CompanyName":"Mosciski-Williamson","Currency":"IRR","Notes":"sit amet eleifend pede libero quis orci nullam molestie nibh in lectus pellentesque at","Department":"Baby","Website":"nymag.com","Latitude":33.8297993,"Longitude":46.3073161,"ShipDate":"11/15/2016","PaymentDate":"2017-12-22 08:07:51","TimeZone":"Asia/Tehran","TotalPayment":"$171018.99","Status":5,"Type":1,"Actions":null},\n{"RecordID":20,"OrderID":"68151-2713","Country":"Costa Rica","ShipCountry":"CR","ShipCity":"Pital","ShipName":"Romaguera-Batz","ShipAddress":"6 Schlimgen Lane","CompanyEmail":"labeauj@mashable.com","CompanyAgent":"Lucretia Abeau","CompanyName":"Vandervort, Lesch and Bins","Currency":"CRC","Notes":"habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum neque","Department":"Clothing","Website":"naver.com","Latitude":10.4492758,"Longitude":-84.2725621,"ShipDate":"4/22/2017","PaymentDate":"2016-10-31 13:12:03","TimeZone":"America/Costa_Rica","TotalPayment":"$444445.05","Status":1,"Type":1,"Actions":null},\n{"RecordID":21,"OrderID":"68382-161","Country":"Japan","ShipCountry":"JP","ShipCity":"Itoman","ShipName":"Kessler, Boyle and Volkman","ShipAddress":"9 Lawn Point","CompanyEmail":"mlinkletk@wp.com","CompanyAgent":"Mireielle Linklet","CompanyName":"Maggio-Friesen","Currency":"JPY","Notes":"venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet","Department":"Computers","Website":"reference.com","Latitude":26.1288392,"Longitude":127.6681281,"ShipDate":"4/26/2017","PaymentDate":"2016-05-13 03:10:54","TimeZone":"Asia/Tokyo","TotalPayment":"$469295.83","Status":5,"Type":3,"Actions":null},\n{"RecordID":22,"OrderID":"51345-061","Country":"Russia","ShipCountry":"RU","ShipCity":"Mirny","ShipName":"Baumbach Group","ShipAddress":"4649 Clarendon Terrace","CompanyEmail":"bbigmorel@nationalgeographic.com","CompanyAgent":"Belita Bigmore","CompanyName":"Rath Group","Currency":"RUB","Notes":"diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam","Department":"Industrial","Website":"tiny.cc","Latitude":62.5412431,"Longitude":113.9960031,"ShipDate":"6/6/2017","PaymentDate":"2017-04-07 03:26:21","TimeZone":"Asia/Yakutsk","TotalPayment":"$1097247.60","Status":4,"Type":1,"Actions":null},\n{"RecordID":23,"OrderID":"33342-072","Country":"Philippines","ShipCountry":"PH","ShipCity":"Lepanto","ShipName":"VonRueden, Satterfield and Pacocha","ShipAddress":"9 Green Way","CompanyEmail":"fdurramm@themeforest.net","CompanyAgent":"Fabio Durram","CompanyName":"Gutkowski-Bartell","Currency":"PHP","Notes":"posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec","Department":"Beauty","Website":"smugmug.com","Latitude":9.3136403,"Longitude":123.3036704,"ShipDate":"6/14/2017","PaymentDate":"2016-08-01 06:55:55","TimeZone":"Asia/Manila","TotalPayment":"$335706.25","Status":1,"Type":2,"Actions":null},\n{"RecordID":24,"OrderID":"0113-0274","Country":"Philippines","ShipCountry":"PH","ShipCity":"Kolambugan","ShipName":"Grady, Barton and Mosciski","ShipAddress":"832 Loftsgordon Court","CompanyEmail":"hheseyn@bandcamp.com","CompanyAgent":"Haskel Hesey","CompanyName":"Brown, Glover and Bednar","Currency":"PHP","Notes":"diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna","Department":"Movies","Website":"apple.com","Latitude":8.1113884,"Longitude":123.8961588,"ShipDate":"10/6/2017","PaymentDate":"2016-10-15 21:51:09","TimeZone":"Asia/Manila","TotalPayment":"$298650.19","Status":1,"Type":1,"Actions":null},\n{"RecordID":25,"OrderID":"60637-013","Country":"Sweden","ShipCountry":"SE","ShipCity":"Vallentuna","ShipName":"Bednar-Wyman","ShipAddress":"9945 Old Gate Way","CompanyEmail":"gdurringtono@fda.gov","CompanyAgent":"Gregorius Durrington","CompanyName":"Haag Inc","Currency":"SEK","Notes":"potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam","Department":"Jewelery","Website":"sbwire.com","Latitude":59.6535297,"Longitude":18.3648033,"ShipDate":"4/28/2017","PaymentDate":"2017-07-19 06:11:51","TimeZone":"Europe/Stockholm","TotalPayment":"$52391.03","Status":5,"Type":1,"Actions":null},\n{"RecordID":26,"OrderID":"0781-5626","Country":"China","ShipCountry":"CN","ShipCity":"Kertai","ShipName":"Weissnat Group","ShipAddress":"0 Shoshone Hill","CompanyEmail":"bdolbyp@comcast.net","CompanyAgent":"Berky Dolby","CompanyName":"Hodkiewicz-Ledner","Currency":"CNY","Notes":"scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis","Department":"Toys","Website":"google.com.hk","Latitude":46.900546,"Longitude":124.214976,"ShipDate":"9/27/2017","PaymentDate":"2016-05-14 03:23:30","TimeZone":"Asia/Harbin","TotalPayment":"$327211.21","Status":2,"Type":2,"Actions":null},\n{"RecordID":27,"OrderID":"10742-8095","Country":"Philippines","ShipCountry":"PH","ShipCity":"Malinta","ShipName":"Powlowski and Sons","ShipAddress":"8569 Laurel Hill","CompanyEmail":"ccollettq@themeforest.net","CompanyAgent":"Cobbie Collett","CompanyName":"Emard Group","Currency":"PHP","Notes":"lobortis sapien sapien non mi integer ac neque duis bibendum morbi non","Department":"Electronics","Website":"newyorker.com","Latitude":14.6925451,"Longitude":120.9653066,"ShipDate":"9/20/2016","PaymentDate":"2016-11-04 21:58:05","TimeZone":"Asia/Manila","TotalPayment":"$111977.88","Status":4,"Type":3,"Actions":null},\n{"RecordID":28,"OrderID":"49288-0426","Country":"Hungary","ShipCountry":"HU","ShipCity":"Budapest","ShipName":"Bahringer-Kautzer","ShipAddress":"532 Donald Street","CompanyEmail":"ssangwiner@bizjournals.com","CompanyAgent":"Sheilakathryn Sangwine","CompanyName":"Morar, Bosco and Rosenbaum","Currency":"HUF","Notes":"in congue etiam justo etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus","Department":"Toys","Website":"vkontakte.ru","Latitude":47.53708,"Longitude":19.127509,"ShipDate":"12/5/2017","PaymentDate":"2017-11-17 07:49:20","TimeZone":"Europe/Budapest","TotalPayment":"$808043.78","Status":2,"Type":2,"Actions":null},\n{"RecordID":29,"OrderID":"59091-2001","Country":"Netherlands","ShipCountry":"NL","ShipCity":"Arnhem","ShipName":"Kreiger, Hermiston and Maggio","ShipAddress":"395 Maple Road","CompanyEmail":"blents@goo.ne.jp","CompanyAgent":"Bernadene Lent","CompanyName":"Heathcote-Lueilwitz","Currency":"EUR","Notes":"in lectus pellentesque at nulla suspendisse potenti cras in purus eu","Department":"Computers","Website":"howstuffworks.com","Latitude":51.9489686,"Longitude":5.8564699,"ShipDate":"7/8/2016","PaymentDate":"2016-05-23 20:05:31","TimeZone":"Europe/Amsterdam","TotalPayment":"$940709.22","Status":6,"Type":2,"Actions":null},\n{"RecordID":30,"OrderID":"63629-1299","Country":"Russia","ShipCountry":"RU","ShipCity":"Naro-Fominsk","ShipName":"Klocko Inc","ShipAddress":"8 Mitchell Way","CompanyEmail":"mrivallantt@nyu.edu","CompanyAgent":"Miquela Rivallant","CompanyName":"Harber-Hyatt","Currency":"RUB","Notes":"mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci pede venenatis non","Department":"Health","Website":"yale.edu","Latitude":55.4211657,"Longitude":36.6585689,"ShipDate":"8/10/2017","PaymentDate":"2017-03-22 16:45:31","TimeZone":"Europe/Moscow","TotalPayment":"$1158882.77","Status":5,"Type":1,"Actions":null},\n{"RecordID":31,"OrderID":"49527-022","Country":"French Polynesia","ShipCountry":"PF","ShipCity":"Anau","ShipName":"Renner, Metz and Kuphal","ShipAddress":"3 4th Road","CompanyEmail":"epickersgillu@mapy.cz","CompanyAgent":"Erie Pickersgill","CompanyName":"Hermiston, Stanton and Weissnat","Currency":"XPF","Notes":"elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in ante vestibulum ante ipsum","Department":"Movies","Website":"canalblog.com","Latitude":-17.3878955,"Longitude":-145.582949,"ShipDate":"8/10/2017","PaymentDate":"2016-01-13 22:56:10","TimeZone":"Pacific/Tahiti","TotalPayment":"$865927.89","Status":2,"Type":1,"Actions":null},\n{"RecordID":32,"OrderID":"44523-535","Country":"Argentina","ShipCountry":"AR","ShipCity":"Palpalá","ShipName":"Sanford Inc","ShipAddress":"397 Mendota Lane","CompanyEmail":"htawsev@desdev.cn","CompanyAgent":"Harriett Tawse","CompanyName":"Zboncak, Hickle and McLaughlin","Currency":"ARS","Notes":"ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed sagittis nam congue risus semper porta","Department":"Games","Website":"theguardian.com","Latitude":-31.4561755,"Longitude":-64.2111608,"ShipDate":"2/16/2017","PaymentDate":"2016-04-21 02:02:40","TimeZone":"America/Argentina/Jujuy","TotalPayment":"$1168618.71","Status":1,"Type":3,"Actions":null},\n{"RecordID":33,"OrderID":"63402-306","Country":"Sweden","ShipCountry":"SE","ShipCity":"Olofström","ShipName":"Zboncak Inc","ShipAddress":"248 Reindahl Alley","CompanyEmail":"rcrafterw@sina.com.cn","CompanyAgent":"Richie Crafter","CompanyName":"Larkin-Armstrong","Currency":"SEK","Notes":"sapien urna pretium nisl ut volutpat sapien arcu sed augue aliquam erat volutpat in congue etiam justo etiam","Department":"Garden","Website":"barnesandnoble.com","Latitude":56.2462038,"Longitude":14.6265298,"ShipDate":"1/29/2016","PaymentDate":"2016-09-30 20:24:13","TimeZone":"Europe/Stockholm","TotalPayment":"$966796.75","Status":3,"Type":1,"Actions":null},\n{"RecordID":34,"OrderID":"63629-3798","Country":"El Salvador","ShipCountry":"SV","ShipCity":"Guaymango","ShipName":"Koelpin-Jast","ShipAddress":"62878 Maple Wood Plaza","CompanyEmail":"yjotchamx@bloglovin.com","CompanyAgent":"Yolanthe Jotcham","CompanyName":"Kohler Inc","Currency":"USD","Notes":"tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus","Department":"Baby","Website":"washington.edu","Latitude":13.748419,"Longitude":-89.8452348,"ShipDate":"11/29/2017","PaymentDate":"2016-05-26 22:12:21","TimeZone":"America/El_Salvador","TotalPayment":"$62449.09","Status":6,"Type":1,"Actions":null},\n{"RecordID":35,"OrderID":"49981-010","Country":"Philippines","ShipCountry":"PH","ShipCity":"Sindangan","ShipName":"Eichmann, Hills and McCullough","ShipAddress":"3201 Katie Street","CompanyEmail":"bwoosnamy@zdnet.com","CompanyAgent":"Barthel Woosnam","CompanyName":"Goodwin and Sons","Currency":"PHP","Notes":"felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel","Department":"Outdoors","Website":"stumbleupon.com","Latitude":8.3104933,"Longitude":122.9938347,"ShipDate":"11/27/2017","PaymentDate":"2016-01-14 10:54:05","TimeZone":"Asia/Manila","TotalPayment":"$320289.72","Status":3,"Type":2,"Actions":null},\n{"RecordID":36,"OrderID":"0023-4383","Country":"Philippines","ShipCountry":"PH","ShipCity":"Tiguha","ShipName":"Schmidt and Sons","ShipAddress":"912 Lyons Street","CompanyEmail":"crayez@kickstarter.com","CompanyAgent":"Christean Raye","CompanyName":"Witting, Lindgren and Kessler","Currency":"PHP","Notes":"non velit donec diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum","Department":"Books","Website":"ft.com","Latitude":7.7151954,"Longitude":123.2089252,"ShipDate":"1/29/2017","PaymentDate":"2016-12-05 19:36:44","TimeZone":"Asia/Manila","TotalPayment":"$922800.64","Status":4,"Type":1,"Actions":null},\n{"RecordID":37,"OrderID":"50988-254","Country":"Philippines","ShipCountry":"PH","ShipCity":"Manila","ShipName":"Glover Inc","ShipAddress":"661 Mesta Crossing","CompanyEmail":"lfronzek10@addtoany.com","CompanyAgent":"Lida Fronzek","CompanyName":"Yundt-Jacobs","Currency":"PHP","Notes":"dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus","Department":"Jewelery","Website":"elegantthemes.com","Latitude":14.3641338,"Longitude":120.9314495,"ShipDate":"12/12/2016","PaymentDate":"2016-08-16 01:47:41","TimeZone":"Asia/Manila","TotalPayment":"$64883.89","Status":6,"Type":2,"Actions":null},\n{"RecordID":38,"OrderID":"68788-9924","Country":"Norway","ShipCountry":"NO","ShipCity":"Kristiansand S","ShipName":"Treutel, Hirthe and Runolfsson","ShipAddress":"2312 Upham Pass","CompanyEmail":"friehm11@army.mil","CompanyAgent":"Fax Riehm","CompanyName":"Schulist Inc","Currency":"NOK","Notes":"fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet","Department":"Computers","Website":"toplist.cz","Latitude":58.1348867,"Longitude":8.006095,"ShipDate":"9/15/2017","PaymentDate":"2016-01-08 14:30:49","TimeZone":"Europe/Oslo","TotalPayment":"$435466.56","Status":2,"Type":2,"Actions":null},\n{"RecordID":39,"OrderID":"31722-500","Country":"Philippines","ShipCountry":"PH","ShipCity":"Salcedo","ShipName":"Larson-Vandervort","ShipAddress":"8 Red Cloud Plaza","CompanyEmail":"tbowry12@statcounter.com","CompanyAgent":"Taddeusz Bowry","CompanyName":"Koelpin Inc","Currency":"PHP","Notes":"massa quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida","Department":"Tools","Website":"youtu.be","Latitude":14.5560877,"Longitude":121.0155081,"ShipDate":"5/4/2017","PaymentDate":"2017-04-18 17:53:19","TimeZone":"Asia/Manila","TotalPayment":"$677626.59","Status":3,"Type":1,"Actions":null},\n{"RecordID":40,"OrderID":"50436-7053","Country":"Poland","ShipCountry":"PL","ShipCity":"Iłowo -Osada","ShipName":"Batz LLC","ShipAddress":"9434 Packers Road","CompanyEmail":"kdunmuir13@ucoz.ru","CompanyAgent":"Kayley Dunmuir","CompanyName":"Lockman-Baumbach","Currency":"PLN","Notes":"faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor","Department":"Garden","Website":"theguardian.com","Latitude":53.1664955,"Longitude":20.2914434,"ShipDate":"2/5/2016","PaymentDate":"2016-04-25 10:48:48","TimeZone":"Europe/Warsaw","TotalPayment":"$123550.24","Status":4,"Type":1,"Actions":null},\n{"RecordID":41,"OrderID":"63736-027","Country":"China","ShipCountry":"CN","ShipCity":"Bazi","ShipName":"Stark-Brown","ShipAddress":"3 Gerald Park","CompanyEmail":"tlotte14@histats.com","CompanyAgent":"Tim Lotte","CompanyName":"Larson Inc","Currency":"CNY","Notes":"pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus","Department":"Garden","Website":"salon.com","Latitude":30.7959602,"Longitude":120.6060568,"ShipDate":"10/21/2016","PaymentDate":"2016-07-23 01:21:17","TimeZone":"Asia/Shanghai","TotalPayment":"$326161.60","Status":4,"Type":2,"Actions":null},\n{"RecordID":42,"OrderID":"54575-228","Country":"China","ShipCountry":"CN","ShipCity":"Dongyang","ShipName":"Effertz LLC","ShipAddress":"7311 Hollow Ridge Trail","CompanyEmail":"smcintee15@google.pl","CompanyAgent":"Sterne McIntee","CompanyName":"Robel, Hegmann and Grimes","Currency":"CNY","Notes":"condimentum curabitur in libero ut massa volutpat convallis morbi odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar","Department":"Garden","Website":"nbcnews.com","Latitude":29.289648,"Longitude":120.241565,"ShipDate":"11/13/2017","PaymentDate":"2017-10-01 15:42:11","TimeZone":"Asia/Chongqing","TotalPayment":"$875336.96","Status":1,"Type":1,"Actions":null},\n{"RecordID":43,"OrderID":"52125-370","Country":"China","ShipCountry":"CN","ShipCity":"Changzheng","ShipName":"Kozey, Roob and Howell","ShipAddress":"3591 Oxford Plaza","CompanyEmail":"tepperson16@dagondesign.com","CompanyAgent":"Thedrick Epperson","CompanyName":"Armstrong, Shields and Osinski","Currency":"CNY","Notes":"vitae nisi nam ultrices libero non mattis pulvinar nulla pede","Department":"Movies","Website":"cloudflare.com","Latitude":31.23285,"Longitude":121.467218,"ShipDate":"3/25/2016","PaymentDate":"2016-04-05 06:38:33","TimeZone":"Asia/Chongqing","TotalPayment":"$89415.23","Status":5,"Type":1,"Actions":null},\n{"RecordID":44,"OrderID":"36987-3290","Country":"South Africa","ShipCountry":"ZA","ShipCity":"Tugela Ferry","ShipName":"Ward, Little and Flatley","ShipAddress":"7627 Sycamore Crossing","CompanyEmail":"pilsley17@nba.com","CompanyAgent":"Patty Ilsley","CompanyName":"Larson-Kunze","Currency":"ZAR","Notes":"nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula","Department":"Health","Website":"wordpress.com","Latitude":-28.7415512,"Longitude":30.461686,"ShipDate":"7/9/2016","PaymentDate":"2017-08-08 07:23:41","TimeZone":"Africa/Johannesburg","TotalPayment":"$12440.25","Status":3,"Type":2,"Actions":null},\n{"RecordID":45,"OrderID":"68737-236","Country":"Russia","ShipCountry":"RU","ShipCity":"Omutninsk","ShipName":"Wisoky-Huels","ShipAddress":"5647 Vahlen Way","CompanyEmail":"apolding18@domainmarket.com","CompanyAgent":"Amandy Polding","CompanyName":"Cronin-Purdy","Currency":"RUB","Notes":"ut nulla sed accumsan felis ut at dolor quis odio consequat varius integer ac leo pellentesque","Department":"Beauty","Website":"dyndns.org","Latitude":58.6772898,"Longitude":52.190142,"ShipDate":"5/31/2016","PaymentDate":"2016-02-19 06:37:37","TimeZone":"Europe/Volgograd","TotalPayment":"$107259.06","Status":2,"Type":1,"Actions":null},\n{"RecordID":46,"OrderID":"54868-5511","Country":"Portugal","ShipCountry":"PT","ShipCity":"Cabeça Gorda","ShipName":"Kilback Group","ShipAddress":"526 Springview Crossing","CompanyEmail":"eroset19@businessweek.com","CompanyAgent":"Estella Roset","CompanyName":"Skiles-McCullough","Currency":"EUR","Notes":"molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque eget nunc","Department":"Books","Website":"squarespace.com","Latitude":39.1955731,"Longitude":-9.263539,"ShipDate":"5/16/2017","PaymentDate":"2017-06-16 22:18:36","TimeZone":"Europe/Lisbon","TotalPayment":"$607759.63","Status":2,"Type":1,"Actions":null},\n{"RecordID":47,"OrderID":"51389-112","Country":"Poland","ShipCountry":"PL","ShipCity":"Lubenia","ShipName":"Pacocha-Wolff","ShipAddress":"4 Reindahl Hill","CompanyEmail":"ssanderson1a@sciencedaily.com","CompanyAgent":"Stillman Sanderson","CompanyName":"Kub LLC","Currency":"PLN","Notes":"luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet lobortis sapien","Department":"Music","Website":"istockphoto.com","Latitude":49.9409133,"Longitude":21.9374619,"ShipDate":"9/5/2016","PaymentDate":"2016-11-01 20:40:41","TimeZone":"Europe/Warsaw","TotalPayment":"$940344.95","Status":5,"Type":2,"Actions":null},\n{"RecordID":48,"OrderID":"53346-1330","Country":"Indonesia","ShipCountry":"ID","ShipCity":"Wonocolo","ShipName":"Hudson and Sons","ShipAddress":"523 Namekagon Trail","CompanyEmail":"lhoyland1b@sphinn.com","CompanyAgent":"Lynn Hoyland","CompanyName":"Mraz-Spinka","Currency":"IDR","Notes":"volutpat convallis morbi odio odio elementum eu interdum eu tincidunt","Department":"Industrial","Website":"examiner.com","Latitude":-7.3198199,"Longitude":112.7420274,"ShipDate":"5/8/2016","PaymentDate":"2017-12-24 00:13:05","TimeZone":"Asia/Jakarta","TotalPayment":"$612744.04","Status":3,"Type":2,"Actions":null},\n{"RecordID":49,"OrderID":"11410-803","Country":"China","ShipCountry":"CN","ShipCity":"Baimajing","ShipName":"Reynolds, Botsford and MacGyver","ShipAddress":"6 Summit Road","CompanyEmail":"estansfield1c@webs.com","CompanyAgent":"Emmalee Stansfield","CompanyName":"Cartwright-Cole","Currency":"CNY","Notes":"posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam","Department":"Home","Website":"bbc.co.uk","Latitude":19.696407,"Longitude":109.218734,"ShipDate":"12/24/2017","PaymentDate":"2016-03-20 19:34:44","TimeZone":"Asia/Chongqing","TotalPayment":"$427176.05","Status":3,"Type":3,"Actions":null},\n{"RecordID":50,"OrderID":"54473-254","Country":"Australia","ShipCountry":"AU","ShipCity":"Sydney","ShipName":"Schroeder-Schulist","ShipAddress":"84 2nd Place","CompanyEmail":"hleyban1d@cocolog-nifty.com","CompanyAgent":"Henrietta Leyban","CompanyName":"Ankunding-Hudson","Currency":"AUD","Notes":"potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur","Department":"Health","Website":"pinterest.com","Latitude":-33.8688197,"Longitude":151.2092955,"ShipDate":"9/6/2016","PaymentDate":"2017-07-30 00:54:38","TimeZone":"Australia/Sydney","TotalPayment":"$269139.08","Status":2,"Type":1,"Actions":null},\n{"RecordID":51,"OrderID":"49967-106","Country":"Indonesia","ShipCountry":"ID","ShipCity":"Margasari","ShipName":"Watsica and Sons","ShipAddress":"2004 Scofield Drive","CompanyEmail":"uruddlesden1e@meetup.com","CompanyAgent":"Ulrike Ruddlesden","CompanyName":"Koch and Sons","Currency":"IDR","Notes":"dui maecenas tristique est et tempus semper est quam pharetra","Department":"Baby","Website":"angelfire.com","Latitude":-7.0976672,"Longitude":109.0215438,"ShipDate":"12/6/2017","PaymentDate":"2016-03-24 02:22:17","TimeZone":"Asia/Jakarta","TotalPayment":"$511041.28","Status":4,"Type":2,"Actions":null},\n{"RecordID":52,"OrderID":"65649-501","Country":"Philippines","ShipCountry":"PH","ShipCity":"Buenavista","ShipName":"Larkin Inc","ShipAddress":"7 Maple Trail","CompanyEmail":"wmancktelow1f@princeton.edu","CompanyAgent":"Wilone Mancktelow","CompanyName":"Marvin Group","Currency":"PHP","Notes":"erat quisque erat eros viverra eget congue eget semper rutrum nulla nunc purus phasellus in","Department":"Health","Website":"tamu.edu","Latitude":8.972681,"Longitude":125.408732,"ShipDate":"8/19/2016","PaymentDate":"2017-06-29 22:18:35","TimeZone":"Asia/Manila","TotalPayment":"$945403.35","Status":5,"Type":2,"Actions":null},\n{"RecordID":53,"OrderID":"11695-1405","Country":"Albania","ShipCountry":"AL","ShipCity":"Rrasa e Sipërme","ShipName":"Smith, Kovacek and Bogan","ShipAddress":"7633 Towne Street","CompanyEmail":"dlees1g@barnesandnoble.com","CompanyAgent":"Deidre Lees","CompanyName":"Sanford, Hoeger and Stanton","Currency":"ALL","Notes":"sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris eget massa tempor","Department":"Grocery","Website":"nationalgeographic.com","Latitude":"40.96778","Longitude":"19.82111","ShipDate":"3/14/2017","PaymentDate":"2016-10-10 16:32:23","TimeZone":"Europe/Tirane","TotalPayment":"$455561.49","Status":2,"Type":2,"Actions":null},\n{"RecordID":54,"OrderID":"68788-6760","Country":"China","ShipCountry":"CN","ShipCity":"Xiaping","ShipName":"Dickinson Group","ShipAddress":"2985 Merry Plaza","CompanyEmail":"mbourne1h@macromedia.com","CompanyAgent":"Malorie Bourne","CompanyName":"Blick-Farrell","Currency":"CNY","Notes":"orci vehicula condimentum curabitur in libero ut massa volutpat convallis","Department":"Computers","Website":"1und1.de","Latitude":27.568278,"Longitude":117.562238,"ShipDate":"8/13/2017","PaymentDate":"2016-09-11 19:00:24","TimeZone":"Asia/Chongqing","TotalPayment":"$147162.27","Status":3,"Type":2,"Actions":null},\n{"RecordID":55,"OrderID":"0268-1441","Country":"China","ShipCountry":"CN","ShipCity":"Zhangjiawan","ShipName":"Welch-Gislason","ShipAddress":"31 Mcbride Place","CompanyEmail":"hgammie1i@globo.com","CompanyAgent":"Horton Gammie","CompanyName":"Hegmann-Hettinger","Currency":"CNY","Notes":"rutrum at lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc","Department":"Music","Website":"yandex.ru","Latitude":31.686188,"Longitude":104.969819,"ShipDate":"5/27/2016","PaymentDate":"2016-08-19 17:30:11","TimeZone":"Asia/Harbin","TotalPayment":"$974736.80","Status":4,"Type":2,"Actions":null},\n{"RecordID":56,"OrderID":"62032-524","Country":"Israel","ShipCountry":"IL","ShipCity":"Ramat Gan","ShipName":"Stokes-Homenick","ShipAddress":"95694 Clove Crossing","CompanyEmail":"fsante1j@php.net","CompanyAgent":"Frannie Sante","CompanyName":"Kerluke, Witting and Zboncak","Currency":"ILS","Notes":"gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam","Department":"Movies","Website":"deliciousdays.com","Latitude":32.068424,"Longitude":34.824785,"ShipDate":"5/6/2017","PaymentDate":"2016-10-29 15:41:43","TimeZone":"Asia/Jerusalem","TotalPayment":"$939821.62","Status":6,"Type":2,"Actions":null},\n{"RecordID":57,"OrderID":"42291-218","Country":"Yemen","ShipCountry":"YE","ShipCity":"Raydah","ShipName":"Pfannerstill LLC","ShipAddress":"4867 Warner Lane","CompanyEmail":"onazer1k@github.com","CompanyAgent":"Orlando Nazer","CompanyName":"Barton-Mann","Currency":"YER","Notes":"consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo","Department":"Automotive","Website":"nytimes.com","Latitude":15.8161032,"Longitude":44.041335,"ShipDate":"12/6/2017","PaymentDate":"2017-07-15 23:15:32","TimeZone":"Asia/Aden","TotalPayment":"$971056.71","Status":1,"Type":1,"Actions":null},\n{"RecordID":58,"OrderID":"0536-3233","Country":"Indonesia","ShipCountry":"ID","ShipCity":"Krajan Srigonco","ShipName":"Torphy, Bosco and Ortiz","ShipAddress":"8379 Shopko Circle","CompanyEmail":"platliff1l@theatlantic.com","CompanyAgent":"Pavel Latliff","CompanyName":"Feil, Mante and Becker","Currency":"IDR","Notes":"sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien","Department":"Garden","Website":"angelfire.com","Latitude":"-8.3418","Longitude":"112.5618","ShipDate":"3/10/2016","PaymentDate":"2017-03-06 12:26:09","TimeZone":"Asia/Jakarta","TotalPayment":"$1176948.84","Status":2,"Type":1,"Actions":null},\n{"RecordID":59,"OrderID":"0143-1265","Country":"Indonesia","ShipCountry":"ID","ShipCity":"Panggungasri","ShipName":"Schiller LLC","ShipAddress":"75 Barnett Crossing","CompanyEmail":"bpackwood1m@salon.com","CompanyAgent":"Benetta Packwood","CompanyName":"Zboncak-Hettinger","Currency":"IDR","Notes":"lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa quis augue","Department":"Music","Website":"issuu.com","Latitude":-8.2182795,"Longitude":112.2950314,"ShipDate":"7/7/2017","PaymentDate":"2017-09-23 10:42:52","TimeZone":"Asia/Jakarta","TotalPayment":"$214315.57","Status":3,"Type":2,"Actions":null},\n{"RecordID":60,"OrderID":"64980-119","Country":"Macedonia","ShipCountry":"MK","ShipCity":"Јегуновце","ShipName":"Hyatt, Kovacek and Schulist","ShipAddress":"1562 Mesta Center","CompanyEmail":"mcolliar1n@hugedomains.com","CompanyAgent":"Merilee Colliar","CompanyName":"Moore, Toy and McCullough","Currency":"MKD","Notes":"turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi","Department":"Tools","Website":"craigslist.org","Latitude":42.0733374,"Longitude":21.1202878,"ShipDate":"2/3/2017","PaymentDate":"2016-05-12 12:43:48","TimeZone":"Europe/Skopje","TotalPayment":"$526035.07","Status":2,"Type":2,"Actions":null},\n{"RecordID":61,"OrderID":"0363-0198","Country":"Philippines","ShipCountry":"PH","ShipCity":"Nagrumbuan","ShipName":"Hills-Mayert","ShipAddress":"505 Cardinal Drive","CompanyEmail":"epoyner1o@zimbio.com","CompanyAgent":"Ennis Poyner","CompanyName":"Simonis and Sons","Currency":"PHP","Notes":"odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis molestie lorem quisque","Department":"Tools","Website":"mayoclinic.com","Latitude":16.8991985,"Longitude":121.7075195,"ShipDate":"8/30/2017","PaymentDate":"2017-04-05 11:19:31","TimeZone":"Asia/Manila","TotalPayment":"$925471.01","Status":5,"Type":1,"Actions":null},\n{"RecordID":62,"OrderID":"65862-142","Country":"Indonesia","ShipCountry":"ID","ShipCity":"Leuwipicung","ShipName":"Schultz-Cronin","ShipAddress":"306 Beilfuss Parkway","CompanyEmail":"apetherick1p@hatena.ne.jp","CompanyAgent":"Ailyn Petherick","CompanyName":"Dach-Ernser","Currency":"IDR","Notes":"sed tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus","Department":"Garden","Website":"house.gov","Latitude":-7.71725,"Longitude":108.07666,"ShipDate":"3/4/2016","PaymentDate":"2017-01-12 13:27:43","TimeZone":"Asia/Jakarta","TotalPayment":"$300684.83","Status":6,"Type":1,"Actions":null},\n{"RecordID":63,"OrderID":"67510-1561","Country":"Peru","ShipCountry":"PE","ShipCity":"Patambuco","ShipName":"Crist and Sons","ShipAddress":"90561 Superior Parkway","CompanyEmail":"sgasking1q@sun.com","CompanyAgent":"Saba Gasking","CompanyName":"Wisozk-Ratke","Currency":"PEN","Notes":"leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede","Department":"Jewelery","Website":"apple.com","Latitude":-14.27079,"Longitude":-69.567879,"ShipDate":"6/27/2017","PaymentDate":"2017-02-14 05:11:52","TimeZone":"America/Lima","TotalPayment":"$296798.64","Status":5,"Type":2,"Actions":null},\n{"RecordID":64,"OrderID":"67877-169","Country":"Brazil","ShipCountry":"BR","ShipCity":"Sananduva","ShipName":"Koss, Yost and Wintheiser","ShipAddress":"76 Di Loreto Place","CompanyEmail":"kmatitiaho1r@networkadvertising.org","CompanyAgent":"Kelly Matitiaho","CompanyName":"Schuster, Flatley and Ledner","Currency":"BRL","Notes":"hendrerit at vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci eget orci","Department":"Automotive","Website":"squidoo.com","Latitude":-27.950568,"Longitude":-51.8148609,"ShipDate":"9/21/2017","PaymentDate":"2016-04-14 15:50:12","TimeZone":"America/Sao_Paulo","TotalPayment":"$683140.08","Status":4,"Type":2,"Actions":null},\n{"RecordID":65,"OrderID":"13537-402","Country":"Uganda","ShipCountry":"UG","ShipCity":"Pader Palwo","ShipName":"Konopelski, Goyette and Borer","ShipAddress":"34 Charing Cross Junction","CompanyEmail":"dgasperi1s@newsvine.com","CompanyAgent":"Daron Gasperi","CompanyName":"Kuphal Inc","Currency":"UGX","Notes":"curabitur gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam","Department":"Electronics","Website":"com.com","Latitude":2.7798518,"Longitude":33.0057261,"ShipDate":"7/8/2016","PaymentDate":"2016-12-02 10:21:48","TimeZone":"Africa/Kampala","TotalPayment":"$245786.01","Status":2,"Type":2,"Actions":null},\n{"RecordID":66,"OrderID":"48951-8237","Country":"Portugal","ShipCountry":"PT","ShipCity":"Portela","ShipName":"Marks-Batz","ShipAddress":"114 Barnett Avenue","CompanyEmail":"meustes1t@nsw.gov.au","CompanyAgent":"Marketa Eustes","CompanyName":"Kautzer Inc","Currency":"EUR","Notes":"proin leo odio porttitor id consequat in consequat ut nulla sed accumsan","Department":"Outdoors","Website":"paypal.com","Latitude":41.1604713,"Longitude":-7.7452871,"ShipDate":"12/6/2016","PaymentDate":"2016-01-03 07:39:20","TimeZone":"Europe/Lisbon","TotalPayment":"$148246.67","Status":1,"Type":1,"Actions":null},\n{"RecordID":67,"OrderID":"36987-3279","Country":"Spain","ShipCountry":"ES","ShipCity":"Badajoz","ShipName":"Osinski, Nitzsche and Schaden","ShipAddress":"6 Commercial Center","CompanyEmail":"bshowl1u@lycos.com","CompanyAgent":"Bernita Showl","CompanyName":"Jacobson-Brakus","Currency":"EUR","Notes":"odio porttitor id consequat in consequat ut nulla sed accumsan felis ut at dolor quis odio consequat varius","Department":"Movies","Website":"wikimedia.org","Latitude":38.8794495,"Longitude":-6.9706535,"ShipDate":"11/2/2016","PaymentDate":"2016-09-19 10:42:38","TimeZone":"Europe/Madrid","TotalPayment":"$1145811.38","Status":2,"Type":3,"Actions":null},\n{"RecordID":68,"OrderID":"36987-3092","Country":"Belarus","ShipCountry":"BY","ShipCity":"Hlybokaye","ShipName":"Fahey-Jones","ShipAddress":"43 Scott Lane","CompanyEmail":"dohoey1v@sitemeter.com","CompanyAgent":"Danielle O\'Hoey","CompanyName":"Sipes, Schaden and Larkin","Currency":"BYR","Notes":"nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris morbi","Department":"Toys","Website":"joomla.org","Latitude":55.1391321,"Longitude":27.6842905,"ShipDate":"4/12/2017","PaymentDate":"2017-01-03 22:32:16","TimeZone":"Europe/Minsk","TotalPayment":"$1075453.72","Status":3,"Type":3,"Actions":null},\n{"RecordID":69,"OrderID":"17271-503","Country":"Slovenia","ShipCountry":"SI","ShipCity":"Slovenska Bistrica","ShipName":"Padberg, West and Hoeger","ShipAddress":"48462 Jackson Avenue","CompanyEmail":"sstanistrete1w@samsung.com","CompanyAgent":"Susana Stanistrete","CompanyName":"Reinger Inc","Currency":"EUR","Notes":"tortor quis turpis sed ante vivamus tortor duis mattis egestas metus aenean","Department":"Clothing","Website":"people.com.cn","Latitude":46.3919813,"Longitude":15.5727869,"ShipDate":"6/26/2017","PaymentDate":"2016-10-01 11:26:13","TimeZone":"Europe/Ljubljana","TotalPayment":"$1113114.34","Status":4,"Type":1,"Actions":null},\n{"RecordID":70,"OrderID":"49288-0206","Country":"France","ShipCountry":"FR","ShipCity":"Aix-en-Provence","ShipName":"Johnson, Beahan and McCullough","ShipAddress":"8 Bartillon Pass","CompanyEmail":"domrod1x@ihg.com","CompanyAgent":"Denys Omrod","CompanyName":"Dicki and Sons","Currency":"EUR","Notes":"vestibulum proin eu mi nulla ac enim in tempor turpis nec euismod scelerisque quam","Department":"Electronics","Website":"lulu.com","Latitude":43.5190858,"Longitude":5.4431946,"ShipDate":"11/18/2017","PaymentDate":"2016-07-28 12:41:30","TimeZone":"Europe/Paris","TotalPayment":"$264342.99","Status":6,"Type":3,"Actions":null},\n{"RecordID":71,"OrderID":"55312-118","Country":"Belarus","ShipCountry":"BY","ShipCity":"Pyetrykaw","ShipName":"Howell, Swaniawski and Mosciski","ShipAddress":"16514 Glendale Road","CompanyEmail":"pmallall1y@cnet.com","CompanyAgent":"Phillipe Mallall","CompanyName":"Jacobs, Blanda and Dickinson","Currency":"BYR","Notes":"quis lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea dictumst","Department":"Movies","Website":"desdev.cn","Latitude":52.1267722,"Longitude":28.4919521,"ShipDate":"10/13/2017","PaymentDate":"2017-06-17 12:58:28","TimeZone":"Europe/Minsk","TotalPayment":"$366433.13","Status":3,"Type":1,"Actions":null},\n{"RecordID":72,"OrderID":"49035-111","Country":"Brazil","ShipCountry":"BR","ShipCity":"Caieiras","ShipName":"Skiles, Mayert and Huels","ShipAddress":"551 Briar Crest Drive","CompanyEmail":"fmantha1z@usatoday.com","CompanyAgent":"Flinn Mantha","CompanyName":"Zboncak-Dooley","Currency":"BRL","Notes":"justo morbi ut odio cras mi pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices","Department":"Beauty","Website":"wired.com","Latitude":-23.3711864,"Longitude":-46.7575221,"ShipDate":"1/18/2016","PaymentDate":"2016-06-28 10:50:05","TimeZone":"America/Sao_Paulo","TotalPayment":"$623396.37","Status":2,"Type":3,"Actions":null},\n{"RecordID":73,"OrderID":"33261-888","Country":"China","ShipCountry":"CN","ShipCity":"Yicheng","ShipName":"Boyer, Koepp and O\'Hara","ShipAddress":"1 Blue Bill Park Way","CompanyEmail":"mgange20@wix.com","CompanyAgent":"Melodie Gange","CompanyName":"Lemke Inc","Currency":"CNY","Notes":"eros elementum pellentesque quisque porta volutpat erat quisque erat eros","Department":"Garden","Website":"yellowpages.com","Latitude":31.719806,"Longitude":112.257788,"ShipDate":"11/24/2016","PaymentDate":"2017-06-17 19:57:08","TimeZone":"Asia/Chongqing","TotalPayment":"$668062.14","Status":5,"Type":2,"Actions":null},\n{"RecordID":74,"OrderID":"60709-105","Country":"Philippines","ShipCountry":"PH","ShipCity":"Babug","ShipName":"Muller-Rosenbaum","ShipAddress":"69 Northview Parkway","CompanyEmail":"rdabner21@indiatimes.com","CompanyAgent":"Randi Dabner","CompanyName":"Schimmel, Mohr and Kutch","Currency":"PHP","Notes":"eu sapien cursus vestibulum proin eu mi nulla ac enim in","Department":"Sports","Website":"wikimedia.org","Latitude":14.8744012,"Longitude":120.8130073,"ShipDate":"5/21/2017","PaymentDate":"2017-09-15 19:14:19","TimeZone":"Asia/Manila","TotalPayment":"$990135.61","Status":5,"Type":1,"Actions":null},\n{"RecordID":75,"OrderID":"63629-2679","Country":"Finland","ShipCountry":"FI","ShipCity":"Koski Tl","ShipName":"Crona, Halvorson and Larkin","ShipAddress":"0 Vernon Center","CompanyEmail":"ggabbat22@newsvine.com","CompanyAgent":"Ginnie Gabbat","CompanyName":"Bergnaum-Kozey","Currency":"EUR","Notes":"donec quis orci eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio odio","Department":"Jewelery","Website":"newyorker.com","Latitude":60.6569706,"Longitude":23.1385333,"ShipDate":"11/20/2016","PaymentDate":"2017-06-21 16:16:24","TimeZone":"Europe/Helsinki","TotalPayment":"$232536.81","Status":4,"Type":1,"Actions":null},\n{"RecordID":76,"OrderID":"36800-277","Country":"Serbia","ShipCountry":"RS","ShipCity":"Radenka","ShipName":"Hahn LLC","ShipAddress":"0 Erie Plaza","CompanyEmail":"jadnett23@about.com","CompanyAgent":"Josi Adnett","CompanyName":"Schulist-Yost","Currency":"RSD","Notes":"ipsum dolor sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non","Department":"Computers","Website":"google.de","Latitude":44.5847556,"Longitude":21.7503934,"ShipDate":"9/19/2017","PaymentDate":"2017-11-09 17:37:52","TimeZone":"Europe/Belgrade","TotalPayment":"$830071.82","Status":1,"Type":3,"Actions":null},\n{"RecordID":77,"OrderID":"52125-910","Country":"Armenia","ShipCountry":"AM","ShipCity":"Gogaran","ShipName":"Will-Dooley","ShipAddress":"57 Arapahoe Way","CompanyEmail":"nyerill24@rediff.com","CompanyAgent":"Nathanial Yerill","CompanyName":"Rosenbaum Inc","Currency":"AMD","Notes":"volutpat in congue etiam justo etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus","Department":"Baby","Website":"webmd.com","Latitude":40.894048,"Longitude":44.1992229,"ShipDate":"5/24/2017","PaymentDate":"2017-04-15 08:51:50","TimeZone":"Asia/Yerevan","TotalPayment":"$97687.69","Status":5,"Type":3,"Actions":null},\n{"RecordID":78,"OrderID":"24236-120","Country":"France","ShipCountry":"FR","ShipCity":"Mâcon","ShipName":"Okuneva, Metz and Stamm","ShipAddress":"40389 Buell Alley","CompanyEmail":"pbrewin25@timesonline.co.uk","CompanyAgent":"Priscilla Brewin","CompanyName":"Witting-Von","Currency":"EUR","Notes":"sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus","Department":"Movies","Website":"hp.com","Latitude":46.2993504,"Longitude":4.8265786,"ShipDate":"2/5/2016","PaymentDate":"2017-07-02 14:21:54","TimeZone":"Europe/Paris","TotalPayment":"$892539.18","Status":6,"Type":1,"Actions":null},\n{"RecordID":79,"OrderID":"76173-1008","Country":"Pakistan","ShipCountry":"PK","ShipCity":"Kandhkot","ShipName":"Quigley-Halvorson","ShipAddress":"9 1st Alley","CompanyEmail":"ballard26@google.ca","CompanyAgent":"Barbabas Allard","CompanyName":"Kunde-Veum","Currency":"PKR","Notes":"cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros","Department":"Music","Website":"trellian.com","Latitude":28.1771009,"Longitude":68.7257945,"ShipDate":"1/29/2016","PaymentDate":"2017-08-08 19:08:11","TimeZone":"Asia/Karachi","TotalPayment":"$64027.72","Status":6,"Type":2,"Actions":null},\n{"RecordID":80,"OrderID":"41163-146","Country":"China","ShipCountry":"CN","ShipCity":"Dadianzi","ShipName":"Hilll Inc","ShipAddress":"4569 Heath Street","CompanyEmail":"mcassie27@canalblog.com","CompanyAgent":"Marshall Cassie","CompanyName":"Brown-Hudson","Currency":"CNY","Notes":"ut erat id mauris vulputate elementum nullam varius nulla facilisi cras","Department":"Toys","Website":"tripadvisor.com","Latitude":43.661922,"Longitude":128.500964,"ShipDate":"3/5/2016","PaymentDate":"2016-02-25 11:11:16","TimeZone":"Asia/Harbin","TotalPayment":"$620902.30","Status":2,"Type":2,"Actions":null},\n{"RecordID":81,"OrderID":"68084-198","Country":"Philippines","ShipCountry":"PH","ShipCity":"Pagatin","ShipName":"Nikolaus, Zulauf and Gutkowski","ShipAddress":"70 Coolidge Hill","CompanyEmail":"wferneley28@studiopress.com","CompanyAgent":"William Ferneley","CompanyName":"Adams, Macejkovic and Little","Currency":"PHP","Notes":"sit amet nulla quisque arcu libero rutrum ac lobortis vel dapibus at diam nam tristique tortor","Department":"Jewelery","Website":"netvibes.com","Latitude":6.7640051,"Longitude":124.3754414,"ShipDate":"10/4/2017","PaymentDate":"2016-10-19 03:43:03","TimeZone":"Asia/Manila","TotalPayment":"$33879.28","Status":2,"Type":3,"Actions":null},\n{"RecordID":82,"OrderID":"60512-1043","Country":"Portugal","ShipCountry":"PT","ShipCity":"Cimo de Vila","ShipName":"Cole-Daniel","ShipAddress":"08329 Marcy Trail","CompanyEmail":"jjallin29@latimes.com","CompanyAgent":"Josy Jallin","CompanyName":"Osinski LLC","Currency":"EUR","Notes":"pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet lobortis sapien sapien","Department":"Grocery","Website":"imgur.com","Latitude":41.3389801,"Longitude":-8.1591621,"ShipDate":"8/23/2017","PaymentDate":"2016-11-17 23:27:10","TimeZone":"Europe/Lisbon","TotalPayment":"$45465.01","Status":5,"Type":1,"Actions":null},\n{"RecordID":83,"OrderID":"21695-139","Country":"Slovenia","ShipCountry":"SI","ShipCity":"Kobarid","ShipName":"Wuckert-Corkery","ShipAddress":"9576 Russell Alley","CompanyEmail":"tbuxton2a@seesaa.net","CompanyAgent":"Tomasine Buxton","CompanyName":"Schaefer-Smith","Currency":"EUR","Notes":"in faucibus orci luctus et ultrices posuere cubilia curae duis","Department":"Books","Website":"fda.gov","Latitude":46.2476549,"Longitude":13.5791749,"ShipDate":"4/27/2017","PaymentDate":"2016-02-14 15:10:51","TimeZone":"Europe/Rome","TotalPayment":"$271185.36","Status":3,"Type":3,"Actions":null},\n{"RecordID":84,"OrderID":"0228-3003","Country":"Dominican Republic","ShipCountry":"DO","ShipCity":"Bajos de Haina","ShipName":"Grady-Connelly","ShipAddress":"2079 Larry Way","CompanyEmail":"cpaskerful2b@i2i.jp","CompanyAgent":"Cairistiona Paskerful","CompanyName":"Wiegand and Sons","Currency":"DOP","Notes":"habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum justo","Department":"Computers","Website":"china.com.cn","Latitude":18.4091399,"Longitude":-70.031039,"ShipDate":"11/14/2016","PaymentDate":"2017-11-01 16:40:06","TimeZone":"America/Santo_Domingo","TotalPayment":"$612602.70","Status":2,"Type":1,"Actions":null},\n{"RecordID":85,"OrderID":"36800-124","Country":"Mexico","ShipCountry":"MX","ShipCity":"El Rosario","ShipName":"Rogahn Group","ShipAddress":"5332 Cambridge Way","CompanyEmail":"gboggis2c@sbwire.com","CompanyAgent":"Godwin Boggis","CompanyName":"Cartwright, Mante and Kris","Currency":"MXN","Notes":"ut massa quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur","Department":"Automotive","Website":"flickr.com","Latitude":30.059549,"Longitude":-115.725753,"ShipDate":"1/13/2016","PaymentDate":"2016-01-24 18:48:06","TimeZone":"America/Mexico_City","TotalPayment":"$1014910.05","Status":5,"Type":2,"Actions":null},\n{"RecordID":86,"OrderID":"59746-175","Country":"Philippines","ShipCountry":"PH","ShipCity":"Concepcion","ShipName":"Tromp, Wisozk and Stiedemann","ShipAddress":"74705 Oakridge Point","CompanyEmail":"khayzer2d@marriott.com","CompanyAgent":"Kirbie Hayzer","CompanyName":"Nicolas-Bayer","Currency":"PHP","Notes":"commodo vulputate justo in blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing","Department":"Computers","Website":"issuu.com","Latitude":14.6688068,"Longitude":121.1138058,"ShipDate":"5/20/2016","PaymentDate":"2017-03-14 05:05:26","TimeZone":"Asia/Manila","TotalPayment":"$201601.94","Status":2,"Type":1,"Actions":null},\n{"RecordID":87,"OrderID":"0268-1481","Country":"Palestinian Territory","ShipCountry":"PS","ShipCity":"‘Aşīrah al Qiblīyah","ShipName":"Morissette Inc","ShipAddress":"4339 Armistice Circle","CompanyEmail":"cgresley2e@wsj.com","CompanyAgent":"Cherlyn Gresley","CompanyName":"Langosh, Kris and Ernser","Currency":"ILS","Notes":"sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus dapibus augue vel","Department":"Jewelery","Website":"google.co.uk","Latitude":"32.17842","Longitude":"35.21569","ShipDate":"4/2/2016","PaymentDate":"2017-01-21 06:18:17","TimeZone":"Asia/Hebron","TotalPayment":"$435115.69","Status":3,"Type":3,"Actions":null},\n{"RecordID":88,"OrderID":"58411-157","Country":"China","ShipCountry":"CN","ShipCity":"Baisha","ShipName":"Morissette-Schoen","ShipAddress":"2 Menomonie Terrace","CompanyEmail":"hshorto2f@imdb.com","CompanyAgent":"Horatio Shorto","CompanyName":"Lueilwitz-Cole","Currency":"CNY","Notes":"vestibulum velit id pretium iaculis diam erat fermentum justo nec","Department":"Sports","Website":"about.me","Latitude":26.641315,"Longitude":100.222545,"ShipDate":"9/11/2017","PaymentDate":"2017-03-30 06:17:36","TimeZone":"Asia/Chongqing","TotalPayment":"$428954.11","Status":1,"Type":1,"Actions":null},\n{"RecordID":89,"OrderID":"54569-6438","Country":"Portugal","ShipCountry":"PT","ShipCity":"Brejieira","ShipName":"Nikolaus-Lesch","ShipAddress":"1 Union Park","CompanyEmail":"lcrayden2g@multiply.com","CompanyAgent":"Lorrin Crayden","CompanyName":"Price Group","Currency":"EUR","Notes":"ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et","Department":"Industrial","Website":"csmonitor.com","Latitude":39.764261,"Longitude":-8.7386338,"ShipDate":"9/17/2016","PaymentDate":"2017-05-24 15:56:55","TimeZone":"Europe/Lisbon","TotalPayment":"$101625.67","Status":3,"Type":3,"Actions":null},\n{"RecordID":90,"OrderID":"64720-141","Country":"China","ShipCountry":"CN","ShipCity":"Xiangtan","ShipName":"Wilderman and Sons","ShipAddress":"54779 Talisman Pass","CompanyEmail":"mlilburn2h@fotki.com","CompanyAgent":"Marci Lilburn","CompanyName":"Hackett-Olson","Currency":"CNY","Notes":"hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante","Department":"Electronics","Website":"microsoft.com","Latitude":27.829795,"Longitude":112.944026,"ShipDate":"7/2/2017","PaymentDate":"2016-11-02 16:08:14","TimeZone":"Asia/Chongqing","TotalPayment":"$453268.63","Status":5,"Type":2,"Actions":null},\n{"RecordID":91,"OrderID":"53145-059","Country":"Brazil","ShipCountry":"BR","ShipCity":"Penedo","ShipName":"Torp, Brekke and Mitchell","ShipAddress":"994 Heffernan Alley","CompanyEmail":"gsoaper2i@dailymotion.com","CompanyAgent":"Giavani Soaper","CompanyName":"Pfeffer, Harber and Hintz","Currency":"BRL","Notes":"et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor","Department":"Electronics","Website":"prnewswire.com","Latitude":-10.2735517,"Longitude":-36.5536172,"ShipDate":"6/26/2017","PaymentDate":"2017-08-01 21:21:10","TimeZone":"America/Maceio","TotalPayment":"$461213.42","Status":2,"Type":1,"Actions":null},\n{"RecordID":92,"OrderID":"57520-0396","Country":"China","ShipCountry":"CN","ShipCity":"Wanshi","ShipName":"Lockman-Davis","ShipAddress":"75440 Loftsgordon Avenue","CompanyEmail":"kgowenlock2j@a8.net","CompanyAgent":"Karine Gowenlock","CompanyName":"Kirlin, Goldner and Upton","Currency":"CNY","Notes":"posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed","Department":"Kids","Website":"behance.net","Latitude":31.471686,"Longitude":119.934764,"ShipDate":"9/11/2017","PaymentDate":"2016-05-06 03:36:46","TimeZone":"Asia/Shanghai","TotalPayment":"$290389.01","Status":5,"Type":3,"Actions":null},\n{"RecordID":93,"OrderID":"24236-184","Country":"Azerbaijan","ShipCountry":"AZ","ShipCity":"Lökbatan","ShipName":"Morissette-Gislason","ShipAddress":"8338 Saint Paul Plaza","CompanyEmail":"tsandon2k@trellian.com","CompanyAgent":"Tallie Sandon","CompanyName":"Herman-Erdman","Currency":"AZN","Notes":"at vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci","Department":"Games","Website":"ebay.co.uk","Latitude":40.3281802,"Longitude":49.7355969,"ShipDate":"9/16/2016","PaymentDate":"2016-12-24 08:27:33","TimeZone":"Asia/Baku","TotalPayment":"$525119.41","Status":3,"Type":1,"Actions":null},\n{"RecordID":94,"OrderID":"11822-9854","Country":"Indonesia","ShipCountry":"ID","ShipCity":"Pasirpanjang","ShipName":"Dietrich-Langworth","ShipAddress":"5 Hollow Ridge Plaza","CompanyEmail":"mtrayhorn2l@sciencedirect.com","CompanyAgent":"Marcos Trayhorn","CompanyName":"Pacocha-Kling","Currency":"IDR","Notes":"justo sollicitudin ut suscipit a feugiat et eros vestibulum ac est","Department":"Sports","Website":"chicagotribune.com","Latitude":0.845865,"Longitude":108.8796091,"ShipDate":"3/27/2016","PaymentDate":"2017-06-08 14:15:50","TimeZone":"Asia/Jakarta","TotalPayment":"$362198.01","Status":4,"Type":3,"Actions":null},\n{"RecordID":95,"OrderID":"49643-120","Country":"Russia","ShipCountry":"RU","ShipCity":"Muchkapskiy","ShipName":"Conn LLC","ShipAddress":"68 5th Drive","CompanyEmail":"fmunford2m@tiny.cc","CompanyAgent":"Francis Munford","CompanyName":"Smith-Stokes","Currency":"RUB","Notes":"tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat","Department":"Beauty","Website":"ox.ac.uk","Latitude":51.8478427,"Longitude":42.4697909,"ShipDate":"9/12/2016","PaymentDate":"2017-01-27 16:06:13","TimeZone":"Europe/Moscow","TotalPayment":"$1001206.62","Status":4,"Type":1,"Actions":null},\n{"RecordID":96,"OrderID":"56062-393","Country":"Guam","ShipCountry":"GU","ShipCity":"Agana Heights Village","ShipName":"Mayer-Cole","ShipAddress":"04373 Golden Leaf Center","CompanyEmail":"ckahler2n@histats.com","CompanyAgent":"Catriona Kahler","CompanyName":"Lynch-Satterfield","Currency":"USD","Notes":"ullamcorper purus sit amet nulla quisque arcu libero rutrum ac lobortis vel dapibus at diam","Department":"Jewelery","Website":"newyorker.com","Latitude":13.4677672,"Longitude":144.7453228,"ShipDate":"7/18/2017","PaymentDate":"2016-06-21 16:10:22","TimeZone":"Pacific/Guam","TotalPayment":"$717532.21","Status":5,"Type":1,"Actions":null},\n{"RecordID":97,"OrderID":"50436-0120","Country":"Dominica","ShipCountry":"DM","ShipCity":"Soufrière","ShipName":"Ernser, Miller and Barton","ShipAddress":"7 Canary Crossing","CompanyEmail":"gkleinplatz2o@naver.com","CompanyAgent":"Giuseppe Kleinplatz","CompanyName":"Denesik-Wyman","Currency":"XCD","Notes":"congue elementum in hac habitasse platea dictumst morbi vestibulum velit id","Department":"Kids","Website":"miibeian.gov.cn","Latitude":15.2338798,"Longitude":-61.3567483,"ShipDate":"12/20/2017","PaymentDate":"2016-08-13 23:06:00","TimeZone":"America/Dominica","TotalPayment":"$630409.34","Status":2,"Type":3,"Actions":null},\n{"RecordID":98,"OrderID":"42507-004","Country":"Mexico","ShipCountry":"MX","ShipCity":"Rancho Nuevo","ShipName":"Borer and Sons","ShipAddress":"424 Birchwood Terrace","CompanyEmail":"lgrinishin2p@hubpages.com","CompanyAgent":"Lucky Grinishin","CompanyName":"O\'Reilly, Block and Goyette","Currency":"MXN","Notes":"mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh","Department":"Tools","Website":"hexun.com","Latitude":22.2222241,"Longitude":-100.9256085,"ShipDate":"12/22/2017","PaymentDate":"2016-04-09 03:07:19","TimeZone":"America/Mexico_City","TotalPayment":"$314052.63","Status":2,"Type":3,"Actions":null},\n{"RecordID":99,"OrderID":"49230-191","Country":"Japan","ShipCountry":"JP","ShipCity":"Yokosuka","ShipName":"White, Legros and Carroll","ShipAddress":"8 Annamark Place","CompanyEmail":"mellse2q@xinhuanet.com","CompanyAgent":"Meade Ellse","CompanyName":"Purdy-Carroll","Currency":"JPY","Notes":"magna ac consequat metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia","Department":"Sports","Website":"abc.net.au","Latitude":34.6830797,"Longitude":137.9865313,"ShipDate":"12/12/2016","PaymentDate":"2016-08-30 12:27:38","TimeZone":"Asia/Tokyo","TotalPayment":"$1127673.96","Status":1,"Type":1,"Actions":null},\n{"RecordID":100,"OrderID":"50865-056","Country":"Honduras","ShipCountry":"HN","ShipCity":"Yuscarán","ShipName":"Anderson, Pfannerstill and Miller","ShipAddress":"116 Bay Way","CompanyEmail":"hensley2r@businessweek.com","CompanyAgent":"Hamil Ensley","CompanyName":"Kessler, Greenfelder and Gaylord","Currency":"HNL","Notes":"nulla ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis","Department":"Kids","Website":"dell.com","Latitude":13.9448964,"Longitude":-86.8508942,"ShipDate":"1/14/2016","PaymentDate":"2016-12-27 22:25:10","TimeZone":"America/Tegucigalpa","TotalPayment":"$386091.31","Status":6,"Type":3,"Actions":null}]'),t=$("#kt_datatable").KTDatatable({data:{type:"local",source:e,pageSize:10},layout:{scroll:!1,footer:!1},sortable:!0,pagination:!0,search:{input:$("#kt_datatable_search_query"),key:"generalSearch"},columns:[{field:"RecordID",title:"#",sortable:!1,width:20,type:"number",selector:{class:""},textAlign:"center"},{field:"OrderID",title:"Order ID"},{field:"Country",title:"Country",template:function(e){return e.Country+" "+e.ShipCountry}},{field:"ShipDate",title:"Ship Date",type:"date",format:"MM/DD/YYYY"},{field:"CompanyName",title:"Company Name"},{field:"Status",title:"Status",template:function(e){var t={1:{title:"Pending",class:" label-light-success"},2:{title:"Delivered",class:" label-light-danger"},3:{title:"Canceled",class:" label-light-primary"},4:{title:"Success",class:" label-light-success"},5:{title:"Info",class:" label-light-info"},6:{title:"Danger",class:" label-light-danger"},7:{title:"Warning",class:" label-light-warning"}};return''+t[e.Status].title+""}},{field:"Type",title:"Type",autoHide:!1,template:function(e){var t={1:{title:"Online",state:"danger"},2:{title:"Retail",state:"primary"},3:{title:"Direct",state:"success"}};return''+t[e.Type].title+""}},{field:"Actions",title:"Actions",sortable:!1,width:125,overflow:"visible",autoHide:!1,template:function(){return'\t\t\t\t\t\t\t
');
+ }
+ }
+ }
+ });
+
+ calendar.render();
+ }
+ };
+}();
+
+jQuery(document).ready(function() {
+ KTAppsEducationSchoolCalendar.init();
+});
diff --git a/public/assets/js/pages/custom/education/school/calendar.min.js b/public/assets/js/pages/custom/education/school/calendar.min.js
new file mode 100644
index 0000000..c44949e
--- /dev/null
+++ b/public/assets/js/pages/custom/education/school/calendar.min.js
@@ -0,0 +1 @@
+"use strict";var KTAppsEducationSchoolCalendar={init:function(){var e=moment().startOf("day"),t=e.format("YYYY-MM"),i=e.clone().subtract(1,"day").format("YYYY-MM-DD"),n=e.format("YYYY-MM-DD"),r=e.clone().add(1,"day").format("YYYY-MM-DD"),o=document.getElementById("kt_calendar");new FullCalendar.Calendar(o,{plugins:["bootstrap","interaction","dayGrid","timeGrid","list"],themeSystem:"bootstrap",isRTL:KTUtil.isRTL(),header:{left:"prev,next today",center:"title",right:"dayGridMonth,timeGridWeek,timeGridDay"},height:800,contentHeight:780,aspectRatio:3,nowIndicator:!0,now:n+"T09:25:00",views:{dayGridMonth:{buttonText:"month"},timeGridWeek:{buttonText:"week"},timeGridDay:{buttonText:"day"}},defaultView:"dayGridMonth",defaultDate:n,editable:!0,eventLimit:!0,navLinks:!0,events:[{title:"All Day Event",start:t+"-01",description:"Toto lorem ipsum dolor sit incid idunt ut",className:"fc-event-danger fc-event-solid-warning"},{title:"Reporting",start:t+"-14T13:30:00",description:"Lorem ipsum dolor incid idunt ut labore",end:t+"-14",className:"fc-event-success"},{title:"Company Trip",start:t+"-02",description:"Lorem ipsum dolor sit tempor incid",end:t+"-03",className:"fc-event-primary"},{title:"ICT Expo 2017 - Product Release",start:t+"-03",description:"Lorem ipsum dolor sit tempor inci",end:t+"-05",className:"fc-event-light fc-event-solid-primary"},{title:"Dinner",start:t+"-12",description:"Lorem ipsum dolor sit amet, conse ctetur",end:t+"-10"},{id:999,title:"Repeating Event",start:t+"-09T16:00:00",description:"Lorem ipsum dolor sit ncididunt ut labore",className:"fc-event-danger"},{id:1e3,title:"Repeating Event",description:"Lorem ipsum dolor sit amet, labore",start:t+"-16T16:00:00"},{title:"Conference",start:i,end:r,description:"Lorem ipsum dolor eius mod tempor labore",className:"fc-event-primary"},{title:"Meeting",start:n+"T10:30:00",end:n+"T12:30:00",description:"Lorem ipsum dolor eiu idunt ut labore"},{title:"Lunch",start:n+"T12:00:00",className:"fc-event-info",description:"Lorem ipsum dolor sit amet, ut labore"},{title:"Meeting",start:n+"T14:30:00",className:"fc-event-warning",description:"Lorem ipsum conse ctetur adipi scing"},{title:"Happy Hour",start:n+"T17:30:00",className:"fc-event-info",description:"Lorem ipsum dolor sit amet, conse ctetur"},{title:"Dinner",start:r+"T05:00:00",className:"fc-event-solid-danger fc-event-light",description:"Lorem ipsum dolor sit ctetur adipi scing"},{title:"Birthday Party",start:r+"T07:00:00",className:"fc-event-primary",description:"Lorem ipsum dolor sit amet, scing"},{title:"Click for Google",url:"http://google.com/",start:t+"-28",className:"fc-event-solid-info fc-event-light",description:"Lorem ipsum dolor sit amet, labore"}],eventRender:function(e){var t=$(e.el);e.event.extendedProps&&e.event.extendedProps.description&&(t.hasClass("fc-day-grid-event")?(t.data("content",e.event.extendedProps.description),t.data("placement","top"),KTApp.initPopover(t)):t.hasClass("fc-time-grid-event")?t.find(".fc-title").append('
');
+ }
+ }
+ }
+ });
+
+ calendar.render();
+ }
+ };
+}();
+
+jQuery(document).ready(function() {
+ KTAppsEducationStudentCalendar.init();
+});
diff --git a/public/assets/js/pages/custom/education/student/calendar.min.js b/public/assets/js/pages/custom/education/student/calendar.min.js
new file mode 100644
index 0000000..5566702
--- /dev/null
+++ b/public/assets/js/pages/custom/education/student/calendar.min.js
@@ -0,0 +1 @@
+"use strict";var KTAppsEducationStudentCalendar={init:function(){var e=moment().startOf("day"),t=e.format("YYYY-MM"),i=e.clone().subtract(1,"day").format("YYYY-MM-DD"),n=e.format("YYYY-MM-DD"),r=e.clone().add(1,"day").format("YYYY-MM-DD"),o=document.getElementById("kt_calendar");new FullCalendar.Calendar(o,{plugins:["bootstrap","interaction","dayGrid","timeGrid","list"],themeSystem:"bootstrap",isRTL:KTUtil.isRTL(),header:{left:"prev,next today",center:"title",right:"dayGridMonth,timeGridWeek,timeGridDay"},height:800,contentHeight:780,aspectRatio:3,nowIndicator:!0,now:n+"T09:25:00",views:{dayGridMonth:{buttonText:"month"},timeGridWeek:{buttonText:"week"},timeGridDay:{buttonText:"day"}},defaultView:"dayGridMonth",defaultDate:n,editable:!0,eventLimit:!0,navLinks:!0,events:[{title:"All Day Event",start:t+"-01",description:"Toto lorem ipsum dolor sit incid idunt ut",className:"fc-event-danger fc-event-solid-warning"},{title:"Reporting",start:t+"-14T13:30:00",description:"Lorem ipsum dolor incid idunt ut labore",end:t+"-14",className:"fc-event-success"},{title:"Company Trip",start:t+"-02",description:"Lorem ipsum dolor sit tempor incid",end:t+"-03",className:"fc-event-primary"},{title:"ICT Expo 2017 - Product Release",start:t+"-03",description:"Lorem ipsum dolor sit tempor inci",end:t+"-05",className:"fc-event-light fc-event-solid-primary"},{title:"Dinner",start:t+"-12",description:"Lorem ipsum dolor sit amet, conse ctetur",end:t+"-10"},{id:999,title:"Repeating Event",start:t+"-09T16:00:00",description:"Lorem ipsum dolor sit ncididunt ut labore",className:"fc-event-danger"},{id:1e3,title:"Repeating Event",description:"Lorem ipsum dolor sit amet, labore",start:t+"-16T16:00:00"},{title:"Conference",start:i,end:r,description:"Lorem ipsum dolor eius mod tempor labore",className:"fc-event-primary"},{title:"Meeting",start:n+"T10:30:00",end:n+"T12:30:00",description:"Lorem ipsum dolor eiu idunt ut labore"},{title:"Lunch",start:n+"T12:00:00",className:"fc-event-info",description:"Lorem ipsum dolor sit amet, ut labore"},{title:"Meeting",start:n+"T14:30:00",className:"fc-event-warning",description:"Lorem ipsum conse ctetur adipi scing"},{title:"Happy Hour",start:n+"T17:30:00",className:"fc-event-info",description:"Lorem ipsum dolor sit amet, conse ctetur"},{title:"Dinner",start:r+"T05:00:00",className:"fc-event-solid-danger fc-event-light",description:"Lorem ipsum dolor sit ctetur adipi scing"},{title:"Birthday Party",start:r+"T07:00:00",className:"fc-event-primary",description:"Lorem ipsum dolor sit amet, scing"},{title:"Click for Google",url:"http://google.com/",start:t+"-28",className:"fc-event-solid-info fc-event-light",description:"Lorem ipsum dolor sit amet, labore"}],eventRender:function(e){var t=$(e.el);e.event.extendedProps&&e.event.extendedProps.description&&(t.hasClass("fc-day-grid-event")?(t.data("content",e.event.extendedProps.description),t.data("placement","top"),KTApp.initPopover(t)):t.hasClass("fc-time-grid-event")?t.find(".fc-title").append('
');
+ }
+ }
+ }
+ });
+
+ calendar.render();
+ }
+ };
+}();
+
+jQuery(document).ready(function() {
+ KTCalendarBackgroundEvents.init();
+});
diff --git a/public/assets/js/pages/features/calendar/background-events.min.js b/public/assets/js/pages/features/calendar/background-events.min.js
new file mode 100644
index 0000000..fd80e9f
--- /dev/null
+++ b/public/assets/js/pages/features/calendar/background-events.min.js
@@ -0,0 +1 @@
+"use strict";var KTCalendarBackgroundEvents={init:function(){var e=moment().startOf("day"),t=e.format("YYYY-MM"),i=e.clone().subtract(1,"day").format("YYYY-MM-DD"),n=e.format("YYYY-MM-DD"),r=e.clone().add(1,"day").format("YYYY-MM-DD"),o=document.getElementById("kt_calendar");new FullCalendar.Calendar(o,{plugins:["interaction","dayGrid","timeGrid","list"],isRTL:KTUtil.isRTL(),header:{left:"prev,next today",center:"title",right:"dayGridMonth,timeGridWeek,timeGridDay"},height:800,contentHeight:780,aspectRatio:3,nowIndicator:!0,now:n+"T09:25:00",views:{dayGridMonth:{buttonText:"month"},timeGridWeek:{buttonText:"week"},timeGridDay:{buttonText:"day"}},defaultView:"dayGridMonth",defaultDate:n,editable:!0,eventLimit:!0,navLinks:!0,businessHours:!0,events:[{title:"All Day Event",start:t+"-01",description:"Toto lorem ipsum dolor sit incid idunt ut",className:"fc-event-danger fc-event-solid-warning",color:KTApp.getSettings().colors.theme.base.info,rendering:"background"},{title:"Reporting",start:t+"-14T13:30:00",description:"Lorem ipsum dolor incid idunt ut labore",end:t+"-14",className:"fc-event-success"},{title:"Company Trip",start:t+"-02",description:"Lorem ipsum dolor sit tempor incid",end:t+"-03",className:"fc-event-primary"},{title:"ICT Expo 2017 - Product Release",start:t+"-03",description:"Lorem ipsum dolor sit tempor inci",end:t+"-05",className:"fc-event-light fc-event-solid-primary"},{title:"Dinner",start:t+"-12",description:"Lorem ipsum dolor sit amet, conse ctetur",end:t+"-10",color:KTApp.getSettings().colors.theme.base.info,rendering:"background"},{id:999,title:"Repeating Event",start:t+"-09T16:00:00",description:"Lorem ipsum dolor sit ncididunt ut labore",className:"fc-event-danger"},{id:1e3,title:"Repeating Event",description:"Lorem ipsum dolor sit amet, labore",start:t+"-16T16:00:00",color:KTApp.getSettings().colors.theme.base.warning,rendering:"background"},{title:"Conference",start:i,end:r,description:"Lorem ipsum dolor eius mod tempor labore",className:"fc-event-primary"},{title:"Meeting",start:n+"T10:30:00",end:n+"T12:30:00",description:"Lorem ipsum dolor eiu idunt ut labore",color:KTApp.getSettings().colors.theme.base.danger,rendering:"background"},{title:"Lunch",start:n+"T12:00:00",className:"fc-event-info",description:"Lorem ipsum dolor sit amet, ut labore"},{title:"Meeting",start:n+"T14:30:00",className:"fc-event-warning",description:"Lorem ipsum conse ctetur adipi scing"},{title:"Happy Hour",start:n+"T17:30:00",className:"fc-event-info",description:"Lorem ipsum dolor sit amet, conse ctetur",color:KTApp.getSettings().colors.theme.base.danger,rendering:"background"},{title:"Dinner",start:r+"T05:00:00",className:"fc-event-solid-danger fc-event-light",description:"Lorem ipsum dolor sit ctetur adipi scing"},{title:"Birthday Party",start:r+"T07:00:00",className:"fc-event-primary",description:"Lorem ipsum dolor sit amet, scing",color:KTApp.getSettings().colors.theme.base.danger,rendering:"background"},{title:"Click for Google",url:"http://google.com/",start:t+"-28",className:"fc-event-solid-info fc-event-light",description:"Lorem ipsum dolor sit amet, labore",color:KTApp.getSettings().colors.theme.base.success,rendering:"background"}],eventRender:function(e){var t=$(e.el);e.event.extendedProps&&e.event.extendedProps.description&&(t.hasClass("fc-day-grid-event")?(t.data("content",e.event.extendedProps.description),t.data("placement","top"),KTApp.initPopover(t)):t.hasClass("fc-time-grid-event")?t.find(".fc-title").append('
');
+ }
+ }
+ }
+ });
+
+ calendar.render();
+ }
+ };
+}();
+
+jQuery(document).ready(function() {
+ KTCalendarBasic.init();
+});
diff --git a/public/assets/js/pages/features/calendar/basic.min.js b/public/assets/js/pages/features/calendar/basic.min.js
new file mode 100644
index 0000000..1adb308
--- /dev/null
+++ b/public/assets/js/pages/features/calendar/basic.min.js
@@ -0,0 +1 @@
+"use strict";var KTCalendarBasic={init:function(){var e=moment().startOf("day"),t=e.format("YYYY-MM"),i=e.clone().subtract(1,"day").format("YYYY-MM-DD"),n=e.format("YYYY-MM-DD"),r=e.clone().add(1,"day").format("YYYY-MM-DD"),o=document.getElementById("kt_calendar");new FullCalendar.Calendar(o,{plugins:["bootstrap","interaction","dayGrid","timeGrid","list"],themeSystem:"bootstrap",isRTL:KTUtil.isRTL(),header:{left:"prev,next today",center:"title",right:"dayGridMonth,timeGridWeek,timeGridDay"},height:800,contentHeight:780,aspectRatio:3,nowIndicator:!0,now:n+"T09:25:00",views:{dayGridMonth:{buttonText:"month"},timeGridWeek:{buttonText:"week"},timeGridDay:{buttonText:"day"}},defaultView:"dayGridMonth",defaultDate:n,editable:!0,eventLimit:!0,navLinks:!0,events:[{title:"All Day Event",start:t+"-01",description:"Toto lorem ipsum dolor sit incid idunt ut",className:"fc-event-danger fc-event-solid-warning"},{title:"Reporting",start:t+"-14T13:30:00",description:"Lorem ipsum dolor incid idunt ut labore",end:t+"-14",className:"fc-event-success"},{title:"Company Trip",start:t+"-02",description:"Lorem ipsum dolor sit tempor incid",end:t+"-03",className:"fc-event-primary"},{title:"ICT Expo 2017 - Product Release",start:t+"-03",description:"Lorem ipsum dolor sit tempor inci",end:t+"-05",className:"fc-event-light fc-event-solid-primary"},{title:"Dinner",start:t+"-12",description:"Lorem ipsum dolor sit amet, conse ctetur",end:t+"-10"},{id:999,title:"Repeating Event",start:t+"-09T16:00:00",description:"Lorem ipsum dolor sit ncididunt ut labore",className:"fc-event-danger"},{id:1e3,title:"Repeating Event",description:"Lorem ipsum dolor sit amet, labore",start:t+"-16T16:00:00"},{title:"Conference",start:i,end:r,description:"Lorem ipsum dolor eius mod tempor labore",className:"fc-event-primary"},{title:"Meeting",start:n+"T10:30:00",end:n+"T12:30:00",description:"Lorem ipsum dolor eiu idunt ut labore"},{title:"Lunch",start:n+"T12:00:00",className:"fc-event-info",description:"Lorem ipsum dolor sit amet, ut labore"},{title:"Meeting",start:n+"T14:30:00",className:"fc-event-warning",description:"Lorem ipsum conse ctetur adipi scing"},{title:"Happy Hour",start:n+"T17:30:00",className:"fc-event-info",description:"Lorem ipsum dolor sit amet, conse ctetur"},{title:"Dinner",start:r+"T05:00:00",className:"fc-event-solid-danger fc-event-light",description:"Lorem ipsum dolor sit ctetur adipi scing"},{title:"Birthday Party",start:r+"T07:00:00",className:"fc-event-primary",description:"Lorem ipsum dolor sit amet, scing"},{title:"Click for Google",url:"http://google.com/",start:t+"-28",className:"fc-event-solid-info fc-event-light",description:"Lorem ipsum dolor sit amet, labore"}],eventRender:function(e){var t=$(e.el);e.event.extendedProps&&e.event.extendedProps.description&&(t.hasClass("fc-day-grid-event")?(t.data("content",e.event.extendedProps.description),t.data("placement","top"),KTApp.initPopover(t)):t.hasClass("fc-time-grid-event")?t.find(".fc-title").append('
');
+ }
+ }
+ }
+ });
+
+ calendar.render();
+ }
+
+ return {
+ //main function to initiate the module
+ init: function() {
+ initExternalEvents();
+ initCalendar();
+ }
+ };
+}();
+
+jQuery(document).ready(function() {
+ KTCalendarExternalEvents.init();
+});
diff --git a/public/assets/js/pages/features/calendar/external-events.min.js b/public/assets/js/pages/features/calendar/external-events.min.js
new file mode 100644
index 0000000..98a0d93
--- /dev/null
+++ b/public/assets/js/pages/features/calendar/external-events.min.js
@@ -0,0 +1 @@
+"use strict";var KTCalendarExternalEvents={init:function(){var e,t,i,n,r,a,o;$("#kt_calendar_external_events .fc-draggable-handle").each(function(){$(this).data("event",{title:$.trim($(this).text()),stick:!0,classNames:[$(this).data("color")],description:"Lorem ipsum dolor eius mod tempor labore"})}),e=moment().startOf("day"),t=e.format("YYYY-MM"),i=e.clone().subtract(1,"day").format("YYYY-MM-DD"),n=e.format("YYYY-MM-DD"),r=e.clone().add(1,"day").format("YYYY-MM-DD"),a=document.getElementById("kt_calendar"),o=document.getElementById("kt_calendar_external_events"),new(0,FullCalendarInteraction.Draggable)(o,{itemSelector:".fc-draggable-handle",eventData:function(e){return $(e).data("event")}}),new FullCalendar.Calendar(a,{plugins:["interaction","dayGrid","timeGrid","list"],isRTL:KTUtil.isRTL(),header:{left:"prev,next today",center:"title",right:"dayGridMonth,timeGridWeek,timeGridDay"},height:800,contentHeight:780,aspectRatio:3,nowIndicator:!0,now:n+"T09:25:00",views:{dayGridMonth:{buttonText:"month"},timeGridWeek:{buttonText:"week"},timeGridDay:{buttonText:"day"}},defaultView:"dayGridMonth",defaultDate:n,droppable:!0,editable:!0,eventLimit:!0,navLinks:!0,events:[{title:"All Day Event",start:t+"-01",description:"Toto lorem ipsum dolor sit incid idunt ut",className:"fc-event-danger fc-event-solid-warning"},{title:"Reporting",start:t+"-14T13:30:00",description:"Lorem ipsum dolor incid idunt ut labore",end:t+"-14",className:"fc-event-success"},{title:"Company Trip",start:t+"-02",description:"Lorem ipsum dolor sit tempor incid",end:t+"-03",className:"fc-event-primary"},{title:"ICT Expo 2017 - Product Release",start:t+"-03",description:"Lorem ipsum dolor sit tempor inci",end:t+"-05",className:"fc-event-light fc-event-solid-primary"},{title:"Dinner",start:t+"-12",description:"Lorem ipsum dolor sit amet, conse ctetur",end:t+"-10"},{id:999,title:"Repeating Event",start:t+"-09T16:00:00",description:"Lorem ipsum dolor sit ncididunt ut labore",className:"fc-event-danger"},{id:1e3,title:"Repeating Event",description:"Lorem ipsum dolor sit amet, labore",start:t+"-16T16:00:00"},{title:"Conference",start:i,end:r,description:"Lorem ipsum dolor eius mod tempor labore",className:"fc-event-primary"},{title:"Meeting",start:n+"T10:30:00",end:n+"T12:30:00",description:"Lorem ipsum dolor eiu idunt ut labore"},{title:"Lunch",start:n+"T12:00:00",className:"fc-event-info",description:"Lorem ipsum dolor sit amet, ut labore"},{title:"Meeting",start:n+"T14:30:00",className:"fc-event-warning",description:"Lorem ipsum conse ctetur adipi scing"},{title:"Happy Hour",start:n+"T17:30:00",className:"fc-event-info",description:"Lorem ipsum dolor sit amet, conse ctetur"},{title:"Dinner",start:r+"T05:00:00",className:"fc-event-solid-danger fc-event-light",description:"Lorem ipsum dolor sit ctetur adipi scing"},{title:"Birthday Party",start:r+"T07:00:00",className:"fc-event-primary",description:"Lorem ipsum dolor sit amet, scing"},{title:"Click for Google",url:"http://google.com/",start:t+"-28",className:"fc-event-solid-info fc-event-light",description:"Lorem ipsum dolor sit amet, labore"}],drop:function(e){$("#kt_calendar_external_events_remove").is(":checked")&&$(e.draggedEl).remove()},eventRender:function(e){var t=$(e.el);e.event.extendedProps&&e.event.extendedProps.description&&(t.hasClass("fc-day-grid-event")?(t.data("content",e.event.extendedProps.description),t.data("placement","top"),KTApp.initPopover(t)):t.hasClass("fc-time-grid-event")?t.find(".fc-title").append('
');
+ }
+ }
+ }
+ });
+
+ calendar.render();
+ }
+ };
+}();
+
+jQuery(document).ready(function() {
+ KTCalendarListView.init();
+});
diff --git a/public/assets/js/pages/features/calendar/list-view.min.js b/public/assets/js/pages/features/calendar/list-view.min.js
new file mode 100644
index 0000000..3f418b2
--- /dev/null
+++ b/public/assets/js/pages/features/calendar/list-view.min.js
@@ -0,0 +1 @@
+"use strict";var KTCalendarListView={init:function(){var e=moment().startOf("day"),t=e.format("YYYY-MM"),i=e.clone().subtract(1,"day").format("YYYY-MM-DD"),n=e.format("YYYY-MM-DD"),r=e.clone().add(1,"day").format("YYYY-MM-DD"),s=document.getElementById("kt_calendar");new FullCalendar.Calendar(s,{plugins:["interaction","dayGrid","timeGrid","list"],isRTL:KTUtil.isRTL(),header:{left:"prev,next today",center:"title",right:"dayGridMonth,timeGridWeek,timeGridDay,listWeek"},height:800,contentHeight:750,aspectRatio:3,views:{dayGridMonth:{buttonText:"month"},timeGridWeek:{buttonText:"week"},timeGridDay:{buttonText:"day"},listDay:{buttonText:"list"},listWeek:{buttonText:"list"}},defaultView:"listWeek",defaultDate:n,editable:!0,eventLimit:!0,navLinks:!0,events:[{title:"All Day Event",start:t+"-01",description:"Toto lorem ipsum dolor sit incid idunt ut",className:"fc-event-danger fc-event-solid-warning"},{title:"Reporting",start:t+"-14T13:30:00",description:"Lorem ipsum dolor incid idunt ut labore",end:t+"-14",className:"fc-event-success"},{title:"Company Trip",start:t+"-02",description:"Lorem ipsum dolor sit tempor incid",end:t+"-03",className:"fc-event-primary"},{title:"ICT Expo 2017 - Product Release",start:t+"-03",description:"Lorem ipsum dolor sit tempor inci",end:t+"-05",className:"fc-event-light fc-event-solid-primary"},{title:"Dinner",start:t+"-12",description:"Lorem ipsum dolor sit amet, conse ctetur",end:t+"-10"},{id:999,title:"Repeating Event",start:t+"-09T16:00:00",description:"Lorem ipsum dolor sit ncididunt ut labore",className:"fc-event-danger"},{id:1e3,title:"Repeating Event",description:"Lorem ipsum dolor sit amet, labore",start:t+"-16T16:00:00"},{title:"Conference",start:i,end:r,description:"Lorem ipsum dolor eius mod tempor labore",className:"fc-event-primary"},{title:"Meeting",start:n+"T10:30:00",end:n+"T12:30:00",description:"Lorem ipsum dolor eiu idunt ut labore"},{title:"Lunch",start:n+"T12:00:00",className:"fc-event-info",description:"Lorem ipsum dolor sit amet, ut labore"},{title:"Meeting",start:n+"T14:30:00",className:"fc-event-warning",description:"Lorem ipsum conse ctetur adipi scing"},{title:"Happy Hour",start:n+"T17:30:00",className:"fc-event-info",description:"Lorem ipsum dolor sit amet, conse ctetur"},{title:"Dinner",start:r+"T05:00:00",className:"fc-event-solid-danger fc-event-light",description:"Lorem ipsum dolor sit ctetur adipi scing"},{title:"Birthday Party",start:r+"T07:00:00",className:"fc-event-primary",description:"Lorem ipsum dolor sit amet, scing"},{title:"Click for Google",url:"http://google.com/",start:t+"-28",className:"fc-event-solid-info fc-event-light",description:"Lorem ipsum dolor sit amet, labore"}],eventRender:function(e){var t=$(e.el);e.event.extendedProps&&e.event.extendedProps.description&&(t.hasClass("fc-day-grid-event")?(t.data("content",e.event.extendedProps.description),t.data("placement","top"),KTApp.initPopover(t)):t.hasClass("fc-time-grid-event")?t.find(".fc-title").append('
');
+ } else {
+ $(datatable.tableHead).find('.' + pfx + 'datatable-toggle-detail').find('span');
+ }
+ });
+ }
+ });
+
+ Plugin.adjustCellsWidth.call();
+ },
+
+ /**
+ * To enable auto columns features for remote data source
+ */
+ setAutoColumns: function() {
+ if (Plugin.getOption('data.autoColumns')) {
+ $.each(datatable.dataSet[0], function(k, v) {
+ var found = $.grep(options.columns, function(n, i) {
+ return k === n.field;
+ });
+ if (found.length === 0) {
+ options.columns.push({field: k, title: k});
+ }
+ });
+ $(datatable.tableHead).find('.' + pfx + 'datatable-row').remove();
+ Plugin.setHeadTitle();
+ if (Plugin.getOption('layout.footer')) {
+ $(datatable.tableFoot).find('.' + pfx + 'datatable-row').remove();
+ Plugin.setHeadTitle(datatable.tableFoot);
+ }
+ }
+ },
+
+ /********************
+ ** HELPERS
+ ********************/
+
+ /**
+ * Check if table is a locked colums table
+ */
+ isLocked: function() {
+ var isLocked = Plugin.lockEnabledColumns();
+ return isLocked.left.length > 0 || isLocked.right.length > 0;
+ },
+
+ isSubtable: function() {
+ return util.hasClass(datatable.wrap[0], pfx + 'datatable-subtable') || false;
+ },
+
+ /**
+ * Get total extra space of an element for width calculation,
+ * including padding, margin, border
+ * @param element
+ * @returns {number}
+ */
+ getExtraSpace: function(element) {
+ var padding = parseInt($(element).css('paddingRight')) +
+ parseInt($(element).css('paddingLeft'));
+ var margin = parseInt($(element).css('marginRight')) +
+ parseInt($(element).css('marginLeft'));
+ var border = Math.ceil(
+ $(element).css('border-right-width').replace('px', ''));
+ return padding + margin + border;
+ },
+
+ /**
+ * Insert data of array into {{ }} template placeholder
+ * @param template
+ * @param data
+ * @returns {*}
+ */
+ dataPlaceholder: function(template, data) {
+ var result = template;
+ $.each(data, function(key, val) {
+ result = result.replace('{{' + key + '}}', val);
+ });
+ return result;
+ },
+
+ /**
+ * Get table unique ID
+ * Note: table unique change each time refreshed
+ * @param suffix
+ * @returns {*}
+ */
+ getTableId: function(suffix) {
+ if (typeof suffix === 'undefined') suffix = '';
+ var id = $(datatable).attr('id');
+ if (typeof id === 'undefined') {
+ id = $(datatable).attr('class').split(' ')[0];
+ }
+ return id + suffix;
+ },
+
+ /**
+ * Get table prefix with depth number
+ */
+ getTablePrefix: function(suffix) {
+ if (typeof suffix !== 'undefined') suffix = '-' + suffix;
+ return Plugin.getTableId() + '-' + Plugin.getDepth() + suffix;
+ },
+
+ /**
+ * Get current table depth of sub table
+ * @returns {number}
+ */
+ getDepth: function() {
+ var depth = 0;
+ var table = datatable.table;
+ do {
+ table = $(table).parents('.' + pfx + 'datatable-table');
+ depth++;
+ } while ($(table).length > 0);
+ return depth;
+ },
+
+ /**
+ * Keep state item
+ * @param key
+ * @param value
+ */
+ stateKeep: function(key, value) {
+ key = Plugin.getTablePrefix(key);
+ if (Plugin.getOption('data.saveState') === false) return;
+ if (localStorage) {
+ localStorage.setItem(key, JSON.stringify(value));
+ }
+ },
+
+ /**
+ * Get state item
+ * @param key
+ * @param defValue
+ */
+ stateGet: function(key, defValue) {
+ key = Plugin.getTablePrefix(key);
+ if (Plugin.getOption('data.saveState') === false) return;
+ var value = null;
+ if (localStorage) {
+ value = localStorage.getItem(key);
+ }
+ if (typeof value !== 'undefined' && value !== null) {
+ return JSON.parse(value);
+ }
+ },
+
+ /**
+ * Update data in state without clear existing
+ * @param key
+ * @param value
+ */
+ stateUpdate: function(key, value) {
+ var ori = Plugin.stateGet(key);
+ if (typeof ori === 'undefined' || ori === null) ori = {};
+ Plugin.stateKeep(key, $.extend({}, ori, value));
+ },
+
+ /**
+ * Remove state item
+ * @param key
+ */
+ stateRemove: function(key) {
+ key = Plugin.getTablePrefix(key);
+ if (localStorage) {
+ localStorage.removeItem(key);
+ }
+ },
+
+ /**
+ * Get total columns.
+ */
+ getTotalColumns: function(tablePart) {
+ if (typeof tablePart === 'undefined') tablePart = datatable.tableBody;
+ return $(tablePart).find('.' + pfx + 'datatable-row').first().find('.' + pfx + 'datatable-cell').length;
+ },
+
+ /**
+ * Get table row. Useful to get row when current table is in lock
+ * mode. Can be used for both lock and normal table mode. By
+ * default, returning result will be in a list of
.
+ * @param tablePart
+ * @param row 1-based index
+ * @param tdOnly Optional. Default true
+ * @returns {*}
+ */
+ getOneRow: function(tablePart, row, tdOnly) {
+ if (typeof tdOnly === 'undefined') tdOnly = true;
+ // get list of
+ var result = $(tablePart).find('.' + pfx + 'datatable-row:not(.' + pfx + 'datatable-row-detail):nth-child(' + row + ')');
+ if (tdOnly) {
+ // get list of