-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdataset.csv
We can't make this file beautiful and searchable because it's too large.
3179 lines (3179 loc) · 595 KB
/
dataset.csv
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
add_to_cart,address,card_no,card_type,checkout,country,delivery_method,email,ip_address,listed,no_of_items,num_order,product_cost,product_id,product_name,user_created,user_facebook,user_name,user_twitter,zip,fraud
1352249700,3112 Veith Lane,4.04E+15,visa,1352249804,United States,1,[email protected],302144411,1,1,1,330000,326108,Dell Inspiron 15 7560,1334098538,0,Elnore Browse,0,64190,0
1360838252,409 Maywood Terrace,3.55E+15,jcb,1363691054,United States,0,[email protected],3302521530,1,3,1,330000,326108,Dell Inspiron 15 7560,1360838250,0,Jilli Ivashov,0,33811,0
1303155213,1 Burning Wood Avenue,3.57E+15,jcb,1303155973,United States,0,[email protected],4252341219,1,5,2,330000,326108,Dell Inspiron 15 7560,1303155210,0,Alina Buggy,0,45208,1
1305690241,84599 Schmedeman Road,5.60E+15,china-unionpay,1305690273,United States,0,[email protected],554093923.6,0,2,2,330000,326108,Dell Inspiron 15 7560,1295576777,0,Clemmie Thieme,0,32575,1
1314803948,83 Burrows Hill,6.76E+15,maestro,1314806104,United States,1,[email protected],2901802036,0,2,2,330000,326108,Dell Inspiron 15 7560,1273339382,0,Florinda Nelligan,0,24040,0
1334579806,19 Kropf Trail,3.54E+15,jcb,1334586562,United States,0,[email protected],4254323523,0,5,2,330000,326108,Dell Inspiron 15 7560,1315415093,0,Tommi Keatch,0,94627,0
1375307765,0420 Wayridge Terrace,5.10E+15,mastercard,1375308109,United States,0,[email protected],2709047386,1,5,2,330000,326108,Dell Inspiron 15 7560,1375307764,0,Ferdinanda Haverson,0,77806,0
1352951194,2 Lighthouse Bay Street,3.55E+15,jcb,1352956821,United States,0,[email protected],405403246,1,5,5,330000,326108,Dell Inspiron 15 7560,1349324101,0,Mollie Welch,0,78215,0
1307638041,74552 Morningstar Alley,4.90E+15,switch,1307641897,United States,0,[email protected],3901089997,1,2,6,330000,326108,Dell Inspiron 15 7560,1251155771,0,Fabian Cursons,0,27690,0
1338299113,05395 Bonner Pass,5.64E+15,switch,1338576203,United States,0,[email protected],624845543,0,5,6,330000,326108,Dell Inspiron 15 7560,1337176820,0,Angelo Wyer,0,14614,0
1351043201,0 La Follette Point,3.53E+15,jcb,1351043449,United States,0,[email protected],189650610,1,4,6,330000,326108,Dell Inspiron 15 7560,1300146631,0,Ebeneser Mattson,0,79934,0
1362753604,1 Gulseth Junction,2.02E+15,diners-club-enroute,1362753631,United States,1,[email protected],526312995,1,3,7,330000,326108,Dell Inspiron 15 7560,1351867513,0,Barbi Angerstein,0,94273,0
1377026350,9 Springs Junction,6.77E+15,solo,1377026438,United States,1,[email protected],421864932,1,5,7,330000,326108,Dell Inspiron 15 7560,1370392679,0,Suzette Lemmertz,0,98175,0
1378202805,10 Monica Crossing,5.60E+15,bankcard,1378207281,United States,0,[email protected],2315929131,1,3,9,330000,326108,Dell Inspiron 15 7560,1375354886,0,Korey Clendennen,0,75210,1
1301650089,076 Main Pass,5.50E+15,mastercard,1302608850,United States,0,[email protected],974993394,0,1,19,330000,326108,Dell Inspiron 15 7560,1294070445,0,Graeme Zukierman,0,77075,0
1362394717,50 Victoria Junction,4.02E+15,visa,1363094568,United States,1,[email protected],1261682242,1,5,25,330000,326108,Dell Inspiron 15 7560,1262003745,0,Kynthia Train,0,27499,0
1343699225,40 Shelley Way,5.20E+15,mastercard,1344616398,United States,0,[email protected],1208231212,1,3,26,330000,326108,Dell Inspiron 15 7560,1300312903,0,Dionisio Birchwood,0,98664,0
1290959423,235 6th Junction,6.30E+15,maestro,1290960030,United States,1,[email protected],4157420266,1,1,30,330000,326108,Dell Inspiron 15 7560,1264885470,0,Lief Baack,0,20036,0
1340365943,3 7th Pass,3.57E+15,jcb,1340366210,United States,0,[email protected],1627859288,1,3,65,330000,326108,Dell Inspiron 15 7560,1329997992,0,Demott Quidenham,0,55905,0
1354583901,96044 Anthes Terrace,5.05E+15,mastercard,1354730535,United States,0,[email protected],1527380398,1,5,84,330000,326108,Dell Inspiron 15 7560,1354583899,0,Aurilia Rodden,0,48335,0
1348667188,9 Almo Alley,5.89E+15,maestro,1348670259,United States,0,[email protected],1010300394,1,4,149,330000,326108,Dell Inspiron 15 7560,1336040883,11,Jada Giacomazzo,0,38197,0
1355163661,1 Kensington Hill,5.60E+15,bankcard,1355163899,United States,0,[email protected],3698647672,1,5,1,330000,326108,Dell Inspiron 15 7560,1271284496,14,Jackquelin Stratz,0,92844,0
1301507099,06 Stoughton Place,5.54E+15,diners-club-us-ca,1301507901,United States,1,[email protected],1174508034,1,3,26,330000,326108,Dell Inspiron 15 7560,1297293435,62,Jolyn Canero,0,85215,0
1346860377,64 Manitowish Park,5.60E+15,china-unionpay,1346860555,United States,0,[email protected],2002956334,1,1,10,330000,326108,Dell Inspiron 15 7560,1285945525,34,Kylen Lodge,11,33436,0
1355311826,3 Golf View Park,3.56E+15,jcb,1355311867,United States,1,[email protected],3766199107,1,5,5,330000,326108,Dell Inspiron 15 7560,1345636314,12,De Cawkwell,12,80279,0
1374233126,0 Hollow Ridge Terrace,3.53E+15,jcb,1374750792,United States,1,[email protected],2786207134,1,3,187,330000,326108,Dell Inspiron 15 7560,1324321428,12,Aindrea Hugnin,13,31605,0
1332835778,5 Westerfield Drive,6.76E+15,maestro,1332873167,United States,1,[email protected],3642314658,1,5,8,330000,326108,Dell Inspiron 15 7560,1305888636,13,Sidoney Bucknall,13,48126,0
1300129507,7 Birchwood Street,3.57E+15,jcb,1300157608,United States,1,[email protected],1058049109,1,5,5,330000,326108,Dell Inspiron 15 7560,1292893433,17,Ethelind Christensen,13,8650,0
1372180627,84 Redwing Terrace,3.01E+15,diners-club-carte-blanche,1372182649,United States,0,[email protected],908923554,1,4,14,330000,326108,Dell Inspiron 15 7560,1372180626,19,Jermaine Cottel,14,98148,0
1366056230,3081 Clove Center,5.60E+15,bankcard,1366057383,United States,1,[email protected],321960529,1,4,4,330000,326108,Dell Inspiron 15 7560,1357758805,15,Gunther Softley,15,76205,0
1362069719,44 Linden Trail,5.60E+15,bankcard,1362072217,United States,0,[email protected],3753039045,1,1,1,330000,326108,Dell Inspiron 15 7560,1362069718,17,Ludwig Isacke,15,85067,0
1335777861,3902 Bay Circle,6.76E+15,maestro,1335780645,United States,0,[email protected],3237029055,1,2,0,267000,326109,Dell XPS 15,1335777860,0,Thomasina Beaudry,0,75236,1
1330744346,81 Dwight Trail,5.60E+15,bankcard,1330744592,United States,1,[email protected],2521182118,1,3,1,267000,326109,Dell XPS 15,1297727927,0,Britni Otridge,0,46852,0
1363351635,007 Miller Lane,3.57E+15,jcb,1363351798,United States,0,[email protected],2889016489,1,2,1,267000,326109,Dell XPS 15,1247502362,0,Jamison Klesl,0,27455,0
1371563115,2556 Clove Point,5.60E+15,china-unionpay,1372324183,United States,0,[email protected],705617326,1,2,1,267000,326109,Dell XPS 15,1371563113,0,Silvan Goodger,0,30245,0
1332443216,747 Badeau Place,6.71E+15,laser,1332443369,United States,0,[email protected],4099113603,1,5,2,267000,326109,Dell XPS 15,1242194207,0,Merrielle Manton,0,31410,0
1371146567,88722 Cordelia Lane,5.01E+15,mastercard,1371146635,United States,0,[email protected],4013846479,1,1,2,267000,326109,Dell XPS 15,1371022785,0,Claiborne McGreary,0,37205,0
1372090662,1 Commercial Alley,3.53E+15,jcb,1373631335,United States,0,[email protected],3841896559,0,5,2,267000,326109,Dell XPS 15,1369250300,0,Danya Yurygyn,0,19610,0
1332435718,61674 Duke Street,3.57E+15,jcb,1332435797,United States,1,[email protected],928501434,1,5,4,267000,326109,Dell XPS 15,1240848948,0,Valdemar Scrace,0,70593,0
1369333455,1462 Coleman Trail,5.60E+15,bankcard,1369336274,United States,0,[email protected],3109888472,1,5,5,267000,326109,Dell XPS 15,1265466720,0,Marianna Sharpless,0,74184,0
1355440241,821 Morningstar Junction,3.54E+15,jcb,1355441878,United States,0,[email protected],4065449780,1,3,19,267000,326109,Dell XPS 15,1355440008,0,Yanaton Beushaw,0,95205,0
1299529195,2140 Maple Court,5.10E+15,mastercard,1326130474,United States,0,[email protected],3519943878,1,4,38,267000,326109,Dell XPS 15,1284328148,0,Llewellyn Wharrier,0,55123,0
1374075687,2 Acker Place,3.57E+15,jcb,1374077014,United States,0,[email protected],1713033931,1,1,51,267000,326109,Dell XPS 15,1265353951,0,Ahmad Reedick,0,52410,0
1346174710,15 Aberg Terrace,6.37E+15,instapayment,1347052772,United States,0,[email protected],3476033691,1,4,57,267000,326109,Dell XPS 15,1342548587,0,Fidelio Worral,0,25389,0
1363565962,092 Clove Plaza,3.53E+15,jcb,1363567422,United States,1,[email protected],907201803,1,5,61,267000,326109,Dell XPS 15,1326427318,0,Barney Stepto,0,6705,0
1349732092,2070 Dixon Alley,3.56E+15,jcb,1349829036,United States,0,[email protected],1744057345,1,5,87,267000,326109,Dell XPS 15,1344032402,0,Gardiner Liell,0,8695,0
1364232954,87 Muir Lane,5.00E+15,mastercard,1364235212,United States,1,[email protected],822524163,1,2,143,267000,326109,Dell XPS 15,1251916887,0,Antone Morgan,0,66276,0
1300040141,87 Katie Way,5.64E+15,switch,1300040216,United States,0,[email protected],2001062134,0,4,180,267000,326109,Dell XPS 15,1253046502,0,Deny Shillam,0,6721,0
1359742449,6552 Fuller Place,3.58E+15,jcb,1359744871,United States,1,[email protected],2907678328,0,4,261,267000,326109,Dell XPS 15,1354089933,0,Bambi Oxley,0,91499,0
1302244558,483 Southridge Point,3.57E+15,jcb,1302253451,United States,0,[email protected],689952849,1,1,742,267000,326109,Dell XPS 15,1273296819,0,Lyssa Keep,0,36195,0
1372752566,503 Tony Lane,5.61E+15,bankcard,1372753391,United States,0,[email protected],2281496195,1,3,3,267000,326109,Dell XPS 15,1323924789,10,Mahalia McCambrois,0,95194,0
1330736420,41 Mandrake Place,3.57E+15,jcb,1330737927,United States,0,[email protected],2458221781,1,2,4,267000,326109,Dell XPS 15,1330731203,0,Tymon Solley,5,63126,0
1308163337,19 Leroy Court,6.39E+15,instapayment,1308163422,United States,0,[email protected],2164257925,1,3,1,267000,326109,Dell XPS 15,1308151171,24,Isa Claige,8,33661,0
1369619471,775 Pawling Junction,3.57E+15,jcb,1369621225,United States,0,[email protected],1930657050,1,4,6,267000,326109,Dell XPS 15,1334291360,21,Waldo Cokayne,9,80638,0
1367427040,6634 Burning Wood Circle,6.77E+15,laser,1368124003,United States,1,[email protected],3699127872,1,4,33,267000,326109,Dell XPS 15,1348763745,10,Venita Bavin,10,80920,0
1336907109,4303 Mccormick Street,5.05E+15,mastercard,1337268655,United States,0,[email protected],3499252937,1,2,4,267000,326109,Dell XPS 15,1335281528,14,Janine Fazackerley,12,79171,0
1354710904,6 Prairieview Plaza,3.04E+15,diners-club-carte-blanche,1354711057,United States,1,[email protected],1342717510,1,1,1,267000,326109,Dell XPS 15,1311151028,16,Keefe Milkins,12,90055,0
1369164123,8627 Melby Drive,3.55E+15,jcb,1369164388,United States,0,[email protected],939655422.2,1,2,1,267000,326109,Dell XPS 15,1367951808,13,Carlotta Stockport,13,98405,0
1337786180,2458 Briar Crest Crossing,3.03E+15,diners-club-carte-blanche,1337790594,United States,0,[email protected],1376111586,1,1,2,267000,326109,Dell XPS 15,1301909286,0,Ax Graveney,14,98175,0
1362372161,631 Sauthoff Road,3.58E+15,jcb,1362376122,United States,0,[email protected],2460941227,1,1,2,267000,326109,Dell XPS 15,1358750889,12,Markus Witt,14,12210,0
1376060584,8482 Waxwing Place,3.56E+15,jcb,1376410637,United States,1,[email protected],994228590,0,1,1,267000,326109,Dell XPS 15,1374431875,0,Pinchas Malitrott,16,11205,0
1347978084,6703 Grasskamp Park,3.56E+15,jcb,1347978503,United States,1,[email protected],2300904784,1,5,1,267000,326109,Dell XPS 15,1287997627,15,Elias Stower,16,31205,0
1335361163,34874 Clove Trail,3.57E+15,jcb,1335361292,United States,0,[email protected],3246081081,0,1,1,480000,326110,Dell AlienWare 15,1329820092,0,Jacquetta Poag,0,87592,0
1361228894,589 Pond Point,6.76E+15,maestro,1362890671,United States,1,[email protected],1564283933,1,5,1,480000,326110,Dell AlienWare 15,1361228893,0,Bridgette Von Salzberg,0,64504,0
1371171003,045 Hollow Ridge Terrace,5.10E+15,mastercard,1371171134,United States,1,[email protected],3825014359,1,2,1,480000,326110,Dell AlienWare 15,1305257937,0,Oralle Ollarenshaw,0,14609,0
1343740741,5 Canary Road,3.58E+15,jcb,1343740925,United States,1,[email protected],671601763.6,1,5,2,480000,326110,Dell AlienWare 15,1300217038,0,Catina Steade,0,76198,0
1297879217,7 Bartillon Lane,3.54E+15,jcb,1298052717,United States,0,[email protected],1957095379,1,5,3,480000,326110,Dell AlienWare 15,1297878809,0,Staford Zecchinii,0,92640,0
1327565569,5 Myrtle Point,3.57E+15,jcb,1327565653,United States,1,[email protected],605613831,1,1,3,480000,326110,Dell AlienWare 15,1327548286,0,Fawne Heffer,0,84120,0
1343060555,18456 Gina Center,5.25E+15,mastercard,1343060782,United States,0,[email protected],2024483339,1,3,3,480000,326110,Dell AlienWare 15,1343060138,0,Tobiah Farge,0,68134,1
1355096203,6 Debs Avenue,4.03E+15,visa-electron,1355096668,United States,1,[email protected],1749693863,0,2,3,480000,326110,Dell AlienWare 15,1347663914,0,Annabelle Myrkus,0,97240,0
1372279940,38 Knutson Center,3.57E+15,jcb,1372279993,United States,3,[email protected],488021948,0,3,3,480000,326110,Dell AlienWare 15,1308777954,0,Kort Trayte,0,78737,0
1374804249,75729 Pankratz Place,5.60E+15,mastercard,1375326462,United States,1,[email protected],3964925280,1,3,6,480000,326110,Dell AlienWare 15,1374804248,0,Jeniece McCosker,0,39204,0
1299957590,3 Mitchell Parkway,3.59E+15,jcb,1299958755,United States,0,[email protected],807744681,1,4,9,480000,326110,Dell AlienWare 15,1268687027,0,Frankie Falck,0,31914,0
1374116355,6892 American Ash Junction,5.60E+15,bankcard,1374118068,United States,1,[email protected],3603905044,1,4,9,480000,326110,Dell AlienWare 15,1256847270,0,Elbert Banaszewski,0,32204,0
1319559689,0 Golf Parkway,5.60E+15,china-unionpay,1319560834,United States,0,[email protected],3938950596,1,5,11,480000,326110,Dell AlienWare 15,1247066048,0,Elli Wickes,0,33487,0
1316581133,43 Fair Oaks Lane,3.03E+15,diners-club-carte-blanche,1316581528,United States,0,[email protected],4132453355,0,2,17,480000,326110,Dell AlienWare 15,1286040953,0,Con Stienton,0,47725,0
1310661758,409 Cascade Circle,2.02E+15,diners-club-enroute,1310661854,United States,1,[email protected],4272227357,0,4,20,480000,326110,Dell AlienWare 15,1295323889,0,Nydia Birchall,0,21290,0
1371839695,3839 Cottonwood Avenue,3.56E+15,jcb,1371849295,United States,0,[email protected],3937455212,1,2,21,480000,326110,Dell AlienWare 15,1286570150,0,Jackqueline Likely,0,11499,0
1307590706,7 Meadow Valley Hill,3.59E+15,jcb,1308061148,United States,0,[email protected],1827508929,1,5,26,480000,326110,Dell AlienWare 15,1307590706,0,Boyd Toombs,0,20238,0
1362415917,798 Mallory Court,5.60E+15,china-unionpay,1362416872,United States,1,[email protected],3985043236,1,3,59,480000,326110,Dell AlienWare 15,1291049531,0,Miquela McGrae,0,94121,0
1345484700,989 Arkansas Alley,5.60E+15,china-unionpay,1345557379,United States,1,[email protected],1660990136,1,4,606,480000,326110,Dell AlienWare 15,1345484699,0,Reeta Van der Velden,0,47812,0
1360085171,08532 Dorton Pass,3.56E+15,jcb,1360253225,United States,0,[email protected],4012830746,1,3,24,480000,326110,Dell AlienWare 15,1349107277,17,Ashlee Boost,0,98506,0
1348680914,224 Mosinee Court,3.03E+15,diners-club-carte-blanche,1348681112,United States,1,[email protected],1226906953,1,3,8,480000,326110,Dell AlienWare 15,1299651441,12,Gwyn Kauschke,2,43656,0
1362622029,66326 Oriole Avenue,3.59E+15,jcb,1362622443,United States,0,[email protected],1767204669,1,3,35,480000,326110,Dell AlienWare 15,1346768159,12,Alexei Caccavale,5,30343,0
1335869645,19 Vernon Street,3.54E+15,jcb,1335973880,United States,1,[email protected],2747389710,1,2,7,480000,326110,Dell AlienWare 15,1267010657,0,Aloisia Tire,6,79105,0
1364891996,41 Bartillon Way,3.56E+15,jcb,1364892104,United States,1,[email protected],658381595,0,5,1,480000,326110,Dell AlienWare 15,1302605101,9,Jolene Stickins,6,33543,0
1312837914,036 Morrow Road,3.78E+15,americanexpress,1312838646,United States,0,[email protected],3087411339,1,2,10,480000,326110,Dell AlienWare 15,1282604097,12,Laina Rudolph,13,11499,0
1379478617,27 Anthes Court,5.10E+15,mastercard,1379481303,United States,0,[email protected],956928270.6,1,2,33,480000,326110,Dell AlienWare 15,1313753976,20,Raffarty Dudman,14,27499,0
1301580654,2 Dapin Center,3.53E+15,jcb,1301580846,United States,1,[email protected],2328491614,1,4,3,480000,326110,Dell AlienWare 15,1260290442,8,Mavis Fildes,15,94975,0
1375229722,00 Sunfield Avenue,3.05E+15,diners-club-carte-blanche,1375231514,United States,1,[email protected],1010911578,1,3,30,480000,326110,Dell AlienWare 15,1369318673,15,Jen Keeping,15,50393,0
1353355523,88405 Killdeer Parkway,3.00E+15,diners-club-carte-blanche,1354035197,United States,0,[email protected],1546065797,1,1,2,480000,326110,Dell AlienWare 15,1346538563,17,Marlon Search,15,63121,0
1360083037,49151 Glendale Drive,5.60E+15,bankcard,1360083449,United States,1,[email protected],3261512441,1,2,20,480000,326110,Dell AlienWare 15,1278646295,12,Clem Connechy,16,60505,0
1357740309,2473 Northport Plaza,5.46E+15,mastercard,1357740456,United States,1,[email protected],3250051320,1,4,2,480000,326110,Dell AlienWare 15,1286459953,15,Fred Scougal,16,23605,0
1367935815,10 Thompson Plaza,5.01E+15,mastercard,1367938007,United States,1,[email protected],3420099079,1,1,1,218000,326111,Dell AlienWare 15,1360339677,0,Yovonnda Burnsall,0,43666,1
1369398241,4 Sauthoff Trail,4.18E+15,visa-electron,1369398591,United States,0,[email protected],1493827788,1,1,1,218000,326111,Dell AlienWare 15,1369398239,0,Klara Ruddin,0,80241,1
1313032896,4 Waubesa Way,6.33E+15,switch,1313033026,United States,0,[email protected],4113009757,1,1,3,218000,326111,Dell AlienWare 15,1312532514,0,Florette Brome,0,40293,1
1329927340,424 Morning Avenue,3.58E+15,jcb,1329927795,United States,1,[email protected],1920299208,1,2,4,218000,326111,Dell AlienWare 15,1285335475,0,Flem Janicijevic,0,91117,0
1371241233,0015 Bayside Crossing,4.51E+15,visa-electron,1371241578,United States,0,[email protected],2671992764,1,1,4,218000,326111,Dell AlienWare 15,1307986901,0,Cindelyn Silverlock,0,40618,0
1371324270,6017 Forster Crossing,3.53E+15,jcb,1371324402,United States,0,[email protected],2883987709,0,2,4,218000,326111,Dell AlienWare 15,1371324269,0,Sig Lillee,0,76011,1
1350714726,25441 Division Park,6.76E+15,maestro,1350714983,United States,1,[email protected],4040140728,1,3,5,218000,326111,Dell AlienWare 15,1349680136,0,Borden Bellefant,0,47405,1
1376239536,053 Mockingbird Point,2.02E+15,diners-club-enroute,1376239895,United States,0,[email protected],2283994626,0,3,5,218000,326111,Dell AlienWare 15,1313088330,0,Veronique Gwillyam,0,43240,0
1377853124,997 Lillian Parkway,3.56E+15,jcb,1377853224,United States,0,[email protected],2885278277,1,1,7,218000,326111,Dell AlienWare 15,1377853118,0,Charline Bucklee,0,47134,1
1342732007,9 Golf Pass,2.02E+15,diners-club-enroute,1342732506,United States,0,[email protected],3873932527,0,1,8,218000,326111,Dell AlienWare 15,1342726981,0,Elaine Clover,0,33982,1
1362760603,19523 Magdeline Court,3.57E+15,jcb,1362760844,United States,0,[email protected],3238572184,0,1,10,218000,326111,Dell AlienWare 15,1362063579,0,Kendal Aizkovitch,0,77346,0
1364391501,504 Butterfield Terrace,3.01E+15,diners-club-carte-blanche,1364397883,United States,1,[email protected],1812952652,0,3,10,218000,326111,Dell AlienWare 15,1308407818,0,Kinsley Gorse,0,85284,0
1341088477,52262 Fair Oaks Pass,4.66E+15,visa,1341088803,United States,0,[email protected],3175378094,1,5,12,218000,326111,Dell AlienWare 15,1281727764,0,Lonnie Blezard,0,76105,0
1307350362,639 Veith Avenue,2.02E+15,diners-club-enroute,1307351666,United States,0,[email protected],1446379402,1,5,34,218000,326111,Dell AlienWare 15,1292268420,0,Charmaine Baud,0,37416,0
1310701028,342 Vera Trail,5.58E+15,diners-club-us-ca,1310705424,United States,1,[email protected],285769127.6,0,4,43,218000,326111,Dell AlienWare 15,1310701027,0,Margalit Flew,0,85205,0
1337975032,98 Parkside Parkway,4.03E+15,visa-electron,1337975701,United States,0,[email protected],3250758728,1,1,58,218000,326111,Dell AlienWare 15,1244485533,0,Ana Nisco,0,80945,0
1314137045,5923 Brown Crossing,3.53E+15,jcb,1314138678,United States,1,[email protected],2699423222,1,5,97,218000,326111,Dell AlienWare 15,1294706541,0,Gare Klas,0,97255,0
1351606754,4811 Montana Plaza,3.56E+15,jcb,1351607688,United States,1,[email protected],1822723800,1,2,13,218000,326111,Dell AlienWare 15,1269441390,8,Anitra Gallandre,0,70505,0
1339023236,482 Spohn Road,6.77E+15,laser,1339025351,United States,0,[email protected],604063797.4,0,1,23,218000,326111,Dell AlienWare 15,1339023235,17,Dom Allflatt,0,2745,0
1349852722,1192 Iowa Pass,3.59E+15,jcb,1349855098,United States,0,[email protected],4050150602,1,3,1,218000,326111,Dell AlienWare 15,1349852722,23,Parry Kelsey,0,79999,1
1366391200,97 Mandrake Parkway,3.49E+15,americanexpress,1366391439,United States,1,[email protected],3418030268,1,1,1,218000,326111,Dell AlienWare 15,1265048747,32,Melisenda Rushford,6,38197,0
1329359441,3154 Anzinger Court,3.54E+15,jcb,1329360501,United States,0,[email protected],52502342.2,1,2,17,218000,326111,Dell AlienWare 15,1238000985,51,Dynah Lidyard,7,66112,0
1375389609,80652 Cascade Lane,3.57E+15,jcb,1375390240,United States,0,[email protected],2019128565,1,5,56,218000,326111,Dell AlienWare 15,1341864940,9,Abagail Grimley,9,15240,0
1354660028,19 Drewry Parkway,5.60E+15,bankcard,1356130569,United States,1,[email protected],3193357593,0,2,9,218000,326111,Dell AlienWare 15,1297299631,9,Dov Bedle,10,33129,0
1291429496,8 Graedel Crossing,5.01E+15,mastercard,1291429587,United States,1,[email protected],3425792444,1,3,18,218000,326111,Dell AlienWare 15,1271963034,32,Lina Gallon,10,98008,0
1360817049,1 Hauk Way,6.71E+15,laser,1360874688,United States,1,[email protected],1091043517,1,5,4,218000,326111,Dell AlienWare 15,1344491555,12,Hagen Trammel,12,11470,0
1343748667,101 Helena Street,6.33E+15,switch,1343749833,United States,1,[email protected],3973788913,1,1,2000,218000,326111,Dell AlienWare 15,1338517205,12,Minor Regi,12,78205,0
1360298504,303 Fieldstone Court,3.55E+15,jcb,1360299215,United States,0,[email protected],2611700107,1,3,1,218000,326111,Dell AlienWare 15,1326982864,15,Melinda Backen,12,7104,0
1347242019,7286 Warbler Trail,5.60E+15,china-unionpay,1347327701,United States,0,[email protected],3585365777,1,4,22,218000,326111,Dell AlienWare 15,1326667167,5,Birch Hutable,13,70894,0
1358859412,6 Pierstorff Place,3.75E+15,americanexpress,1358859939,United States,0,[email protected],1766618657,1,2,5,218000,326111,Dell AlienWare 15,1314321525,15,Cassie Tatford,13,34642,0
1376598586,04967 Bluejay Point,3.05E+15,diners-club-carte-blanche,1376598713,United States,1,[email protected],1611609018,1,3,3,218000,326111,Dell AlienWare 15,1355508902,18,Augusta Regglar,13,78410,0
1350398154,43 Schlimgen Junction,6.77E+15,laser,1350404076,United States,1,[email protected],2741054526,1,4,1,218000,326111,Dell AlienWare 15,1319556154,24,Frank Livard,16,33169,0
1299268123,64 Blackbird Pass,5.60E+15,china-unionpay,1299269287,United States,0,[email protected],2688590499,1,4,1,302000,326112,Dell Graphics Amplifier,1286554990,0,Hildegarde Fontanet,0,43656,0
1300950203,23685 Ohio Street,5.60E+15,china-unionpay,1300950833,United States,0,[email protected],4058016611,1,1,1,302000,326112,Dell Graphics Amplifier,1286410925,0,Horatio Drieu,0,19125,1
1354201865,304 Division Road,3.57E+15,jcb,1354203611,United States,0,[email protected],990115817,1,3,1,302000,326112,Dell Graphics Amplifier,1341189473,0,Kele Elkin,0,53277,1
1363807024,88 Tennessee Point,3.56E+15,jcb,1363809310,United States,0,[email protected],4129233848,1,4,1,302000,326112,Dell Graphics Amplifier,1302015035,0,Florrie Bindley,0,15274,0
1345229721,498 Sachs Hill,5.10E+15,mastercard,1345230180,United States,0,[email protected],973583161.6,1,5,2,302000,326112,Dell Graphics Amplifier,1303765850,0,Wit Spoor,0,19191,0
1305514877,5 Saint Paul Terrace,3.58E+15,jcb,1305515161,United States,0,[email protected],3500460880,1,4,3,302000,326112,Dell Graphics Amplifier,1305257953,0,Marquita Matignon,0,2298,0
1365458068,289 Almo Crossing,5.89E+15,maestro,1365458645,United States,0,[email protected],1191243333,1,4,4,302000,326112,Dell Graphics Amplifier,1365458066,0,Kandy Copplestone,0,37605,0
1351814246,04 Reinke Lane,4.92E+15,visa-electron,1351888973,United States,0,[email protected],3087949894,1,1,5,302000,326112,Dell Graphics Amplifier,1282765011,0,Koral Kirman,0,78759,0
1357231150,6359 American Ash Avenue,5.01E+15,mastercard,1357233490,United States,0,[email protected],637670255.2,1,5,5,302000,326112,Dell Graphics Amplifier,1346430554,0,Eulalie Cunradi,0,94207,0
1356128102,037 West Point,3.59E+15,jcb,1356128359,United States,0,[email protected],3753290969,1,5,7,302000,326112,Dell Graphics Amplifier,1339709946,0,Dorothy Melan,0,88530,0
1338948135,3846 7th Trail,4.94E+15,switch,1338990161,United States,0,[email protected],3324518409,1,5,8,302000,326112,Dell Graphics Amplifier,1314225681,0,Maurizio Garnham,0,34642,0
1337210832,818 Bunting Park,3.54E+15,jcb,1337211484,United States,0,[email protected],790025191,1,5,9,302000,326112,Dell Graphics Amplifier,1292354767,0,Hatti Garnam,0,71137,0
1335882608,6462 Summit Circle,5.10E+15,mastercard,1335883429,United States,0,[email protected],4294644377,1,2,11,302000,326112,Dell Graphics Amplifier,1335203812,0,Carroll Bumby,0,28405,0
1330816086,30368 Sunfield Trail,5.01E+15,mastercard,1330822576,United States,1,[email protected],688039806.6,0,3,13,302000,326112,Dell Graphics Amplifier,1266790717,0,Lynnelle Guilloton,0,30316,0
1379076154,87301 Northridge Lane,4.51E+15,visa-electron,1379077185,United States,0,[email protected],490600331,1,4,26,302000,326112,Dell Graphics Amplifier,1314399132,0,Joli Gerrell,0,44511,0
1315946165,3715 Susan Avenue,2.02E+15,diners-club-enroute,1316976606,United States,0,[email protected],1728445759,1,2,27,302000,326112,Dell Graphics Amplifier,1315946164,0,Tasha Schoenfisch,0,12305,0
1364016197,4 Cody Terrace,5.02E+15,maestro,1364069044,United States,1,[email protected],4140280490,0,3,42,302000,326112,Dell Graphics Amplifier,1363974999,0,Sergei Loomis,0,6905,0
1358470032,12 Quincy Circle,3.54E+15,jcb,1358531988,United States,1,[email protected],990855532,0,5,110,302000,326112,Dell Graphics Amplifier,1346861044,0,Delmor Ordish,0,32819,0
1314021266,00815 Bayside Center,3.55E+15,jcb,1314630444,United States,1,[email protected],2767890358,0,4,280,302000,326112,Dell Graphics Amplifier,1304361380,0,Emmeline Keighly,0,30130,0
1356633819,5 Northport Junction,4.90E+15,switch,1356633857,United States,0,[email protected],3855604556,1,1,2,302000,326112,Dell Graphics Amplifier,1311630978,12,Boony Rillett,0,25389,0
1323893570,13 Stephen Avenue,3.06E+15,diners-club-carte-blanche,1323896663,United States,0,[email protected],3050749431,1,3,101,302000,326112,Dell Graphics Amplifier,1314286800,23,Idaline Thor,0,70116,0
1356116140,375 Grim Terrace,3.05E+15,diners-club-carte-blanche,1356116260,United States,0,[email protected],1059988091,1,5,4,302000,326112,Dell Graphics Amplifier,1349728880,25,Verene Baron,0,33169,0
1353019483,853 Wayridge Place,3.55E+15,jcb,1353020986,United States,1,[email protected],1645151672,1,5,1,302000,326112,Dell Graphics Amplifier,1313115565,6,Karalee Brambill,6,60686,0
1316017823,3317 Lerdahl Plaza,4.04E+15,visa,1316018272,United States,0,[email protected],2113949034,1,2,10,302000,326112,Dell Graphics Amplifier,1297883816,7,Dani Calbrathe,8,34665,0
1376594724,5747 Pearson Alley,3.57E+15,jcb,1376597992,United States,1,[email protected],1125139614,1,2,5,302000,326112,Dell Graphics Amplifier,1376431472,33,Ciel Haps,9,36109,0
1377189545,17 Holmberg Terrace,6.71E+15,laser,1377190031,United States,1,[email protected],1616614452,1,2,22,302000,326112,Dell Graphics Amplifier,1361897098,16,Britt Ricardo,12,36689,0
1369607407,86578 Iowa Road,3.06E+15,diners-club-carte-blanche,1369607699,United States,1,[email protected],3887163845,1,5,3,302000,326112,Dell Graphics Amplifier,1263945995,21,Kenton Jesty,12,95894,0
1358810446,678 Schmedeman Pass,3.01E+15,diners-club-carte-blanche,1358811068,United States,0,[email protected],3315981120,1,4,1,302000,326112,Dell Graphics Amplifier,1284578164,6,Toby Lethbury,14,94110,0
1363790414,1 Saint Paul Avenue,3.58E+15,jcb,1363796672,United States,0,[email protected],2114247384,1,3,3,302000,326112,Dell Graphics Amplifier,1316445179,14,Evelin Ewer,14,20409,0
1331938044,33579 Lillian Place,5.49E+15,mastercard,1333055639,United States,0,[email protected],4278385682,1,4,31,302000,326112,Dell Graphics Amplifier,1299104190,17,Joly Bedo,16,95138,0
1343528804,06 Bayside Terrace,3.59E+15,jcb,1343603680,United States,3,[email protected],3652009911,1,4,35,302000,326112,Dell Graphics Amplifier,1343249723,23,Temp Lodin,16,11480,0
1313776796,63510 International Alley,3.74E+15,americanexpress,1314023639,United States,0,[email protected],606174289,1,2,1,613000,326113,Dell Inspiron 3000,1297446702,0,Chevalier Atkinson,0,98516,0
1357235122,561 Linden Center,3.58E+15,jcb,1357235162,United States,0,[email protected],3495155811,1,2,1,613000,326113,Dell Inspiron 3000,1252923677,0,Steffane Martinson,0,92191,0
1369862920,00 Sage Hill,4.90E+15,switch,1369863671,United States,0,[email protected],4294707596,0,4,1,613000,326113,Dell Inspiron 3000,1369093902,0,Iolande Lutwidge,0,20470,0
1350407503,855 Forest Run Hill,5.10E+15,mastercard,1350407621,United States,1,[email protected],2491925081,1,1,2,613000,326113,Dell Inspiron 3000,1258045396,0,May Bigham,0,77065,0
1361801069,60 Green Pass,4.02E+15,visa,1361801672,United States,0,[email protected],1763419318,0,4,3,613000,326113,Dell Inspiron 3000,1361801068,0,Hort McCrackem,0,29605,1
1320699265,3817 Huxley Center,3.56E+15,jcb,1320699324,United States,1,[email protected],3534321062,1,1,4,613000,326113,Dell Inspiron 3000,1240848948,0,Bunni Lampet,0,21747,0
1334939979,075 Artisan Avenue,3.57E+15,jcb,1334940069,United States,3,[email protected],3513314522,0,3,4,613000,326113,Dell Inspiron 3000,1308777954,0,Smith Baldree,0,37416,0
1372782877,5 Cottonwood Center,3.54E+15,jcb,1372783349,United States,0,[email protected],973150173.2,1,2,4,613000,326113,Dell Inspiron 3000,1355193667,0,Nessi Rosenstein,0,30323,0
1312888125,6693 Southridge Circle,6.38E+15,instapayment,1312888955,United States,0,[email protected],2715438335,1,5,5,613000,326113,Dell Inspiron 3000,1274716339,0,Jodi Fevers,0,77293,0
1355935405,3 Steensland Pass,3.57E+15,jcb,1355935432,United States,3,[email protected],4161055056,0,4,8,613000,326113,Dell Inspiron 3000,1308777954,0,Daniella Giffon,0,76796,0
1358879466,8779 Mendota Plaza,3.55E+15,jcb,1358881731,United States,1,[email protected],1747074692,1,5,19,613000,326113,Dell Inspiron 3000,1255857361,0,Louise Edwardson,0,77288,0
1357604608,8485 Sundown Park,6.05E+15,maestro,1358224440,United States,1,[email protected],722210215,1,3,22,613000,326113,Dell Inspiron 3000,1357604606,0,Edithe Lednor,0,95210,0
1324495853,285 Kedzie Drive,5.60E+15,china-unionpay,1324496454,United States,0,[email protected],1696726386,1,3,24,613000,326113,Dell Inspiron 3000,1324495851,0,Alfy Corp,0,27455,0
1372782873,5406 Birchwood Road,3.59E+15,jcb,1372784546,United States,0,[email protected],1818227903,1,1,25,613000,326113,Dell Inspiron 3000,1348163315,0,Geordie Redpath,0,76705,0
1326540426,47895 Bluestem Trail,3.58E+15,jcb,1326545228,United States,1,[email protected],2445887300,1,3,30,613000,326113,Dell Inspiron 3000,1326524476,0,Alexandr Birckmann,0,74193,0
1308370673,3208 Atwood Trail,4.41E+15,visa-electron,1308427787,United States,1,[email protected],637887033,0,1,48,613000,326113,Dell Inspiron 3000,1281018491,0,Gladi Foucher,0,80241,0
1353363873,7 Spenser Way,5.56E+15,diners-club-us-ca,1353949955,United States,0,[email protected],4254422890,0,1,52,613000,326113,Dell Inspiron 3000,1271874080,0,Kassey Cecely,0,32092,0
1357931394,5408 Bluejay Lane,3.01E+15,diners-club-carte-blanche,1357931970,United States,0,[email protected],2900699250,1,2,369,613000,326113,Dell Inspiron 3000,1345220073,0,Darla Vasilmanov,0,34985,0
1328048648,9016 Northfield Junction,3.54E+15,jcb,1328128257,United States,0,[email protected],2404896627,1,5,27,613000,326113,Dell Inspiron 3000,1317058230,13,Edan MacVaugh,0,35895,0
1370837914,92 Westend Point,3.64E+15,diners-club-international,1370839193,United States,0,[email protected],1261360863,1,3,35,613000,326113,Dell Inspiron 3000,1370275695,0,Steve Demeza,6,94913,0
1369744001,2 Manley Trail,5.11E+15,mastercard,1369744884,United States,0,[email protected],2583640849,1,5,3,613000,326113,Dell Inspiron 3000,1358381704,30,Elnore Paddington,8,25389,0
1368028030,168 Hagan Place,3.59E+15,jcb,1368029232,United States,0,[email protected],1426325537,1,2,11,613000,326113,Dell Inspiron 3000,1326989867,11,Meghann Rafferty,9,19146,0
1306450128,70930 Spohn Park,2.01E+15,diners-club-enroute,1306450834,United States,0,[email protected],2068825865,1,2,30,613000,326113,Dell Inspiron 3000,1255371699,11,Jecho Trebble,12,20022,0
1339020898,806 Florence Road,2.02E+15,diners-club-enroute,1339020969,United States,3,[email protected],2918425138,1,2,9,613000,326113,Dell Inspiron 3000,1327943583,12,Mathilda Ovesen,12,37924,0
1366134634,112 Elgar Road,5.60E+15,china-unionpay,1366135243,United States,1,[email protected],1090900642,1,3,386,613000,326113,Dell Inspiron 3000,1338517205,12,Paulo McCafferky,12,84105,0
1349982889,7 Waxwing Drive,3.57E+15,jcb,1349982988,United States,0,[email protected],1276202167,1,4,18,613000,326113,Dell Inspiron 3000,1282063490,11,Enos Reasun,13,70183,0
1339019562,44302 Springview Lane,3.58E+15,jcb,1339019658,United States,1,[email protected],743077236,1,1,7,613000,326113,Dell Inspiron 3000,1282148757,48,Phillie Radage,13,91103,0
1372642109,76953 Johnson Alley,3.58E+15,jcb,1372701598,United States,0,[email protected],1679105161,1,2,1,613000,326113,Dell Inspiron 3000,1372642108,14,Corine Buffey,14,29215,0
1375391733,8 Canary Point,5.61E+15,bankcard,1375393584,United States,0,[email protected],490007089,1,3,41,613000,326113,Dell Inspiron 3000,1274996561,17,Oates Dring,14,33487,0
1369061842,377 Burrows Court,2.02E+15,diners-club-enroute,1369062111,United States,1,[email protected],570707712.2,1,1,9,613000,326113,Dell Inspiron 3000,1319844649,7,Bertine Bernier,15,57105,0
1360635517,55 Laurel Way,5.60E+15,bankcard,1360801921,United States,0,[email protected],3695634073,1,5,4,613000,326113,Dell Inspiron 3000,1310084244,18,Roscoe Freake,15,28205,0
1368629626,589 Jana Parkway,3.75E+15,americanexpress,1369826450,United States,1,[email protected],2450960723,0,4,99,613000,326113,Dell Inspiron 3000,1352980069,18,Herminia Sambath,15,77035,0
1328412164,78 Chive Drive,3.56E+15,jcb,1328412642,United States,0,[email protected],3004000388,1,4,1,875000,326114,Dell XPS 13,1328411945,0,Carissa Thornthwaite,0,43210,1
1335991698,21908 Pierstorff Circle,5.00E+15,mastercard,1335991910,United States,0,[email protected],1689089196,1,3,1,875000,326114,Dell XPS 13,1251931057,0,Lissy Dencs,0,97271,0
1338958514,6 Petterle Alley,4.04E+15,visa,1338958916,United States,0,[email protected],525993734,1,1,1,875000,326114,Dell XPS 13,1338958513,0,Danny Skellon,0,32204,1
1353534187,63292 Tomscot Crossing,3.56E+15,jcb,1353963856,United States,1,[email protected],503853270.2,1,3,1,875000,326114,Dell XPS 13,1266441026,0,Mella Bennoe,0,99709,0
1356703843,11 Del Sol Hill,5.29E+15,mastercard,1356704140,United States,3,[email protected],1045615345,1,1,1,875000,326114,Dell XPS 13,1351150523,0,Madge Kelemen,0,66205,0
1359944899,1816 Packers Avenue,3.54E+15,jcb,1359945696,United States,0,[email protected],3982081301,1,2,1,875000,326114,Dell XPS 13,1359943489,0,Madalena Scardefield,0,10004,0
1343242056,8773 Bonner Road,3.59E+15,jcb,1343242119,United States,0,[email protected],2984441644,1,4,2,875000,326114,Dell XPS 13,1314709847,0,Gerhard Killgus,0,55446,0
1331045829,1116 Gale Street,4.84E+15,visa-electron,1331046707,United States,0,[email protected],3501456622,1,5,3,875000,326114,Dell XPS 13,1331045629,0,Stacy McKew,0,75287,1
1369333666,9798 Toban Circle,3.57E+15,jcb,1369337311,United States,0,[email protected],1376014767,0,2,3,875000,326114,Dell XPS 13,1292995050,0,Kristyn Beckworth,0,25362,0
1365698587,3976 Cardinal Alley,3.46E+15,americanexpress,1365699391,United States,0,[email protected],957373679,1,3,5,875000,326114,Dell XPS 13,1335392630,0,Tabbie Artist,0,98008,0
1368119702,19734 Merrick Junction,3.56E+15,jcb,1368123268,United States,0,[email protected],1141444585,1,3,5,875000,326114,Dell XPS 13,1368119473,0,Luke Odcroft,0,20088,0
1316606955,2 Hoepker Point,5.49E+15,diners-club-us-ca,1316607351,United States,1,[email protected],3990138924,0,4,6,875000,326114,Dell XPS 13,1295371547,0,Guthry Luby,0,78215,0
1333992533,75 Ramsey Avenue,3.57E+15,jcb,1333992816,United States,0,[email protected],184961474.2,1,4,9,875000,326114,Dell XPS 13,1333555810,0,Anthiathia Kerbler,0,71213,1
1352225524,8860 Macpherson Point,6.04E+15,maestro,1352225676,United States,0,[email protected],1986641995,0,3,9,875000,326114,Dell XPS 13,1293565151,0,Marillin Thunnercliffe,0,2283,0
1326897924,17 Elmside Pass,4.92E+15,visa-electron,1326898255,United States,0,[email protected],1683566049,1,4,10,875000,326114,Dell XPS 13,1300282340,0,Lena Cowdroy,0,77240,0
1349732447,5 Lakewood Road,3.56E+15,jcb,1349733370,United States,0,[email protected],4067804972,0,3,13,875000,326114,Dell XPS 13,1334187509,0,Will Bunstone,0,27635,0
1371223224,6 Anhalt Terrace,3.42E+15,americanexpress,1371223248,United States,1,[email protected],1006842488,1,4,13,875000,326114,Dell XPS 13,1191529803,0,Barthel Guyan,0,80905,0
1362048584,0761 Stephen Way,3.01E+15,diners-club-carte-blanche,1362051026,United States,1,[email protected],2469900023,1,3,31,875000,326114,Dell XPS 13,1297073557,0,Jereme Tinner,0,33448,0
1296441244,630 Crescent Oaks Road,6.71E+15,laser,1296571551,United States,1,[email protected],1224872963,1,1,42,875000,326114,Dell XPS 13,1248120817,0,Ammamaria Udall,0,32244,0
1349986229,53 Drewry Drive,5.10E+15,mastercard,1349986856,United States,1,[email protected],3420016475,1,4,71,875000,326114,Dell XPS 13,1295817025,0,Trevor Kleine,0,22301,0
1375821607,1 Fremont Plaza,3.54E+15,jcb,1375822162,United States,0,[email protected],3035442835,1,4,42,875000,326114,Dell XPS 13,1299651441,12,Broddie Gasnell,2,91199,0
1317751887,9 Pine View Parkway,6.77E+15,laser,1317753491,United States,1,[email protected],1025565027,1,2,12,875000,326114,Dell XPS 13,1258180664,8,Inge Wyeth,8,12247,0
1357857182,95098 Susan Crossing,3.56E+15,jcb,1363645830,United States,3,[email protected],3664549313,1,1,129,875000,326114,Dell XPS 13,1332517802,13,Alfy Sybbe,13,34282,0
1369844483,58527 Merrick Center,2.02E+15,diners-club-enroute,1369844553,United States,0,[email protected],587831113.6,1,1,1,875000,326114,Dell XPS 13,1367431406,0,Lorene Callaghan,14,40745,0
1357262879,1 Springs Alley,4.47E+15,visa,1357269239,United States,0,[email protected],4245683643,1,5,3,875000,326114,Dell XPS 13,1357262877,14,Devin Fugere,14,64054,0
1312861774,6 Gateway Pass,5.60E+15,bankcard,1313396785,United States,1,[email protected],4171324510,1,1,8,875000,326114,Dell XPS 13,1310188939,17,Aurlie Farrens,14,98442,0
1364573687,19 Trailsway Drive,6.04E+15,maestro,1364583154,United States,1,[email protected],1040486099,1,3,1,875000,326114,Dell XPS 13,1364573686,0,Ammamaria Tingley,15,77346,0
1362562643,2410 Roth Hill,2.01E+15,diners-club-enroute,1362562756,United States,1,[email protected],1884510984,1,1,17,875000,326114,Dell XPS 13,1346401890,17,Sharon McWhannel,15,73142,0
1373981447,6126 Ruskin Avenue,3.44E+15,americanexpress,1374500834,United States,1,[email protected],4224067869,0,3,1,875000,326114,Dell XPS 13,1363947487,21,Candra Woakes,15,74116,0
1361471047,81 Vernon Point,4.99E+15,visa,1361474755,United States,1,[email protected],1079560163,1,3,15,875000,326114,Dell XPS 13,1361471046,37,Jemie Wanderschek,15,14276,0
1378252917,5 Haas Junction,3.54E+15,jcb,1378342795,United States,0,[email protected],570885512,1,1,52,875000,326114,Dell XPS 13,1377810942,15,Niall Willimont,16,45999,0
1296472597,72816 Dryden Trail,6.76E+15,maestro,1296472639,United States,1,[email protected],1309078203,0,1,1,876000,326115,Dell Inspiron 2-in-1,1294935017,0,Rickey Montgomery,0,34114,1
1306187905,4701 Fisk Crossing,3.02E+15,diners-club-carte-blanche,1306189306,United States,0,[email protected],1594854482,1,2,1,876000,326115,Dell Inspiron 2-in-1,1306187904,0,Cynthea McKeachie,0,19610,1
1371407831,27 Laurel Junction,3.58E+15,jcb,1371408403,United States,0,[email protected],1208402696,1,2,1,876000,326115,Dell Inspiron 2-in-1,1292186074,0,Ray Drane,0,45213,0
1317647540,171 Oneill Junction,3.54E+15,jcb,1317680378,United States,0,[email protected],2759792918,1,5,2,876000,326115,Dell Inspiron 2-in-1,1316484455,0,Daisie Condie,0,32505,0
1374610925,69613 Debs Hill,3.56E+15,jcb,1374650603,United States,1,[email protected],3247916492,1,5,6,876000,326115,Dell Inspiron 2-in-1,1336009886,0,Janean Sibray,0,75265,0
1341941360,26 Old Gate Parkway,5.10E+15,mastercard,1341942315,United States,0,[email protected],3018411800,1,3,9,876000,326115,Dell Inspiron 2-in-1,1309628592,0,Marti Hacksby,0,80920,0
1354668993,25 Mosinee Circle,4.90E+15,switch,1354669065,United States,0,[email protected],2880116495,0,1,9,876000,326115,Dell Inspiron 2-in-1,1350341798,0,Dorothee Blanko,0,2203,0
1345646823,94307 Butterfield Place,5.10E+15,mastercard,1346234490,United States,0,[email protected],53800692.2,1,3,10,876000,326115,Dell Inspiron 2-in-1,1345568466,0,Cord Whitcomb,0,49018,0
1333557461,5198 Sutherland Plaza,3.58E+15,jcb,1333557670,United States,0,[email protected],4213200253,1,4,11,876000,326115,Dell Inspiron 2-in-1,1333555810,0,Zebadiah Starmore,0,6912,1
1310623160,766 Lyons Trail,3.53E+15,jcb,1310623670,United States,0,[email protected],2354549258,1,1,14,876000,326115,Dell Inspiron 2-in-1,1265866896,0,Micky Abbatini,0,47725,0
1329931974,9 Lotheville Point,5.60E+15,bankcard,1329948580,United States,0,[email protected],2172384207,1,2,14,876000,326115,Dell Inspiron 2-in-1,1329931973,0,Rory Elsop,0,77075,0
1369085036,6865 Loomis Pass,3.54E+15,jcb,1369087097,United States,0,[email protected],4004137355,1,2,14,876000,326115,Dell Inspiron 2-in-1,1280160735,0,Lamont Jeannon,0,18706,0
1302620710,1 Helena Court,3.53E+15,jcb,1302621303,United States,0,[email protected],269099136.8,1,3,27,876000,326115,Dell Inspiron 2-in-1,1282827246,0,Jobina Coyish,0,34479,0
1342440010,4 Southridge Point,3.55E+15,jcb,1342441021,United States,0,[email protected],2131733998,0,2,83,876000,326115,Dell Inspiron 2-in-1,1342438452,0,Gregoire Boustead,0,31422,0
1364934265,0 Charing Cross Parkway,3.55E+15,jcb,1365189545,United States,0,[email protected],2567450660,1,4,1,876000,326115,Dell Inspiron 2-in-1,1364934264,12,Tatum Palliser,0,65105,0
1310670098,20 Almo Circle,3.54E+15,jcb,1310670495,United States,0,[email protected],3169474697,1,4,4,876000,326115,Dell Inspiron 2-in-1,1306427712,13,Kerk Trye,0,76011,0
1336517024,5240 Cardinal Way,5.42E+15,mastercard,1336517921,United States,0,[email protected],2546301177,1,5,5,876000,326115,Dell Inspiron 2-in-1,1318013843,16,Ban Gilbert,0,92127,0
1376147122,164 West Point,6.76E+15,maestro,1376147429,United States,1,[email protected],2284818910,1,4,6,876000,326115,Dell Inspiron 2-in-1,1347131985,29,Dorene Fratczak,0,93762,0
1377113356,22553 Village Green Road,3.54E+15,jcb,1377219059,United States,1,[email protected],420738815,1,4,11,876000,326115,Dell Inspiron 2-in-1,1158279322,16,Noach Hazlehurst,7,10170,0
1317706437,49 Luster Terrace,4.41E+15,visa-electron,1317706922,United States,0,[email protected],3210431475,1,3,22,876000,326115,Dell Inspiron 2-in-1,1317615985,0,Marybelle Ashard,8,20195,0
1373390740,75038 Spenser Lane,5.60E+15,china-unionpay,1373391293,United States,1,[email protected],1881660712,1,4,72,876000,326115,Dell Inspiron 2-in-1,1359410580,15,Rudy Otton,8,44185,0
1301276787,5755 Park Meadow Court,3.54E+15,jcb,1301276809,United States,0,[email protected],640554325,1,3,2,876000,326115,Dell Inspiron 2-in-1,1262840550,10,Donny Antonioni,10,76598,0
1358210636,40 Burning Wood Place,3.58E+15,jcb,1358354198,United States,1,[email protected],1993003266,1,3,12,876000,326115,Dell Inspiron 2-in-1,1275502746,0,Sophey Wheadon,12,78769,0
1367382679,78639 Onsgard Place,3.38E+15,americanexpress,1367382954,United States,0,[email protected],2413800240,1,2,1,876000,326115,Dell Inspiron 2-in-1,1360199484,12,Tracee Isoldi,12,70836,0
1372663566,6 Dayton Circle,5.60E+15,china-unionpay,1372663636,United States,1,[email protected],3580591538,1,3,3,876000,326115,Dell Inspiron 2-in-1,1260203096,12,Oates Goulder,13,73179,0
1371146697,5284 Donald Place,3.58E+15,jcb,1371147131,United States,1,[email protected],1577402113,1,1,8,876000,326115,Dell Inspiron 2-in-1,1343947861,13,Denys MacCracken,13,10105,0
1314793457,5 Sunbrook Court,5.57E+15,diners-club-us-ca,1314793558,United States,1,[email protected],3522531974,1,5,3,876000,326115,Dell Inspiron 2-in-1,1284423409,14,Herminia Kighly,14,92648,0
1375975345,151 Hintze Junction,3.57E+15,jcb,1375976080,United States,0,[email protected],3989784046,1,4,3,876000,326115,Dell Inspiron 2-in-1,1300214381,14,Alexi Brookson,14,85067,0
1328059455,4503 Reinke Park,3.56E+15,jcb,1328063558,United States,0,[email protected],3766006826,1,3,1,876000,326115,Dell Inspiron 2-in-1,1314147185,44,Oralia Goodboddy,14,36205,0
1360039267,9247 Commercial Place,3.74E+15,americanexpress,1360040591,United States,0,[email protected],4250368374,1,1,5,876000,326115,Dell Inspiron 2-in-1,1360039266,15,Mathilde Ecclesall,15,45213,0
1320684682,8 Fairview Road,5.60E+15,bankcard,1320686222,United States,0,[email protected],2963307928,1,2,0,876000,326115,Dell Inspiron 2-in-1,1313805994,16,Remy Thunderman,15,61105,0
1296666482,82 Portage Road,3.54E+15,jcb,1296667143,United States,0,[email protected],4099660284,1,1,1,415000,326116,PowerH T640 Tower Server,1296666480,0,Brandtr Thorbon,0,90410,1
1327011011,79886 Scott Park,6.77E+15,solo,1327011201,United States,0,[email protected],1412696714,1,1,1,415000,326116,PowerH T640 Tower Server,1307639114,0,Anderea Van Hesteren,0,25336,0
1360666051,21 Farwell Crossing,5.60E+15,china-unionpay,1360666085,United States,0,[email protected],1375777368,0,4,1,415000,326116,PowerH T640 Tower Server,1352991581,0,Lotta Reneke,0,46862,0
1380867137,8 Hoard Lane,5.01E+15,mastercard,1380867235,United States,0,[email protected],1258945509,1,2,1,415000,326116,PowerH T640 Tower Server,1380867137,0,Ringo Laminman,0,19810,1
1327018163,73448 Briar Crest Point,4.90E+15,switch,1327018917,United States,1,[email protected],3183799307,1,3,3,415000,326116,PowerH T640 Tower Server,1325181899,0,Arly Casel,0,92619,0
1362074818,33 Schurz Avenue,3.58E+15,jcb,1362075214,United States,1,[email protected],1716700489,1,2,6,415000,326116,PowerH T640 Tower Server,1316180531,0,Eugen Quartley,0,77240,0
1303321485,63807 Tomscot Lane,4.92E+15,visa-electron,1303321978,United States,0,[email protected],3243678699,1,4,8,415000,326116,PowerH T640 Tower Server,1303321484,0,Luce Stading,0,85284,1
1304705724,4 Dovetail Center,6.76E+15,maestro,1304706561,United States,0,[email protected],1687762262,1,4,8,415000,326116,PowerH T640 Tower Server,1274461963,0,Ardelle Hodcroft,0,49518,0
1320156656,59826 Toban Way,3.57E+15,jcb,1320165000,United States,0,[email protected],3088342779,0,4,13,415000,326116,PowerH T640 Tower Server,1302666916,0,Shandie Moffett,0,85246,0
1339022701,5 Petterle Park,3.57E+15,jcb,1339139644,United States,0,[email protected],1445719271,1,2,21,415000,326116,PowerH T640 Tower Server,1338782904,0,Worden Oldridge,0,37914,0
1312984823,869 Hallows Alley,6.30E+15,maestro,1312985547,United States,0,[email protected],2362209476,1,5,22,415000,326116,PowerH T640 Tower Server,1184350454,0,Hildegarde Murfin,0,33499,0
1359735139,660 Sachs Point,6.33E+15,switch,1359737522,United States,1,[email protected],3060365626,0,3,52,415000,326116,PowerH T640 Tower Server,1359735138,0,Leonid Coxon,0,47732,0
1340401396,56509 Summerview Center,3.72E+15,americanexpress,1340402507,United States,1,[email protected],2458895832,1,1,89,415000,326116,PowerH T640 Tower Server,1228781608,0,Juliet Fortin,0,76205,0
1374102622,234 Mallard Court,3.59E+15,jcb,1374108546,United States,0,[email protected],1562213031,1,1,36,415000,326116,PowerH T640 Tower Server,1370379382,10,Paolina Symper,0,22119,0
1355801895,9 Mockingbird Way,3.55E+15,jcb,1356066201,United States,1,[email protected],1702155337,1,3,39,415000,326116,PowerH T640 Tower Server,1334947769,13,Edgardo Heineking,0,93762,0
1314803885,2721 Butternut Terrace,5.02E+15,maestro,1314912587,United States,1,[email protected],2032091035,1,2,3,415000,326116,PowerH T640 Tower Server,1252729123,16,Filmore Grimes,0,38150,0
1355950655,73492 Esch Plaza,5.60E+15,bankcard,1355951309,United States,1,[email protected],4218451779,1,4,4,415000,326116,PowerH T640 Tower Server,1354820994,18,Adena Levane,0,80262,0
1361234090,9529 Thierer Street,6.77E+15,solo,1361246650,United States,0,[email protected],1577359350,1,1,27,415000,326116,PowerH T640 Tower Server,1286682892,22,Teriann Vosper,0,76205,0
1365443308,9576 Crowley Parkway,3.02E+15,diners-club-carte-blanche,1365444427,United States,0,[email protected],1943387930,1,5,8,415000,326116,PowerH T640 Tower Server,1365443307,48,Erna Touret,0,60505,0
1344959420,79 Randy Avenue,3.56E+15,jcb,1344960075,United States,0,[email protected],1124495228,1,5,1,415000,326116,PowerH T640 Tower Server,1323813046,18,Syman Moreby,4,73124,0
1361480038,07 Derek Crossing,3.05E+15,diners-club-carte-blanche,1361480079,United States,1,[email protected],1227327304,1,1,15,415000,326116,PowerH T640 Tower Server,1311774780,14,Kyrstin Lockhart,10,47725,0
1372778416,6 Fallview Crossing,3.55E+15,jcb,1372780890,United States,0,[email protected],35416971.2,1,4,1,415000,326116,PowerH T640 Tower Server,1361773004,12,Fraser O'Lahy,12,7522,0
1305770630,27 Hauk Crossing,3.59E+15,jcb,1305772949,United States,3,[email protected],4163635647,1,2,2,415000,326116,PowerH T640 Tower Server,1208109969,13,Werner Elby,13,23277,0
1352984647,418 Harper Road,3.58E+15,jcb,1352989726,United States,0,[email protected],4226354148,1,5,44,415000,326116,PowerH T640 Tower Server,1345902525,18,Wade Eastope,13,2283,0
1347563982,45568 Lawn Pass,3.58E+15,jcb,1347564225,United States,0,[email protected],3926318953,1,5,4,415000,326116,PowerH T640 Tower Server,1286377131,62,Federico Hutcheson,13,28210,0
1362168119,0 Eggendart Court,5.16E+15,mastercard,1363027453,United States,0,[email protected],1141316221,1,1,1,415000,326116,PowerH T640 Tower Server,1282067212,8,Cam Crichley,14,6816,0
1362684512,8310 Packers Drive,5.60E+15,china-unionpay,1369153830,United States,3,[email protected],4087038566,1,3,1,415000,326116,PowerH T640 Tower Server,1338920026,14,Meghann Frane,14,94042,0
1343240632,31417 Crest Line Street,2.02E+15,diners-club-enroute,1343240712,United States,1,[email protected],1931731050,1,2,2,415000,326116,PowerH T640 Tower Server,1329941014,23,Angelico Swindle,14,14604,0
1371200754,72 Crowley Park,3.58E+15,jcb,1371201151,United States,1,[email protected],304731360,1,1,37,415000,326116,PowerH T640 Tower Server,1286788056,0,Barron Vasiltsov,16,60624,0
1335800046,1766 Rusk Road,3.56E+15,jcb,1335800113,United States,0,[email protected],2974998949,1,4,1,690000,326117,Dell PowerEdge T30,1304639602,0,Birgitta Bysouth,0,2208,1
1363146932,9090 Carey Hill,3.58E+15,jcb,1363177331,United States,0,[email protected],2522405990,1,3,1,690000,326117,Dell PowerEdge T30,1355926109,0,Urbano Labdon,0,90071,0
1326497250,841 Lillian Pass,3.53E+15,jcb,1326648239,United States,0,[email protected],186056755,1,1,3,690000,326117,Dell PowerEdge T30,1274709351,0,Bobinette Keston,0,33715,0
1364409059,9399 Anzinger Terrace,3.58E+15,jcb,1364409267,United States,1,[email protected],2686907439,0,2,3,690000,326117,Dell PowerEdge T30,1279136852,0,Ernesto McLevie,0,2208,0
1358454744,8822 Melvin Park,3.54E+15,jcb,1358461152,United States,0,[email protected],2153093668,1,2,9,690000,326117,Dell PowerEdge T30,1357843674,0,Lynde Ranald,0,94154,0
1378672851,601 Carey Lane,3.69E+15,diners-club-international,1378674190,United States,0,[email protected],1444656197,0,1,9,690000,326117,Dell PowerEdge T30,1378080476,0,Devy Georgot,0,44710,1
1320183463,5881 Harbort Place,3.55E+15,jcb,1320859634,United States,0,[email protected],2256149875,1,1,13,690000,326117,Dell PowerEdge T30,1320183462,0,Grenville Lowater,0,64504,0
1326293470,10 American Point,6.76E+15,maestro,1326295168,United States,0,[email protected],3892076564,1,1,15,690000,326117,Dell PowerEdge T30,1323791506,0,Gretchen Kennelly,0,71213,0
1317692525,66868 Bay Trail,5.60E+15,bankcard,1317693544,United States,0,[email protected],2394312848,1,1,17,690000,326117,Dell PowerEdge T30,1317692524,0,Gabbey Cleave,0,94627,0
1354222734,993 Hanover Court,3.06E+15,diners-club-carte-blanche,1355407503,United States,1,[email protected],3716073926,1,4,17,690000,326117,Dell PowerEdge T30,1262790652,0,Burtie Shambroke,0,15220,0
1373284717,13 Knutson Alley,3.55E+15,jcb,1373284847,United States,0,[email protected],1443158263,1,3,17,690000,326117,Dell PowerEdge T30,1271868146,0,Marwin Jeffries,0,33731,0
1370460705,4 Hazelcrest Junction,5.05E+15,mastercard,1370461157,United States,1,[email protected],1007547024,1,1,19,690000,326117,Dell PowerEdge T30,1335533463,0,Conney Dent,0,70505,0
1339524445,89983 Maple Plaza,5.55E+15,diners-club-us-ca,1339526921,United States,1,[email protected],54323068.2,1,2,25,690000,326117,Dell PowerEdge T30,1303422510,0,Ravi Griffitts,0,91841,0
1367549554,8 Carey Center,6.76E+15,maestro,1367554890,United States,1,[email protected],1107404108,1,1,30,690000,326117,Dell PowerEdge T30,1367549553,0,Mord Manton,0,16565,0
1314374749,1660 Ridgeview Park,3.57E+15,jcb,1314375231,United States,0,[email protected],2623715269,1,5,41,690000,326117,Dell PowerEdge T30,1285963720,0,Vanya Guillford,0,11054,0
1378289139,92 Spenser Way,4.41E+15,visa-electron,1378289602,United States,0,[email protected],1577611192,1,2,61,690000,326117,Dell PowerEdge T30,1378289138,0,Susana Beveridge,0,27690,1
1378124766,7775 Fuller Plaza,3.57E+15,jcb,1378125486,United States,1,[email protected],4146754965,1,1,3,690000,326117,Dell PowerEdge T30,1360128585,8,Manon Collie,0,12305,0
1355966533,3481 Sunfield Junction,6.38E+15,instapayment,1358809949,United States,1,[email protected],2169363381,1,3,8,690000,326117,Dell PowerEdge T30,1272937325,12,Clarinda Duinbleton,0,33158,0
1362886788,160 Mandrake Terrace,6.33E+15,switch,1362888442,United States,1,[email protected],3397672207,1,1,4,690000,326117,Dell PowerEdge T30,1347159622,18,Gilburt Perez,0,59112,0
1367908870,73 Messerschmidt Road,6.33E+15,switch,1367909858,United States,0,[email protected],3058254419,1,4,10,690000,326117,Dell PowerEdge T30,1357240040,23,Melessa Lawrey,0,66105,0
1320707185,9 Manitowish Center,3.54E+15,jcb,1320707242,United States,1,[email protected],1744904191,1,3,10,690000,326117,Dell PowerEdge T30,1304527667,9,Ilyssa Brigstock,5,11407,0
1363997877,86332 Oak Valley Street,6.40E+15,instapayment,1363997935,United States,1,[email protected],2910780800,1,3,24,690000,326117,Dell PowerEdge T30,1338342761,12,Frederico Lochhead,6,34629,0
1317751812,2764 Pierstorff Park,5.89E+15,maestro,1317752970,United States,0,[email protected],1939219243,1,2,3,690000,326117,Dell PowerEdge T30,1297883816,7,Roma Kaiser,8,79165,0
1309187807,4630 Hanson Avenue,5.10E+15,mastercard,1309188527,United States,1,[email protected],3138341598,0,1,16,690000,326117,Dell PowerEdge T30,1276199804,9,Goldie Cowtherd,8,19151,0
1373348059,8 Spenser Parkway,3.55E+15,jcb,1373348240,United States,0,[email protected],2670220950,1,4,1,690000,326117,Dell PowerEdge T30,1372139157,20,Cornie Iacovini,10,27635,0
1369865213,2208 Hudson Road,2.01E+15,diners-club-enroute,1369865245,United States,0,[email protected],3483216785,1,5,1,690000,326117,Dell PowerEdge T30,1368720240,19,Marjory Vida,12,66276,0
1377867777,4 Spenser Lane,3.57E+15,jcb,1378908541,United States,0,[email protected],2002759793,1,1,5,690000,326117,Dell PowerEdge T30,1377699598,13,Ardra Tackes,13,80291,0
1358636361,3 Tennyson Circle,3.58E+15,jcb,1358637564,United States,0,[email protected],1628682894,1,5,6,690000,326117,Dell PowerEdge T30,1236962227,14,Fredrika Wyldbore,15,1105,0
1374579263,95 Hazelcrest Point,5.10E+15,mastercard,1374579287,United States,1,[email protected],3954170439,1,3,63,690000,326117,Dell PowerEdge T30,1336053425,15,Camila Mackrell,15,92176,0
1317066118,41 Hermina Point,3.59E+15,jcb,1317066461,United States,0,[email protected],2180033377,1,5,1,166000,326118,Dell PowerEdge T130,1317066116,0,Giffy Hartus,0,48242,1
1356509213,07980 Eliot Place,5.05E+15,mastercard,1356509316,United States,0,[email protected],87638213.4,1,4,1,166000,326118,Dell PowerEdge T130,1356498680,0,Waylen Fullalove,0,7104,1
1374341362,30062 Sutherland Crossing,3.58E+15,jcb,1374341792,United States,0,[email protected],1427418625,1,1,1,166000,326118,Dell PowerEdge T130,1370297731,0,Winny Helsby,0,33355,0
1295315012,3318 Sutherland Center,4.18E+15,visa-electron,1295317395,United States,0,[email protected],1612075096,1,5,2,166000,326118,Dell PowerEdge T130,1267312210,0,Gran Boreham,0,75710,0
1334934123,434 Shopko Crossing,5.60E+15,bankcard,1334934509,United States,0,[email protected],1560445134,1,3,6,166000,326118,Dell PowerEdge T130,1288317891,0,Janeczka Tiery,0,93305,0
1294109629,1 8th Alley,3.57E+15,jcb,1294110057,United States,1,[email protected],856261744.6,0,5,8,166000,326118,Dell PowerEdge T130,1251424732,0,Pat Simonsen,0,15255,0
1358187341,30 Maywood Trail,3.55E+15,jcb,1358187605,United States,0,[email protected],3318477580,1,5,12,166000,326118,Dell PowerEdge T130,1345164344,0,Bertina Sodory,0,68105,1
1365624087,3256 Fairfield Alley,3.59E+15,jcb,1365624687,United States,0,[email protected],1024185912,1,3,13,166000,326118,Dell PowerEdge T130,1365624086,0,Nicoli Ainge,0,93715,0
1367854557,49469 Bowman Avenue,5.60E+15,bankcard,1367860492,United States,1,[email protected],3034226436,1,1,13,166000,326118,Dell PowerEdge T130,1367853836,0,Bella Stanbro,0,80915,0
1289909747,5 Sachtjen Terrace,3.59E+15,jcb,1289913856,United States,0,[email protected],1359130565,1,2,18,166000,326118,Dell PowerEdge T130,1289909746,0,Prisca Huggens,0,75044,0
1300376426,98 Hooker Trail,6.33E+15,switch,1300814994,United States,1,[email protected],3520502875,1,2,21,166000,326118,Dell PowerEdge T130,1273514824,0,Demetra Nineham,0,14683,0
1362357704,826 Dexter Drive,3.45E+15,americanexpress,1362358779,United States,0,[email protected],268818847.6,0,1,26,166000,326118,Dell PowerEdge T130,1362357703,0,Renell Draycott,0,45432,0
1344936006,8238 North Avenue,3.53E+15,jcb,1344939086,United States,1,[email protected],2750098271,1,3,37,166000,326118,Dell PowerEdge T130,1333555780,0,Trixy Lappine,0,30358,0
1305317942,67 Talmadge Circle,6.04E+15,maestro,1305319415,United States,0,[email protected],690035264,0,4,89,166000,326118,Dell PowerEdge T130,1286225421,0,Linzy Eliot,0,78285,0
1322323276,22082 Sheridan Pass,3.58E+15,jcb,1322324441,United States,1,[email protected],4101134239,1,2,22,166000,326118,Dell PowerEdge T130,1321929559,10,Adey Huster,0,32314,0
1334937439,0959 Canary Crossing,3.53E+15,jcb,1334938581,United States,0,[email protected],419464885.6,1,3,2,166000,326118,Dell PowerEdge T130,1238168348,12,Sterling Harrop,0,30323,0
1362903998,27098 Northland Plaza,6.33E+15,switch,1362908443,United States,0,[email protected],3026136617,1,5,2,166000,326118,Dell PowerEdge T130,1361234731,14,Koren Polk,0,79171,0
1363204824,441 Nova Hill,3.58E+15,jcb,1363205441,United States,0,[email protected],939730672.2,1,1,5,166000,326118,Dell PowerEdge T130,1345481154,17,Vinson Featherbie,0,77288,0
1321324007,119 Grasskamp Drive,5.34E+15,mastercard,1321326608,United States,0,[email protected],1057234253,1,4,8,166000,326118,Dell PowerEdge T130,1225656656,20,Curran MacGeffen,0,20546,0
1332385775,9 Esker Court,3.55E+15,jcb,1332480175,United States,1,[email protected],2056276719,1,4,1,166000,326118,Dell PowerEdge T130,1265320684,21,Bert Lamden,0,60567,0
1368214023,3 Coolidge Place,4.92E+15,visa-electron,1368216220,United States,0,[email protected],2639498606,1,2,19,166000,326118,Dell PowerEdge T130,1347310281,42,Richmound Markovic,0,25326,0
1357923994,038 Mallard Plaza,4.91E+15,visa-electron,1358199904,United States,0,[email protected],3532541367,1,2,40,166000,326118,Dell PowerEdge T130,1286743057,28,Kimbell Peascod,4,90189,0
1330389670,95 John Wall Point,4.04E+15,visa,1330560876,United States,0,[email protected],442196034,1,1,56,166000,326118,Dell PowerEdge T130,1330389669,5,Melvin Beentjes,6,30130,0
1368690238,5 Anthes Terrace,6.05E+15,maestro,1368691360,United States,0,[email protected],3141124134,1,4,2,166000,326118,Dell PowerEdge T130,1250114948,25,Gilberta Whatmough,8,80044,0
1342772845,25 Dexter Plaza,3.53E+15,jcb,1342772895,United States,1,[email protected],2732356190,1,3,12,166000,326118,Dell PowerEdge T130,1312208147,0,Son Alvarez,9,14276,0
1357610355,8300 Crescent Oaks Point,6.76E+15,switch,1358225601,United States,1,[email protected],1325766217,1,1,18,166000,326118,Dell PowerEdge T130,1232736379,9,Ailina Bichard,9,25336,0
1362494581,906 Alpine Trail,3.53E+15,jcb,1362496656,United States,1,[email protected],3551653989,1,1,73,166000,326118,Dell PowerEdge T130,1208175636,33,Lil Stihl,9,90045,0
1341941026,242 Coolidge Parkway,3.58E+15,jcb,1349450211,United States,1,[email protected],688132166.2,1,4,12,166000,326118,Dell PowerEdge T130,1279820280,6,Theodoric Klulisek,10,33147,0
1376499043,2 Holy Cross Plaza,4.04E+15,visa,1376506817,United States,0,[email protected],1342815211,1,1,179,166000,326118,Dell PowerEdge T130,1376499042,0,Torey Grigolon,11,76110,0
1366144536,912 Emmet Drive,6.33E+15,switch,1366146330,United States,0,[email protected],2268849215,1,1,2,166000,326118,Dell PowerEdge T130,1297964348,16,Cosette Folder,14,93584,0
1355965196,534 Buena Vista Alley,3.54E+15,jcb,1355972632,United States,0,[email protected],4252381602,1,1,12,166000,326118,Dell PowerEdge T130,1344542163,15,Jan Oland,15,20016,0
1375987231,47013 Pankratz Avenue,3.58E+15,jcb,1375992258,United States,0,[email protected],1873037865,1,5,2,757000,326119,Dell PowerEdge T330,1375987231,0,Albina Cristofori,0,34981,0
1333206845,58368 Forest Run Center,3.04E+15,diners-club-carte-blanche,1333272546,United States,0,[email protected],2130452451,1,3,4,757000,326119,Dell PowerEdge T330,1333201360,0,Parnell Prozescky,0,32885,0
1341762728,38779 Mallory Junction,3.57E+15,jcb,1341806840,United States,0,[email protected],3357575964,1,1,5,757000,326119,Dell PowerEdge T330,1340376763,0,Wynne McKeand,0,22309,0
1312222761,7 4th Point,5.10E+15,mastercard,1313003210,United States,1,[email protected],3888493102,0,1,8,757000,326119,Dell PowerEdge T330,1274886881,0,Horace Wondraschek,0,28410,0
1344950297,440 Bluejay Court,2.02E+15,diners-club-enroute,1344964037,United States,1,[email protected],3509515999,1,5,11,757000,326119,Dell PowerEdge T330,1344950295,0,Adoree Busfield,0,25709,0
1367970851,64781 Armistice Drive,5.51E+15,diners-club-us-ca,1368066174,United States,0,[email protected],2847779209,0,3,16,757000,326119,Dell PowerEdge T330,1347709468,0,Vernice McCleverty,0,33805,0
1341442242,13650 Eggendart Way,3.41E+15,americanexpress,1341654671,United States,0,[email protected],354302687,1,1,25,757000,326119,Dell PowerEdge T330,1302596434,0,Elisabet Bloy,0,67260,0
1369853791,86120 John Wall Place,3.54E+15,jcb,1369856493,United States,0,[email protected],643236449,1,4,44,757000,326119,Dell PowerEdge T330,1308363371,0,Delmer Peppett,0,49518,0
1353499450,724 Spenser Trail,3.58E+15,jcb,1353510296,United States,1,[email protected],839025468.6,1,4,46,757000,326119,Dell PowerEdge T330,1353418543,0,Huberto Thicking,0,20016,0
1355165976,15 Forest Run Terrace,6.76E+15,switch,1355170184,United States,1,[email protected],1926708125,1,3,52,757000,326119,Dell PowerEdge T330,1253562992,0,Joell Windrus,0,75323,0
1319589455,74 Portage Crossing,3.00E+15,diners-club-carte-blanche,1320155789,United States,1,[email protected],2507810732,1,1,71,757000,326119,Dell PowerEdge T330,1243614611,0,Iago Nielson,0,47405,0
1369333580,2 Gulseth Park,3.54E+15,jcb,1369333727,United States,1,[email protected],1459795883,1,5,8,757000,326119,Dell PowerEdge T330,1320891543,12,Natty Platt,0,98664,0
1334344927,97 Luster Point,3.53E+15,jcb,1335216855,United States,1,[email protected],4006959097,1,2,14,757000,326119,Dell PowerEdge T330,1298964450,18,Tabbie Verdun,0,85067,0
1356573006,44355 Steensland Center,4.90E+15,switch,1356574057,United States,0,[email protected],1903893529,1,5,1,757000,326119,Dell PowerEdge T330,1349852722,23,Nichole Lodemann,0,35236,1
1339508416,74 Briar Crest Avenue,6.33E+15,solo,1339513922,United States,0,[email protected],3491323534,1,1,10,757000,326119,Dell PowerEdge T330,1339508415,47,Fanny Sawl,0,7505,0
1367519775,706 Onsgard Place,4.91E+15,switch,1367520970,United States,0,[email protected],503765754.6,1,2,33,757000,326119,Dell PowerEdge T330,1276629574,8,Milli Gawke,8,29505,0
1358227586,13 Jenifer Junction,5.51E+15,mastercard,1365444051,United States,0,[email protected],4246421498,1,2,4,757000,326119,Dell PowerEdge T330,1324931476,10,Cyndie Mokes,10,84120,0
1355515352,038 Blue Bill Park Center,5.10E+15,mastercard,1355515446,United States,1,[email protected],3656502374,1,4,7,757000,326119,Dell PowerEdge T330,1311774780,14,Willey MacKilroe,10,1114,0
1304749070,0 Novick Plaza,3.58E+15,jcb,1304750175,United States,0,[email protected],3008036026,1,5,18,757000,326119,Dell PowerEdge T330,1296796512,12,Cinnamon Nehl,11,89714,0
1374594882,3433 Debra Way,6.76E+15,maestro,1374595156,United States,0,[email protected],4132508310,1,4,3,757000,326119,Dell PowerEdge T330,1351710118,18,Mathian Pummery,11,46620,0
1364326240,0 Autumn Leaf Pass,3.54E+15,jcb,1364326856,United States,1,[email protected],285447453.6,1,5,11,757000,326119,Dell PowerEdge T330,1361479666,12,Berte Cristoforetti,12,97229,0
1364259195,90 Lunder Court,3.58E+15,jcb,1364265837,United States,0,[email protected],2364664213,1,3,8,757000,326119,Dell PowerEdge T330,1291430745,13,Barbara Alenichev,12,46857,0
1330723839,20 Barnett Hill,3.55E+15,jcb,1331337121,United States,0,[email protected],391687370,1,1,2,757000,326119,Dell PowerEdge T330,1330642795,13,Andrej Merredy,13,51105,0
1356631572,4570 Kropf Crossing,5.60E+15,bankcard,1356632251,United States,0,[email protected],1594068632,1,3,5,757000,326119,Dell PowerEdge T330,1270942298,13,Matilde McKeever,13,68505,0
1368181262,4361 Redwing Trail,3.55E+15,jcb,1368449229,United States,1,[email protected],3791360315,1,1,5,757000,326119,Dell PowerEdge T330,1315340798,12,Janith Bartosek,14,40225,0
1350004900,6006 Karstens Hill,3.55E+15,jcb,1350007404,United States,0,[email protected],857249303,1,5,29,757000,326119,Dell PowerEdge T330,1349127468,30,Terry Elbourn,14,33710,0
1336353657,9895 Michigan Terrace,5.60E+15,china-unionpay,1336353668,United States,1,[email protected],3242774485,1,2,0,757000,326119,Dell PowerEdge T330,1313805994,16,Kristel Pointin,15,11407,0
1355154300,11750 Mallory Alley,3.55E+15,jcb,1355154333,United States,1,[email protected],4177049192,1,2,24,757000,326119,Dell PowerEdge T330,1321285824,13,Verla Dalrymple,16,97075,0
1354025181,19 Brentwood Point,3.05E+15,diners-club-carte-blanche,1354026199,United States,0,[email protected],1459934331,1,1,3,757000,326119,Dell PowerEdge T330,1320926093,15,Garvin Abell,16,30328,0
1338782317,82936 Barnett Plaza,3.58E+15,jcb,1338783067,United States,1,[email protected],3575427210,1,3,8,757000,326119,Dell PowerEdge T330,1261507459,26,Horacio Mohring,16,46896,0
1304673189,7370 Oakridge Crossing,3.54E+15,jcb,1306379173,United States,0,[email protected],4205744843,1,1,1,27000,326120,Dell PowerEdge T440,1301544659,0,Ab Judgkins,0,92668,0
1364584556,1 Derek Pass,3.56E+15,jcb,1364585968,United States,0,[email protected],4106701761,1,1,1,27000,326120,Dell PowerEdge T440,1364584555,0,Salli Koch,0,77085,0
1375380249,55578 Bultman Parkway,2.02E+15,diners-club-enroute,1375380581,United States,1,[email protected],4085910356,1,5,1,27000,326120,Dell PowerEdge T440,1375380248,0,Bennett Restill,0,55448,0
1355692803,817 Jay Hill,3.55E+15,jcb,1355695615,United States,0,[email protected],4185728953,1,1,4,27000,326120,Dell PowerEdge T440,1303399718,0,Nanni Davidescu,0,37914,0
1320703877,4 Di Loreto Junction,3.66E+15,diners-club-international,1320704418,United States,0,[email protected],1092711305,1,5,5,27000,326120,Dell PowerEdge T440,1259693179,0,Caye De Michetti,0,8650,0
1327513784,7301 Loftsgordon Pass,3.59E+15,jcb,1327516200,United States,0,[email protected],69151457,1,2,5,27000,326120,Dell PowerEdge T440,1267535625,0,Niles Fretson,0,10045,0
1357757513,7158 Bobwhite Parkway,3.57E+15,jcb,1357757915,United States,0,[email protected],470238637.4,1,5,9,27000,326120,Dell PowerEdge T440,1322170608,0,Marcus Jump,0,89135,0
1371137337,2698 Mendota Crossing,5.14E+15,mastercard,1371138747,United States,0,[email protected],2881265217,1,1,9,27000,326120,Dell PowerEdge T440,1371022172,0,Dillie Redmille,0,11205,1
1374598023,1446 Oak Valley Place,3.02E+15,diners-club-carte-blanche,1374598145,United States,0,[email protected],875658976,1,5,10,27000,326120,Dell PowerEdge T440,1318003412,0,Dasi Vakhrushin,0,93305,0
1346115636,1066 Dahle Street,3.55E+15,jcb,1346115667,United States,0,[email protected],1543807032,1,5,12,27000,326120,Dell PowerEdge T440,1286724428,0,Misty Giuron,0,92127,0
1368599584,48 Huxley Alley,4.90E+15,switch,1368601828,United States,0,[email protected],1963930814,1,1,17,27000,326120,Dell PowerEdge T440,1267639656,0,Terence Lockyer,0,37245,0
1303338713,49101 Moland Street,6.30E+15,maestro,1303339498,United States,0,[email protected],1415664201,0,3,19,27000,326120,Dell PowerEdge T440,1236204954,0,Zola Postgate,0,30096,0
1299693266,48 Holmberg Alley,6.77E+15,laser,1299693494,United States,1,[email protected],3351312022,1,2,21,27000,326120,Dell PowerEdge T440,1275496994,0,Elvyn Kelinge,0,97296,0
1373294554,420 Heath Pass,3.74E+15,americanexpress,1373294976,United States,0,[email protected],3228489927,1,3,28,27000,326120,Dell PowerEdge T440,1285342596,0,Camella Yarham,0,34985,0
1313520817,875 Red Cloud Point,3.56E+15,jcb,1313523819,United States,1,[email protected],1773920020,1,1,42,27000,326120,Dell PowerEdge T440,1301073830,0,Kippy Farrall,0,95818,0
1364401164,1098 Golf Center,3.59E+15,jcb,1364401367,United States,0,[email protected],422392891,1,1,51,27000,326120,Dell PowerEdge T440,1342354080,0,Pennie Adamczyk,0,40280,0
1354648824,21441 Brickson Park Alley,4.04E+15,visa,1354648937,United States,0,[email protected],1023515941,1,3,1,27000,326120,Dell PowerEdge T440,1311630978,12,Ailey Trays,0,11044,0
1346119224,43 Ronald Regan Plaza,3.56E+15,jcb,1346119669,United States,0,[email protected],3183465302,1,4,4,27000,326120,Dell PowerEdge T440,1339711973,14,Davide Cestard,0,22301,0
1373454415,8 Holy Cross Place,6.76E+15,maestro,1373454868,United States,0,[email protected],1914653204,1,3,1,27000,326120,Dell PowerEdge T440,1340918012,23,Libbey Muldownie,0,60609,0
1358359747,55 Autumn Leaf Plaza,3.57E+15,jcb,1359476305,United States,1,[email protected],2109015971,1,2,102,27000,326120,Dell PowerEdge T440,1358359745,23,Josh Boldt,0,92013,0
1357854905,296 Bayside Crossing,5.02E+15,maestro,1357878187,United States,0,[email protected],3909619255,1,3,10,27000,326120,Dell PowerEdge T440,1350331561,31,Melba Olyet,0,77065,0
1348676413,409 Vermont Park,4.04E+15,visa,1348780643,United States,0,[email protected],3808146492,1,4,2,27000,326120,Dell PowerEdge T440,1348670405,52,Cathrin Camier,0,30351,0
1367707931,2 Armistice Circle,3.53E+15,jcb,1367712150,United States,0,[email protected],3293476926,0,4,30,27000,326120,Dell PowerEdge T440,1331750343,0,Stacy Welland,6,90610,0
1330742216,7 Walton Pass,3.58E+15,jcb,1330742328,United States,1,[email protected],2950875485,1,5,11,27000,326120,Dell PowerEdge T440,1273516409,7,Obed Korb,7,84115,0
1369654868,998 Buell Terrace,6.76E+15,maestro,1369655322,United States,1,[email protected],3110145948,1,3,1,27000,326120,Dell PowerEdge T440,1316787875,0,Cyrus Vousden,8,38168,0
1359731322,582 Spohn Place,3.58E+15,jcb,1359731611,United States,0,[email protected],4059474029,1,1,3,27000,326120,Dell PowerEdge T440,1355918300,53,Aubrie Novik,11,30245,0
1375046898,382 Meadow Valley Court,3.57E+15,jcb,1375048217,United States,1,[email protected],3030882672,1,3,9,27000,326120,Dell PowerEdge T440,1274663882,78,Zilvia Atley,13,85010,0
1348679278,66 Thompson Point,4.18E+15,visa-electron,1348742627,United States,0,[email protected],204632120,1,4,4,27000,326120,Dell PowerEdge T440,1297779222,13,Melina Itzkovsky,14,79491,0
1362413901,643 West Junction,3.05E+15,diners-club-carte-blanche,1362414288,United States,0,[email protected],2316967606,1,4,1,27000,326120,Dell PowerEdge T440,1362394170,28,Michal Handy,14,77293,0
1262739706,3101 Arrowood Street,6.33E+15,switch,1263109838,United States,0,[email protected],3994437659,1,5,0,48000,326121,Dell New PowerEdge R6415,1259613950,0,Booth Yole,0,30061,1
1348915388,4 Twin Pines Crossing,3.57E+15,jcb,1348915504,United States,0,[email protected],1862065380,1,3,0,48000,326121,Dell New PowerEdge R6415,1346177900,0,Glennie MacArdle,0,11044,1
1332419832,3 Almo Place,4.41E+15,visa-electron,1332420769,United States,0,[email protected],3393058453,1,3,1,48000,326121,Dell New PowerEdge R6415,1316614400,0,Delphinia Fairbrass,0,1105,0
1336913869,9807 Westend Alley,3.74E+15,americanexpress,1336913954,United States,0,[email protected],1724777035,1,2,1,48000,326121,Dell New PowerEdge R6415,1146260369,0,Borg Izhak,0,23504,1
1354649494,83986 Anniversary Lane,4.02E+15,visa,1354912981,United States,1,[email protected],151290097.6,1,1,1,48000,326121,Dell New PowerEdge R6415,1348650016,0,Matias Shilston,0,66286,0
1364334571,806 Eggendart Avenue,2.02E+15,diners-club-enroute,1364335842,United States,0,[email protected],3859913107,1,4,1,48000,326121,Dell New PowerEdge R6415,1360780261,0,Kristin Hiscoke,0,77234,0
1311937927,156 Carey Point,3.56E+15,jcb,1311938404,United States,0,[email protected],3403029070,1,3,2,48000,326121,Dell New PowerEdge R6415,1304721826,0,Robbie Showen,0,66112,0
1326581008,69859 Dapin Alley,6.38E+15,instapayment,1326581224,United States,1,[email protected],3047604894,1,3,2,48000,326121,Dell New PowerEdge R6415,1269325740,0,Laure Churn,0,50320,0
1363342075,8543 Moland Parkway,3.54E+15,jcb,1363343741,United States,0,[email protected],609695178,1,1,4,48000,326121,Dell New PowerEdge R6415,1363342074,0,Ware Dawes,0,27705,1
1375612199,9462 Bay Way,6.77E+15,solo,1375613603,United States,1,[email protected],2984037974,1,3,5,48000,326121,Dell New PowerEdge R6415,1331044826,0,Yorgo Stroyan,0,45228,0
1334936797,2069 Muir Park,3.54E+15,jcb,1334938739,United States,1,[email protected],3027845602,1,4,9,48000,326121,Dell New PowerEdge R6415,1334936796,0,Jammal Greensmith,0,48670,0
1333631930,739 Bay Plaza,4.51E+15,visa-electron,1340989008,United States,0,[email protected],2140109931,1,5,9,48000,326121,Dell New PowerEdge R6415,1333631929,0,Briano Conneau,0,10305,0
1349526157,590 Prairie Rose Trail,3.54E+15,jcb,1349526211,United States,0,[email protected],877621176,0,4,10,48000,326121,Dell New PowerEdge R6415,1346185099,0,Maura Kerrigan,0,22217,0
1330707336,3173 Erie Alley,3.54E+15,jcb,1334774020,United States,1,[email protected],3393513813,1,2,50,48000,326121,Dell New PowerEdge R6415,1330707335,0,Olia McHenry,0,89105,0
1301328577,619 Fuller Park,4.92E+15,visa-electron,1301330573,United States,1,[email protected],1996291939,1,3,92,48000,326121,Dell New PowerEdge R6415,1279565203,0,Maurene Lindenberg,0,11254,0
1339953585,5813 Pierstorff Road,3.75E+15,americanexpress,1340682737,United States,1,[email protected],2375272666,1,2,298,48000,326121,Dell New PowerEdge R6415,1278560235,0,Antonie Babber,0,37410,0
1290360488,78092 Marquette Trail,3.04E+15,diners-club-carte-blanche,1290497715,United States,1,[email protected],4097429948,1,2,493,48000,326121,Dell New PowerEdge R6415,1259638417,0,Linda Leys,0,2114,0
1336175167,85602 Ilene Court,3.58E+15,jcb,1336175198,United States,0,[email protected],3358565516,1,3,1,48000,326121,Dell New PowerEdge R6415,1317847331,8,Arabel Axell,0,95205,0
1374186670,536 Golf View Crossing,3.56E+15,jcb,1374186792,United States,1,[email protected],1026451255,1,4,4,48000,326121,Dell New PowerEdge R6415,1237310257,14,Sharleen Coetzee,0,55458,0
1356628866,8135 Cascade Center,5.04E+15,maestro,1356916091,United States,1,[email protected],3704729912,1,5,71,48000,326121,Dell New PowerEdge R6415,1311033983,14,Kayla Wylder,0,19892,0
1318439206,7 Golf View Street,3.54E+15,jcb,1318445315,United States,0,[email protected],201370216.6,1,4,72,48000,326121,Dell New PowerEdge R6415,1314367246,39,Nell Laity,0,40596,0
1372712050,9262 Badeau Pass,2.01E+15,diners-club-enroute,1372712135,United States,1,[email protected],3447464761,1,2,2,48000,326121,Dell New PowerEdge R6415,1233254024,22,Darnall Acom,8,91117,0
1332440381,0 Doe Crossing Court,3.55E+15,jcb,1332442222,United States,1,[email protected],4090049009,1,4,5,48000,326121,Dell New PowerEdge R6415,1318334971,14,Ron Peddie,10,20016,0
1359126406,0 Waxwing Drive,6.77E+15,laser,1359141128,United States,1,[email protected],3985466864,1,3,7,48000,326121,Dell New PowerEdge R6415,1281707651,27,Hillyer Edens,11,71307,0
1304023505,4643 Northport Drive,3.57E+15,jcb,1304122053,United States,1,[email protected],3156469316,1,3,80,48000,326121,Dell New PowerEdge R6415,1300736801,27,Marjorie Mathwen,11,33355,0
1352998268,60 Bunting Way,4.51E+15,visa-electron,1352998338,United States,1,[email protected],2163330196,0,1,52,48000,326121,Dell New PowerEdge R6415,1249661261,13,Brendin Cathrall,13,70179,0
1356708260,40010 Holmberg Drive,6.38E+15,instapayment,1370174788,United States,0,[email protected],186327370,1,2,1,48000,326121,Dell New PowerEdge R6415,1329159472,34,Alvy Kybird,13,63150,0
1331914187,23 Judy Avenue,3.57E+15,jcb,1331914564,United States,0,[email protected],318868407.6,0,1,3,48000,326121,Dell New PowerEdge R6415,1328716992,14,Kris Bowlesworth,14,8650,0
1375575429,3519 Blackbird Pass,3.53E+15,jcb,1375887442,United States,0,[email protected],1176357739,0,4,36,48000,326121,Dell New PowerEdge R6415,1274991440,21,Locke Pluthero,14,91210,0
1342619994,8071 David Hill,3.03E+15,diners-club-carte-blanche,1346605361,United States,1,[email protected],4138283317,1,5,1,48000,326121,Dell New PowerEdge R6415,1327146894,16,Laure Snoddon,16,85260,0
1263603363,914 Melvin Way,3.56E+15,jcb,1263671235,United States,0,[email protected],2790534177,0,2,1,58000,326122,Dell New PowerEdge R7415,1263593956,0,Pavel Whittock,0,53710,0
1328054673,44 Commercial Street,3.54E+15,jcb,1328055117,United States,0,[email protected],1459627755,1,5,1,58000,326122,Dell New PowerEdge R7415,1311886541,0,Electra Seabrocke,0,87592,0
1336315998,759 Hudson Alley,5.60E+15,china-unionpay,1336320120,United States,0,[email protected],660246959,0,2,1,58000,326122,Dell New PowerEdge R7415,1316217091,0,Ginnifer Antoinet,0,16505,0
1353771620,14 Scoville Circle,6.71E+15,laser,1353773041,United States,0,[email protected],3310146261,0,1,1,58000,326122,Dell New PowerEdge R7415,1353771482,0,Bianca Wardle,0,35205,1
1366714002,361 Dovetail Place,3.75E+15,americanexpress,1366715025,United States,0,[email protected],3150311325,1,2,1,58000,326122,Dell New PowerEdge R7415,1366713815,0,Cindi Voules,0,19141,0
1352472990,6456 Nova Hill,5.29E+15,mastercard,1352473061,United States,1,[email protected],2707534901,1,4,2,58000,326122,Dell New PowerEdge R7415,1304699073,0,Marcille Griffe,0,31998,0
1314828971,494 Elgar Court,3.58E+15,jcb,1314983779,United States,1,[email protected],269027221.2,1,5,4,58000,326122,Dell New PowerEdge R7415,1301269345,0,Frasquito Tukesby,0,77090,0
1319051989,59 Karstens Street,5.61E+15,china-unionpay,1319571819,United States,0,[email protected],3429251118,1,5,4,58000,326122,Dell New PowerEdge R7415,1289183184,0,Reider Blundon,0,20420,0
1347556185,0 Lotheville Place,3.58E+15,jcb,1347556553,United States,0,[email protected],1413809222,1,2,5,58000,326122,Dell New PowerEdge R7415,1339646318,0,Regan Breitling,0,33196,0
1297915754,281 Merchant Trail,5.61E+15,china-unionpay,1297956160,United States,0,[email protected],1627803564,1,4,6,58000,326122,Dell New PowerEdge R7415,1297915753,0,Roseline Sanday,0,63136,0
1355965893,15594 Basil Court,3.04E+15,diners-club-carte-blanche,1355967896,United States,1,[email protected],2668893464,1,1,6,58000,326122,Dell New PowerEdge R7415,1295364995,0,Fee Dodson,0,34643,0
1357617362,01 Saint Paul Drive,6.71E+15,laser,1357955179,United States,1,[email protected],2242231762,1,4,7,58000,326122,Dell New PowerEdge R7415,1254786757,0,Robers Farrand,0,93305,0
1343243833,5 Dunning Center,3.58E+15,jcb,1343264884,United States,0,[email protected],3326242007,1,1,8,58000,326122,Dell New PowerEdge R7415,1335165601,0,Alexine Adam,0,11388,0
1303324258,5225 Artisan Point,3.55E+15,jcb,1303324445,United States,0,[email protected],2395674088,1,2,12,58000,326122,Dell New PowerEdge R7415,1262026939,0,Everard Guild,0,88530,0
1305387540,877 Autumn Leaf Point,3.55E+15,jcb,1305394757,United States,1,[email protected],4032154236,1,4,12,58000,326122,Dell New PowerEdge R7415,1251748702,0,Willem Kenen,0,10170,0
1332855325,670 Riverside Way,6.38E+15,instapayment,1332855431,United States,1,[email protected],2142078755,0,1,15,58000,326122,Dell New PowerEdge R7415,1136391990,0,Tuck De Filippo,0,77305,0
1374858792,12973 Sutteridge Junction,3.69E+15,diners-club-international,1375906725,United States,0,[email protected],2544812583,1,5,18,58000,326122,Dell New PowerEdge R7415,1245794138,0,Corrinne Cornhill,0,32277,0
1366297791,9 Barby Point,3.03E+15,diners-club-carte-blanche,1366298839,United States,1,[email protected],704707447.2,0,2,87,58000,326122,Dell New PowerEdge R7415,1235682507,0,Adrian Moreing,0,70149,0
1364312381,5204 Duke Center,3.61E+15,diners-club-international,1364911845,United States,0,[email protected],4109781093,0,4,163,58000,326122,Dell New PowerEdge R7415,1355391185,0,Ruddie Rispen,0,93311,0
1357598104,12 Fremont Plaza,5.35E+15,mastercard,1357599084,United States,0,[email protected],3166767986,0,3,19,58000,326122,Dell New PowerEdge R7415,1311099282,13,Lon Bines,0,33499,0
1355439564,088 Pearson Junction,3.54E+15,jcb,1355439784,United States,0,[email protected],17012003.6,1,2,4,58000,326122,Dell New PowerEdge R7415,1346188707,24,Winnah Warnes,0,49544,0
1372421216,331 Commercial Terrace,4.92E+15,visa-electron,1372706023,United States,1,[email protected],1627984138,1,4,2,58000,326122,Dell New PowerEdge R7415,1300897965,0,Kendell Craigmile,7,33190,0
1370309794,6284 Grayhawk Park,3.59E+15,jcb,1371073728,United States,1,[email protected],4226489568,1,4,2,58000,326122,Dell New PowerEdge R7415,1330097886,8,Herminia Port,9,43215,0
1343938970,47 Evergreen Pass,4.14E+15,visa,1345219127,United States,1,[email protected],4288209696,1,3,69,58000,326122,Dell New PowerEdge R7415,1332273498,11,Malanie Russilll,11,25326,0
1366041258,10834 Eagan Place,4.91E+15,switch,1366055035,United States,0,[email protected],4252846090,1,5,9,58000,326122,Dell New PowerEdge R7415,1366040979,23,Jeannine Tredger,12,20470,0
1354705631,9046 Clove Circle,4.04E+15,visa,1354710461,United States,0,[email protected],87682270.2,1,3,21,58000,326122,Dell New PowerEdge R7415,1245062115,14,Rand Joutapaitis,15,31605,0
1312045497,22 Pepper Wood Pass,6.38E+15,instapayment,1312045540,United States,0,[email protected],3591013458,1,5,4,58000,326122,Dell New PowerEdge R7415,1264446071,16,Wilek Yardy,15,95123,0
1297183461,4935 Derek Junction,4.90E+15,switch,1297183513,United States,0,[email protected],3479752207,1,3,22,58000,326122,Dell New PowerEdge R7415,1264446071,16,Ollie Godsafe,15,34615,0
1349741000,8415 Muir Court,3.54E+15,jcb,1349741106,United States,1,[email protected],1979124200,1,1,35,58000,326122,Dell New PowerEdge R7415,1343299392,49,Monah Fuller,15,96835,0
1360147114,4380 Russell Park,2.02E+15,diners-club-enroute,1360147830,United States,1,[email protected],167873033.6,1,5,5,58000,326122,Dell New PowerEdge R7415,1340889644,0,Thorsten Splaven,16,33158,0
1369945883,7081 7th Crossing,4.02E+15,visa,1371757784,United States,0,[email protected],2287585017,1,2,1,159000,326123,Dell Power Edge R230,1369945882,0,Hillie Beausang,0,28410,0
1304729270,1 Caliangt Court,3.54E+15,jcb,1304730433,United States,0,[email protected],1510414585,0,4,2,159000,326123,Dell Power Edge R230,1271271779,0,Inigo Yanez,0,99522,0
1362767829,57 Birchwood Crossing,5.02E+15,maestro,1362767975,United States,0,[email protected],3415372833,1,2,2,159000,326123,Dell Power Edge R230,1362767824,0,Pascale Hamberstone,0,64082,0
1328043947,2 Rowland Trail,5.60E+15,bankcard,1328045232,United States,0,[email protected],3686080812,1,1,3,159000,326123,Dell Power Edge R230,1294157318,0,Charmion Murkus,0,64136,0
1378142534,35 Calypso Hill,3.75E+15,americanexpress,1378142831,United States,0,[email protected],3603218475,0,1,3,159000,326123,Dell Power Edge R230,1378142532,0,Elaina Tilney,0,27635,1
1362990129,7051 Chive Street,3.56E+15,jcb,1363597709,United States,1,[email protected],2960030180,0,5,4,159000,326123,Dell Power Edge R230,1202656272,0,Wood McGivena,0,36689,0
1365442553,1064 Scoville Point,3.03E+15,diners-club-carte-blanche,1365445223,United States,0,[email protected],1057581933,1,1,6,159000,326123,Dell Power Edge R230,1358347094,0,Nataniel Arran,0,66105,0
1364722986,24 Briar Crest Hill,2.01E+15,diners-club-enroute,1364724581,United States,0,[email protected],2109948822,1,1,7,159000,326123,Dell Power Edge R230,1364722985,0,Kalindi Pheazey,0,44485,1
1328906012,68686 Kipling Point,3.58E+15,jcb,1328906738,United States,1,[email protected],2195467028,0,4,10,159000,326123,Dell Power Edge R230,1316017478,0,Mariel Whitwham,0,31605,0
1295443790,0676 Corben Lane,3.57E+15,jcb,1295497639,United States,0,[email protected],677047721,1,2,11,159000,326123,Dell Power Edge R230,1295130658,0,Belva Ragsdale,0,78682,1
1369007357,7773 Glendale Place,3.55E+15,jcb,1369007428,United States,0,[email protected],4208162251,1,4,11,159000,326123,Dell Power Edge R230,1368953500,0,Giselbert Zum Felde,0,21229,0
1326215008,50639 Farwell Alley,6.38E+15,instapayment,1326317032,United States,1,[email protected],1426735278,1,3,13,159000,326123,Dell Power Edge R230,1313758411,0,Salomon Gierth,0,20546,0
1365795565,3 Pepper Wood Terrace,3.55E+15,jcb,1365796485,United States,0,[email protected],860469375,0,3,14,159000,326123,Dell Power Edge R230,1362848264,0,Jania Aspital,0,77035,1
1373643330,6867 Fairview Lane,5.60E+15,bankcard,1373643768,United States,1,[email protected],168788064,1,2,18,159000,326123,Dell Power Edge R230,1354043821,0,Jessee Boyles,0,20530,0
1299755865,170 Ronald Regan Junction,6.30E+15,laser,1300750769,United States,1,[email protected],385995985.6,1,5,27,159000,326123,Dell Power Edge R230,1267018021,0,Gordy Danilin,0,50393,0
1308358256,442 Superior Trail,3.58E+15,jcb,1308580946,United States,0,[email protected],2177204731,0,3,35,159000,326123,Dell Power Edge R230,1308358255,0,Ingrim MacGown,0,25362,0
1323275108,280 Delladonna Junction,2.02E+15,diners-club-enroute,1323275397,United States,0,[email protected],523592389,1,1,165,159000,326123,Dell Power Edge R230,1253500366,0,Baldwin Beining,0,99507,0
1312477193,8 Eagan Pass,3.80E+15,americanexpress,1316541957,United States,1,[email protected],2880019774,1,1,71,159000,326123,Dell Power Edge R230,1311033983,14,Hastings Foran,0,45208,0
1370926606,12 Calypso Plaza,3.55E+15,jcb,1371105222,United States,1,[email protected],3335632389,1,2,95,159000,326123,Dell Power Edge R230,1317770533,20,Grange Berdale,0,45020,0
1363205248,620 Blackbird Center,5.60E+15,china-unionpay,1363205462,United States,0,[email protected],710658577,1,5,20,159000,326123,Dell Power Edge R230,1336066203,6,Margarete Pennycook,7,27404,0
1359076125,4 Sutteridge Court,3.55E+15,jcb,1359076625,United States,0,[email protected],206810203,1,1,2,159000,326123,Dell Power Edge R230,1292218967,9,Janek Origin,9,27710,0
1368626243,98 Memorial Circle,3.58E+15,jcb,1368626899,United States,1,[email protected],1867202345,1,4,7,159000,326123,Dell Power Edge R230,1321815411,0,Isabel O'Henecan,11,22309,0
1370297811,30 Namekagon Plaza,5.60E+15,bankcard,1370297880,United States,0,[email protected],3304854164,1,5,1,159000,326123,Dell Power Edge R230,1181017884,11,Felicle Coolahan,11,48912,0
1366812925,30539 Oriole Avenue,3.56E+15,jcb,1366812957,United States,1,[email protected],1359479026,1,1,5,159000,326123,Dell Power Edge R230,1320764400,16,Ettore Banbrick,11,80279,0
1311304243,210 Mosinee Street,4.84E+15,visa-electron,1311304345,United States,0,[email protected],3612655682,1,4,26,159000,326123,Dell Power Edge R230,1299172621,11,Sergei Atkyns,12,94297,0
1313516197,36 Reindahl Pass,6.76E+15,maestro,1313529167,United States,1,[email protected],1647218781,1,4,40,159000,326123,Dell Power Edge R230,1299690763,11,Elise Kob,12,37914,0
1364240442,2 Sundown Street,4.91E+15,switch,1365896598,United States,1,[email protected],3354060280,1,4,12,159000,326123,Dell Power Edge R230,1288101875,0,Angelina Chastenet,13,6705,0
1364993403,6624 Esker Circle,2.02E+15,diners-club-enroute,1364993873,United States,1,[email protected],3122457609,1,3,19,159000,326123,Dell Power Edge R230,1226672226,0,Roman Innman,13,32819,0
1325603000,2 Meadow Valley Terrace,3.59E+15,jcb,1325603604,United States,1,[email protected],3110437942,1,3,1,159000,326123,Dell Power Edge R230,1264858043,16,Markus BoHlingolsen,13,32123,0
1328656129,5 Leroy Lane,4.04E+15,visa,1333511301,United States,1,[email protected],2738197381,1,3,32,159000,326123,Dell Power Edge R230,1317346470,23,Emelen Domoney,13,28210,0
1355486707,72 Carpenter Pass,3.05E+15,diners-club-carte-blanche,1355919894,United States,1,[email protected],3211701954,1,3,4,159000,326123,Dell Power Edge R230,1355485339,13,Fonzie Batho,14,91505,0
1364569873,94177 Melvin Trail,3.74E+15,americanexpress,1364570354,United States,1,[email protected],369744984.6,1,2,1,159000,326123,Dell Power Edge R230,1355170567,17,Charla Earpe,15,81010,0
1296512496,437 Aberg Circle,5.60E+15,bankcard,1296518073,United States,0,[email protected],3755590828,1,1,1,329000,326124,Dell PowerEdge R330,1248804626,0,Boycie Sapena,0,73119,0
1332808088,7284 Sloan Avenue,6.77E+15,solo,1332815393,United States,0,[email protected],2880856076,1,1,1,329000,326124,Dell PowerEdge R330,1332257284,0,Marjy Brockest,0,90410,0
1295665702,336 Ridge Oak Terrace,3.59E+15,jcb,1295668164,United States,0,[email protected],3712363415,1,2,3,329000,326124,Dell PowerEdge R330,1283393789,0,Cullin Kellard,0,25775,0
1309187745,6 Jenifer Crossing,4.90E+15,visa,1309190461,United States,0,[email protected],3027223540,1,3,3,329000,326124,Dell PowerEdge R330,1271615279,0,Antony Bendin,0,77493,0
1371382093,4 Harbort Pass,3.54E+15,jcb,1371382275,United States,0,[email protected],570859541.6,0,2,4,329000,326124,Dell PowerEdge R330,1370275684,0,Katina Nealand,0,20546,1
1341400830,4722 Grim Parkway,3.01E+15,diners-club-carte-blanche,1341831874,United States,0,[email protected],3593577421,0,4,5,329000,326124,Dell PowerEdge R330,1341400828,0,Erv Ellwood,0,74193,0
1367227145,20969 Dorton Trail,3.45E+15,americanexpress,1367233836,United States,0,[email protected],2996515415,0,3,5,329000,326124,Dell PowerEdge R330,1367227144,0,Rriocard Braunes,0,33233,0
1330403172,75 Bay Avenue,3.55E+15,jcb,1331010746,United States,1,[email protected],3646804320,1,1,7,329000,326124,Dell PowerEdge R330,1295071024,0,Lanny Pickring,0,75062,0
1333277114,87 Linden Place,3.58E+15,jcb,1333278201,United States,1,[email protected],2342963205,1,1,10,329000,326124,Dell PowerEdge R330,1328697453,0,Terrel Currom,0,88553,0
1328040912,252 Ronald Regan Terrace,6.77E+15,laser,1328050356,United States,1,[email protected],1480195271,1,2,13,329000,326124,Dell PowerEdge R330,1286749541,0,Avrit Guillart,0,37131,0
1360629231,45 Golf Course Circle,3.58E+15,jcb,1360636223,United States,1,[email protected],1665967125,1,5,13,329000,326124,Dell PowerEdge R330,1360420620,0,Mathian Trimmell,0,34108,0
1350999832,8277 Anderson Alley,3.54E+15,jcb,1351000339,United States,1,[email protected],1157944624,1,1,14,329000,326124,Dell PowerEdge R330,1251593340,0,Tibold Counsell,0,28299,0
1363494223,36727 Meadow Vale Trail,5.49E+15,mastercard,1363494416,United States,0,[email protected],3168105442,0,2,15,329000,326124,Dell PowerEdge R330,1363327883,0,Rochette Tichner,0,34620,0
1311784787,8532 Golden Leaf Avenue,5.00E+15,mastercard,1311785607,United States,1,[email protected],4156802058,1,4,19,329000,326124,Dell PowerEdge R330,1275496994,0,Kaylee Josipovitz,0,91186,0
1297963485,10123 Sutherland Park,5.60E+15,bankcard,1297977767,United States,1,[email protected],4265856067,0,5,24,329000,326124,Dell PowerEdge R330,1280461345,0,Bram Marvell,0,33805,0
1353686555,186 Iowa Drive,5.10E+15,mastercard,1353690107,United States,1,[email protected],268734077.4,1,1,24,329000,326124,Dell PowerEdge R330,1318423492,0,Celinda Sangster,0,74108,0
1340907700,476 Delaware Trail,5.46E+15,diners-club-us-ca,1340908235,United States,0,[email protected],542888899,1,5,32,329000,326124,Dell PowerEdge R330,1320156595,0,Leopold Sproson,0,23509,0
1350684467,752 Clyde Gallagher Point,2.01E+15,diners-club-enroute,1351192892,United States,0,[email protected],2110546044,1,3,32,329000,326124,Dell PowerEdge R330,1221090537,0,Layla Britian,0,30316,0
1338785678,2258 Ronald Regan Junction,5.60E+15,china-unionpay,1338787559,United States,0,[email protected],4059917752,1,1,61,329000,326124,Dell PowerEdge R330,1338774401,0,Davide St. Louis,0,27150,1
1321312619,875 Lunder Court,3.54E+15,jcb,1321312752,United States,1,[email protected],2076174492,1,4,5,329000,326124,Dell PowerEdge R330,1167874519,12,Dniren Hale,0,88530,0
1366732825,14132 Lakewood Parkway,3.49E+15,americanexpress,1367865522,United States,0,[email protected],4037641544,1,1,1,329000,326124,Dell PowerEdge R330,1364923654,39,Josephina Goldsbrough,0,22309,0
1367328086,7 Buena Vista Plaza,3.55E+15,jcb,1367332611,United States,0,[email protected],3984989377,1,4,1,329000,326124,Dell PowerEdge R330,1364391264,14,Franni Stansbie,8,33158,0
1379213000,63128 Parkside Center,3.59E+15,jcb,1379213322,United States,1,[email protected],3912077616,1,3,8,329000,326124,Dell PowerEdge R330,1363798573,10,Florinda Edgeler,9,64054,0
1377784427,3 Redwing Circle,2.02E+15,diners-club-enroute,1377785411,United States,0,[email protected],3186562417,1,3,36,329000,326124,Dell PowerEdge R330,1348581159,17,Ruthi Dashkov,11,90094,0
1369751987,753 Susan Park,2.02E+15,diners-club-enroute,1372675041,United States,1,[email protected],1109368049,1,1,4,329000,326124,Dell PowerEdge R330,1369732265,29,Bald Trobey,11,92844,0
1296701321,4514 Maple Terrace,3.02E+15,diners-club-carte-blanche,1296701506,United States,1,[email protected],2469843226,1,1,151,329000,326124,Dell PowerEdge R330,1290047745,12,Nari Cran,12,11247,0
1359169920,14 Waubesa Drive,5.60E+15,bankcard,1359663168,United States,1,[email protected],1815042181,1,2,4,329000,326124,Dell PowerEdge R330,1358988603,16,Coralie Shawcroft,13,66160,0
1336213672,06242 Utah Street,4.94E+15,switch,1336214718,United States,1,[email protected],3961866036,0,5,2,329000,326124,Dell PowerEdge R330,1318716936,13,Ned Ockendon,14,98506,0
1377199466,2 Logan Drive,3.58E+15,jcb,1377199967,United States,0,[email protected],3079103507,1,4,20,329000,326124,Dell PowerEdge R330,1264552017,14,Henrie Barbe,14,10160,0
1327518227,24847 Merrick Road,5.10E+15,mastercard,1327518712,United States,1,[email protected],3253372912,1,1,10,329000,326124,Dell PowerEdge R330,1264446071,16,Ailyn Phizacklea,14,74108,0
1369325770,834 Dakota Alley,5.52E+15,mastercard,1369919193,United States,0,[email protected],1611853545,1,1,1,329000,326124,Dell PowerEdge R330,1363962513,14,Raven Fouracres,15,98442,0
1355165527,2 Manley Road,3.57E+15,jcb,1355846299,United States,1,[email protected],1753960184,0,5,36,329000,326124,Dell PowerEdge R330,1354644473,19,Diahann Studdard,15,76011,0
1318888327,766 Westerfield Plaza,5.61E+15,bankcard,1318888543,United States,0,[email protected],2241066391,1,1,1,56000,326125,Dell Power EdgeR740,1306191236,0,Babara Burbidge,0,84115,0
1354665302,503 Towne Circle,3.75E+15,americanexpress,1354665794,United States,0,[email protected],639339104,1,1,1,56000,326125,Dell Power EdgeR740,1350341798,0,Rick Aronowitz,0,91499,0
1365203947,9454 Mosinee Center,5.11E+15,mastercard,1365205027,United States,0,[email protected],757091403,1,1,1,56000,326125,Dell Power EdgeR740,1315966557,0,Bambi Sommerlie,0,89110,0
1347638091,53 Darwin Place,5.00E+15,mastercard,1347638860,United States,0,[email protected],3713266589,1,4,2,56000,326125,Dell Power EdgeR740,1328481280,0,Abra Heningam,0,31416,0
1305766861,8496 Magdeline Plaza,3.53E+15,jcb,1305840189,United States,0,[email protected],1839493143,1,2,3,56000,326125,Dell Power EdgeR740,1285008742,0,Bibbie Wickey,0,90831,0
1353432975,95 Ohio Drive,2.02E+15,diners-club-enroute,1353433527,United States,0,[email protected],759995947,1,5,3,56000,326125,Dell Power EdgeR740,1353428905,0,Christean Ryles,0,65211,0
1375228319,82305 Coleman Way,4.91E+15,switch,1375228817,United States,0,[email protected],2392909215,1,4,4,56000,326125,Dell Power EdgeR740,1310163866,0,Cynthea Matusson,0,80930,0
1375735449,71 Golf Course Park,3.53E+15,jcb,1375736107,United States,0,[email protected],1141319615,1,5,4,56000,326125,Dell Power EdgeR740,1284949155,0,Rosaline Steade,0,60619,0
1296473165,60978 Chive Park,3.38E+15,americanexpress,1296479526,United States,0,[email protected],1649988956,1,4,5,56000,326125,Dell Power EdgeR740,1296446498,0,Goldi Guildford,0,20238,0
1366206353,63 Sunfield Plaza,5.11E+15,mastercard,1366206478,United States,1,[email protected],3670073328,0,2,6,56000,326125,Dell Power EdgeR740,1344272235,0,Fee Crace,0,77095,0
1302288640,21879 Sherman Lane,4.91E+15,visa-electron,1302288748,United States,1,[email protected],2791691951,1,2,7,56000,326125,Dell Power EdgeR740,1286842603,0,June Gorton,0,60193,0
1296497385,34988 Kropf Court,2.02E+15,diners-club-enroute,1296501742,United States,0,[email protected],606978317,0,3,8,56000,326125,Dell Power EdgeR740,1251482991,0,Roda Bramstom,0,20088,0
1317142429,38334 Lotheville Place,3.05E+15,diners-club-carte-blanche,1317142587,United States,0,[email protected],2750931314,1,5,12,56000,326125,Dell Power EdgeR740,1275613865,0,Caressa Smitheram,0,98140,0
1301569977,137 Dennis Hill,4.18E+15,visa-electron,1301570753,United States,0,[email protected],4112756893,1,2,13,56000,326125,Dell Power EdgeR740,1237921928,0,Leann Gossart,0,6816,0
1343732527,6 Badeau Court,4.90E+15,switch,1343732573,United States,1,[email protected],3393010226,0,2,13,56000,326125,Dell Power EdgeR740,1244127372,0,Shela Pairpoint,0,48242,0
1371851632,5417 Spohn Junction,5.60E+15,bankcard,1372112163,United States,0,[email protected],1965082309,1,3,22,56000,326125,Dell Power EdgeR740,1184350454,0,Roseann Stansbie,0,12210,0
1362666291,2 Bluestem Road,3.55E+15,jcb,1362668784,United States,1,[email protected],3172929334,1,4,64,56000,326125,Dell Power EdgeR740,1362666291,0,Austine Spellsworth,0,79945,0
1309906516,897 Spohn Court,5.60E+15,bankcard,1309907176,United States,1,[email protected],4127245130,1,4,506,56000,326125,Dell Power EdgeR740,1262020256,0,Dallon Lerway,0,30358,0
1368521684,43 Bellgrove Lane,5.64E+15,switch,1368522446,United States,1,[email protected],321880102,1,3,30,56000,326125,Dell Power EdgeR740,1327672431,13,Marney Hinckley,0,27635,0
1318887582,30502 Judy Drive,3.55E+15,jcb,1319038827,United States,1,[email protected],187944143,1,5,15,56000,326125,Dell Power EdgeR740,1272918410,22,Eba Beck,0,20470,0
1375480295,667 Hauk Terrace,5.60E+15,diners-club-us-ca,1375482681,United States,0,[email protected],2912506319,1,3,2,56000,326125,Dell Power EdgeR740,1375480295,23,Shermy Leadley,0,33647,0
1377027988,2810 Corry Way,3.66E+15,diners-club-international,1377031867,United States,3,[email protected],822157617.2,0,2,2,56000,326125,Dell Power EdgeR740,1374264897,5,Abie Abrams,5,20036,0
1363941454,1 Saint Paul Lane,5.46E+15,diners-club-us-ca,1363941515,United States,1,[email protected],2017776664,1,1,1,56000,326125,Dell Power EdgeR740,1244452359,7,Florri Tackley,7,80915,0
1361728546,0646 Melrose Street,3.58E+15,jcb,1361733451,United States,0,[email protected],2335493338,1,5,1,56000,326125,Dell Power EdgeR740,1355403992,9,Pietro Guthrie,9,90045,0
1376845924,13 Scott Parkway,4.94E+15,switch,1376905600,United States,1,[email protected],1241716472,1,1,22,56000,326125,Dell Power EdgeR740,1376845915,9,Corny Dachs,9,76105,0
1368892911,02 6th Hill,4.91E+15,switch,1368893148,United States,0,[email protected],2543295602,1,1,1,56000,326125,Dell Power EdgeR740,1351710118,18,Stormie Connikie,11,97240,0
1362589933,5567 Oriole Parkway,3.54E+15,jcb,1362591162,United States,0,[email protected],2941111815,1,3,33,56000,326125,Dell Power EdgeR740,1256083066,9,Lee Isgate,13,87505,0
1314153805,98 Burning Wood Place,3.54E+15,jcb,1314154703,United States,0,[email protected],320490163,1,2,1,56000,326125,Dell Power EdgeR740,1311342067,0,Maryanne Joutapavicius,14,67260,0
1361376392,21 Maple Lane,3.56E+15,jcb,1361376605,United States,1,[email protected],285575815.6,1,3,14,56000,326125,Dell Power EdgeR740,1279555422,12,Teri Brill,14,90076,0
1340893583,9 Hoard Circle,5.60E+15,bankcard,1340893604,United States,1,[email protected],3785660502,0,1,3,56000,326125,Dell Power EdgeR740,1274972006,10,Paco Lambird,15,98405,0
1366740820,18 Gateway Point,3.54E+15,jcb,1366740951,United States,1,[email protected],1494673028,1,2,42,56000,326125,Dell Power EdgeR740,1317998621,15,Jon Bakewell,16,93715,0
1299220887,4044 Oxford Pass,5.60E+15,bankcard,1299221012,United States,1,[email protected],1998001673,1,1,1,343000,326126,Dell PowerEdge R740xd,1277336724,0,Kippie Yaus,0,90831,0
1330832702,6 Kings Circle,3.59E+15,jcb,1330833533,United States,0,[email protected],1577072001,0,3,1,343000,326126,Dell PowerEdge R740xd,1330832701,0,Wendall Danher,0,98664,1
1360675981,81953 Barnett Avenue,3.57E+15,jcb,1360676174,United States,0,[email protected],1192046072,1,3,1,343000,326126,Dell PowerEdge R740xd,1323899564,0,Sissie Habercham,0,27409,0
1350661380,9 Sycamore Pass,3.74E+15,americanexpress,1350662185,United States,0,[email protected],2224947061,1,2,3,343000,326126,Dell PowerEdge R740xd,1288015224,0,Dora Harlick,0,60630,0
1375228339,78320 Chive Road,3.54E+15,jcb,1375322646,United States,0,[email protected],2844068159,1,5,3,343000,326126,Dell PowerEdge R740xd,1375228338,0,Allistir Jedrzejkiewicz,0,65898,0
1379535151,1 Drewry Circle,3.55E+15,jcb,1379535271,United States,0,[email protected],2926444473,1,5,3,343000,326126,Dell PowerEdge R740xd,1379534712,0,Willis McGrirl,0,15250,1
1293551603,54733 Mesta Court,3.54E+15,jcb,1293551647,United States,1,[email protected],1213016616,0,5,5,343000,326126,Dell PowerEdge R740xd,1279317861,0,Wilton Harrison,0,70836,1
1341898944,59 Aberg Court,3.03E+15,diners-club-carte-blanche,1341912885,United States,0,[email protected],4119750580,1,1,5,343000,326126,Dell PowerEdge R740xd,1295610586,0,Nessy Evered,0,60614,0
1350407619,6043 Hovde Trail,3.57E+15,jcb,1350407728,United States,0,[email protected],1595934259,1,5,6,343000,326126,Dell PowerEdge R740xd,1290204991,0,Shalna Mickelwright,0,23277,0
1331093871,170 Glendale Terrace,3.54E+15,jcb,1331104324,United States,0,[email protected],1820280268,1,2,7,343000,326126,Dell PowerEdge R740xd,1331093862,0,Giulietta Thal,0,11470,0
1364395160,9 New Castle Parkway,5.60E+15,china-unionpay,1364395914,United States,0,[email protected],2350052898,1,5,7,343000,326126,Dell PowerEdge R740xd,1252094605,0,Ross Stallon,0,79705,0
1295588790,80924 Old Shore Terrace,3.57E+15,jcb,1295666931,United States,0,[email protected],1512366957,0,5,10,343000,326126,Dell PowerEdge R740xd,1295588789,0,Lydia Rearie,0,94207,0
1310656858,917 Steensland Trail,3.56E+15,jcb,1311091586,United States,0,[email protected],220042429,1,2,10,343000,326126,Dell PowerEdge R740xd,1310656857,0,Cullen Gercke,0,79491,0
1323815032,8518 Cherokee Lane,3.74E+15,americanexpress,1325632906,United States,0,[email protected],2656047821,1,2,14,343000,326126,Dell PowerEdge R740xd,1285260113,0,Joela Stebbing,0,79405,0
1302023070,2 Hoard Crossing,3.56E+15,jcb,1336452595,United States,0,[email protected],3980553103,1,5,14,343000,326126,Dell PowerEdge R740xd,1265218977,0,Ted Verlander,0,75372,0
1354667016,4279 Pawling Trail,3.54E+15,jcb,1354667070,United States,0,[email protected],352980555.2,1,4,15,343000,326126,Dell PowerEdge R740xd,1318003412,0,Rana Coathup,0,43268,0
1368046663,78356 Corry Pass,3.57E+15,jcb,1368049702,United States,1,[email protected],2252825305,1,5,15,343000,326126,Dell PowerEdge R740xd,1363370592,0,Erinna Coghlan,0,68164,0
1340035150,57871 Everett Parkway,4.92E+15,visa-electron,1340059079,United States,0,[email protected],721786833.6,1,5,18,343000,326126,Dell PowerEdge R740xd,1337890929,0,Antin Realph,0,17622,0
1325789827,628 Jenifer Crossing,3.74E+15,americanexpress,1326315706,United States,1,[email protected],4125067959,1,5,61,343000,326126,Dell PowerEdge R740xd,1314112033,0,Athena Thorneywork,0,27635,0
1334589118,1 Onsgard Parkway,5.11E+15,mastercard,1334589729,United States,1,[email protected],3931674185,1,3,65,343000,326126,Dell PowerEdge R740xd,1286228800,0,Elfie Odgers,0,18706,0
1375733606,9 Melody Trail,3.54E+15,jcb,1375734935,United States,0,[email protected],3455212937,0,1,142,343000,326126,Dell PowerEdge R740xd,1374180155,0,Iolanthe Breese,0,75205,0
1348281569,7778 Talmadge Parkway,3.58E+15,jcb,1348281737,United States,1,[email protected],788936693,1,2,1,343000,326126,Dell PowerEdge R740xd,1303837521,17,Fernande Aucoate,0,55572,0
1363190557,041 Heath Street,3.54E+15,jcb,1364007570,United States,0,[email protected],3598229845,1,2,8,343000,326126,Dell PowerEdge R740xd,1350524415,23,Raffarty Pudsey,0,14225,0
1310694159,34 Susan Way,3.59E+15,jcb,1310769129,United States,1,[email protected],1410356095,1,3,13,343000,326126,Dell PowerEdge R740xd,1297308816,56,Kalila Peacocke,0,77281,0
1321904509,55 Laurel Trail,3.54E+15,jcb,1321908120,United States,1,[email protected],419860365.4,1,5,137,343000,326126,Dell PowerEdge R740xd,1219695328,8,Gael Hearle,9,47405,0
1365617266,94 3rd Road,3.59E+15,jcb,1365617315,United States,1,[email protected],2999739602,1,2,17,343000,326126,Dell PowerEdge R740xd,1299776726,16,Heall Buney,10,88530,0
1346977789,422 Cardinal Way,5.05E+15,mastercard,1346977890,United States,1,[email protected],1308941236,1,1,2,343000,326126,Dell PowerEdge R740xd,1322014241,9,Brion Blunkett,11,73179,0
1320166944,0685 Warner Trail,5.02E+15,maestro,1320167157,United States,1,[email protected],1362644159,0,1,1,343000,326126,Dell PowerEdge R740xd,1222118948,11,Chane Chitter,15,66160,0
1358265365,76 Johnson Trail,3.57E+15,jcb,1358266038,United States,0,[email protected],2622652280,1,2,12,343000,326126,Dell PowerEdge R740xd,1340445796,21,Yoshi Paramor,15,93773,0
1369322293,8 Arapahoe Court,4.04E+15,visa,1369322333,United States,0,[email protected],1143032358,1,5,3,343000,326126,Dell PowerEdge R740xd,1271810681,20,Arlyne Brimmell,16,6905,0
1330816507,608 Derek Pass,3.56E+15,jcb,1330816674,United States,0,[email protected],2898276097,1,5,0,364000,326127,Dell PowerEdge R640,1330363703,0,Prescott Fruin,0,75799,1
1306026707,9 Spohn Pass,3.53E+15,jcb,1306026925,United States,0,[email protected],35764160.8,1,4,1,364000,326127,Dell PowerEdge R640,1306026706,0,Jemima Sloegrave,0,33141,1
1339954594,38051 Cordelia Park,3.57E+15,jcb,1339954659,United States,0,[email protected],3746219995,1,2,1,364000,326127,Dell PowerEdge R640,1300146631,0,Valentina Matijasevic,0,89166,0
1340888129,080 Swallow Road,3.58E+15,jcb,1340888228,United States,0,[email protected],1875939578,0,2,1,364000,326127,Dell PowerEdge R640,1333481075,0,Lothario Reubel,0,81010,0
1330490920,9142 Manufacturers Hill,4.90E+15,switch,1330491032,United States,0,[email protected],3101295029,1,1,2,364000,326127,Dell PowerEdge R640,1304639602,0,Merv Anstiss,0,33023,1
1367856900,65 Melody Court,2.02E+15,diners-club-enroute,1368125677,United States,1,[email protected],2862031805,1,2,2,364000,326127,Dell PowerEdge R640,1285287928,0,Gretna Dikes,0,91406,0
1379367274,2 Mandrake Pass,3.59E+15,jcb,1379369304,United States,0,[email protected],4053300853,1,4,2,364000,326127,Dell PowerEdge R640,1379367271,0,Wenona Ginger,0,48335,1
1361503234,4683 Gerald Crossing,3.55E+15,jcb,1361504460,United States,0,[email protected],3141632434,1,1,6,364000,326127,Dell PowerEdge R640,1361503234,0,Kassi Ravenscroft,0,20910,0
1319210847,22 Morningstar Hill,3.57E+15,jcb,1319419115,United States,1,[email protected],3693546537,1,2,7,364000,326127,Dell PowerEdge R640,1319001483,0,Bartholomeus Grzeszczak,0,58122,0
1349300105,48635 Muir Center,3.58E+15,jcb,1351546690,United States,1,[email protected],3397178017,0,3,9,364000,326127,Dell PowerEdge R640,1328311154,0,Ricoriki Cicconetti,0,70505,0
1345560561,96 Valley Edge Plaza,3.01E+15,diners-club-carte-blanche,1345561011,United States,0,[email protected],3948454378,1,5,11,364000,326127,Dell PowerEdge R640,1238062732,0,Zahara Surguine,0,25775,0
1343753394,851 Dexter Plaza,3.58E+15,jcb,1343753537,United States,1,[email protected],1007384536,1,3,15,364000,326127,Dell PowerEdge R640,1281130558,0,Hetty Paskins,0,22119,0
1377080147,39 Holy Cross Center,4.54E+15,visa,1377080437,United States,0,[email protected],2782427758,1,4,15,364000,326127,Dell PowerEdge R640,1293466275,0,Dicky Rome,0,50362,0
1334583527,4079 Quincy Plaza,5.04E+15,maestro,1334584184,United States,1,[email protected],872874232.2,1,3,19,364000,326127,Dell PowerEdge R640,1327064415,0,Lanita Heakins,0,33805,0
1375818093,990 Prentice Court,4.16E+15,visa,1375824492,United States,1,[email protected],2980475195,0,3,22,364000,326127,Dell PowerEdge R640,1296958919,0,Anastasie Cottle,0,79705,0
1342807939,3436 Dakota Drive,4.05E+15,visa,1342808608,United States,1,[email protected],1197123464,0,2,23,364000,326127,Dell PowerEdge R640,1319139800,0,Clarette Ellins,0,8922,0
1361233736,0 Manley Court,6.71E+15,laser,1361234841,United States,0,[email protected],1802077251,1,3,30,364000,326127,Dell PowerEdge R640,1361233735,0,Sayer Stores,0,76711,0
1298658668,8119 Drewry Hill,3.59E+15,jcb,1299166649,United States,1,[email protected],2725770464,1,2,34,364000,326127,Dell PowerEdge R640,1254165017,0,Lucais Book,0,19714,0
1311388410,27 Scoville Hill,4.91E+15,switch,1311388964,United States,1,[email protected],3982475865,1,4,35,364000,326127,Dell PowerEdge R640,1305745661,0,Sibylla Allon,0,60630,0
1358816446,5 Ridgeway Junction,5.19E+15,mastercard,1359679731,United States,1,[email protected],621422439.2,1,5,100,364000,326127,Dell PowerEdge R640,1358816445,0,Billi Hastilow,0,85062,0
1357853163,2 Banding Pass,4.91E+15,switch,1357853823,United States,1,[email protected],1443011605,1,5,111,364000,326127,Dell PowerEdge R640,1352150472,0,Rafaela Dredge,0,52245,0
1358175466,816 Westend Point,3.54E+15,jcb,1358183957,United States,0,[email protected],2525018120,1,2,2,364000,326127,Dell PowerEdge R640,1329912399,24,Hewie Venart,0,98664,0
1309143772,51 Mcguire Drive,3.60E+15,diners-club-international,1309301916,United States,1,[email protected],2872624346,1,1,82,364000,326127,Dell PowerEdge R640,1308788616,6,Grannie Heber,7,14652,0
1351084698,707 New Castle Circle,3.03E+15,diners-club-carte-blanche,1351085031,United States,1,[email protected],4116486537,1,5,5,364000,326127,Dell PowerEdge R640,1311615020,46,Flossie Meneo,8,31998,0
1365795183,348 Eliot Hill,2.02E+15,diners-club-enroute,1365795351,United States,0,[email protected],4023206941,1,1,63,364000,326127,Dell PowerEdge R640,1326129908,11,Serena Worvill,10,91499,0
1372512012,83832 Village Circle,2.02E+15,diners-club-enroute,1373104994,United States,1,[email protected],2764496975,1,5,39,364000,326127,Dell PowerEdge R640,1366720185,12,Lezlie Allman,12,11407,0
1370483763,1846 Rockefeller Avenue,4.04E+15,visa,1370484452,United States,0,[email protected],369539783,1,4,17,364000,326127,Dell PowerEdge R640,1354078719,14,Fidelio Kanwell,13,33345,0
1341565471,54715 Glendale Road,3.54E+15,jcb,1343643490,United States,0,[email protected],906192329,1,2,6,364000,326127,Dell PowerEdge R640,1321278439,24,Fay Bosman,14,32627,0
1359467201,381 Mosinee Junction,5.02E+15,maestro,1360144994,United States,1,[email protected],1611254487,1,3,24,364000,326127,Dell PowerEdge R640,1359467200,0,Rawley Salerg,15,77228,0
1326121186,8991 Maryland Place,3.54E+15,jcb,1326121299,United States,0,[email protected],3602571025,1,2,3,364000,326127,Dell PowerEdge R640,1313604441,14,Barbra Vorley,15,85705,0
1300571379,931 Shasta Place,3.55E+15,jcb,1300571434,United States,0,[email protected],439598011,1,2,15,364000,326127,Dell PowerEdge R640,1264446071,16,Erik Biles,15,37665,0
1360324755,0 Raven Avenue,5.60E+15,bankcard,1360324930,United States,0,[email protected],4215797528,1,5,22,364000,326127,Dell PowerEdge R640,1352346324,24,Luce Desseine,16,33129,0
1304650810,66221 Acker Lane,5.45E+15,diners-club-us-ca,1304651080,United States,1,[email protected],1059459616,1,1,1,968000,326128,Dell PowerEdge R440,1296958660,0,Helenka Serfati,0,94154,0
1334947146,0 6th Point,3.55E+15,jcb,1334947224,United States,3,[email protected],270749726,0,2,1,968000,326128,Dell PowerEdge R440,1308777954,0,Mordy Cato,0,55417,0
1368185766,8356 Truax Park,5.20E+15,mastercard,1368186269,United States,0,[email protected],622041024,1,3,1,968000,326128,Dell PowerEdge R440,1317662263,0,Netti Seville,0,95833,0
1337964181,37670 Paget Alley,3.53E+15,jcb,1337965031,United States,0,[email protected],2086688021,1,3,3,968000,326128,Dell PowerEdge R440,1337964180,0,Thedric Lowthian,0,97229,1
1371324605,19 Talisman Plaza,3.56E+15,jcb,1371324717,United States,0,[email protected],1663336729,0,2,4,968000,326128,Dell PowerEdge R440,1371324269,0,Ximenez Meeking,0,90398,1
1294765898,08 Ronald Regan Trail,3.03E+15,diners-club-carte-blanche,1294767688,United States,0,[email protected],3198819089,1,3,5,968000,326128,Dell PowerEdge R440,1289342063,0,Isaak Doidge,0,11044,0
1380805740,80482 Lake View Center,5.60E+15,china-unionpay,1380807506,United States,0,[email protected],3805222291,1,5,5,968000,326128,Dell PowerEdge R440,1380805739,0,Julieta Frankcomb,0,98195,1
1367316825,5992 Elka Road,3.54E+15,jcb,1367319521,United States,0,[email protected],3684542297,1,4,9,968000,326128,Dell PowerEdge R440,1334858935,0,Calhoun d' Eye,0,36670,0
1291395076,9 Tennyson Pass,6.77E+15,laser,1291395497,United States,0,[email protected],4006431965,1,1,12,968000,326128,Dell PowerEdge R440,1270428334,0,Stillmann O' Culligan,0,80279,0
1296867857,59 Old Shore Avenue,5.64E+15,switch,1296869411,United States,0,[email protected],743201077,1,4,13,968000,326128,Dell PowerEdge R440,1295466321,0,Perle Cookman,0,2208,0
1366219239,4864 Gateway Hill,6.76E+15,maestro,1366219261,United States,1,[email protected],403019153.4,1,1,15,968000,326128,Dell PowerEdge R440,1351867513,0,Alex Gleasane,0,12205,0
1345237631,4 Kinsman Park,3.54E+15,jcb,1345324374,United States,1,[email protected],923012759.2,0,4,43,968000,326128,Dell PowerEdge R440,1305238364,0,Hamish Gosland,0,20404,0
1300743616,55 Trailsway Drive,2.01E+15,diners-club-enroute,1300811512,United States,1,[email protected],1074097765,1,1,92,968000,326128,Dell PowerEdge R440,1251916887,0,Julius Massei,0,61110,0
1298656363,57755 Killdeer Street,5.60E+15,china-unionpay,1298670252,United States,1,[email protected],791338546,1,3,110,968000,326128,Dell PowerEdge R440,1298655408,0,Elysia Maslen,0,92844,0
1337979710,35 Northview Court,5.29E+15,mastercard,1338996506,United States,0,[email protected],1918720962,0,1,123,968000,326128,Dell PowerEdge R440,1337961848,0,Morgen Ference,0,85246,0
1294880498,044 Scoville Lane,5.01E+15,mastercard,1294880994,United States,0,[email protected],2213190754,1,3,195,968000,326128,Dell PowerEdge R440,1265407213,0,Clemence Gregorowicz,0,71161,0
1357879725,05718 Jay Crossing,3.58E+15,jcb,1357880352,United States,0,[email protected],1275638451,1,2,21,968000,326128,Dell PowerEdge R440,1321418213,13,Jaquelin Rooksby,0,78764,0
1360060512,7 Manitowish Street,5.11E+15,mastercard,1360062304,United States,1,[email protected],554043680,1,5,90,968000,326128,Dell PowerEdge R440,1294906100,16,Brose Clemenzo,0,34642,0
1366045424,6 Crowley Point,3.53E+15,jcb,1367948625,United States,0,[email protected],592129663,1,1,1,968000,326128,Dell PowerEdge R440,1364923654,39,Kalinda Maric,0,22184,0
1309983678,6 New Castle Lane,4.41E+15,visa-electron,1309991202,United States,0,[email protected],470220479.2,1,4,9,968000,326128,Dell PowerEdge R440,1299651441,12,Salomone Ennion,2,89115,0
1361236983,9 Merry Pass,3.55E+15,jcb,1361394327,United States,0,[email protected],2219197948,1,5,4,968000,326128,Dell PowerEdge R440,1347579528,10,Janeta Bodle,10,92648,0
1307481907,31 Elka Place,3.57E+15,jcb,1307482255,United States,1,[email protected],4107152251,1,4,3,968000,326128,Dell PowerEdge R440,1265314996,15,Leesa Attridge,11,20436,0
1372268239,37 Holmberg Road,3.38E+15,americanexpress,1372598996,United States,1,[email protected],3991110033,1,3,6,968000,326128,Dell PowerEdge R440,1369732265,29,Tate Ginie,11,53716,0
1357622337,0 Sage Plaza,4.41E+15,visa-electron,1357784034,United States,1,[email protected],3490364844,1,1,4,968000,326128,Dell PowerEdge R440,1333686172,17,Leigh Asplin,12,43210,0
1358205553,844 Arrowood Alley,3.58E+15,jcb,1358206341,United States,0,[email protected],1160860639,1,2,4,968000,326128,Dell PowerEdge R440,1262479992,21,Isabeau Shalders,12,85754,0
1369335702,4 Algoma Lane,4.90E+15,switch,1371065460,United States,0,[email protected],3532978115,1,2,6,968000,326128,Dell PowerEdge R440,1328041399,22,Daniel Ellwand,12,33686,0
1370310751,499 Hudson Street,5.01E+15,mastercard,1370544202,United States,0,[email protected],1277564353,1,2,25,968000,326128,Dell PowerEdge R440,1370310750,13,Micheline Le Port,13,15274,0
1359471088,0150 Lawn Court,3.58E+15,jcb,1359471133,United States,1,[email protected],423682799,0,1,22,968000,326128,Dell PowerEdge R440,1323100923,18,Salim Lanmeid,16,29424,0
1343229830,0 Anderson Road,3.53E+15,jcb,1343777981,United States,1,[email protected],2462838401,1,2,7,968000,326128,Dell PowerEdge R440,1314385332,40,Emmerich Grahl,16,92648,0
1349097939,0839 Manufacturers Circle,3.00E+15,diners-club-carte-blanche,1349097976,United States,0,[email protected],3745890199,1,1,1,398000,326129,Dell PowerEdge R540,1282827246,0,Gorden Shilburne,0,34114,0
1307542096,0882 Raven Junction,3.58E+15,jcb,1307542143,United States,0,[email protected],3356766440,0,1,2,398000,326129,Dell PowerEdge R540,1295576777,0,Hakeem Robrose,0,78205,1
1311282151,0 Katie Center,3.56E+15,jcb,1311282709,United States,0,[email protected],3889211356,0,5,2,398000,326129,Dell PowerEdge R540,1270568291,0,Dalila Leftly,0,85705,0
1292558067,7803 Drewry Court,5.20E+15,mastercard,1292558609,United States,0,[email protected],958358167,1,3,3,398000,326129,Dell PowerEdge R540,1281108257,0,Aube Ragbourne,0,55448,0
1378970754,6240 Muir Trail,2.02E+15,diners-club-enroute,1378971093,United States,1,[email protected],319034199.2,1,5,3,398000,326129,Dell PowerEdge R540,1337818131,0,Maegan Danilenko,0,15220,0
1310622711,796 Drewry Alley,3.58E+15,jcb,1310623274,United States,0,[email protected],3934915508,1,1,4,398000,326129,Dell PowerEdge R540,1310567909,0,Teriann Ivamy,0,27717,1
1311094144,20980 Mendota Plaza,6.33E+15,switch,1320165916,United States,0,[email protected],3589537353,1,2,4,398000,326129,Dell PowerEdge R540,1311094143,0,Cathlene Whitbread,0,43210,0
1377016372,02187 Truax Junction,5.05E+15,mastercard,1377453651,United States,1,[email protected],1006859248,1,3,4,398000,326129,Dell PowerEdge R540,1366134109,0,Viviene Hamfleet,0,20210,0
1312218912,91 Kedzie Street,2.02E+15,diners-club-enroute,1312219442,United States,0,[email protected],3246991209,1,5,6,398000,326129,Dell PowerEdge R540,1296711216,0,Alvinia Assiter,0,32885,0
1369843877,09 Packers Parkway,6.40E+15,instapayment,1369848873,United States,0,[email protected],1809855794,1,3,6,398000,326129,Dell PowerEdge R540,1329144522,0,Etta Verrill,0,48930,0
1378238234,34365 Glacier Hill Plaza,3.53E+15,jcb,1378239247,United States,0,[email protected],3016642013,1,5,6,398000,326129,Dell PowerEdge R540,1378238233,0,Donetta Abethell,0,2298,1
1329867498,633 Fallview Avenue,5.60E+15,china-unionpay,1329868779,United States,0,[email protected],3582527473,1,2,8,398000,326129,Dell PowerEdge R540,1329859072,0,Millicent Picford,0,45228,1
1320767420,99684 Manley Alley,4.04E+15,visa,1321204173,United States,1,[email protected],1627942676,1,5,12,398000,326129,Dell PowerEdge R540,1299100624,0,Luise Saffle,0,73179,0
1351527521,4 John Wall Way,3.03E+15,diners-club-carte-blanche,1351527633,United States,1,[email protected],3822969608,1,3,20,398000,326129,Dell PowerEdge R540,1286788056,0,Dorolisa Peye,0,75379,0
1371605369,82270 Ridgeway Hill,3.57E+15,jcb,1371656477,United States,1,[email protected],3747436976,1,1,95,398000,326129,Dell PowerEdge R540,1284594197,0,Joly Sherington,0,28225,0
1355299007,0229 Clemons Alley,3.59E+15,jcb,1355352869,United States,0,[email protected],3728382361,1,4,171,398000,326129,Dell PowerEdge R540,1355299005,0,Elene Bellerby,0,77085,0
1315951841,3 Florence Terrace,6.33E+15,solo,1315953471,United States,1,[email protected],2011798785,1,2,2000,398000,326129,Dell PowerEdge R540,1315951840,0,Johnathan Caven,0,78715,0
1373765874,81415 Lotheville Circle,3.55E+15,jcb,1373771808,United States,1,[email protected],1331510112,1,4,80,398000,326129,Dell PowerEdge R540,1327785255,19,Zitella Davson,0,12247,0
1363201148,10 Monterey Lane,5.60E+15,china-unionpay,1363201351,United States,1,[email protected],1409844382,1,3,3,398000,326129,Dell PowerEdge R540,1303679104,45,Olenolin Quarles,0,6520,0
1359477432,97475 Delaware Lane,6.71E+15,laser,1359477635,United States,0,[email protected],3710650634,1,5,25,398000,326129,Dell PowerEdge R540,1327778412,8,Lorettalorna Bernardini,8,95205,0
1367763131,9 Anhalt Court,3.57E+15,jcb,1367766553,United States,1,[email protected],3252528013,1,4,2,398000,326129,Dell PowerEdge R540,1365968333,9,Jeffy Eaglen,9,68105,0
1364392629,78432 Mcbride Drive,5.17E+15,mastercard,1364393206,United States,0,[email protected],1543845235,1,4,10,398000,326129,Dell PowerEdge R540,1359684853,33,Chryste Izkovicz,10,10039,0
1357251702,1 Johnson Way,3.54E+15,jcb,1358310331,United States,1,[email protected],3954176304,1,3,65,398000,326129,Dell PowerEdge R540,1288717083,0,Danna Blood,11,92825,0
1339497453,197 Huxley Point,5.61E+15,bankcard,1339501214,United States,0,[email protected],2652108849,1,5,2,398000,326129,Dell PowerEdge R540,1328026218,11,Vidovic Gwinnell,12,85743,0
1368193440,131 1st Terrace,5.18E+15,mastercard,1368193745,United States,0,[email protected],4261993941,0,3,2,398000,326129,Dell PowerEdge R540,1320243959,0,Diena Wardley,13,92153,0
1338512236,09462 Alpine Crossing,5.02E+15,maestro,1338512648,United States,1,[email protected],740761970,1,4,13,398000,326129,Dell PowerEdge R540,1245903229,27,Dorolisa Prayer,13,93704,0
1367903719,50 Valley Edge Center,6.77E+15,solo,1367907256,United States,0,[email protected],2679230021,1,5,4,398000,326129,Dell PowerEdge R540,1350871626,13,Randie Cadany,14,68144,0
1297273385,96416 Ridgeway Street,3.02E+15,diners-club-carte-blanche,1297274090,United States,0,[email protected],857263828,1,1,43,398000,326129,Dell PowerEdge R540,1297200424,21,Louis Scotchmore,14,98140,0
1341368475,251 Pierstorff Parkway,5.60E+15,china-unionpay,1341370921,United States,0,[email protected],2570110606,1,4,5,398000,326129,Dell PowerEdge R540,1341368325,0,Valdemar Mazin,15,89166,0
1376517047,34612 Service Pass,6.33E+15,switch,1376517105,United States,1,[email protected],3310996836,1,5,1,398000,326129,Dell PowerEdge R540,1240155242,9,Valene Pedwell,15,46857,0
1364764916,47667 South Trail,3.59E+15,jcb,1364765146,United States,0,[email protected],1560468283,1,4,17,398000,326129,Dell PowerEdge R540,1326291889,22,Antony Stuckford,15,88525,0
1350581683,967 Reindahl Pass,3.04E+15,diners-club-carte-blanche,1350581833,United States,0,[email protected],2391287078,1,2,1,527000,326130,Dell PowerEdge R7425,1346789904,0,Leah Lisciandri,0,21216,0
1362580896,937 Golf Course Trail,3.58E+15,jcb,1362585171,United States,1,[email protected],1213227281,1,1,1,527000,326130,Dell PowerEdge R7425,1362580895,0,Donall Revey,0,31165,0
1364873747,12 Derek Way,3.57E+15,jcb,1364875389,United States,1,[email protected],1462821854,1,3,1,527000,326130,Dell PowerEdge R7425,1364873118,0,Decca Kindley,0,15250,0
1319607227,3 South Drive,3.57E+15,jcb,1319607449,United States,0,[email protected],940908653,1,3,2,527000,326130,Dell PowerEdge R7425,1315547204,0,Papagena Mulcaster,0,31165,0
1358508254,38015 8th Place,3.72E+15,americanexpress,1358509292,United States,0,[email protected],1561498296,1,5,4,527000,326130,Dell PowerEdge R7425,1358508252,0,Nicole Maude,0,53263,0
1304692680,3 Jenifer Park,5.60E+15,bankcard,1304694640,United States,0,[email protected],3131380230,1,2,5,527000,326130,Dell PowerEdge R7425,1235486696,0,Frannie McNirlin,0,21405,0
1316004783,680 Meadow Vale Plaza,4.02E+15,visa,1316020989,United States,0,[email protected],3426177170,1,3,14,527000,326130,Dell PowerEdge R7425,1316004782,0,Humberto Chuter,0,94132,0
1310743464,81748 Dixon Center,3.57E+15,jcb,1310760732,United States,1,[email protected],822708271.6,1,1,24,527000,326130,Dell PowerEdge R7425,1295536997,0,Alexine Pessolt,0,33436,0
1335881155,6 Dixon Junction,6.76E+15,maestro,1335881420,United States,1,[email protected],2505926843,1,3,24,527000,326130,Dell PowerEdge R7425,1205154552,0,Kakalina Haacker,0,78405,0
1303308445,9356 Granby Plaza,3.75E+15,americanexpress,1303333126,United States,0,[email protected],1140963247,0,5,26,527000,326130,Dell PowerEdge R7425,1299533721,0,Kettie Lamberts,0,23272,0
1363103449,37718 Hanson Pass,5.00E+15,mastercard,1363114568,United States,0,[email protected],2290084460,1,3,30,527000,326130,Dell PowerEdge R7425,1363099815,0,Ave Mouth,0,28225,0
1352995731,5508 Oxford Street,5.27E+15,mastercard,1353000660,United States,0,[email protected],506497501,1,2,39,527000,326130,Dell PowerEdge R7425,1315581980,0,Lurleen Darnell,0,11388,0
1361938593,0 8th Circle,6.77E+15,laser,1362066209,United States,1,[email protected],235279814,1,4,48,527000,326130,Dell PowerEdge R7425,1361474337,0,Darrell Hulles,0,34479,0
1351801357,9 Carberry Plaza,5.10E+15,mastercard,1351801535,United States,1,[email protected],3093754226,1,2,51,527000,326130,Dell PowerEdge R7425,1319570250,0,Jenna Stiling,0,94042,0
1372957442,48729 6th Crossing,4.94E+15,switch,1372957477,United States,1,[email protected],2430380977,1,1,74,527000,326130,Dell PowerEdge R7425,1355428840,0,Homere Mullane,0,80217,0
1348267246,025 Elka Crossing,3.55E+15,jcb,1351096947,United States,1,[email protected],1460283559,1,4,98,527000,326130,Dell PowerEdge R7425,1335986261,0,Meredithe Lamkin,0,78410,0
1323879733,2 Boyd Drive,5.11E+15,mastercard,1323886319,United States,0,[email protected],1661485334,1,4,443,527000,326130,Dell PowerEdge R7425,1255564229,0,Jedediah Jiracek,0,43220,0
1360661961,9 Utah Hill,6.30E+15,maestro,1360662298,United States,0,[email protected],3412574220,1,2,4,527000,326130,Dell PowerEdge R7425,1336754489,10,Ferdinande Remnant,0,38126,0
1358263544,32240 Union Alley,3.55E+15,jcb,1360254473,United States,1,[email protected],1411456795,1,4,92,527000,326130,Dell PowerEdge R7425,1353958832,12,Hillary Burbank,0,71105,0
1354649612,62738 Crownhardt Junction,3.55E+15,jcb,1358207054,United States,1,[email protected],2028062723,1,2,15,527000,326130,Dell PowerEdge R7425,1354649610,20,Crystie Handlin,0,45999,0
1370025754,86605 Northridge Trail,6.76E+15,maestro,1370026123,United States,1,[email protected],2579400649,1,2,203,527000,326130,Dell PowerEdge R7425,1338517205,12,Lorianne Beszant,12,22217,0
1331135373,3 Anthes Junction,5.42E+15,mastercard,1331159135,United States,1,[email protected],1041982255,1,4,20,527000,326130,Dell PowerEdge R7425,1328747767,16,Maurits Akast,13,60193,0
1323896007,7 Porter Point,6.38E+15,instapayment,1323901483,United States,1,[email protected],1360956137,1,3,27,527000,326130,Dell PowerEdge R7425,1249928984,20,Sullivan Martinets,13,22156,0
1377116912,8 Warrior Point,4.51E+15,visa-electron,1377117035,United States,0,[email protected],18915871.8,1,2,10,527000,326130,Dell PowerEdge R7425,1315956638,24,Basilius Klaaasen,13,96840,0
1337278026,501 Towne Street,5.64E+15,switch,1337492082,United States,0,[email protected],2538726162,1,4,3,527000,326130,Dell PowerEdge R7425,1283903632,0,Kiersten Edwicke,14,88574,0
1299410900,0643 Lake View Lane,4.51E+15,visa-electron,1299411465,United States,0,[email protected],3408307053,1,5,4,527000,326130,Dell PowerEdge R7425,1298645389,13,Gibby Pointing,14,91499,0
1291759643,83776 Farragut Trail,3.56E+15,jcb,1291760920,United States,1,[email protected],3153021522,1,4,21,527000,326130,Dell PowerEdge R7425,1277913245,10,Devi Teideman,15,43610,0
1327027686,14645 Brown Crossing,4.91E+15,switch,1327027777,United States,1,[email protected],2785249684,1,1,9,527000,326130,Dell PowerEdge R7425,1259867248,15,Irving Lansbury,15,20337,0
1355962856,192 Transport Parkway,3.74E+15,americanexpress,1355963599,United States,1,[email protected],1898450867,1,2,25,527000,326130,Dell PowerEdge R7425,1313013739,15,Fergus Carlisso,15,84115,0
1362799959,262 Mayer Street,3.54E+15,jcb,1362813703,United States,1,[email protected],1377002234,1,3,28,527000,326130,Dell PowerEdge R7425,1360541700,17,Jana Jakubowicz,15,75287,0
1327073787,2861 David Place,6.71E+15,laser,1327076431,United States,0,[email protected],1107726096,1,5,2,527000,326130,Dell PowerEdge R7425,1298649129,71,Demetri Pidgin,15,1105,0
1371575429,608 Towne Circle,5.45E+15,mastercard,1371610819,United States,0,[email protected],856087280.6,1,2,0,190000,326131,Dell Vmware vSphere,1371175433,0,Lauraine Duesbury,0,46254,1
1327545414,3 Orin Street,5.02E+15,maestro,1328207331,United States,0,[email protected],252187779,1,2,1,190000,326131,Dell Vmware vSphere,1326486188,0,Aloisia Blazewski,0,80935,0
1330714565,62 Banding Crossing,4.92E+15,visa-electron,1330714609,United States,0,[email protected],3975435583,1,2,1,190000,326131,Dell Vmware vSphere,1302213395,0,Borg Ionnisian,0,75260,0
1364145254,2 Anthes Terrace,3.59E+15,jcb,1364147132,United States,0,[email protected],2098527692,1,1,1,190000,326131,Dell Vmware vSphere,1363909962,0,Effie Stother,0,33647,1
1337611734,02 Mandrake Trail,6.40E+15,instapayment,1337611783,United States,0,[email protected],693507718,1,3,2,190000,326131,Dell Vmware vSphere,1323203644,0,Omar Maddinon,0,93311,0
1362588053,25 Lerdahl Street,4.18E+15,visa-electron,1362588384,United States,1,[email protected],757423219,1,2,2,190000,326131,Dell Vmware vSphere,1305552364,0,Angelina Varrow,0,75236,0
1354677399,677 Vernon Trail,3.56E+15,jcb,1354677437,United States,0,[email protected],3458767557,1,2,3,190000,326131,Dell Vmware vSphere,1317847331,0,Tonnie Milhench,0,41905,0
1363393293,53814 Fremont Junction,3.57E+15,jcb,1363397181,United States,0,[email protected],889576859.6,1,2,3,190000,326131,Dell Vmware vSphere,1363393222,0,Artemas Fitzsimmons,0,40524,0
1361917553,64619 Center Way,2.02E+15,diners-club-enroute,1361917598,United States,3,[email protected],3574638043,0,5,4,190000,326131,Dell Vmware vSphere,1308777954,0,Washington Durgan,0,10160,0
1342726983,44948 Village Green Place,2.02E+15,diners-club-enroute,1342729051,United States,0,[email protected],4021201455,0,4,8,190000,326131,Dell Vmware vSphere,1342726981,0,Hasty Forten,0,19714,1
1297862132,6 Springs Park,5.01E+15,mastercard,1297862965,United States,1,[email protected],1543623176,1,1,9,190000,326131,Dell Vmware vSphere,1244216992,0,Suzy Verrall,0,62705,0
1375886486,4 Kedzie Place,3.53E+15,jcb,1378237678,United States,1,[email protected],4114318292,0,5,18,190000,326131,Dell Vmware vSphere,1372858643,0,Trudey Hanna,0,27705,0
1340021840,81 Hansons Parkway,3.53E+15,jcb,1340021902,United States,1,[email protected],2426533102,0,4,19,190000,326131,Dell Vmware vSphere,1319804864,0,Sholom Cronk,0,95113,0
1371455212,68 Cascade Lane,5.01E+15,mastercard,1371606404,United States,1,[email protected],3926838462,1,4,20,190000,326131,Dell Vmware vSphere,1340323164,0,Alla Lambersen,0,95128,0
1313519158,674 Montana Street,3.59E+15,jcb,1313519304,United States,0,[email protected],1158143269,1,5,44,190000,326131,Dell Vmware vSphere,1284090678,0,Adore McGarvey,0,92176,0
1368045005,038 Pleasure Point,3.54E+15,jcb,1368048521,United States,1,[email protected],4133399309,0,1,59,190000,326131,Dell Vmware vSphere,1326298147,0,Britteny Crouch,0,55458,0
1363038519,28 Manley Circle,3.56E+15,jcb,1363299606,United States,1,[email protected],761154321,0,5,104,190000,326131,Dell Vmware vSphere,1330717408,0,Marsiella Burhouse,0,20067,0
1329923936,2373 Hooker Road,6.40E+15,instapayment,1329929735,United States,1,[email protected],2323680220,1,2,1,190000,326131,Dell Vmware vSphere,1292218967,9,Bernice Mor,0,32868,0
1366402776,709 Del Mar Lane,5.89E+15,maestro,1366402920,United States,1,[email protected],3037425635,1,1,4,190000,326131,Dell Vmware vSphere,1362496915,12,Costanza Payle,0,31605,0
1358867859,08117 Commercial Drive,2.02E+15,diners-club-enroute,1358874726,United States,0,[email protected],4210881885,1,2,2,190000,326131,Dell Vmware vSphere,1314958732,15,Manolo Anfrey,0,76598,0
1303326557,7083 Sage Parkway,5.04E+15,maestro,1303326783,United States,1,[email protected],320582577,1,3,2,190000,326131,Dell Vmware vSphere,1272390738,16,Ellen Farthing,0,43231,0
1357631331,3653 Stone Corner Parkway,5.60E+15,bankcard,1357631349,United States,1,[email protected],4056834077,1,3,16,190000,326131,Dell Vmware vSphere,1357624303,19,Ranice Bonehill,0,39534,0
1332427026,52944 Haas Road,3.56E+15,jcb,1333376708,United States,0,[email protected],85610199.6,1,4,97,190000,326131,Dell Vmware vSphere,1332427025,19,Berky Woolvett,0,20535,0
1355165656,98 Carioca Drive,5.10E+15,mastercard,1355165760,United States,1,[email protected],4009445285,1,4,14,190000,326131,Dell Vmware vSphere,1269975243,7,Hale Ardling,7,32123,0
1377050965,978 Raven Hill,3.57E+15,jcb,1377051764,United States,0,[email protected],1615789087,1,3,4,190000,326131,Dell Vmware vSphere,1334291360,21,Daphene Karpenya,9,37240,0
1365102580,0 Carberry Terrace,3.55E+15,jcb,1365113100,United States,1,[email protected],3672984673,1,2,3,190000,326131,Dell Vmware vSphere,1301527190,33,Rodie Merrydew,10,94207,0
1377709088,2 Evergreen Plaza,3.05E+15,diners-club-carte-blanche,1377710945,United States,0,[email protected],640094904,1,4,4,190000,326131,Dell Vmware vSphere,1377709087,18,Briny Mapples,13,72209,0
1369340230,4 Reindahl Hill,6.76E+15,maestro,1369399724,United States,1,[email protected],1630893335,0,4,1,190000,326131,Dell Vmware vSphere,1369339120,0,Marley Boole,14,8695,0
1359134483,6 Barnett Terrace,6.33E+15,solo,1359134531,United States,1,[email protected],3128215802,1,2,5,190000,326131,Dell Vmware vSphere,1264446071,16,Bernetta Handscombe,14,88525,0
1360323919,65 Hayes Alley,5.60E+15,china-unionpay,1360323983,United States,1,[email protected],3192730884,1,1,31,190000,326131,Dell Vmware vSphere,1169065429,14,Valaree Scarr,15,6183,0
1366887586,606 Utah Plaza,3.58E+15,jcb,1366892904,United States,0,[email protected],1820953228,1,3,7,190000,326131,Dell Vmware vSphere,1341387385,21,Sarah Beloe,15,39236,0
1341395323,400 Myrtle Circle,5.46E+15,diners-club-us-ca,1341396268,United States,0,[email protected],638065991.2,1,5,7,190000,326131,Dell Vmware vSphere,1305568573,45,Angie Wilprecht,15,60078,0
1353095259,10 Lighthouse Bay Way,3.58E+15,jcb,1353095893,United States,0,[email protected],67732938,1,5,1,633000,326132,Dell vSphere Operations,1353093014,0,Gene Anyon,0,63131,1
1294163013,96180 Independence Junction,6.37E+15,instapayment,1294163090,United States,1,[email protected],2721336376,1,1,2,633000,326132,Dell vSphere Operations,1259160686,0,Ram Mumbray,0,90505,0
1331072596,96 Sauthoff Avenue,3.53E+15,jcb,1331072626,United States,3,[email protected],168439310,1,3,2,633000,326132,Dell vSphere Operations,1267731578,0,Rurik Cabrera,0,31119,0
1299266821,45 Sheridan Court,3.54E+15,jcb,1299272490,United States,0,[email protected],840935883,1,2,3,633000,326132,Dell vSphere Operations,1298670797,0,Rhett Pitcher,0,44710,0
1352358359,7046 Mosinee Pass,3.55E+15,jcb,1352841107,United States,1,[email protected],2600281738,1,2,4,633000,326132,Dell vSphere Operations,1348650016,0,Jessika Patching,0,49505,0
1372290568,557 Chive Place,3.58E+15,jcb,1372290654,United States,1,[email protected],2168422049,0,2,4,633000,326132,Dell vSphere Operations,1351278950,0,Durward Hurler,0,79705,0
1304640635,6274 Dayton Crossing,3.58E+15,jcb,1304650270,United States,1,[email protected],2455666535,0,5,6,633000,326132,Dell vSphere Operations,1274886881,0,Ollie Lazare,0,20078,0
1321899887,07 Pearson Point,3.74E+15,americanexpress,1321900135,United States,1,[email protected],2861434392,0,5,7,633000,326132,Dell vSphere Operations,1285171378,0,Brigham Bernon,0,35290,0
1373233538,5 Golf View Center,3.72E+15,americanexpress,1373233857,United States,0,[email protected],402691822.4,0,4,7,633000,326132,Dell vSphere Operations,1372273645,0,Melantha Buckbee,0,80045,1
1377120746,9760 Maple Road,5.60E+15,china-unionpay,1377121332,United States,1,[email protected],1998778604,1,1,9,633000,326132,Dell vSphere Operations,1307639114,0,Bing Arthars,0,45264,0
1340402168,72919 Northland Park,5.04E+15,maestro,1348178216,United States,0,[email protected],2760116683,1,5,12,633000,326132,Dell vSphere Operations,1340316781,0,Gwenette Cavan,0,20470,0
1335375108,884 Hazelcrest Hill,3.54E+15,jcb,1335381848,United States,0,[email protected],3988448425,1,4,18,633000,326132,Dell vSphere Operations,1325872172,0,Darlleen Reboul,0,32595,0
1377914342,65 Marcy Plaza,6.71E+15,laser,1377914497,United States,0,[email protected],773239087,0,4,23,633000,326132,Dell vSphere Operations,1377913489,0,Hurleigh Whiles,0,28410,1
1327076381,55179 Di Loreto Hill,5.10E+15,mastercard,1327078601,United States,0,[email protected],3894148489,1,5,24,633000,326132,Dell vSphere Operations,1327076380,0,Eddie Jills,0,20409,0
1365033297,192 Linden Alley,3.49E+15,americanexpress,1365037348,United States,0,[email protected],1526998560,1,3,32,633000,326132,Dell vSphere Operations,1348710356,0,Nancy Dudenie,0,90035,0
1300068440,87423 Graceland Terrace,3.58E+15,jcb,1300072416,United States,3,[email protected],875236215,1,5,35,633000,326132,Dell vSphere Operations,1300068439,0,Addison Gerriets,0,46862,0
1325586421,62 Merry Pass,3.58E+15,jcb,1325707484,United States,1,[email protected],4035979493,0,2,108,633000,326132,Dell vSphere Operations,1322000612,0,Mareah Le Huquet,0,34114,0
1372716037,0 Briar Crest Point,3.54E+15,jcb,1372799559,United States,0,[email protected],2982795298,0,1,6,633000,326132,Dell vSphere Operations,1299007491,10,Christen Jacke,0,93106,0
1304713824,3537 Sullivan Road,6.30E+15,maestro,1304715591,United States,0,[email protected],3936968942,1,1,2,633000,326132,Dell vSphere Operations,1304709093,14,Paula Carter,0,90305,0
1328058061,42 Lindbergh Avenue,3.04E+15,diners-club-carte-blanche,1328058411,United States,1,[email protected],1731222106,1,2,6,633000,326132,Dell vSphere Operations,1270559142,40,Anne Sobczak,0,68117,0
1348600992,068 Loomis Place,3.57E+15,jcb,1348606530,United States,0,[email protected],2713416082,0,4,120,633000,326132,Dell vSphere Operations,1348499978,12,Parsifal Iglesias,12,90605,0
1330375348,03825 Coolidge Plaza,3.55E+15,jcb,1330375610,United States,0,[email protected],4076543222,1,4,11,633000,326132,Dell vSphere Operations,1320872210,13,Zonnya Wheldon,12,23454,0
1314826726,38 Northport Trail,3.58E+15,jcb,1314827567,United States,0,[email protected],3209402583,1,5,75,633000,326132,Dell vSphere Operations,1295175526,20,Venus Ducker,12,71161,0
1366122941,39432 Onsgard Point,3.69E+15,diners-club-international,1366123218,United States,0,[email protected],1325671710,1,3,6,633000,326132,Dell vSphere Operations,1348499900,24,Dante Thurling,12,88546,0
1332379126,3756 Sachs Circle,6.04E+15,maestro,1332379254,United States,1,[email protected],3467889797,1,1,3,633000,326132,Dell vSphere Operations,1325081444,12,Marsha Eyes,13,11355,0
1363132685,04419 Walton Circle,3.42E+15,americanexpress,1363133247,United States,1,[email protected],2555795730,1,5,3,633000,326132,Dell vSphere Operations,1310001142,14,Adela Whiston,14,32092,0
1327009106,233 Ramsey Way,3.55E+15,jcb,1327010155,United States,1,[email protected],1854202373,1,3,14,633000,326132,Dell vSphere Operations,1327009105,23,Isis Juggings,14,75287,0
1355147771,66 Novick Street,6.71E+15,laser,1355148079,United States,1,[email protected],2436463708,1,2,17,633000,326132,Dell vSphere Operations,1340889644,0,Jamison Unger,16,90045,0
1369163831,51 Claremont Street,6.33E+15,solo,1369261720,United States,0,[email protected],1645015852,1,4,15,633000,326132,Dell vSphere Operations,1369163830,11,Nealy Plaunch,16,20057,0
1356640995,9 Mayer Point,3.05E+15,diners-club-carte-blanche,1356642026,United States,1,[email protected],3895090387,1,5,43,633000,326132,Dell vSphere Operations,1353234370,18,Sibilla Aucoate,16,79105,0
1301935020,2 Warner Center,3.59E+15,jcb,1301935937,United States,0,[email protected],1718285975,1,3,1,434000,326133,Dell Vsan,1301935018,0,Sabine Dominici,0,59112,1
1351612614,22 Delaware Trail,5.11E+15,mastercard,1351612691,United States,0,[email protected],941984741,0,4,1,434000,326133,Dell Vsan,1351610205,0,Nedda Rodder,0,23663,0
1367863307,485 Veith Drive,3.55E+15,jcb,1367863769,United States,0,[email protected],422368937,1,2,1,434000,326133,Dell Vsan,1367863306,0,Kingston Bromehed,0,20566,0
1297189056,2532 Buhler Street,3.04E+15,diners-club-carte-blanche,1297195973,United States,0,[email protected],1813042648,1,2,2,434000,326133,Dell Vsan,1297189055,0,Kimmi Whiteford,0,46406,0
1362025964,3160 Hoepker Park,3.54E+15,jcb,1362027086,United States,0,[email protected],572957007,0,1,2,434000,326133,Dell Vsan,1362025963,0,Huntington Ortler,0,39282,0
1373421762,760 Lake View Place,6.38E+15,instapayment,1373422919,United States,0,[email protected],1783493.2,1,3,3,434000,326133,Dell Vsan,1373421761,0,Nan Andrelli,0,11054,0
1377269579,810 Drewry Court,4.91E+15,switch,1377269702,United States,0,[email protected],3552644187,1,4,3,434000,326133,Dell Vsan,1376545754,0,Valene Smellie,0,75799,1
1334950502,36509 Sundown Drive,3.02E+15,diners-club-carte-blanche,1334950530,United States,3,[email protected],201786298.2,0,2,4,434000,326133,Dell Vsan,1308777954,0,Ardelle Dominici,0,88514,0
1334081031,662 Division Circle,5.61E+15,bankcard,1334182880,United States,0,[email protected],3609740353,0,5,6,434000,326133,Dell Vsan,1330723159,0,Monah Francescuzzi,0,78759,0
1351834851,447 Village Green Park,3.01E+15,diners-club-carte-blanche,1351835924,United States,0,[email protected],2670337365,1,1,15,434000,326133,Dell Vsan,1351809857,0,Alana Poyzer,0,77045,0
1375732878,29 Sutherland Plaza,2.02E+15,diners-club-enroute,1376113964,United States,0,[email protected],909745944,1,1,16,434000,326133,Dell Vsan,1302902995,0,Burty Bangle,0,31205,0
1355959122,82 Bowman Center,5.02E+15,maestro,1356086904,United States,0,[email protected],3517367884,1,1,17,434000,326133,Dell Vsan,1355958686,0,Shay Cainey,0,23289,0
1367247866,36 Colorado Avenue,3.54E+15,jcb,1367262583,United States,1,[email protected],2618520807,0,3,23,434000,326133,Dell Vsan,1351523351,0,Terrye Stolli,0,94237,0
1346864538,427 Novick Drive,4.91E+15,visa-electron,1346866156,United States,1,[email protected],856073787.6,1,5,28,434000,326133,Dell Vsan,1331257617,0,Mohandis Crolla,0,89714,0
1363871636,564 Swallow Place,3.57E+15,jcb,1363884147,United States,1,[email protected],85668214,1,3,28,434000,326133,Dell Vsan,1363817776,0,Georgetta Heintsch,0,1129,0
1329894853,9 Bartillon Hill,6.76E+15,switch,1329984879,United States,1,[email protected],1514870887,1,1,30,434000,326133,Dell Vsan,1328248854,0,Perri Copley,0,40596,0
1358417661,76673 Duke Circle,3.04E+15,diners-club-carte-blanche,1359462291,United States,1,[email protected],559266861,1,1,36,434000,326133,Dell Vsan,1358254803,0,Layton Bachellier,0,11044,0
1329923401,15 Di Loreto Lane,3.38E+15,americanexpress,1338212036,United States,1,[email protected],2973606217,1,2,39,434000,326133,Dell Vsan,1303292224,0,Brewer Patty,0,32236,0
1345219761,171 Dakota Avenue,3.53E+15,jcb,1345220236,United States,0,[email protected],2812967375,1,5,64,434000,326133,Dell Vsan,1321815847,0,Laural Mc Corley,0,2912,0
1318333459,2593 Katie Street,5.60E+15,bankcard,1318336187,United States,1,[email protected],258031547,1,3,79,434000,326133,Dell Vsan,1318333458,0,Clareta Huggard,0,81505,0
1377028275,98 Springs Point,5.05E+15,mastercard,1377028559,United States,0,[email protected],1348684589,1,1,1,434000,326133,Dell Vsan,1377026599,16,Shane Crichmer,0,92013,0
1366983678,97614 Duke Plaza,3.57E+15,jcb,1366983796,United States,0,[email protected],4092004933,1,3,1,434000,326133,Dell Vsan,1277497789,19,Theo Harmeston,0,40524,0
1369066428,3152 Nova Pass,4.41E+15,visa-electron,1369068392,United States,1,[email protected],906784305,1,1,14,434000,326133,Dell Vsan,1239162401,27,Janelle Farman,8,70894,0
1379125094,95 Columbus Way,6.71E+15,laser,1379125929,United States,0,[email protected],2813701515,1,5,1,434000,326133,Dell Vsan,1379125093,9,Thaddus Raynor,9,34479,0
1353472166,31023 Montana Plaza,5.60E+15,bankcard,1353473155,United States,0,[email protected],168305163.8,1,2,1,434000,326133,Dell Vsan,1353472164,32,Linus Caws,10,78764,1
1378411199,74265 Swallow Point,3.56E+15,jcb,1378411244,United States,0,[email protected],3860421076,1,3,3,434000,326133,Dell Vsan,1300284089,10,Joella Aimer,11,85754,0
1357606990,18700 Riverside Parkway,5.60E+15,bankcard,1357607215,United States,0,[email protected],3615073716,1,2,5,434000,326133,Dell Vsan,1348097493,8,Kele Rodenborch,15,93305,0
1365884952,9 Ridge Oak Center,2.02E+15,diners-club-enroute,1365885008,United States,1,[email protected],3318701226,1,2,2,434000,326133,Dell Vsan,1222118948,11,Bud Dering,15,88514,0
1359907307,9272 Gulseth Plaza,3.01E+15,diners-club-carte-blanche,1359907776,United States,0,[email protected],3339787462,1,3,5,434000,326133,Dell Vsan,1323185741,57,Teena Dayne,15,97240,0
1362370091,3 Logan Place,3.59E+15,jcb,1362372072,United States,0,[email protected],3798763282,1,2,1,246000,326134,Dell Site Recovery,1362370090,0,Jacynth Grafom,0,10160,0
1300644147,3337 Bunker Hill Drive,3.55E+15,jcb,1300645096,United States,0,[email protected],68905862.2,1,1,2,246000,326134,Dell Site Recovery,1300644146,0,Ned Waszkiewicz,0,49505,0
1371696750,76 Park Meadow Road,3.55E+15,jcb,1372817023,United States,0,[email protected],2731827073,1,1,2,246000,326134,Dell Site Recovery,1371605732,0,Adrianna Gover,0,52410,0
1329739416,929 Red Cloud Road,3.54E+15,jcb,1329741516,United States,0,[email protected],1275731969,1,4,3,246000,326134,Dell Site Recovery,1321627909,0,Haily Pelosi,0,46295,0
1374077692,1317 Hansons Park,3.55E+15,jcb,1374077823,United States,0,[email protected],1460272546,1,5,3,246000,326134,Dell Site Recovery,1373560006,0,Sherwood Kemster,0,43635,1
1377699619,974 Memorial Junction,3.55E+15,jcb,1377702690,United States,0,[email protected],2177911934,1,2,3,246000,326134,Dell Site Recovery,1259016768,0,Dorita Byllam,0,98516,0
1326485334,07350 Donald Plaza,4.90E+15,switch,1327898632,United States,1,[email protected],3976713871,1,1,4,246000,326134,Dell Site Recovery,1325653531,0,Deena Clines,0,85271,0
1355640095,0 Blaine Alley,3.59E+15,jcb,1355640901,United States,0,[email protected],3941415149,1,3,4,246000,326134,Dell Site Recovery,1355640093,0,Allina Asplen,0,37914,1
1333405170,033 Pleasure Circle,3.55E+15,jcb,1333500521,United States,1,[email protected],2212631458,1,3,5,246000,326134,Dell Site Recovery,1333208493,0,Alonzo Doctor,0,62711,0
1375389539,577 Larry Avenue,3.56E+15,jcb,1375724516,United States,1,[email protected],2660361510,1,3,10,246000,326134,Dell Site Recovery,1355271428,0,Dorian Shotton,0,66276,0
1349037794,23 Briar Crest Lane,5.10E+15,mastercard,1349038112,United States,0,[email protected],3221402824,1,3,13,246000,326134,Dell Site Recovery,1290204991,0,Putnem Ingham,0,37215,0
1298483798,7 High Crossing Plaza,5.64E+15,switch,1298484652,United States,1,[email protected],268941845,1,2,16,246000,326134,Dell Site Recovery,1265415349,0,Renie Marklund,0,47747,0
1296487879,94665 Memorial Alley,3.55E+15,jcb,1296488719,United States,1,[email protected],1661008970,0,5,22,246000,326134,Dell Site Recovery,1266286934,0,Hermia Conneau,0,98664,0
1296520031,5546 Paget Circle,4.03E+15,visa-electron,1296522434,United States,0,[email protected],1810043989,1,4,24,246000,326134,Dell Site Recovery,1283180444,0,Huntlee Whatford,0,89115,0
1298332626,4106 Judy Crossing,6.33E+15,switch,1299826547,United States,1,[email protected],2768370604,1,5,71,246000,326134,Dell Site Recovery,1268852387,0,Ricki Born,0,73142,0
1340898245,1862 Waubesa Road,5.60E+15,china-unionpay,1340898607,United States,1,[email protected],1742204373,1,2,614,246000,326134,Dell Site Recovery,1340898029,0,Banky Durrans,0,55188,0
1369146731,9 Anniversary Junction,3.56E+15,jcb,1369148148,United States,0,[email protected],4163967268,1,5,2,246000,326134,Dell Site Recovery,1369144206,11,Maryellen Ruddock,0,15255,0
1354218584,22536 Gateway Parkway,3.04E+15,diners-club-carte-blanche,1354220742,United States,0,[email protected],1174922503,1,2,1,246000,326134,Dell Site Recovery,1348284888,15,Belia Lively,0,70174,0
1327009637,34221 High Crossing Park,4.03E+15,visa-electron,1327941538,United States,1,[email protected],861509328,1,2,310,246000,326134,Dell Site Recovery,1322170608,19,Dorine Walbridge,0,2216,0
1361147141,0 North Drive,3.55E+15,jcb,1361234374,United States,1,[email protected],3503864664,0,2,23,246000,326134,Dell Site Recovery,1360896060,7,Daffi Collyear,8,63169,0
1338159565,62032 Jenifer Alley,3.56E+15,jcb,1338173134,United States,1,[email protected],1146456624,1,3,19,246000,326134,Dell Site Recovery,1305245339,16,Winnie Dupree,8,73167,0
1376345626,96 Iowa Road,3.57E+15,jcb,1376781267,United States,0,[email protected],1242884103,1,4,8,246000,326134,Dell Site Recovery,1371500032,10,Katharyn Sharma,10,76129,0
1357856350,5 Independence Road,5.89E+15,maestro,1358184400,United States,1,[email protected],4236974096,1,2,82,246000,326134,Dell Site Recovery,1252939139,10,Emmye Burtwhistle,10,35254,0
1335847221,89 Grayhawk Place,5.02E+15,maestro,1335854262,United States,1,[email protected],2775136665,1,5,107,246000,326134,Dell Site Recovery,1328907727,17,Barry Oldknowe,10,77299,0
1368990456,99382 North Trail,3.56E+15,jcb,1368990697,United States,0,[email protected],1109053871,1,4,14,246000,326134,Dell Site Recovery,1356822706,25,Goober Pendreigh,10,83727,0
1358107220,34443 Mcbride Hill,6.76E+15,switch,1358108539,United States,0,[email protected],895420407,1,3,3,246000,326134,Dell Site Recovery,1340694226,12,Dorie Toxell,12,29305,0
1351472478,8545 Lindbergh Road,3.66E+15,diners-club-international,1351472825,United States,0,[email protected],2763922641,1,1,1,246000,326134,Dell Site Recovery,1330060052,0,Shellysheldon Wayon,13,8695,0
1363024275,56 Corscot Way,4.02E+15,visa,1371156397,United States,0,[email protected],3204843948,1,4,2,246000,326134,Dell Site Recovery,1362612109,18,Kesley Sydney,13,17126,0
1369157240,1392 Acker Way,6.77E+15,solo,1369204264,United States,3,[email protected],3983875079,1,4,36,246000,326134,Dell Site Recovery,1325729691,12,Amalea Beche,14,98115,0
1344506909,94108 Oak Alley,5.60E+15,china-unionpay,1344507167,United States,0,[email protected],4221123451,1,1,2,246000,326134,Dell Site Recovery,1304436884,19,Shaylah Prandoni,14,77228,0
1365307562,03 Walton Point,2.02E+15,diners-club-enroute,1365392118,United States,1,[email protected],1493748129,1,5,113,246000,326134,Dell Site Recovery,1364595891,19,Burl McQuorkel,15,16565,0
1340030946,271 Reindahl Plaza,3.58E+15,jcb,1340031036,United States,1,[email protected],793456340,1,5,7,246000,326134,Dell Site Recovery,1303344022,15,Chiarra Van Schafflaer,16,92170,0
1354415061,38 New Castle Parkway,3.53E+15,jcb,1354415981,United States,0,[email protected],1023671284,1,3,1,826000,326135,Dell Vmware NSX,1354414898,0,Korry Telling,0,34114,1
1367583875,4479 Lakewood Park,3.58E+15,jcb,1367589805,United States,0,[email protected],2138680268,1,1,1,826000,326135,Dell Vmware NSX,1367583874,0,Eldin Summerskill,0,88514,0
1361490867,466 Debs Circle,3.55E+15,jcb,1361491396,United States,0,[email protected],3741154266,1,5,2,826000,326135,Dell Vmware NSX,1361386688,0,Kristofor Wonter,0,79710,0
1358877324,44 Norway Maple Crossing,4.49E+15,visa,1358879883,United States,0,[email protected],4197815679,1,5,3,826000,326135,Dell Vmware NSX,1358875599,0,Rochella Kunat,0,77075,0
1376270024,5246 Bluestem Park,6.76E+15,switch,1376270201,United States,0,[email protected],772855835,1,3,3,826000,326135,Dell Vmware NSX,1376270023,0,Wildon Shank,0,48930,1
1360280213,5064 Cordelia Road,5.60E+15,bankcard,1360304183,United States,0,[email protected],3302806229,0,1,4,826000,326135,Dell Vmware NSX,1360279373,0,Abby Sterman,0,31119,0
1367813351,135 Mayer Plaza,3.58E+15,jcb,1367814461,United States,0,[email protected],3452522549,0,3,6,826000,326135,Dell Vmware NSX,1366744760,0,Oliviero Broschke,0,53263,0
1358789042,68224 Katie Street,3.71E+15,americanexpress,1362591820,United States,0,[email protected],637684936,1,3,8,826000,326135,Dell Vmware NSX,1358629466,0,Dyanna Aird,0,99522,0
1294626415,04 Declaration Way,5.02E+15,maestro,1294627809,United States,0,[email protected],3205721037,1,3,10,826000,326135,Dell Vmware NSX,1293417439,0,Tallou Haselup,0,60674,0
1318909766,504 Eggendart Trail,3.74E+15,americanexpress,1318911355,United States,0,[email protected],1393069600,1,5,10,826000,326135,Dell Vmware NSX,1249435003,0,Rachelle Million,0,52410,0
1378227308,81 Bonner Court,3.57E+15,jcb,1378227542,United States,1,[email protected],1562293724,0,2,12,826000,326135,Dell Vmware NSX,1283476866,0,Rafaelita Basso,0,94291,0
1345064839,56184 Golf Lane,2.02E+15,diners-club-enroute,1345068786,United States,0,[email protected],3114705361,0,3,13,826000,326135,Dell Vmware NSX,1334838170,0,Augusto Penrith,0,55458,0
1321909369,1789 Maple Junction,6.77E+15,laser,1321910852,United States,0,[email protected],1464369947,1,4,15,826000,326135,Dell Vmware NSX,1316468191,0,Craig Daine,0,2216,0
1375334638,3194 Schmedeman Circle,3.58E+15,jcb,1375340562,United States,0,[email protected],419622058,1,1,20,826000,326135,Dell Vmware NSX,1281595582,0,Kelley Franzman,0,98405,0
1360066910,485 Little Fleur Terrace,3.53E+15,jcb,1360067695,United States,1,[email protected],469934160.6,1,1,91,826000,326135,Dell Vmware NSX,1269031008,0,Marietta Stichel,0,53263,0
1307643514,40422 Melody Junction,3.54E+15,jcb,1308681334,United States,1,[email protected],421772779,1,2,101,826000,326135,Dell Vmware NSX,1287682993,0,Stern Gatling,0,73119,0
1307651974,5886 East Trail,3.56E+15,jcb,1307652918,United States,1,[email protected],224317481,1,4,294,826000,326135,Dell Vmware NSX,1307651973,0,Catarina Falkinder,0,78225,0
1289486789,53 Nova Way,6.76E+15,maestro,1289490653,United States,0,[email protected],2446882465,0,3,309,826000,326135,Dell Vmware NSX,1256310451,0,Grantley Burgen,0,85705,0
1329933283,8 Almo Court,4.92E+15,visa-electron,1329934022,United States,0,[email protected],269100672.2,1,2,1,826000,326135,Dell Vmware NSX,1293064864,5,Earvin Reveland,0,33680,0
1294158369,1150 Anzinger Avenue,6.71E+15,laser,1294158777,United States,0,[email protected],2476556032,1,5,3,826000,326135,Dell Vmware NSX,1267182492,9,Mil Sheach,0,15240,0
1353437223,6 Quincy Avenue,3.56E+15,jcb,1353507783,United States,1,[email protected],219061366,1,5,48,826000,326135,Dell Vmware NSX,1300887339,13,Gardy Ducker,0,94807,0
1354211232,06535 Debra Road,6.76E+15,maestro,1354211252,United States,1,[email protected],973678948.6,0,4,11,826000,326135,Dell Vmware NSX,1304615575,10,Alexandr Lewsam,8,76205,0
1356193738,4 Bellgrove Terrace,3.58E+15,jcb,1356196754,United States,1,[email protected],2960459349,1,4,35,826000,326135,Dell Vmware NSX,1281129920,8,Gennie Swalwel,9,32123,0
1365462585,16 Forest Run Court,3.58E+15,jcb,1365464763,United States,0,[email protected],1645739001,1,3,43,826000,326135,Dell Vmware NSX,1294872617,0,Reta Thebeau,10,11044,0
1357236749,0449 Meadow Ridge Plaza,5.10E+15,mastercard,1357236775,United States,0,[email protected],3658979824,1,5,2,826000,326135,Dell Vmware NSX,1339964025,0,Klarrisa Berard,11,87105,0
1368623686,73 Moland Plaza,4.51E+15,visa-electron,1369389774,United States,0,[email protected],3560488578,1,1,21,826000,326135,Dell Vmware NSX,1329912265,17,Salvidor Hurley,12,90831,0
1367865926,32675 Jana Trail,6.33E+15,solo,1367866619,United States,0,[email protected],437298490,1,4,3,826000,326135,Dell Vmware NSX,1325763974,36,Morlee Northing,12,32236,0
1364780356,36 Northview Pass,3.56E+15,jcb,1364781770,United States,0,[email protected],2647471330,1,3,162,826000,326135,Dell Vmware NSX,1293876210,13,Nessi Parmley,14,95194,0
1362070440,74002 East Pass,3.03E+15,diners-club-carte-blanche,1362076145,United States,0,[email protected],3406824821,1,2,44,826000,326135,Dell Vmware NSX,1240850854,14,Jeanne Gerardi,14,25326,0
1379608353,554 Melvin Junction,3.56E+15,jcb,1379609845,United States,1,[email protected],1931086203,1,1,15,826000,326135,Dell Vmware NSX,1299463528,17,Jonie Jossum,15,98682,0
1295246297,418 Nevada Circle,5.60E+15,china-unionpay,1295247559,United States,0,[email protected],3268142687,0,4,0,717000,326136,Dell OpenManage for vCenter,1275477125,0,Collette Elgood,0,71137,1
1331437005,0 Delladonna Pass,3.56E+15,jcb,1346981949,United States,0,[email protected],3134441314,1,3,0,717000,326136,Dell OpenManage for vCenter,1287682056,0,Eustace Duffet,0,96850,0
1298306904,9 Hauk Lane,3.54E+15,jcb,1298308354,United States,0,[email protected],1426214001,0,4,1,717000,326136,Dell OpenManage for vCenter,1226696413,0,Walt Sobczak,0,33411,0
1315877514,4429 Declaration Junction,4.51E+15,visa-electron,1315878065,United States,0,[email protected],1130063346,1,3,1,717000,326136,Dell OpenManage for vCenter,1314766456,0,Moore Hasser,0,23663,1
1336912780,7 Corry Hill,2.02E+15,diners-club-enroute,1336912855,United States,0,[email protected],674767959,1,5,1,717000,326136,Dell OpenManage for vCenter,1146260369,0,Cheryl Brunton,0,84120,1
1302465120,3881 West Terrace,4.91E+15,switch,1302465411,United States,0,[email protected],2880938843,1,5,2,717000,326136,Dell OpenManage for vCenter,1296430111,0,Charlotta Laydon,0,30096,0
1304036492,28 Transport Court,3.57E+15,jcb,1304036749,United States,0,[email protected],1528292076,1,3,3,717000,326136,Dell OpenManage for vCenter,1297990178,0,Clemens Chatburn,0,55572,0
1356181868,8 Columbus Hill,5.60E+15,china-unionpay,1356182140,United States,0,[email protected],1873464975,1,2,3,717000,326136,Dell OpenManage for vCenter,1336675804,0,Hi Hark,0,30089,0
1370878844,208 Calypso Avenue,3.54E+15,jcb,1370884860,United States,0,[email protected],1513355575,1,3,3,717000,326136,Dell OpenManage for vCenter,1363191631,0,Sarah Arkow,0,14683,0
1329922921,301 Holy Cross Crossing,3.53E+15,jcb,1329923067,United States,1,[email protected],2969766210,1,4,4,717000,326136,Dell OpenManage for vCenter,1254819670,0,Liesa MacGiany,0,92878,0
1361378035,5352 Bobwhite Park,3.58E+15,jcb,1361378128,United States,0,[email protected],906069120.6,1,4,4,717000,326136,Dell OpenManage for vCenter,1361369729,0,Nels Lindl,0,92013,0
1375129572,38517 Norway Maple Hill,4.91E+15,switch,1375130131,United States,0,[email protected],2734759625,1,1,4,717000,326136,Dell OpenManage for vCenter,1375129571,0,Siward Cawsey,0,70149,1
1329353434,4178 Pond Parkway,5.41E+15,mastercard,1329354340,United States,1,[email protected],369155684.6,0,5,7,717000,326136,Dell OpenManage for vCenter,1286665228,0,Zelig Aery,0,89519,0
1322664715,31 Forest Dale Center,3.38E+15,americanexpress,1322683984,United States,0,[email protected],1445037194,1,1,9,717000,326136,Dell OpenManage for vCenter,1302726441,0,Ripley Blakely,0,20067,0
1353955094,1 American Ash Road,5.61E+15,bankcard,1353955195,United States,1,[email protected],3931941601,1,3,15,717000,326136,Dell OpenManage for vCenter,1260308912,0,Torey Spurdens,0,75372,0
1323178794,07145 Utah Center,6.71E+15,laser,1323180017,United States,0,[email protected],470157655.2,1,2,18,717000,326136,Dell OpenManage for vCenter,1323178792,0,Katleen Saladin,0,98506,1
1294118908,7 Eagle Crest Avenue,3.53E+15,jcb,1294241803,United States,0,[email protected],4228953758,1,3,45,717000,326136,Dell OpenManage for vCenter,1294118907,0,Torie Riseley,0,73129,0
1367253182,3 Jana Hill,4.90E+15,switch,1368453908,United States,1,[email protected],3332078183,1,2,45,717000,326136,Dell OpenManage for vCenter,1281974820,0,Rhea Wildsmith,0,33330,0
1369690229,8 Walton Park,6.30E+15,laser,1370128097,United States,0,[email protected],2896784265,1,4,128,717000,326136,Dell OpenManage for vCenter,1320890421,0,Redford Heatley,0,34282,0
1349319822,12149 Westport Pass,5.60E+15,bankcard,1349320331,United States,0,[email protected],2376632133,1,3,1,717000,326136,Dell OpenManage for vCenter,1336487384,18,Shannen Elliott,0,35290,0
1353776299,09 Kipling Center,4.91E+15,visa-electron,1353776312,United States,0,[email protected],1394808616,1,3,12,717000,326136,Dell OpenManage for vCenter,1289585286,18,Oliver Mattersey,0,10004,0
1374121225,0448 Bunker Hill Way,3.05E+15,diners-club-carte-blanche,1374121597,United States,1,[email protected],791403383,1,2,1,717000,326136,Dell OpenManage for vCenter,1309312845,22,Phaidra Durbin,0,85754,0
1343732563,2 Walton Alley,3.58E+15,jcb,1343830529,United States,1,[email protected],1644484683,1,1,47,717000,326136,Dell OpenManage for vCenter,1343731282,6,Enos Devericks,7,95818,0
1328059874,4 Roxbury Place,3.56E+15,jcb,1328060738,United States,0,[email protected],3712854436,1,3,19,717000,326136,Dell OpenManage for vCenter,1245154428,8,Donaugh Grahame,7,75049,0
1359489821,01 Erie Alley,3.58E+15,jcb,1359490456,United States,0,[email protected],2827981977,1,3,4,717000,326136,Dell OpenManage for vCenter,1297883816,7,Karna Whyberd,8,20016,0
1362376412,2958 Nevada Point,3.54E+15,jcb,1362376644,United States,0,[email protected],1359488566,1,3,2,717000,326136,Dell OpenManage for vCenter,1353907272,0,Keeley Rummery,10,59112,0
1372779935,305 Nevada Street,3.58E+15,jcb,1372779964,United States,1,[email protected],2263023098,1,4,1,717000,326136,Dell OpenManage for vCenter,1260203096,12,Dareen Cunniff,13,55590,0
1361830281,3 Debs Place,5.60E+15,china-unionpay,1361830388,United States,1,[email protected],925963022,1,2,9,717000,326136,Dell OpenManage for vCenter,1264446071,16,Jacky Florentine,14,10469,0
1323198953,17952 Dwight Junction,3.55E+15,jcb,1323199906,United States,0,[email protected],895088069,0,4,1,717000,326136,Dell OpenManage for vCenter,1270585188,40,Hester Ash,14,49544,0
1355469613,10 Oak Valley Trail,2.02E+15,diners-club-enroute,1355469983,United States,0,[email protected],738505759,1,1,6,717000,326136,Dell OpenManage for vCenter,1335767100,15,Donalt Balcon,15,45228,0
1347539745,86947 Porter Parkway,5.01E+15,mastercard,1348144220,United States,0,[email protected],2036674295,1,5,11,717000,326136,Dell OpenManage for vCenter,1315391594,9,Nelson Clutten,16,98158,0
1328058307,83624 Cottonwood Hill,2.02E+15,diners-club-enroute,1328058663,United States,0,[email protected],4222283037,1,5,32,717000,326136,Dell OpenManage for vCenter,1305579090,26,Celestyna Sorbey,16,20910,0
1294875503,03442 Portage Plaza,5.04E+15,maestro,1294958702,United States,0,[email protected],671342438.6,1,5,1,246000,326137,Dell OpenManage Power Center,1291843082,0,Tadeas Van der Brug,0,6105,0
1364385003,53 New Castle Point,3.54E+15,jcb,1365067593,United States,0,[email protected],2160810123,1,5,1,246000,326137,Dell OpenManage Power Center,1364371783,0,Latisha Banbrook,0,30130,0
1368596966,6152 Melody Park,3.54E+15,jcb,1368734265,United States,0,[email protected],67208425.6,1,1,1,246000,326137,Dell OpenManage Power Center,1368596965,0,Guenna Coupman,0,37131,0
1369649020,1 Tomscot Avenue,3.74E+15,americanexpress,1369654063,United States,0,[email protected],3833904295,1,2,1,246000,326137,Dell OpenManage Power Center,1369648778,0,Shawn Stonuary,0,39236,0
1323792598,785 Crownhardt Hill,3.55E+15,jcb,1323792763,United States,0,[email protected],706742341,1,3,2,246000,326137,Dell OpenManage Power Center,1323792596,0,Florie Neiland,0,89193,1
1318293169,96 Goodland Point,3.54E+15,jcb,1318304500,United States,1,[email protected],391159877,1,2,3,246000,326137,Dell OpenManage Power Center,1305257937,0,Ezequiel Leadston,0,7104,0
1371639295,4349 Morrow Street,3.54E+15,jcb,1371644693,United States,0,[email protected],3067478363,1,4,3,246000,326137,Dell OpenManage Power Center,1371139960,0,Nerte McVitie,0,79491,0
1371324490,74 Randy Trail,5.60E+15,china-unionpay,1371324553,United States,0,[email protected],2152254348,0,2,4,246000,326137,Dell OpenManage Power Center,1371324269,0,Marybeth Chancelier,0,98109,1
1335228086,69 Luster Crossing,5.89E+15,maestro,1335232741,United States,1,[email protected],169978196,1,3,5,246000,326137,Dell OpenManage Power Center,1329111390,0,Cristy Firbank,0,95064,0
1334550292,9 3rd Road,5.10E+15,mastercard,1334595623,United States,0,[email protected],1942517988,1,2,13,246000,326137,Dell OpenManage Power Center,1334550291,0,Christalle Garrioch,0,11407,0
1344222308,230 Cherokee Hill,3.54E+15,jcb,1344293643,United States,0,[email protected],3612023784,1,4,13,246000,326137,Dell OpenManage Power Center,1344222307,0,Edna Mayling,0,21281,0
1324586213,0 Browning Trail,5.05E+15,mastercard,1324600131,United States,0,[email protected],571049697.6,0,2,17,246000,326137,Dell OpenManage Power Center,1324586212,0,Eziechiele Davidovsky,0,20409,0
1371623507,906 Ridge Oak Pass,6.76E+15,maestro,1371623593,United States,0,[email protected],1164162504,0,1,25,246000,326137,Dell OpenManage Power Center,1370275684,0,Valentia Mephan,0,34642,1
1363820720,6315 Lighthouse Bay Pass,3.74E+15,americanexpress,1363823165,United States,1,[email protected],4026378324,1,4,34,246000,326137,Dell OpenManage Power Center,1205197129,0,Dari Ritchings,0,75379,0
1361942750,93523 Colorado Hill,3.58E+15,jcb,1361966681,United States,0,[email protected],1738588754,1,1,38,246000,326137,Dell OpenManage Power Center,1285592655,0,Allyn Waltering,0,64187,0
1317121930,6447 Mcguire Center,5.02E+15,maestro,1317179933,United States,1,[email protected],1228170487,1,4,46,246000,326137,Dell OpenManage Power Center,1277866019,0,Cullin Arno,0,2283,0
1320712510,24 Rutledge Court,6.76E+15,maestro,1320764095,United States,0,[email protected],3313805271,1,1,60,246000,326137,Dell OpenManage Power Center,1235068092,0,Stacey Mandrey,0,22111,0
1361981460,1 Warbler Trail,2.02E+15,diners-club-enroute,1361986421,United States,1,[email protected],957535295,1,1,73,246000,326137,Dell OpenManage Power Center,1237924846,0,Charlie Brickhill,0,79764,0
1354140826,52829 Iowa Way,3.58E+15,jcb,1357314643,United States,0,[email protected],1577722716,1,2,133,246000,326137,Dell OpenManage Power Center,1314985062,0,Norrie Haliburton,0,62756,0
1294580357,2 Dottie Hill,3.54E+15,jcb,1294585368,United States,1,[email protected],1788365253,1,1,35,246000,326137,Dell OpenManage Power Center,1265924089,6,Efrem Perillio,0,46278,0
1379376191,55624 Texas Street,5.10E+15,mastercard,1379376536,United States,1,[email protected],1258926474,0,5,46,246000,326137,Dell OpenManage Power Center,1376069186,18,Leopold Roycraft,0,23237,0
1366522923,37686 Corscot Street,3.56E+15,jcb,1366522943,United States,1,[email protected],3087435280,1,5,2,246000,326137,Dell OpenManage Power Center,1317306998,19,Gratia Fathers,0,93704,0
1323229370,1 Macpherson Street,5.10E+15,mastercard,1323229627,United States,1,[email protected],1174476701,1,3,50,246000,326137,Dell OpenManage Power Center,1321854967,32,Holli Vassall,0,47134,0
1350007543,712 Hovde Plaza,3.55E+15,jcb,1350007725,United States,0,[email protected],1645434379,1,4,20,246000,326137,Dell OpenManage Power Center,1334221861,39,Kristoffer Oldham,9,20784,0
1340894553,5 Fulton Lane,3.54E+15,jcb,1341570570,United States,0,[email protected],906671450,1,3,25,246000,326137,Dell OpenManage Power Center,1288362911,23,Gerda McTaggart,10,40205,0
1335000562,23485 Service Parkway,4.94E+15,switch,1335165653,United States,0,[email protected],1292454147,1,3,84,246000,326137,Dell OpenManage Power Center,1334552751,10,Carlotta Phythien,11,92127,0
1373425424,154 Ronald Regan Center,3.58E+15,jcb,1373426073,United States,0,[email protected],105580837,1,5,5,246000,326137,Dell OpenManage Power Center,1363387130,9,Noe Smithin,12,63169,0
1353365481,4 Monument Lane,6.39E+15,instapayment,1353367573,United States,0,[email protected],3597934648,1,3,17,246000,326137,Dell OpenManage Power Center,1330612352,15,Sherline Whaley,12,93591,0
1332892576,94 Barnett Hill,3.59E+15,jcb,1332892587,United States,1,[email protected],2585847912,1,4,8,246000,326137,Dell OpenManage Power Center,1290464231,21,Fiorenze Betchley,12,70593,0
1347290195,4237 Gina Alley,4.84E+15,visa-electron,1347290552,United States,1,[email protected],590678411,1,5,9,246000,326137,Dell OpenManage Power Center,1335895544,22,Lyell Gilderoy,13,73190,0
1370281975,096 New Castle Junction,4.02E+15,visa,1370344320,United States,0,[email protected],3637554785,1,3,3,246000,326137,Dell OpenManage Power Center,1370281974,15,Sarajane Haucke,15,33994,0
1355839344,96 Meadow Ridge Drive,3.56E+15,jcb,1355840093,United States,1,[email protected],2986245409,1,4,9,246000,326137,Dell OpenManage Power Center,1313805994,16,Byrle McCraine,15,40287,0
1372753108,23 Schurz Junction,3.72E+15,americanexpress,1373353828,United States,0,[email protected],1415828662,0,1,59,246000,326137,Dell OpenManage Power Center,1318518176,21,Davy Learmonth,15,28263,0
1309167295,7077 Fordem Circle,3.53E+15,jcb,1309168183,United States,0,[email protected],4239087778,1,4,1,209000,326138,Dell Open Manage for System Center,1254814691,0,Doyle Bruyns,0,62705,0
1314097994,44 Dexter Drive,3.54E+15,jcb,1314098176,United States,0,[email protected],2316912830,1,5,1,209000,326138,Dell Open Manage for System Center,1314097993,0,Padgett Molder,0,11024,1
1343253109,27017 Golf Course Trail,3.56E+15,jcb,1346785714,United States,1,[email protected],1644484890,1,3,1,209000,326138,Dell Open Manage for System Center,1343253107,0,Aimil Fussell,0,70894,0
1371442715,3 Hoffman Avenue,3.54E+15,jcb,1371443162,United States,1,[email protected],654695974.6,1,4,1,209000,326138,Dell Open Manage for System Center,1362948275,0,Mercie Trundell,0,2203,0
1307416748,43177 Scofield Crossing,6.76E+15,maestro,1307417005,United States,0,[email protected],2040427935,1,1,2,209000,326138,Dell Open Manage for System Center,1307416747,0,Goober Rosel,0,44185,1
1374656696,7 Dottie Alley,3.55E+15,jcb,1374657312,United States,0,[email protected],3601721568,1,2,2,209000,326138,Dell Open Manage for System Center,1374656696,0,Nadia Abrahamovitz,0,31422,0
1375316347,4 Cambridge Hill,2.02E+15,diners-club-enroute,1375317383,United States,0,[email protected],3764337958,1,1,2,209000,326138,Dell Open Manage for System Center,1375316346,0,Rogerio Dansie,0,11407,0
1368918471,777 Dottie Junction,3.58E+15,jcb,1368932737,United States,0,[email protected],2796471069,1,4,4,209000,326138,Dell Open Manage for System Center,1368918470,0,Sheilah Hamill,0,11205,0
1369871213,5 Hudson Hill,3.58E+15,jcb,1369874395,United States,1,[email protected],1714757918,1,5,4,209000,326138,Dell Open Manage for System Center,1369871212,0,Nefen Hayball,0,33805,0
1325574157,08 Warrior Point,3.56E+15,jcb,1325574492,United States,1,[email protected],3783405197,1,2,6,209000,326138,Dell Open Manage for System Center,1259870037,0,Lorette Padfield,0,20238,0
1374660817,23140 Stuart Hill,6.33E+15,solo,1374660861,United States,0,[email protected],1874522.6,0,4,6,209000,326138,Dell Open Manage for System Center,1374658386,0,Karola Martignoni,0,80249,0
1370431705,8278 Quincy Pass,3.57E+15,jcb,1370431993,United States,0,[email protected],69451567.4,1,5,9,209000,326138,Dell Open Manage for System Center,1370009623,0,Lindy Garrals,0,92415,1
1379730346,48 Schlimgen Trail,3.55E+15,jcb,1379740395,United States,0,[email protected],1376746422,1,5,9,209000,326138,Dell Open Manage for System Center,1295898284,0,Matty Barringer,0,43220,0
1308314211,40239 Vahlen Drive,3.56E+15,jcb,1308317636,United States,0,[email protected],4147970170,1,3,37,209000,326138,Dell Open Manage for System Center,1280287665,0,Herbert Kerry,0,10464,0
1337136476,06539 Main Terrace,3.04E+15,diners-club-carte-blanche,1337138042,United States,0,[email protected],2108757244,1,1,89,209000,326138,Dell Open Manage for System Center,1273727780,0,Brigit Knowlson,0,17622,0
1317746992,532 Meadow Vale Road,3.06E+15,diners-club-carte-blanche,1318000884,United States,1,[email protected],369510645.2,1,1,91,209000,326138,Dell Open Manage for System Center,1316014790,0,Brnaby Boulstridge,0,90094,0
1373913442,447 Hanson Trail,3.54E+15,jcb,1373913583,United States,0,[email protected],604016424.6,1,5,96,209000,326138,Dell Open Manage for System Center,1282685105,0,Pernell Risley,0,53205,0
1370456903,6082 Amoth Lane,4.03E+15,visa-electron,1370467802,United States,0,[email protected],2591542223,1,4,1,209000,326138,Dell Open Manage for System Center,1351224115,10,Chrissy Ravelus,0,77305,0
1343740847,8 Sage Road,5.01E+15,mastercard,1343740884,United States,0,[email protected],2465292690,1,5,1,209000,326138,Dell Open Manage for System Center,1311630978,12,Noel Hartnell,0,18505,0
1340845391,1649 Anderson Alley,3.74E+15,americanexpress,1341296621,United States,1,[email protected],285648624.6,1,4,5,209000,326138,Dell Open Manage for System Center,1272937325,12,Rosamund Pucker,0,94110,0
1326491954,66 Spenser Drive,4.92E+15,visa-electron,1326492109,United States,1,[email protected],1342188584,1,2,52,209000,326138,Dell Open Manage for System Center,1321457666,12,Nance Hawtin,0,40280,0
1365571074,36 Grover Alley,4.91E+15,switch,1365748493,United States,1,[email protected],3269474965,1,1,3,209000,326138,Dell Open Manage for System Center,1363239025,21,Kessiah Seine,0,30328,0
1368527578,42345 Eastlawn Place,5.24E+15,mastercard,1368528063,United States,0,[email protected],1141587549,1,1,1,209000,326138,Dell Open Manage for System Center,1368527576,23,Ives Mariette,0,78726,0
1334172793,5100 Little Fleur Street,3.53E+15,jcb,1334173020,United States,0,[email protected],2967440064,1,1,39,209000,326138,Dell Open Manage for System Center,1297883816,7,Nadya Dentith,8,68517,0
1373642753,0 Walton Court,5.02E+15,maestro,1373643177,United States,0,[email protected],3282137433,1,4,9,209000,326138,Dell Open Manage for System Center,1372717810,11,Drew Koppel,10,95405,0
1360278624,15 Russell Drive,4.91E+15,switch,1360278932,United States,1,[email protected],2971269300,1,5,44,209000,326138,Dell Open Manage for System Center,1310461050,18,Bibbie Sonier,10,46295,0
1318346593,223 Eliot Hill,6.05E+15,maestro,1318366366,United States,0,[email protected],268708377.6,1,5,6,209000,326138,Dell Open Manage for System Center,1318345676,0,Jocelyn Moorrud,11,33884,0
1356036375,5020 Forster Court,4.28E+15,visa,1356036656,United States,1,[email protected],995242045,1,3,11,209000,326138,Dell Open Manage for System Center,1259786059,29,Elwyn Mawford,11,11215,0
1356631426,60 Bluestem Trail,3.59E+15,jcb,1364886517,United States,0,[email protected],3058700621,1,5,1,209000,326138,Dell Open Manage for System Center,1329159472,34,Bernadina Dennison,13,20520,0
1362071795,1997 Pine View Place,3.74E+15,americanexpress,1363292016,United States,0,[email protected],3902207225,1,5,1,209000,326138,Dell Open Manage for System Center,1318351944,0,Robinette Tallet,15,70826,0
1366725694,4 Dexter Terrace,4.04E+15,visa,1366884572,United States,0,[email protected],2634501001,1,3,5,209000,326138,Dell Open Manage for System Center,1351164331,16,Pascale Blundin,15,10150,0
1342281083,87 Hallows Court,3.55E+15,jcb,1342285645,United States,1,[email protected],3864581243,1,4,0,211000,326139,Dell vCenter Server,1341189473,0,Allyce Aspall,0,48211,1
1314105103,6 Upham Crossing,6.33E+15,solo,1314105376,United States,0,[email protected],3607867233,1,3,1,211000,326139,Dell vCenter Server,1314105102,0,Poppy Muscroft,0,22184,1
1359135579,3 Elgar Circle,3.55E+15,jcb,1359135934,United States,0,[email protected],2934254629,1,4,1,211000,326139,Dell vCenter Server,1346789904,0,Joete Siggins,0,19104,0
1364391689,59 Melrose Plaza,3.01E+15,diners-club-carte-blanche,1364393091,United States,0,[email protected],872452443.4,1,2,1,211000,326139,Dell vCenter Server,1364391688,0,Nickolai Lamers,0,64054,0
1370961655,27042 Rusk Street,4.02E+15,visa,1370961765,United States,0,[email protected],119643607.8,1,5,3,211000,326139,Dell vCenter Server,1339888264,0,Tandy Rolls,0,14276,0
1310584765,10 Welch Plaza,5.00E+15,mastercard,1310585350,United States,0,[email protected],4183758627,1,5,5,211000,326139,Dell vCenter Server,1310584765,0,Feodor Bertomier,0,16505,1
1323864480,49739 Coleman Point,3.59E+15,jcb,1324309176,United States,0,[email protected],1443720078,1,3,6,211000,326139,Dell vCenter Server,1323427766,0,Saloma Maro,0,79491,0
1378690287,657 Dwight Plaza,5.60E+15,bankcard,1378690530,United States,0,[email protected],287859308,0,1,6,211000,326139,Dell vCenter Server,1301171717,0,Rolando Propper,0,63104,0
1343235631,9853 Thackeray Lane,5.10E+15,mastercard,1343235773,United States,0,[email protected],1141573571,1,1,9,211000,326139,Dell vCenter Server,1267548110,0,Brendan Sharpin,0,76210,0
1350398959,94133 Northfield Plaza,3.54E+15,jcb,1350399040,United States,1,[email protected],2628613199,0,5,17,211000,326139,Dell vCenter Server,1294851517,0,Grantham O' Scallan,0,47405,0
1363035139,75852 Granby Way,3.57E+15,jcb,1363036386,United States,0,[email protected],1144235903,1,1,60,211000,326139,Dell vCenter Server,1363035138,0,Omero Vant,0,63131,0
1363890461,20 Cordelia Circle,4.04E+15,visa,1364231104,United States,0,[email protected],1984737172,0,3,60,211000,326139,Dell vCenter Server,1270600937,0,Derrek Juhruke,0,37416,0
1357887041,110 Scofield Road,5.60E+15,bankcard,1357889473,United States,1,[email protected],3401576985,1,5,76,211000,326139,Dell vCenter Server,1266644708,0,Robena Belfitt,0,64054,0
1321970460,9734 Graedel Parkway,5.00E+15,mastercard,1321972243,United States,0,[email protected],3402269454,1,5,91,211000,326139,Dell vCenter Server,1311328353,0,Glynda Malby,0,98104,0
1332442895,11 Leroy Plaza,3.54E+15,jcb,1332443480,United States,0,[email protected],3450292818,1,3,23,211000,326139,Dell vCenter Server,1316044801,7,Reece Jorck,0,96850,0
1345232025,56319 Sommers Pass,2.02E+15,diners-club-enroute,1345233049,United States,1,[email protected],1867002910,1,2,1,211000,326139,Dell vCenter Server,1344542279,10,Torrie Donegan,0,6510,0
1372883060,3157 Manley Center,3.55E+15,jcb,1372883123,United States,0,[email protected],554247577.2,1,3,2,211000,326139,Dell vCenter Server,1311630978,12,Kennan Pyrke,0,32092,0
1313790107,83 Hoffman Plaza,4.41E+15,visa-electron,1317404457,United States,1,[email protected],3958587335,1,1,25,211000,326139,Dell vCenter Server,1285538723,18,Jamill Braybrook,0,32819,0
1306888116,99568 Dwight Avenue,3.02E+15,diners-club-carte-blanche,1307328334,United States,1,[email protected],3838610935,1,3,58,211000,326139,Dell vCenter Server,1244691727,18,Corella Fippe,0,80249,0
1367354589,28842 Golf View Terrace,3.58E+15,jcb,1367868346,United States,0,[email protected],554285637,1,1,1,211000,326139,Dell vCenter Server,1364923654,39,Janek MacKim,0,90005,0
1374581896,0622 Memorial Court,6.76E+15,maestro,1374582337,United States,1,[email protected],458366839,1,1,10,211000,326139,Dell vCenter Server,1321438017,7,Rolando Mullinder,7,41905,0
1349094500,14195 Kenwood Terrace,3.06E+15,diners-club-carte-blanche,1349094650,United States,0,[email protected],4136980966,1,1,1,211000,326139,Dell vCenter Server,1338782851,20,Tracy Stellman,10,10459,0
1346132541,105 Lerdahl Center,6.76E+15,maestro,1346965974,United States,1,[email protected],2314464290,1,5,1,211000,326139,Dell vCenter Server,1331403412,11,Lurlene Biggam,11,75216,0
1380047939,614 Fallview Point,3.03E+15,diners-club-carte-blanche,1380048168,United States,1,[email protected],1477059081,1,4,13,211000,326139,Dell vCenter Server,1286706777,12,Hardy Le Guin,12,20226,0
1349996356,0235 Old Shore Plaza,5.04E+15,maestro,1349997024,United States,1,[email protected],3896351928,1,3,34,211000,326139,Dell vCenter Server,1279828869,13,Constanta Hendricks,13,91117,0
1346860931,039 Pennsylvania Drive,6.76E+15,maestro,1348153524,United States,0,[email protected],1977405559,1,3,1,211000,326139,Dell vCenter Server,1316450539,17,Rockey Brownlee,13,29424,0
1313527726,3575 Northland Center,3.56E+15,jcb,1313527911,United States,1,[email protected],372413969,1,2,32,211000,326139,Dell vCenter Server,1313527725,0,Melisandra Mulrean,14,50369,0
1371793673,2775 Armistice Parkway,6.71E+15,laser,1371794400,United States,0,[email protected],2794313792,1,1,76,211000,326139,Dell vCenter Server,1289880132,18,Cally Beine,14,90410,0
1378841316,9569 Rutledge Junction,2.02E+15,diners-club-enroute,1379348877,United States,1,[email protected],1732978353,1,1,15,211000,326139,Dell vCenter Server,1346177347,17,Mable Clewer,15,92056,0
1372259789,023 Havey Hill,3.56E+15,jcb,1372264477,United States,1,[email protected],2917171172,1,3,13,211000,326139,Dell vCenter Server,1314198317,9,Bryce Ciottoi,16,84120,0
1375857851,327 Glacier Hill Hill,4.84E+15,visa-electron,1375861536,United States,1,[email protected],1808322386,1,2,151,211000,326139,Dell vCenter Server,1360550501,21,Maire Simpkin,16,72209,0
1294168026,83 Golf Course Drive,3.56E+15,jcb,1294168138,United States,0,[email protected],2226791542,1,4,1,211000,326139,Dell vCenter Server,1261507459,26,Christa Bollen,16,19892,0
1352432537,4 Trailsway Center,3.57E+15,jcb,1352433208,United States,0,[email protected],3902124822,0,5,0,171000,326140,Dell vCloud Suite,1352432034,0,Marline Clemo,0,10160,1
1363301709,2 Hazelcrest Drive,5.57E+15,mastercard,1363301786,United States,0,[email protected],1006819699,1,2,0,171000,326140,Dell vCloud Suite,1359730754,0,Celle Schindler,0,32605,1
1363982593,89598 Prentice Parkway,5.44E+15,mastercard,1363983443,United States,0,[email protected],1956836049,1,4,2,171000,326140,Dell vCloud Suite,1363982592,0,Rivkah Klimentov,0,11854,0
1377820990,7 Fordem Lane,6.39E+15,instapayment,1377821519,United States,0,[email protected],1446260225,1,4,2,171000,326140,Dell vCloud Suite,1376678635,0,Titus Yeoman,0,71115,1
1294870467,38944 Meadow Ridge Road,3.74E+15,americanexpress,1294874710,United States,0,[email protected],2927587376,1,1,3,171000,326140,Dell vCloud Suite,1251155771,0,Miltie Trim,0,34745,0
1354671003,41617 American Ash Parkway,4.04E+15,visa,1354671643,United States,0,[email protected],391039811,1,2,3,171000,326140,Dell vCloud Suite,1350341798,0,Crawford Woolrich,0,73129,0
1370283991,78 Scoville Alley,3.55E+15,jcb,1370284194,United States,0,[email protected],3506858731,1,2,4,171000,326140,Dell vCloud Suite,1259693179,0,Gustave Maylour,0,60657,0
1346116771,8108 Oak Lane,3.54E+15,jcb,1346123512,United States,0,[email protected],3111676049,0,1,5,171000,326140,Dell vCloud Suite,1346116767,0,Claus Orrett,0,2203,0
1329406590,9442 Laurel Street,3.53E+15,jcb,1329407036,United States,1,[email protected],872730509.6,1,2,9,171000,326140,Dell vCloud Suite,1251171928,0,Fee Busch,0,19120,0
1332802646,7 Erie Parkway,3.57E+15,jcb,1332803549,United States,0,[email protected],2289836152,1,1,11,171000,326140,Dell vCloud Suite,1332802645,0,Richardo Ratnege,0,6152,0
1363873265,62708 Monica Center,5.01E+15,mastercard,1363873734,United States,0,[email protected],875547276,1,2,12,171000,326140,Dell vCloud Suite,1281402847,0,Emelina Kitley,0,99599,0
1364236486,74483 Talisman Way,5.35E+15,mastercard,1364237864,United States,0,[email protected],453358218.6,1,3,20,171000,326140,Dell vCloud Suite,1364158094,0,Mariana Brambley,0,19805,0