-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomplexShapes.data.ts
More file actions
14480 lines (14474 loc) · 446 KB
/
complexShapes.data.ts
File metadata and controls
14480 lines (14474 loc) · 446 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
/**
* Comples shapes data
*/
export let startDate: Date = new Date('2017-05-31T12:30:00-06:00');
export let endDate: Date = new Date('2017-11-30T12:30:00-06:00');
export let userInfo: any = {
'FirstName': 'Nicholas',
'FullName': 'Nicholas Delacruz',
'Email': 'nicholas@gmail.com'
};
export let virtualizationData:any =
[{ "Name": "Isiahi Witcomb" },
{ "Name": "Viola Yorkston" },
{ "Name": "Revkah Ebbett" },
{ "Name": "Jakob Pywell" },
{ "Name": "Hank Fice" },
{ "Name": "Tally Bloxsum" },
{ "Name": "Yardley Beasley" },
{ "Name": "Helaina Ludovico" },
{ "Name": "Leroi Tinn" },
{ "Name": "Flory Cordaroy" },
{ "Name": "Vanya Shorland" },
{ "Name": "Micheal Ronnay" },
{ "Name": "Donetta Doore" },
{ "Name": "Alphard Casazza" },
{ "Name": "Chucho Odcroft" },
{ "Name": "Meridith Kalf" },
{ "Name": "Elizabeth Birrane" },
{ "Name": "Cathrin Gerardet" },
{ "Name": "Mimi Molyneaux" },
{ "Name": "Diego Eborn" },
{ "Name": "Shea Mynett" },
{ "Name": "Pincus Glanfield" },
{ "Name": "Kurtis Crawley" },
{ "Name": "Hermina Giovannacci" },
{ "Name": "Alberta Olpin" },
{ "Name": "Derron Wolpert" },
{ "Name": "Zorine Coatts" },
{ "Name": "Gilli McCanny" },
{ "Name": "Keely Braunds" },
{ "Name": "Sula Hartfleet" },
{ "Name": "Sam Bolderoe" },
{ "Name": "Celle Blei" },
{ "Name": "Bertine Bridgwater" },
{ "Name": "Garfield Hickford" },
{ "Name": "Dom Halle" },
{ "Name": "Fidole Willetts" },
{ "Name": "Izaak Densell" },
{ "Name": "Angelica Ricciardello" },
{ "Name": "Bax Roskam" },
{ "Name": "Gilbertine Peddowe" },
{ "Name": "Dagny Chaundy" },
{ "Name": "Donelle Huxton" },
{ "Name": "Edithe Statefield" },
{ "Name": "Harlene Gravener" },
{ "Name": "Davidde Acton" },
{ "Name": "Jakob Pearsey" },
{ "Name": "Gratia Badham" },
{ "Name": "Bili Puffett" },
{ "Name": "Amelita Chastand" },
{ "Name": "Miner Melding" },
{ "Name": "Tades Stagg" },
{ "Name": "Niels Devas" },
{ "Name": "Cairistiona Mulcock" },
{ "Name": "Kayle Withey" },
{ "Name": "Ashil Caldero" },
{ "Name": "Leesa Okill" },
{ "Name": "Lorant Avrahamof" },
{ "Name": "Staci MacKessock" },
{ "Name": "Darline Goodoune" },
{ "Name": "Theadora Gaitley" },
{ "Name": "Pepe Redhole" },
{ "Name": "Katya Jenckes" },
{ "Name": "Toby Whapham" },
{ "Name": "Cherin Tilly" },
{ "Name": "Merrel Attlee" },
{ "Name": "Hallsy Skalls" },
{ "Name": "Felecia Blythe" },
{ "Name": "Maxy Mirfield" },
{ "Name": "Zebedee Atrill" },
{ "Name": "Mead Monkleigh" },
{ "Name": "Tracy McAuslene" },
{ "Name": "Emyle Olenikov" },
{ "Name": "Sharlene Dell Casa" },
{ "Name": "Jens Rathke" },
{ "Name": "Oliy Riddlesden" },
{ "Name": "Taddeusz Palethorpe" },
{ "Name": "Kermit Emblow" },
{ "Name": "Tammara Naptin" },
{ "Name": "Neall Borghese" },
{ "Name": "Dar Topley" },
{ "Name": "Alex Doodson" },
{ "Name": "Lilith Nowakowska" },
{ "Name": "Dean Adao" },
{ "Name": "Sigfrid O'Corr" },
{ "Name": "Kerry Dinneen" },
{ "Name": "Micky Dane" },
{ "Name": "Christie Kelso" },
{ "Name": "Ceil Tomik" },
{ "Name": "Urbanus Froude" },
{ "Name": "Blaire Adshede" },
{ "Name": "Bobbye Forri" },
{ "Name": "Kory Seedull" },
{ "Name": "Esdras Sarsons" },
{ "Name": "Garret Wozencraft" },
{ "Name": "Lorita Tomasi" },
{ "Name": "Hobey Duckerin" },
{ "Name": "Rolph Chalcot" },
{ "Name": "Emera Phythien" },
{ "Name": "Madeline Reisen" },
{ "Name": "Harald Waterhowse" },
{ "Name": "Kirbee Piwall" },
{ "Name": "Tish Roston" },
{ "Name": "Trenna Spofforth" },
{ "Name": "Basia Crispe" },
{ "Name": "Brandie Thurlbourne" },
{ "Name": "Antoine Chang" },
{ "Name": "Orson Stannus" },
{ "Name": "Benson Perrelle" },
{ "Name": "Nannette Ebbetts" },
{ "Name": "Loreen Petley" },
{ "Name": "Sianna McPharlain" },
{ "Name": "Kaylil Gossan" },
{ "Name": "Kendra Godthaab" },
{ "Name": "Keeley Weerdenburg" },
{ "Name": "Gearard Boulsher" },
{ "Name": "Johnna McDonagh" },
{ "Name": "Dolorita Tugwell" },
{ "Name": "Billy Semmence" },
{ "Name": "Joyann Swatton" },
{ "Name": "Zacharie Mesnard" },
{ "Name": "Terri-jo Cranny" },
{ "Name": "Alaine Lewington" },
{ "Name": "Loralyn Dick" },
{ "Name": "Morton Penella" },
{ "Name": "Yurik Friel" },
{ "Name": "Claudian Rentalll" },
{ "Name": "Maribel Hubery" },
{ "Name": "Enrika Connolly" },
{ "Name": "Marina Garmons" },
{ "Name": "Ariel Ege" },
{ "Name": "Denni Georghiou" },
{ "Name": "Humphrey Grinham" },
{ "Name": "Stanley Kolodziej" },
{ "Name": "Malva Aylett" },
{ "Name": "Mair Wolfinger" },
{ "Name": "Tim Kelberer" },
{ "Name": "Fayette Brocket" },
{ "Name": "Neill Cottrill" },
{ "Name": "Louella Tordoff" },
{ "Name": "Sib Winnister" },
{ "Name": "Patrick Megarry" },
{ "Name": "Shelley Rangle" },
{ "Name": "Andonis Napier" },
{ "Name": "Georgia Tatum" },
{ "Name": "Arlena Lebourn" },
{ "Name": "Gannon Pickworth" },
{ "Name": "Kayle Usherwood" },
{ "Name": "Alaine Lenoir" },
{ "Name": "Bambi Tresler" },
{ "Name": "Austina Braddick" },
{ "Name": "Hester Torrent" },
{ "Name": "Dedie Hobson" },
{ "Name": "Linn Caulier" },
{ "Name": "Dulci Enrico" },
{ "Name": "Jeni Rogge" },
{ "Name": "Hyacinthie Caplis" },
{ "Name": "Marielle Limbourne" },
{ "Name": "Kaia Gamil" },
{ "Name": "Lindon Ganforth" },
{ "Name": "Cyndia Possek" },
{ "Name": "Melisande Maxweell" },
{ "Name": "Cornela Dacks" },
{ "Name": "Chick Heale" },
{ "Name": "Worden Vick" },
{ "Name": "Craggy Nower" },
{ "Name": "Minni Gammel" },
{ "Name": "Hanni Danneil" },
{ "Name": "Agathe Earengey" },
{ "Name": "Roddie Samper" },
{ "Name": "Geneva Parratt" },
{ "Name": "Tandie Weatherup" },
{ "Name": "Emmi Reany" },
{ "Name": "Allissa Kleinplac" },
{ "Name": "Kelsey Vaggs" },
{ "Name": "Chad Knobell" },
{ "Name": "Sibelle Wooller" },
{ "Name": "Chic Sirrell" },
{ "Name": "Griswold Kayes" },
{ "Name": "Shirlee Stackbridge" },
{ "Name": "Ashley Ugo" },
{ "Name": "Henriette Lampens" },
{ "Name": "Zaneta Roussell" },
{ "Name": "Celestia Newvell" },
{ "Name": "Morgana Jervoise" },
{ "Name": "Rhodie Pylkynyton" },
{ "Name": "Fonzie Swiers" },
{ "Name": "Bethanne Sainz" },
{ "Name": "Althea Divill" },
{ "Name": "Lucie Syalvester" },
{ "Name": "Gigi Ciani" },
{ "Name": "Joellen Falconbridge" },
{ "Name": "Hollis Vassall" },
{ "Name": "Lindon Glassborow" },
{ "Name": "Lynde Vivers" },
{ "Name": "Gar Scrigmour" },
{ "Name": "Fredek Sporton" },
{ "Name": "Ardath Schottli" },
{ "Name": "Sol Dwane" },
{ "Name": "Gardner Lownsbrough" },
{ "Name": "Lynna Gorstidge" },
{ "Name": "Antonina Berston" },
{ "Name": "Binny Kingsnode" },
{ "Name": "Janeta Noar" },
{ "Name": "Adorne Emett" },
{ "Name": "Jephthah Montfort" },
{ "Name": "Francisco Patillo" },
{ "Name": "Elle Heyball" },
{ "Name": "Gypsy Picott" },
{ "Name": "Karissa Lownie" },
{ "Name": "Nonie Conry" },
{ "Name": "Aurlie Cordrey" },
{ "Name": "Pru Di Maria" },
{ "Name": "Carling Houldin" },
{ "Name": "Leland Hickin" },
{ "Name": "Ediva Wingfield" },
{ "Name": "Stefano Westcot" },
{ "Name": "Marie-jeanne Davidsson" },
{ "Name": "Liv Davydzenko" },
{ "Name": "Bartlett Hartzenberg" },
{ "Name": "Ashia Diplock" },
{ "Name": "Merilee Clapham" },
{ "Name": "Dugald Baszkiewicz" },
{ "Name": "Xerxes Cutford" },
{ "Name": "Marshall Braunton" },
{ "Name": "Sheilah Vannikov" },
{ "Name": "Grazia Tuiller" },
{ "Name": "Tadeo Stonehewer" },
{ "Name": "Tori Hurdman" },
{ "Name": "Susann Schutte" },
{ "Name": "Brendis Aitken" },
{ "Name": "Malvin Stockford" },
{ "Name": "Callie Poulter" },
{ "Name": "Percival Cornillot" },
{ "Name": "Lezlie Rowley" },
{ "Name": "Lilli Rouchy" },
{ "Name": "Rinaldo Goodredge" },
{ "Name": "Pat Gillio" },
{ "Name": "Raynell Rouge" },
{ "Name": "Adelheid Heatley" },
{ "Name": "Kirstin Ayshford" },
{ "Name": "Lotta Gosland" },
{ "Name": "Hope Watchorn" },
{ "Name": "Lissa Corr" },
{ "Name": "Yehudit Grzelewski" },
{ "Name": "Consalve Goburn" },
{ "Name": "Rolland Brewett" },
{ "Name": "Marcelia Musselwhite" },
{ "Name": "Jaquenetta Gillian" },
{ "Name": "Millie Torri" },
{ "Name": "Collie Whetland" },
{ "Name": "Neil Toppin" },
{ "Name": "Brier McKimmey" },
{ "Name": "Rogers Rannigan" },
{ "Name": "Krista Coldrick" },
{ "Name": "Kathe Turnpenny" },
{ "Name": "Shayne Mapstone" },
{ "Name": "Candida Janicki" },
{ "Name": "Patty Klausen" },
{ "Name": "Tuck Brantzen" },
{ "Name": "Kiah Ilieve" },
{ "Name": "Ronni Gibke" },
{ "Name": "Brok Mansford" },
{ "Name": "Kinny Crasford" },
{ "Name": "Adora Martijn" },
{ "Name": "Tamiko Pavier" },
{ "Name": "Billi Mahon" },
{ "Name": "Arlen Smythe" },
{ "Name": "Arvin Lorkins" },
{ "Name": "Fanechka Ruston" },
{ "Name": "Thelma Halms" },
{ "Name": "Bjorn Koopman" },
{ "Name": "Luella Kleiner" },
{ "Name": "Ester Vedishchev" },
{ "Name": "Daveta Chasney" },
{ "Name": "Elsworth Hobell" },
{ "Name": "Brice Moxsom" },
{ "Name": "Jeannie Danelutti" },
{ "Name": "Akim Kohneke" },
{ "Name": "Sanson Cirlos" },
{ "Name": "Court Egger" },
{ "Name": "Evvy Goodfield" },
{ "Name": "Abey Lamport" },
{ "Name": "Melina Lardeur" },
{ "Name": "Flynn Marchant" },
{ "Name": "Karola Vedenyapin" },
{ "Name": "Demetre Masic" },
{ "Name": "Liane Collimore" },
{ "Name": "Vanda Navarre" },
{ "Name": "Alys Ollivier" },
{ "Name": "Dannye Kilday" },
{ "Name": "Bettine Handforth" },
{ "Name": "Shell Lesurf" },
{ "Name": "Raquela Pargetter" },
{ "Name": "Angeline Childers" },
{ "Name": "Allyn Powell" },
{ "Name": "Caz Hyslop" },
{ "Name": "Jesselyn Andriveaux" },
{ "Name": "Ruggiero Isley" },
{ "Name": "Faustine Trillow" },
{ "Name": "Cecil Dudney" },
{ "Name": "Consolata Taggart" }]
export let categoryIncomeData: { [key: string]: Object }[] = [
{ Class: 'category-icon Salary', Category: 'Salary', Id: 'Salary' },
{ Class: 'category-icon Interests', Category: 'Interests', Id: 'Interests' },
{ Class: 'category-icon Business', Category: 'Business', Id: 'Business' },
{ Class: 'category-icon Extra income', Category: 'Extra income', Id: 'Extra income' }
];
export let categoryExpenseData: { [key: string]: Object }[] = [
{ Class: 'category-icon Rent', Category: 'Rent', Id: 'Rent' },
{ Class: 'category-icon Food', Category: 'Food', Id: 'Food' },
{ Class: 'category-icon Bills', Category: 'Bills', Id: 'Bills' },
{ Class: 'category-icon Utilities', Category: 'Utilities', Id: 'Utilities' },
{ Class: 'category-icon Transportation', Category: 'Transportation', Id: 'Transportation' },
{ Class: 'category-icon Insurance', Category: 'Insurance', Id: 'Insurance' },
{ Class: 'category-icon Shopping', Category: 'Shopping', Id: 'Shopping' },
{ Class: 'category-icon Entertainment', Category: 'Entertainment', Id: 'Entertainment' },
{ Class: 'category-icon Health Care', Category: 'Health Care', Id: 'Health Care' },
{ Class: 'category-icon Housing', Category: 'Housing', Id: 'Housing' },
{ Class: 'category-icon Taxes', Category: 'Taxes', Id: 'Taxes' },
{ Class: 'category-icon Clothing', Category: 'Clothing', Id: 'Clothing' },
{ Class: 'category-icon Education', Category: 'Education', Id: 'Education' },
{ Class: 'category-icon Miscellaneous', Category: 'Miscellaneous', Id: 'Miscellaneous' },
{ Class: 'category-icon Personal Care', Category: 'Personal Care', Id: 'Personal Care' }
];
export interface MyWindow extends Window {
expense: () => void;
about: () => void;
settings: () => void;
dashboard: () => void;
getDate: (value: Date) => string;
getCurrencyVal: (value: number) => string;
getNumberVal: (value: number) => string;
expenseData: Object;
startDate: Date;
endDate: Date;
userName: string;
userFirstName: string;
}
export let expenseData: Object[] = [{
'UniqueId': 'T100001',
'DateTime': new Date(1496288520000),
'Category': 'Food',
'PaymentMode': 'Credit Card',
'TransactionType': 'Expense',
'Description': 'Boiled peanuts',
'Amount': '7',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/01/2017 09:12 AM'
}, {
'UniqueId': 'T100002',
'DateTime': new Date(1496308620000),
'Category': 'Food',
'PaymentMode': 'Debit Card',
'TransactionType': 'Expense',
'Description': 'Boiled peanuts',
'Amount': '7',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/01/2017 02:47 PM'
}, {
'UniqueId': 'T100003',
'DateTime': new Date(1496330580000),
'Category': 'Food',
'PaymentMode': 'Cash',
'TransactionType': 'Expense',
'Description': 'Confederate cush',
'Amount': '11',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/01/2017 08:53 PM'
}, {
'UniqueId': 'T100004',
'DateTime': new Date(1496294040000),
'Category': 'Transportation',
'PaymentMode': 'Credit Card',
'TransactionType': 'Expense',
'Description': 'Public and other transportation',
'Amount': '7',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/01/2017 10:44 AM'
}, {
'UniqueId': 'T100005',
'DateTime': new Date(1496310900000),
'Category': 'Transportation',
'PaymentMode': 'Cash',
'TransactionType': 'Expense',
'Description': 'Public and other transportation',
'Amount': '7',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/01/2017 03:25 PM'
}, {
'UniqueId': 'T100006',
'DateTime': new Date(1496310480000),
'Category': 'Shopping',
'PaymentMode': 'Cash',
'TransactionType': 'Expense',
'Description': 'Household things \u0026 Utilities',
'Amount': '155',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/01/2017 03:18 PM'
}, {
'UniqueId': 'T100007',
'DateTime': new Date(1496312340000),
'Category': 'Mortgage / Rent',
'PaymentMode': 'Cash',
'TransactionType': 'Expense',
'Description': 'Monthly rent',
'Amount': '1000',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/01/2017 03:49 PM'
}, {
'UniqueId': 'T100008',
'DateTime': new Date(1496311500000),
'Category': 'Salary',
'PaymentMode': 'Cash',
'TransactionType': 'Income',
'Description': 'Monthly Net Salary',
'Amount': '6000',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/01/2017 03:35 PM'
}, {
'UniqueId': 'T100009',
'DateTime': new Date(1496376540000),
'Category': 'Food',
'PaymentMode': 'Debit Card',
'TransactionType': 'Expense',
'Description': 'Muffuletta sandwich, Mint julep',
'Amount': '12',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/02/2017 09:39 AM'
}, {
'UniqueId': 'T100010',
'DateTime': new Date(1496394900000),
'Category': 'Food',
'PaymentMode': 'Debit Card',
'TransactionType': 'Expense',
'Description': 'Creole cream cheese',
'Amount': '12',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/02/2017 02:45 PM'
}, {
'UniqueId': 'T100011',
'DateTime': new Date(1496414460000),
'Category': 'Food',
'PaymentMode': 'Debit Card',
'TransactionType': 'Expense',
'Description': 'Po\u0027 boy sandwich, RC Cola',
'Amount': '7',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/02/2017 08:11 PM'
}, {
'UniqueId': 'T100012',
'DateTime': new Date(1496378460000),
'Category': 'Transportation',
'PaymentMode': 'Credit Card',
'TransactionType': 'Expense',
'Description': 'Cars and trucks, used',
'Amount': '9',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/02/2017 10:11 AM'
}, {
'UniqueId': 'T100013',
'DateTime': new Date(1496397300000),
'Category': 'Transportation',
'PaymentMode': 'Debit Card',
'TransactionType': 'Expense',
'Description': 'Cars and trucks, used',
'Amount': '7',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/02/2017 03:25 PM'
}, {
'UniqueId': 'T100014',
'DateTime': new Date(1496411340000),
'Category': 'Clothing',
'PaymentMode': 'Cash',
'TransactionType': 'Expense',
'Description': 'Pair of Jeans',
'Amount': '150',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/02/2017 07:19 PM'
}, {
'UniqueId': 'T100015',
'DateTime': new Date(1496411160000),
'Category': 'Housing',
'PaymentMode': 'Debit Card',
'TransactionType': 'Expense',
'Description': 'Other household products',
'Amount': '25',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/02/2017 07:16 PM'
}, {
'UniqueId': 'T100016',
'DateTime': new Date(1496461320000),
'Category': 'Food',
'PaymentMode': 'Debit Card',
'TransactionType': 'Expense',
'Description': 'Confederate cush',
'Amount': '10',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/03/2017 09:12 AM'
}, {
'UniqueId': 'T100017',
'DateTime': new Date(1496480700000),
'Category': 'Food',
'PaymentMode': 'Cash',
'TransactionType': 'Expense',
'Description': 'Boiled peanuts',
'Amount': '7',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/03/2017 02:35 PM'
}, {
'UniqueId': 'T100018',
'DateTime': new Date(1496502480000),
'Category': 'Food',
'PaymentMode': 'Cash',
'TransactionType': 'Expense',
'Description': 'Chicken salad, Mello Yello',
'Amount': '12',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/03/2017 08:38 PM'
}, {
'UniqueId': 'T100019',
'DateTime': new Date(1496465520000),
'Category': 'Transportation',
'PaymentMode': 'Credit Card',
'TransactionType': 'Expense',
'Description': 'Other vehicle expenses',
'Amount': '10',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/03/2017 10:22 AM'
}, {
'UniqueId': 'T100020',
'DateTime': new Date(1496483460000),
'Category': 'Transportation',
'PaymentMode': 'Cash',
'TransactionType': 'Expense',
'Description': 'Cars and trucks, used',
'Amount': '7',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/03/2017 03:21 PM'
}, {
'UniqueId': 'T100021',
'DateTime': new Date(1496481300000),
'Category': 'Utilities',
'PaymentMode': 'Credit Card',
'TransactionType': 'Expense',
'Description': 'Expense for Utilities',
'Amount': '350',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/03/2017 02:45 PM'
}, {
'UniqueId': 'T100022',
'DateTime': new Date(1496480220000),
'Category': 'Bills',
'PaymentMode': 'Debit Card',
'TransactionType': 'Expense',
'Description': 'Cellular phone service',
'Amount': '220',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/03/2017 02:27 PM'
}, {
'UniqueId': 'T100023',
'DateTime': new Date(1496549160000),
'Category': 'Food',
'PaymentMode': 'Credit Card',
'TransactionType': 'Expense',
'Description': 'Peanuts in Coke',
'Amount': '10',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/04/2017 09:36 AM'
}, {
'UniqueId': 'T100024',
'DateTime': new Date(1496567580000),
'Category': 'Food',
'PaymentMode': 'Cash',
'TransactionType': 'Expense',
'Description': 'Peanuts in Coke',
'Amount': '8',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/04/2017 02:43 PM'
}, {
'UniqueId': 'T100025',
'DateTime': new Date(1496588700000),
'Category': 'Food',
'PaymentMode': 'Cash',
'TransactionType': 'Expense',
'Description': 'Palmetto Cheese, Mint julep',
'Amount': '11',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/04/2017 08:35 PM'
}, {
'UniqueId': 'T100026',
'DateTime': new Date(1496552100000),
'Category': 'Transportation',
'PaymentMode': 'Debit Card',
'TransactionType': 'Expense',
'Description': 'Cars and trucks, used',
'Amount': '9',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/04/2017 10:25 AM'
}, {
'UniqueId': 'T100027',
'DateTime': new Date(1496571900000),
'Category': 'Transportation',
'PaymentMode': 'Debit Card',
'TransactionType': 'Expense',
'Description': 'Public and other transportation',
'Amount': '8',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/04/2017 03:55 PM'
}, {
'UniqueId': 'T100028',
'DateTime': new Date(1496551920000),
'Category': 'Shopping',
'PaymentMode': 'Cash',
'TransactionType': 'Expense',
'Description': 'Household things \u0026 Utilities',
'Amount': '160',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/04/2017 10:22 AM'
}, {
'UniqueId': 'T100029',
'DateTime': new Date(1496552700000),
'Category': 'Personal Care',
'PaymentMode': 'Cash',
'TransactionType': 'Expense',
'Description': 'Short visit to private Doctor',
'Amount': '20',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/04/2017 10:35 AM'
}, {
'UniqueId': 'T100030',
'DateTime': new Date(1496554020000),
'Category': 'Extra income',
'PaymentMode': 'Cash',
'TransactionType': 'Income',
'Description': 'Income from returns',
'Amount': '120',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/04/2017 10:57 AM'
}, {
'UniqueId': 'T100031',
'DateTime': new Date(1496634120000),
'Category': 'Food',
'PaymentMode': 'Cash',
'TransactionType': 'Expense',
'Description': 'Confederate cush',
'Amount': '12',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/05/2017 09:12 AM'
}, {
'UniqueId': 'T100032',
'DateTime': new Date(1496653560000),
'Category': 'Food',
'PaymentMode': 'Debit Card',
'TransactionType': 'Expense',
'Description': 'Pickled pigs feet',
'Amount': '11',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/05/2017 02:36 PM'
}, {
'UniqueId': 'T100033',
'DateTime': new Date(1496673960000),
'Category': 'Food',
'PaymentMode': 'Cash',
'TransactionType': 'Expense',
'Description': 'Steen\u0027s cane syrup',
'Amount': '11',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/05/2017 08:16 PM'
}, {
'UniqueId': 'T100034',
'DateTime': new Date(1496637660000),
'Category': 'Transportation',
'PaymentMode': 'Credit Card',
'TransactionType': 'Expense',
'Description': 'Public and other transportation',
'Amount': '7',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/05/2017 10:11 AM'
}, {
'UniqueId': 'T100035',
'DateTime': new Date(1496657040000),
'Category': 'Transportation',
'PaymentMode': 'Debit Card',
'TransactionType': 'Expense',
'Description': 'Other vehicle expenses',
'Amount': '10',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/05/2017 03:34 PM'
}, {
'UniqueId': 'T100036',
'DateTime': new Date(1496671860000),
'Category': 'Housing',
'PaymentMode': 'Cash',
'TransactionType': 'Expense',
'Description': 'Household furnishings',
'Amount': '30',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/05/2017 07:41 PM'
}, {
'UniqueId': 'T100037',
'DateTime': new Date(1496671620000),
'Category': 'Miscellaneous',
'PaymentMode': 'Debit Card',
'TransactionType': 'Expense',
'Description': 'Tennis Court Rent',
'Amount': '6',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/05/2017 07:37 PM'
}, {
'UniqueId': 'T100038',
'DateTime': new Date(1496720520000),
'Category': 'Food',
'PaymentMode': 'Credit Card',
'TransactionType': 'Expense',
'Description': 'Steen\u0027s cane syrup',
'Amount': '11',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/06/2017 09:12 AM'
}, {
'UniqueId': 'T100039',
'DateTime': new Date(1496739060000),
'Category': 'Food',
'PaymentMode': 'Cash',
'TransactionType': 'Expense',
'Description': 'Peanuts in Coke',
'Amount': '6',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/06/2017 02:21 PM'
}, {
'UniqueId': 'T100040',
'DateTime': new Date(1496761140000),
'Category': 'Food',
'PaymentMode': 'Debit Card',
'TransactionType': 'Expense',
'Description': 'Frito pie, Muscadine wine and juice',
'Amount': '12',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/06/2017 08:29 PM'
}, {
'UniqueId': 'T100041',
'DateTime': new Date(1496726040000),
'Category': 'Transportation',
'PaymentMode': 'Cash',
'TransactionType': 'Expense',
'Description': 'Vehicle purchases',
'Amount': '11',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/06/2017 10:44 AM'
}, {
'UniqueId': 'T100042',
'DateTime': new Date(1496744760000),
'Category': 'Transportation',
'PaymentMode': 'Debit Card',
'TransactionType': 'Expense',
'Description': 'Cars and trucks, used',
'Amount': '7',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/06/2017 03:56 PM'
}, {
'UniqueId': 'T100043',
'DateTime': new Date(1496753340000),
'Category': 'Health Care',
'PaymentMode': 'Credit Card',
'TransactionType': 'Expense',
'Description': 'Expense for Health Care',
'Amount': '70',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/06/2017 06:19 PM'
}, {
'UniqueId': 'T100044',
'DateTime': new Date(1496752980000),
'Category': 'Extra income',
'PaymentMode': 'Cash',
'TransactionType': 'Income',
'Description': 'Income from returns',
'Amount': '120',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/06/2017 06:13 PM'
}, {
'UniqueId': 'T100045',
'DateTime': new Date(1496808120000),
'Category': 'Food',
'PaymentMode': 'Credit Card',
'TransactionType': 'Expense',
'Description': 'Pickled pigs feet',
'Amount': '6',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/07/2017 09:32 AM'
}, {
'UniqueId': 'T100046',
'DateTime': new Date(1496826300000),
'Category': 'Food',
'PaymentMode': 'Cash',
'TransactionType': 'Expense',
'Description': 'Beer cheese',
'Amount': '10',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/07/2017 02:35 PM'
}, {
'UniqueId': 'T100047',
'DateTime': new Date(1496849100000),
'Category': 'Food',
'PaymentMode': 'Credit Card',
'TransactionType': 'Expense',
'Description': 'Frito pie, Muscadine wine and juice',
'Amount': '8',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/07/2017 08:55 PM'
}, {
'UniqueId': 'T100048',
'DateTime': new Date(1496811840000),
'Category': 'Transportation',
'PaymentMode': 'Credit Card',
'TransactionType': 'Expense',
'Description': 'Vehicle purchases',
'Amount': '10',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/07/2017 10:34 AM'
}, {
'UniqueId': 'T100049',
'DateTime': new Date(1496828700000),
'Category': 'Transportation',
'PaymentMode': 'Debit Card',
'TransactionType': 'Expense',
'Description': 'Maintenance and repairs',
'Amount': '11',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/07/2017 03:15 PM'
}, {
'UniqueId': 'T100050',
'DateTime': new Date(1496849340000),
'Category': 'Miscellaneous',
'PaymentMode': 'Debit Card',
'TransactionType': 'Expense',
'Description': 'Internet use',
'Amount': '7',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/07/2017 08:59 PM'
}, {
'UniqueId': 'T100051',
'DateTime': new Date(1496893320000),
'Category': 'Food',
'PaymentMode': 'Cash',
'TransactionType': 'Expense',
'Description': 'Steen\u0027s cane syrup',
'Amount': '6',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/08/2017 09:12 AM'
}, {
'UniqueId': 'T100052',
'DateTime': new Date(1496911560000),
'Category': 'Food',
'PaymentMode': 'Cash',
'TransactionType': 'Expense',
'Description': 'Boiled peanuts',
'Amount': '11',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/08/2017 02:16 PM'
}, {
'UniqueId': 'T100053',
'DateTime': new Date(1496933700000),
'Category': 'Food',
'PaymentMode': 'Cash',
'TransactionType': 'Expense',
'Description': 'Pimento cheese sandwich',
'Amount': '8',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/08/2017 08:25 PM'
}, {
'UniqueId': 'T100054',
'DateTime': new Date(1496898660000),
'Category': 'Transportation',
'PaymentMode': 'Debit Card',
'TransactionType': 'Expense',
'Description': 'Vehicle purchases',
'Amount': '8',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/08/2017 10:41 AM'
}, {
'UniqueId': 'T100055',
'DateTime': new Date(1496915520000),
'Category': 'Transportation',
'PaymentMode': 'Debit Card',
'TransactionType': 'Expense',
'Description': 'Cars and trucks, used',
'Amount': '10',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/08/2017 03:22 PM'
}, {
'UniqueId': 'T100056',
'DateTime': new Date(1496901540000),
'Category': 'Shopping',
'PaymentMode': 'Credit Card',
'TransactionType': 'Expense',
'Description': 'Beauty care things',
'Amount': '50',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/08/2017 11:29 AM'
}, {
'UniqueId': 'T100057',
'DateTime': new Date(1496900940000),
'Category': 'Interests',
'PaymentMode': 'Cash',
'TransactionType': 'Income',
'Description': 'Income from Interests',
'Amount': '120',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/08/2017 11:19 AM'
}, {
'UniqueId': 'T100058',
'DateTime': new Date(1496980140000),
'Category': 'Food',
'PaymentMode': 'Debit Card',
'TransactionType': 'Expense',
'Description': 'Vienna sausages, Mello Yello',
'Amount': '7',
'MonthShort': 'Jun',
'MonthFull': 'June, 2017',
'FormattedDate': '06/09/2017 09:19 AM'
}, {
'UniqueId': 'T100059',
'DateTime': new Date(1496999040000),
'Category': 'Food',
'PaymentMode': 'Cash',
'TransactionType': 'Expense',
'Description': 'Fatback or hog jowl',