-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrandom_data.json
More file actions
1602 lines (1602 loc) · 70.2 KB
/
random_data.json
File metadata and controls
1602 lines (1602 loc) · 70.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"file_name": "government.txt",
"classcode": "A123",
"salary_end": 130238.77,
"salary_start": 110347.79,
"end_date": "2021-09-27",
"salary_start_date": "2023-02-21",
"req": "Even work treatment figure including really tax.",
"notes": "Over push television reveal. Community remain spring major up. Bed too when each population.",
"duties": "Six foot east small. Statement most wind sort range challenge. Step fall agency crime scientist boy.",
"experience_length": "5+ years",
"job_type": "Part-time",
"education": "Master",
"school_type": "Private",
"application_location": "New Jamieport"
},
{
"file_name": "management.txt",
"classcode": "C789",
"salary_end": 133388.7,
"salary_start": 81431.3,
"end_date": "2021-06-27",
"salary_start_date": "2021-09-22",
"req": "Radio subject officer door way.",
"notes": "Son late item just share. Particularly weight born Mr.",
"duties": "Professor whole military dream today.\nEvery water wish current. No young leg beyond.\nBetter theory over series drug do help consider. Pm card beat for speak one person finally.",
"experience_length": "1-3 years",
"job_type": "Contract",
"education": "Bachelor",
"school_type": "Public",
"application_location": "Williamschester"
},
{
"file_name": "woman.txt",
"classcode": "A123",
"salary_end": 127049.68,
"salary_start": 95823.46,
"end_date": "2023-06-18",
"salary_start_date": "2023-02-21",
"req": "Take clear cause American boy say marriage.",
"notes": "Place hotel decade bill. Member head movement find. Direction somebody something high include.",
"duties": "Mission window relate property myself million.\nTurn either particular how must season model probably. Different forget concern.",
"experience_length": "5+ years",
"job_type": "Contract",
"education": "PhD",
"school_type": "Private",
"application_location": "Williamchester"
},
{
"file_name": "hand.txt",
"classcode": "C789",
"salary_end": 149088.62,
"salary_start": 54986.71,
"end_date": "2022-10-16",
"salary_start_date": "2024-10-23",
"req": "Physical college to minute prove.",
"notes": "Since hotel tell citizen. Skin dinner performance month consumer. Mr very clear eye west.",
"duties": "Task Republican general decade talk. Song believe everything clearly culture process cut. None treat budget writer attention relationship serve.\nBe information despite arm next not or development.",
"experience_length": "3-5 years",
"job_type": "Full-time",
"education": "Master",
"school_type": "Public",
"application_location": "West Staceybury"
},
{
"file_name": "imagine.txt",
"classcode": "B456",
"salary_end": 79948.2,
"salary_start": 63327.9,
"end_date": "2023-03-17",
"salary_start_date": "2020-09-01",
"req": "Run happy sell. Play for box mind.",
"notes": "Fall return yet indeed positive create four floor. Write eight ask hour lay easy couple speech.",
"duties": "Information hit coach politics home. Until fly feel condition one. Man road stage make produce so. Power eye development.",
"experience_length": "3-5 years",
"job_type": "Part-time",
"education": "PhD",
"school_type": "Public",
"application_location": "New Cassandrafurt"
},
{
"file_name": "truth.txt",
"classcode": "B456",
"salary_end": 60926.42,
"salary_start": 100171.41,
"end_date": "2021-02-19",
"salary_start_date": "2021-02-01",
"req": "Process people onto of fact about.",
"notes": "You hear without beyond measure. Ball ago ground memory.",
"duties": "Its system market direction avoid white describe item. Table card them attorney turn or.\nThank follow finish. Reason one likely hour allow.",
"experience_length": "3-5 years",
"job_type": "Full-time",
"education": "PhD",
"school_type": "Public",
"application_location": "Stephanieburgh"
},
{
"file_name": "able.txt",
"classcode": "A123",
"salary_end": 50054.06,
"salary_start": 90292.38,
"end_date": "2021-08-20",
"salary_start_date": "2021-01-14",
"req": "Report see magazine where ten page little.",
"notes": "Newspaper option worry head. Present month economy wish.",
"duties": "Themselves instead under. Remain technology result play. Effect project off contain. Glass little talk.\nCompare tell activity space fine. Per available method Mr former call.",
"experience_length": "3-5 years",
"job_type": "Part-time",
"education": "Bachelor",
"school_type": "Private",
"application_location": "Holmesmouth"
},
{
"file_name": "inside.txt",
"classcode": "B456",
"salary_end": 75161.6,
"salary_start": 44692.71,
"end_date": "2024-01-25",
"salary_start_date": "2023-05-06",
"req": "Bad experience way down analysis no.",
"notes": "Start read finish thus hard good carry. Traditional animal daughter news personal.",
"duties": "Thing authority interesting series perform quickly short. Western really imagine no base hard by. Help various company mean concern.",
"experience_length": "5+ years",
"job_type": "Full-time",
"education": "PhD",
"school_type": "Online",
"application_location": "Jacobburgh"
},
{
"file_name": "despite.txt",
"classcode": "C789",
"salary_end": 128266.94,
"salary_start": 40215.69,
"end_date": "2020-01-22",
"salary_start_date": "2023-12-12",
"req": "Across six six western.",
"notes": "Garden hotel line pretty. Serve agree likely.",
"duties": "Page school church. Beautiful bank coach same party prevent camera. Appear answer chair audience seem.",
"experience_length": "5+ years",
"job_type": "Part-time",
"education": "PhD",
"school_type": "Public",
"application_location": "Lisaport"
},
{
"file_name": "could.txt",
"classcode": "A123",
"salary_end": 90473.73,
"salary_start": 113639.5,
"end_date": "2023-10-22",
"salary_start_date": "2023-03-06",
"req": "Teach painting another possible support.",
"notes": "Old success hand medical teacher. None drug house whole.",
"duties": "Market dinner tell various mention animal society role. Employee line exactly themselves now.\nProve hot set million step budget win real. Range him campaign customer phone more.",
"experience_length": "5+ years",
"job_type": "Contract",
"education": "PhD",
"school_type": "Online",
"application_location": "Michaelland"
},
{
"file_name": "three.txt",
"classcode": "A123",
"salary_end": 103570.24,
"salary_start": 63801.49,
"end_date": "2024-08-08",
"salary_start_date": "2020-04-11",
"req": "Character among if throw without leg.",
"notes": "Relate sell control write event. Investment region phone pass.",
"duties": "Short eat rather design security. Tv everything among result either. People out particular allow open fine range almost.",
"experience_length": "5+ years",
"job_type": "Contract",
"education": "Bachelor",
"school_type": "Public",
"application_location": "East Christopherberg"
},
{
"file_name": "mission.txt",
"classcode": "A123",
"salary_end": 124938.02,
"salary_start": 98457.54,
"end_date": "2022-09-29",
"salary_start_date": "2023-12-13",
"req": "Answer rate tonight age ask generation.",
"notes": "Others team relate within spring which. Recent air guess even fly fly entire.",
"duties": "Natural actually thus energy and everything. Early military talk exist the leg follow. Democratic send final democratic a scientist read.",
"experience_length": "3-5 years",
"job_type": "Contract",
"education": "Master",
"school_type": "Online",
"application_location": "South Donnashire"
},
{
"file_name": "suddenly.txt",
"classcode": "C789",
"salary_end": 67457.66,
"salary_start": 42998.89,
"end_date": "2021-04-27",
"salary_start_date": "2023-11-29",
"req": "Man produce factor often.",
"notes": "Hard station theory community cost. If door enjoy policy.",
"duties": "Receive organization natural up lay. House population anyone so cup. Support popular today play.\nReduce purpose prepare husband no onto word. Manage show popular box accept himself.",
"experience_length": "1-3 years",
"job_type": "Full-time",
"education": "PhD",
"school_type": "Private",
"application_location": "Kevinberg"
},
{
"file_name": "data.txt",
"classcode": "A123",
"salary_end": 79923.7,
"salary_start": 58668.59,
"end_date": "2023-06-20",
"salary_start_date": "2024-11-13",
"req": "Field anything stay up letter follow.",
"notes": "Summer raise offer. Point himself likely small impact next.",
"duties": "Kind act stand some care some democratic. Talk control hair throughout away our fast.\nListen back deep always even something because. Bar program accept race check. Four after pattern.",
"experience_length": "3-5 years",
"job_type": "Contract",
"education": "Master",
"school_type": "Public",
"application_location": "Port Michael"
},
{
"file_name": "sound.txt",
"classcode": "A123",
"salary_end": 119857.04,
"salary_start": 73471.07,
"end_date": "2021-12-08",
"salary_start_date": "2020-09-27",
"req": "Campaign economic treatment front north magazine.",
"notes": "Camera turn political yeah enjoy five. Must better himself. Nice news future.",
"duties": "Play senior follow beyond control travel school scene. Dinner record office different most our.",
"experience_length": "5+ years",
"job_type": "Contract",
"education": "Master",
"school_type": "Public",
"application_location": "Charlesland"
},
{
"file_name": "pretty.txt",
"classcode": "B456",
"salary_end": 50444.2,
"salary_start": 75643.85,
"end_date": "2021-09-10",
"salary_start_date": "2020-05-15",
"req": "Growth management recognize nature debate often.",
"notes": "Anything third guess ability job type audience. Next wish do necessary green bed allow office.",
"duties": "Available me appear serious. Film too push describe write space compare group. Size inside interest but tax sometimes where bank.",
"experience_length": "3-5 years",
"job_type": "Part-time",
"education": "Bachelor",
"school_type": "Private",
"application_location": "South Heiditon"
},
{
"file_name": "require.txt",
"classcode": "A123",
"salary_end": 116288.34,
"salary_start": 118637.89,
"end_date": "2024-02-09",
"salary_start_date": "2022-07-02",
"req": "Poor oil own push. New approach American.",
"notes": "Guess economic item chair enter nearly. Glass financial meet word class.",
"duties": "Hit energy statement own land.\nSpecific step officer that available project ability tree. Billion study early.\nSource ready worry your brother interest take. Character his in price and along policy.",
"experience_length": "1-3 years",
"job_type": "Part-time",
"education": "Master",
"school_type": "Public",
"application_location": "Johnborough"
},
{
"file_name": "fire.txt",
"classcode": "A123",
"salary_end": 137579.59,
"salary_start": 48409.25,
"end_date": "2023-05-29",
"salary_start_date": "2021-08-26",
"req": "One box impact nation stage effect throughout.",
"notes": "Watch live then about individual pretty seat east. Win institution investment natural.",
"duties": "Green though receive himself million task although. Push evening just news college single born.\nTelevision well expect.",
"experience_length": "3-5 years",
"job_type": "Contract",
"education": "Master",
"school_type": "Online",
"application_location": "Lake Franciscofort"
},
{
"file_name": "idea.txt",
"classcode": "A123",
"salary_end": 135137.66,
"salary_start": 109937.5,
"end_date": "2024-06-08",
"salary_start_date": "2021-03-30",
"req": "Probably book ground team many.",
"notes": "Result attention send. Still magazine street no interview.",
"duties": "Chair seat if truth respond response get these. Letter popular manager simply and real.\nDevelopment check soon resource. Several though only buy.",
"experience_length": "1-3 years",
"job_type": "Contract",
"education": "PhD",
"school_type": "Online",
"application_location": "South Sharonhaven"
},
{
"file_name": "attack.txt",
"classcode": "B456",
"salary_end": 147590.9,
"salary_start": 60620.89,
"end_date": "2023-03-05",
"salary_start_date": "2023-05-25",
"req": "Yard whatever than another.",
"notes": "Accept middle dream enough. Yet after lot draw yet.",
"duties": "Born they account type truth. Challenge mother necessary successful huge. Course financial public picture.\nModern movement north respond.",
"experience_length": "5+ years",
"job_type": "Part-time",
"education": "Bachelor",
"school_type": "Private",
"application_location": "Elizabethmouth"
},
{
"file_name": "society.txt",
"classcode": "C789",
"salary_end": 84339.22,
"salary_start": 75886.19,
"end_date": "2023-03-10",
"salary_start_date": "2024-12-15",
"req": "Hit dark coach then none radio.",
"notes": "Yourself fly line discussion face gas. Cost unit seem.",
"duties": "Then let professional politics day.\nHistory people notice. Office those summer western. Tax degree fill mind different politics loss.",
"experience_length": "3-5 years",
"job_type": "Part-time",
"education": "Bachelor",
"school_type": "Private",
"application_location": "Amandaton"
},
{
"file_name": "around.txt",
"classcode": "C789",
"salary_end": 70574.1,
"salary_start": 107449.0,
"end_date": "2020-01-09",
"salary_start_date": "2023-05-29",
"req": "Natural much practice too pattern.",
"notes": "Lawyer road energy focus hold too east. Mission case check term. Budget change article lay reveal.",
"duties": "Letter view final. Themselves already happy.\nStand international baby and. Church trouble choice social share station. Never stand write.",
"experience_length": "3-5 years",
"job_type": "Part-time",
"education": "Master",
"school_type": "Private",
"application_location": "West Amandaburgh"
},
{
"file_name": "realize.txt",
"classcode": "B456",
"salary_end": 109057.21,
"salary_start": 74475.27,
"end_date": "2024-10-19",
"salary_start_date": "2020-11-02",
"req": "That third end adult deal.",
"notes": "Dog use business.",
"duties": "Former almost space war somebody store like. Suffer dog stage court how. We voice hand third four.",
"experience_length": "3-5 years",
"job_type": "Part-time",
"education": "Bachelor",
"school_type": "Public",
"application_location": "New Edwardville"
},
{
"file_name": "help.txt",
"classcode": "C789",
"salary_end": 105567.57,
"salary_start": 101048.6,
"end_date": "2022-03-27",
"salary_start_date": "2020-04-30",
"req": "Statement green and perform data quite human.",
"notes": "Want number already thing. Necessary find baby we really.",
"duties": "Provide here attorney kind.\nName new pay Congress single line prevent end.\nWe try detail sure window order. Trade interesting cultural enjoy. Operation force against including.",
"experience_length": "3-5 years",
"job_type": "Part-time",
"education": "Bachelor",
"school_type": "Private",
"application_location": "Port Robert"
},
{
"file_name": "successful.txt",
"classcode": "B456",
"salary_end": 114059.15,
"salary_start": 110495.54,
"end_date": "2020-05-26",
"salary_start_date": "2024-05-01",
"req": "Determine strategy participant bag.",
"notes": "Walk tell money hospital current. This democratic economic suddenly. Practice security thus kind.",
"duties": "Office true work while. Hope box network new little full. Food training sometimes because building.",
"experience_length": "1-3 years",
"job_type": "Part-time",
"education": "Bachelor",
"school_type": "Online",
"application_location": "Joyceville"
},
{
"file_name": "worker.txt",
"classcode": "C789",
"salary_end": 133834.59,
"salary_start": 55959.07,
"end_date": "2020-09-07",
"salary_start_date": "2024-01-22",
"req": "Better probably paper dark already.",
"notes": "Century worker true keep discover laugh wall woman. Order still beat player.",
"duties": "Opportunity until including. Environment century particularly trouble short do. Financial special group shake.",
"experience_length": "1-3 years",
"job_type": "Contract",
"education": "PhD",
"school_type": "Private",
"application_location": "Kylemouth"
},
{
"file_name": "threat.txt",
"classcode": "C789",
"salary_end": 79399.42,
"salary_start": 83581.12,
"end_date": "2023-05-25",
"salary_start_date": "2023-03-30",
"req": "Team check national government.",
"notes": "Again pressure language military.\nWoman cell lead explain. Unit ready wait company.",
"duties": "Point short trial owner question. Camera family game five send.\nOfficial natural amount certain edge record thank. Evening speech why consumer green.",
"experience_length": "3-5 years",
"job_type": "Full-time",
"education": "Master",
"school_type": "Online",
"application_location": "Lake Kaitlyn"
},
{
"file_name": "full.txt",
"classcode": "A123",
"salary_end": 82317.87,
"salary_start": 119537.35,
"end_date": "2024-01-20",
"salary_start_date": "2023-05-23",
"req": "Thousand many single wide area democratic kid.",
"notes": "Whatever cold result hope decade box another. Generation office fact left upon writer.",
"duties": "That modern church cost. Foot everybody fill day reveal marriage.\nMeasure west behind carry point last him report. Space ahead color among smile late.",
"experience_length": "5+ years",
"job_type": "Part-time",
"education": "Bachelor",
"school_type": "Private",
"application_location": "North Bradleyborough"
},
{
"file_name": "final.txt",
"classcode": "C789",
"salary_end": 99955.39,
"salary_start": 56698.64,
"end_date": "2022-01-10",
"salary_start_date": "2021-01-28",
"req": "Crime voice beat white. Doctor put tough let.",
"notes": "Do question range professional tax. Organization adult shake modern.",
"duties": "Across keep kind no phone condition. Them within read focus second. Financial time she election black physical.",
"experience_length": "3-5 years",
"job_type": "Contract",
"education": "PhD",
"school_type": "Public",
"application_location": "Robersonfort"
},
{
"file_name": "provide.txt",
"classcode": "A123",
"salary_end": 76669.34,
"salary_start": 103466.53,
"end_date": "2023-03-06",
"salary_start_date": "2023-01-31",
"req": "We president ground get even.",
"notes": "To opportunity start model catch build. Mission church old decide.",
"duties": "Manage actually step on.\nAgo may allow. Woman realize figure gas month perhaps.",
"experience_length": "1-3 years",
"job_type": "Part-time",
"education": "Master",
"school_type": "Private",
"application_location": "Kellerport"
},
{
"file_name": "member.txt",
"classcode": "C789",
"salary_end": 73105.19,
"salary_start": 83356.14,
"end_date": "2020-04-03",
"salary_start_date": "2025-01-02",
"req": "Game far will control according.",
"notes": "Commercial only family require. Smile center woman.",
"duties": "Human board defense late opportunity TV list. Conference admit position. Let end history can claim.",
"experience_length": "1-3 years",
"job_type": "Contract",
"education": "PhD",
"school_type": "Private",
"application_location": "East Leslie"
},
{
"file_name": "its.txt",
"classcode": "C789",
"salary_end": 86895.58,
"salary_start": 49466.01,
"end_date": "2023-06-01",
"salary_start_date": "2022-04-30",
"req": "Information same sell collection until.",
"notes": "Plan mean maybe rule thing training open.\nNew involve prevent a stop. Huge which light few.",
"duties": "Occur student particular international. Involve four even myself of thought base throughout.",
"experience_length": "3-5 years",
"job_type": "Full-time",
"education": "Bachelor",
"school_type": "Private",
"application_location": "Carterland"
},
{
"file_name": "knowledge.txt",
"classcode": "A123",
"salary_end": 78734.97,
"salary_start": 93655.46,
"end_date": "2024-03-04",
"salary_start_date": "2023-05-13",
"req": "Must carry fill nice.",
"notes": "Response eat enjoy new site teacher. Firm view voice. Trade deal among day discuss take.",
"duties": "Owner its avoid. Drop beat company debate explain street choose.\nSituation case recognize rate must. Painting voice value general. Alone strategy author analysis big whatever official.",
"experience_length": "3-5 years",
"job_type": "Full-time",
"education": "Bachelor",
"school_type": "Online",
"application_location": "North Heatherhaven"
},
{
"file_name": "center.txt",
"classcode": "B456",
"salary_end": 102066.01,
"salary_start": 55807.21,
"end_date": "2022-01-24",
"salary_start_date": "2022-06-13",
"req": "Detail but general sound speak evidence before.",
"notes": "Church picture measure a animal. General establish whose least commercial both short.",
"duties": "Support me economic condition provide. Head old effort arrive voice other friend.",
"experience_length": "3-5 years",
"job_type": "Full-time",
"education": "Master",
"school_type": "Online",
"application_location": "Christopherton"
},
{
"file_name": "poor.txt",
"classcode": "A123",
"salary_end": 52470.15,
"salary_start": 81748.77,
"end_date": "2020-08-20",
"salary_start_date": "2022-03-09",
"req": "Discover ball turn would rich size item shoulder.",
"notes": "Much parent care soldier have. Fight be region speech city clearly away. Its wall memory.",
"duties": "Enough data practice we keep level quickly beautiful. Theory organization notice cut wrong defense I contain. Policy west worker realize. Power these what list paper bank.",
"experience_length": "5+ years",
"job_type": "Part-time",
"education": "Bachelor",
"school_type": "Public",
"application_location": "South Tommymouth"
},
{
"file_name": "use.txt",
"classcode": "C789",
"salary_end": 63504.08,
"salary_start": 62515.23,
"end_date": "2020-08-22",
"salary_start_date": "2021-09-10",
"req": "Themselves another also her history.",
"notes": "Meeting society whether network direction. Education total son imagine special leave focus.",
"duties": "See rest economy growth positive. Hear learn item voice discussion religious interest three. Order though enjoy office enjoy same street.\nTo tell drive people. Agency board know share.",
"experience_length": "1-3 years",
"job_type": "Part-time",
"education": "Bachelor",
"school_type": "Online",
"application_location": "Port Donnaland"
},
{
"file_name": "year.txt",
"classcode": "A123",
"salary_end": 139120.51,
"salary_start": 109376.28,
"end_date": "2022-12-05",
"salary_start_date": "2023-05-21",
"req": "Range institution computer.",
"notes": "Read get ok when environment. Risk reveal thousand crime let.",
"duties": "Third mouth explain. Husband money mother reality question. Record tonight operation support that they. Risk sort pay responsibility off.",
"experience_length": "5+ years",
"job_type": "Full-time",
"education": "PhD",
"school_type": "Online",
"application_location": "West Ryanshire"
},
{
"file_name": "grow.txt",
"classcode": "B456",
"salary_end": 125498.44,
"salary_start": 58480.13,
"end_date": "2024-05-30",
"salary_start_date": "2023-03-08",
"req": "Win end process green support.",
"notes": "Conference performance today eye thousand plant. Religious case than eight attorney look yes.",
"duties": "Question media bit energy. Use out eye weight.\nAgree tax hospital use tonight purpose support you. Until difficult want weight environment time always than.",
"experience_length": "5+ years",
"job_type": "Part-time",
"education": "PhD",
"school_type": "Public",
"application_location": "East Paul"
},
{
"file_name": "assume.txt",
"classcode": "B456",
"salary_end": 87371.86,
"salary_start": 115982.49,
"end_date": "2020-03-14",
"salary_start_date": "2024-04-11",
"req": "Blood so suddenly response.",
"notes": "Need page source go friend. Detail college reality.",
"duties": "Thousand worry of fill recent if own.\nAfter window can especially hope their. Perhaps guess fine suffer. Can although someone performance city learn everything investment.",
"experience_length": "3-5 years",
"job_type": "Contract",
"education": "Bachelor",
"school_type": "Online",
"application_location": "Clarkeport"
},
{
"file_name": "goal.txt",
"classcode": "A123",
"salary_end": 135873.81,
"salary_start": 101175.58,
"end_date": "2024-12-15",
"salary_start_date": "2021-09-14",
"req": "Word minute indeed future.",
"notes": "Situation Democrat fill force particularly benefit tell. Clear room save it.",
"duties": "Share beat sell like firm. Room easy subject wrong.\nGeneration finish computer easy population herself south. Character structure consider either stock training design store.",
"experience_length": "1-3 years",
"job_type": "Contract",
"education": "PhD",
"school_type": "Online",
"application_location": "Parkerstad"
},
{
"file_name": "authority.txt",
"classcode": "C789",
"salary_end": 96653.43,
"salary_start": 64259.15,
"end_date": "2023-12-04",
"salary_start_date": "2024-12-11",
"req": "Key ready little baby another.",
"notes": "Green husband product although.",
"duties": "Quickly Mr join against level seven. May financial many actually maybe parent.",
"experience_length": "5+ years",
"job_type": "Part-time",
"education": "Master",
"school_type": "Public",
"application_location": "Brendaton"
},
{
"file_name": "within.txt",
"classcode": "A123",
"salary_end": 91756.49,
"salary_start": 114917.81,
"end_date": "2022-02-22",
"salary_start_date": "2024-06-03",
"req": "Instead hit not.",
"notes": "Because its allow page. Source probably people run man hand seem.",
"duties": "Admit front fill seven result clear himself. Call order writer point huge. Lawyer stand sort position media structure.",
"experience_length": "1-3 years",
"job_type": "Part-time",
"education": "Master",
"school_type": "Private",
"application_location": "New Anne"
},
{
"file_name": "boy.txt",
"classcode": "A123",
"salary_end": 118478.71,
"salary_start": 79748.59,
"end_date": "2020-03-02",
"salary_start_date": "2021-04-19",
"req": "Career news against those work yeah company.",
"notes": "Health yard though manage. Every happen leader nation guy. Player onto player along.",
"duties": "Her poor trouble let listen five without. Card always ago after. Child half of.\nFollow force threat accept now home cost add. Want pull soldier hot raise somebody.",
"experience_length": "3-5 years",
"job_type": "Contract",
"education": "Master",
"school_type": "Private",
"application_location": "Laurenstad"
},
{
"file_name": "lot.txt",
"classcode": "A123",
"salary_end": 54967.7,
"salary_start": 92903.74,
"end_date": "2023-05-10",
"salary_start_date": "2021-04-19",
"req": "Scene fall medical everyone trial citizen.",
"notes": "Air number would discussion walk interest before.\nTown morning but similar pass spend.",
"duties": "There north however. Treat person leave third whose item. Natural degree record clear.\nReligious audience key talk tough fill theory. Enter nothing little ground. Both letter all area art bar guess.",
"experience_length": "5+ years",
"job_type": "Part-time",
"education": "Master",
"school_type": "Public",
"application_location": "West Danielburgh"
},
{
"file_name": "show.txt",
"classcode": "A123",
"salary_end": 115264.25,
"salary_start": 84381.96,
"end_date": "2020-08-27",
"salary_start_date": "2021-01-10",
"req": "Everything since picture.",
"notes": "Best job house believe draw. Personal activity large character player bill number.",
"duties": "Mrs me cup quickly teach. Throw day think place stock. Remember interest sound true.",
"experience_length": "5+ years",
"job_type": "Part-time",
"education": "Bachelor",
"school_type": "Online",
"application_location": "Samueltown"
},
{
"file_name": "spend.txt",
"classcode": "B456",
"salary_end": 78416.88,
"salary_start": 104208.16,
"end_date": "2021-02-04",
"salary_start_date": "2024-07-25",
"req": "Human behind land dark Congress.",
"notes": "Arm yourself activity. Say fish body. Again lead could nothing lot expert second.",
"duties": "Tend pull join exactly fish.\nTake section middle just. Catch past radio less property cultural. Road body smile bed party. Population kitchen north serve list policy sound.",
"experience_length": "3-5 years",
"job_type": "Part-time",
"education": "PhD",
"school_type": "Online",
"application_location": "Singhville"
},
{
"file_name": "owner.txt",
"classcode": "A123",
"salary_end": 134412.28,
"salary_start": 58163.39,
"end_date": "2021-03-24",
"salary_start_date": "2021-08-06",
"req": "National watch school dog.",
"notes": "Wife present then attention ever. Game discussion like despite lay.",
"duties": "Budget under attorney national around with job simple. Eye decision only run law no fear. Name produce outside whom agent figure.",
"experience_length": "5+ years",
"job_type": "Full-time",
"education": "Master",
"school_type": "Private",
"application_location": "North Suzanneshire"
},
{
"file_name": "development.txt",
"classcode": "C789",
"salary_end": 88268.61,
"salary_start": 100908.41,
"end_date": "2021-07-28",
"salary_start_date": "2024-11-17",
"req": "Issue send every Congress state according.",
"notes": "Ready yet player hear move practice. Actually show religious little use out upon.",
"duties": "Group Republican drive pick spring center. Gun find front check guess. About exactly low clearly brother.\nMiddle will those listen. Question ball man hospital accept increase film.",
"experience_length": "5+ years",
"job_type": "Full-time",
"education": "Master",
"school_type": "Online",
"application_location": "Kingfurt"
},
{
"file_name": "much.txt",
"classcode": "B456",
"salary_end": 108385.99,
"salary_start": 110583.73,
"end_date": "2021-03-28",
"salary_start_date": "2023-10-27",
"req": "Easy relate gun choice a.",
"notes": "Air staff business support central answer run. Instead thing commercial last less wish law.",
"duties": "Can community budget ability under season they several.\nHot free hear off benefit. Form newspaper recently move. Public structure account increase leader one different inside.",
"experience_length": "3-5 years",
"job_type": "Contract",
"education": "PhD",
"school_type": "Online",
"application_location": "Port Katieton"
},
{
"file_name": "smile.txt",
"classcode": "C789",
"salary_end": 80765.95,
"salary_start": 108699.4,
"end_date": "2021-09-07",
"salary_start_date": "2021-06-14",
"req": "Dream yourself list result executive hospital.",
"notes": "Just top each argue board article. Give you region.",
"duties": "Degree politics both among than what. Available he well economy American last. Sort middle school while work tend create.",
"experience_length": "3-5 years",
"job_type": "Contract",
"education": "PhD",
"school_type": "Private",
"application_location": "Cruzburgh"
},
{
"file_name": "participant.txt",
"classcode": "A123",
"salary_end": 127906.66,
"salary_start": 99477.42,
"end_date": "2020-12-08",
"salary_start_date": "2021-10-28",
"req": "During since catch wish.",
"notes": "Interview conference sit itself summer employee. Talk somebody example born assume remember.",
"duties": "Surface none now simple seek. Republican couple heavy manage rather nation security. Democrat figure go whether anyone read.\nOther rock religious role task source. They take garden generation.",
"experience_length": "5+ years",
"job_type": "Contract",
"education": "PhD",
"school_type": "Online",
"application_location": "Thomasborough"
},
{
"file_name": "itself.txt",
"classcode": "A123",
"salary_end": 103611.02,
"salary_start": 76586.31,
"end_date": "2021-06-16",
"salary_start_date": "2021-02-08",
"req": "Medical occur father know anyone.",
"notes": "Hard where soon sell. Report staff before central operation. Something thought remain fact.",
"duties": "Society trouble care news strategy community edge. That child radio member. All however brother say red relationship popular.\nBe tough everybody poor. Not strong else task listen. To reach hour.",
"experience_length": "1-3 years",
"job_type": "Part-time",
"education": "PhD",
"school_type": "Private",
"application_location": "West Dennisfort"
},
{
"file_name": "school.txt",
"classcode": "C789",
"salary_end": 72448.23,
"salary_start": 91353.5,
"end_date": "2020-09-23",
"salary_start_date": "2020-04-12",
"req": "Set often current evening suffer mouth.",
"notes": "Network answer bank stay different establish quickly. Whom treat move team close.",
"duties": "Could reason student service reveal ago. Hard type write each policy consumer agree. Force vote oil none small.",
"experience_length": "3-5 years",
"job_type": "Full-time",
"education": "Bachelor",
"school_type": "Private",
"application_location": "West Robin"
},
{
"file_name": "hour.txt",
"classcode": "B456",
"salary_end": 90883.94,
"salary_start": 42189.98,
"end_date": "2021-10-25",
"salary_start_date": "2024-04-13",
"req": "Card hit over scientist anyone happy stand.",
"notes": "Cause can would buy. That finish difference both brother card my.",
"duties": "Happy by analysis same finally type it pattern. Mother meet pretty personal system article. Treat rule room team speak.",
"experience_length": "5+ years",
"job_type": "Contract",
"education": "Bachelor",
"school_type": "Private",
"application_location": "Lake Corey"
},
{
"file_name": "ago.txt",
"classcode": "C789",
"salary_end": 117323.52,
"salary_start": 107600.23,
"end_date": "2022-07-25",
"salary_start_date": "2022-01-19",
"req": "Address art plant can with sound animal yet.",
"notes": "Imagine land something. Style beautiful positive pick.",
"duties": "Around soldier southern order region place. Town or great paper. Wrong ago heavy learn mention finally prevent.",
"experience_length": "1-3 years",
"job_type": "Full-time",
"education": "Master",
"school_type": "Online",
"application_location": "North Cynthia"
},
{
"file_name": "environmental.txt",
"classcode": "C789",
"salary_end": 62436.71,
"salary_start": 101109.65,
"end_date": "2020-11-28",
"salary_start_date": "2023-09-15",
"req": "Pass eight available.",
"notes": "Term although west direction activity human. Art red anything environment.",
"duties": "Letter visit easy end. Including young possible thought clear. About hit television. Across cell number sing family.\nBill economic recognize teacher. Body finish through machine.",
"experience_length": "1-3 years",
"job_type": "Part-time",
"education": "PhD",
"school_type": "Private",
"application_location": "Jonesshire"
},
{
"file_name": "cause.txt",
"classcode": "A123",
"salary_end": 94520.43,
"salary_start": 71021.47,
"end_date": "2024-06-28",
"salary_start_date": "2023-04-20",
"req": "Personal type right base.",
"notes": "Certain space idea anyone involve each word.",
"duties": "About interest though. Industry member responsibility care successful year. Name remain court arm.\nDeal involve brother discover. Indeed catch second produce cold its.",
"experience_length": "5+ years",
"job_type": "Full-time",
"education": "Master",
"school_type": "Private",
"application_location": "South Amber"
},
{
"file_name": "boy.txt",
"classcode": "B456",
"salary_end": 69341.36,
"salary_start": 42715.85,
"end_date": "2022-01-03",
"salary_start_date": "2022-08-15",
"req": "There choice sound explain fight pretty take.",
"notes": "Stay woman sing arm particularly many system. Little thing force matter card baby statement.",
"duties": "Wait including even know memory speak. Thousand record language international recently save thought.",
"experience_length": "5+ years",
"job_type": "Full-time",
"education": "PhD",
"school_type": "Private",
"application_location": "North Jessicaland"
},
{
"file_name": "goal.txt",
"classcode": "A123",
"salary_end": 138678.88,
"salary_start": 117372.11,
"end_date": "2020-12-26",
"salary_start_date": "2021-05-14",
"req": "Media sea me study doctor from.",
"notes": "Year tough structure. Attention not its station friend. Our nice financial hair bad.",
"duties": "Value while father face. Month us politics short.",
"experience_length": "5+ years",
"job_type": "Contract",
"education": "Master",
"school_type": "Private",
"application_location": "Debrabury"
},
{
"file_name": "box.txt",
"classcode": "C789",
"salary_end": 92767.07,
"salary_start": 41975.01,
"end_date": "2023-07-29",
"salary_start_date": "2020-09-06",
"req": "Sometimes visit lead away fine wonder stay.",
"notes": "Worker sell pattern test or front allow. Either charge personal every. What above western great.",
"duties": "Month final see by activity cost authority.\nShare consumer shake weight hard.",
"experience_length": "5+ years",
"job_type": "Full-time",
"education": "Bachelor",
"school_type": "Online",
"application_location": "New Tammy"
},
{
"file_name": "become.txt",
"classcode": "B456",
"salary_end": 68021.6,
"salary_start": 66276.12,
"end_date": "2023-08-01",
"salary_start_date": "2022-06-27",
"req": "Control yeah low politics view.",
"notes": "Interesting career stuff discuss wrong even. Wall music able win.",
"duties": "Page decade war approach.\nChallenge state plan together. Staff few ball deep onto. My nearly only.",
"experience_length": "5+ years",
"job_type": "Part-time",
"education": "PhD",
"school_type": "Online",
"application_location": "New Natalieton"
},
{
"file_name": "eat.txt",
"classcode": "C789",
"salary_end": 51069.36,
"salary_start": 70600.32,
"end_date": "2023-11-04",
"salary_start_date": "2023-01-02",
"req": "Lay threat before big.",
"notes": "Coach state believe while why Republican market. Address within number.",
"duties": "All order act million. Question first radio bar over thought piece season.\nLeg bank threat side door. Family impact team dream off test call. Management increase girl within would order special.",
"experience_length": "1-3 years",
"job_type": "Full-time",
"education": "Master",
"school_type": "Private",
"application_location": "Lake Theresa"
},
{
"file_name": "dark.txt",
"classcode": "C789",
"salary_end": 120306.08,
"salary_start": 101356.1,
"end_date": "2023-04-10",
"salary_start_date": "2021-08-16",