mondrian-olap 1.2.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Changelog.md +21 -1
- data/README.md +4 -4
- data/VERSION +1 -1
- data/lib/mondrian/jars/log4j-api-2.17.1.jar +0 -0
- data/lib/mondrian/jars/log4j-core-2.17.1.jar +0 -0
- data/lib/mondrian/jars/log4j2-config.jar +0 -0
- data/lib/mondrian/jars/mondrian-9.3.0.0.jar +0 -0
- data/lib/mondrian/olap/connection.rb +33 -20
- data/lib/mondrian/olap/cube.rb +46 -4
- data/lib/mondrian/olap/error.rb +10 -2
- data/lib/mondrian/olap/query.rb +1 -0
- data/lib/mondrian/olap/result.rb +128 -59
- data/lib/mondrian/olap/schema.rb +9 -3
- data/lib/mondrian/olap/schema_udf.rb +8 -82
- data/lib/mondrian/olap.rb +11 -7
- data/spec/connection_spec.rb +37 -3
- data/spec/cube_cache_control_spec.rb +2 -2
- data/spec/cube_spec.rb +36 -2
- data/spec/fixtures/MondrianTest.xml +40 -0
- data/spec/fixtures/MondrianTestOracle.xml +40 -0
- data/spec/mondrian_spec.rb +132 -0
- data/spec/query_spec.rb +86 -21
- data/spec/rake_tasks.rb +85 -16
- data/spec/schema_definition_spec.rb +0 -235
- data/spec/spec_helper.rb +317 -75
- data/spec/support/data/customers.csv +111 -111
- data/spec/support/data/promotions.csv +11 -0
- data/spec/support/data/sales.csv +101 -101
- data/spec/support/data/warehouse.csv +101 -0
- data/spec/support/matchers/be_like.rb +1 -0
- metadata +36 -73
- data/lib/mondrian/jars/log4j-1.2.17.jar +0 -0
- data/lib/mondrian/jars/log4j.properties +0 -3
- data/lib/mondrian/jars/mondrian-9.1.0.0.jar +0 -0
@@ -1,5 +1,5 @@
|
|
1
|
-
id,country,state_province,city,fname,lname,fullname,gender,description
|
2
|
-
1,Canada,BC,Burnaby,First1,Last1,First1 Last1,F,"1234567890
|
1
|
+
id,country,state_province,city,fname,lname,fullname,gender,birthdate,promotion_id,related_fullname,description
|
2
|
+
1,Canada,BC,Burnaby,First1,Last1,First1 Last1,F,1970-01-02,2,First1 Last1,"1234567890
|
3
3
|
1234567890
|
4
4
|
1234567890
|
5
5
|
1234567890
|
@@ -99,7 +99,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
99
99
|
1234567890
|
100
100
|
1234567890
|
101
101
|
1234567890"
|
102
|
-
2,Canada,BC,Cliffside,First2,Last2,First2 Last2,M,"1234567890
|
102
|
+
2,Canada,BC,Cliffside,First2,Last2,First2 Last2,M,1970-01-03,3,First2 Last2,"1234567890
|
103
103
|
1234567890
|
104
104
|
1234567890
|
105
105
|
1234567890
|
@@ -199,7 +199,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
199
199
|
1234567890
|
200
200
|
1234567890
|
201
201
|
1234567890"
|
202
|
-
3,Canada,BC,Haney,First3,Last3,First3 Last3,F,"1234567890
|
202
|
+
3,Canada,BC,Haney,First3,Last3,First3 Last3,F,1970-01-04,4,First3 Last3,"1234567890
|
203
203
|
1234567890
|
204
204
|
1234567890
|
205
205
|
1234567890
|
@@ -299,7 +299,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
299
299
|
1234567890
|
300
300
|
1234567890
|
301
301
|
1234567890"
|
302
|
-
4,Canada,BC,Ladner,First4,Last4,First4 Last4,M,"1234567890
|
302
|
+
4,Canada,BC,Ladner,First4,Last4,First4 Last4,M,1970-01-05,5,First4 Last4,"1234567890
|
303
303
|
1234567890
|
304
304
|
1234567890
|
305
305
|
1234567890
|
@@ -399,7 +399,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
399
399
|
1234567890
|
400
400
|
1234567890
|
401
401
|
1234567890"
|
402
|
-
5,Canada,BC,Langford,First5,Last5,First5 Last5,F,"1234567890
|
402
|
+
5,Canada,BC,Langford,First5,Last5,First5 Last5,F,1970-01-06,6,First5 Last5,"1234567890
|
403
403
|
1234567890
|
404
404
|
1234567890
|
405
405
|
1234567890
|
@@ -499,7 +499,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
499
499
|
1234567890
|
500
500
|
1234567890
|
501
501
|
1234567890"
|
502
|
-
6,Canada,BC,Langley,First6,Last6,First6 Last6,M,"1234567890
|
502
|
+
6,Canada,BC,Langley,First6,Last6,First6 Last6,M,1970-01-07,7,First6 Last6,"1234567890
|
503
503
|
1234567890
|
504
504
|
1234567890
|
505
505
|
1234567890
|
@@ -599,7 +599,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
599
599
|
1234567890
|
600
600
|
1234567890
|
601
601
|
1234567890"
|
602
|
-
7,Canada,BC,Metchosin,First7,Last7,First7 Last7,F,"1234567890
|
602
|
+
7,Canada,BC,Metchosin,First7,Last7,First7 Last7,F,1970-01-08,8,First7 Last7,"1234567890
|
603
603
|
1234567890
|
604
604
|
1234567890
|
605
605
|
1234567890
|
@@ -699,7 +699,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
699
699
|
1234567890
|
700
700
|
1234567890
|
701
701
|
1234567890"
|
702
|
-
8,Canada,BC,N. Vancouver,First8,Last8,First8 Last8,M,"1234567890
|
702
|
+
8,Canada,BC,N. Vancouver,First8,Last8,First8 Last8,M,1970-01-09,9,First8 Last8,"1234567890
|
703
703
|
1234567890
|
704
704
|
1234567890
|
705
705
|
1234567890
|
@@ -799,7 +799,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
799
799
|
1234567890
|
800
800
|
1234567890
|
801
801
|
1234567890"
|
802
|
-
9,Canada,BC,Newton,First9,Last9,First9 Last9,F,"1234567890
|
802
|
+
9,Canada,BC,Newton,First9,Last9,First9 Last9,F,1970-01-10,10,First9 Last9,"1234567890
|
803
803
|
1234567890
|
804
804
|
1234567890
|
805
805
|
1234567890
|
@@ -899,7 +899,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
899
899
|
1234567890
|
900
900
|
1234567890
|
901
901
|
1234567890"
|
902
|
-
10,Canada,BC,Oak Bay,First10,Last10,First10 Last10,M,"1234567890
|
902
|
+
10,Canada,BC,Oak Bay,First10,Last10,First10 Last10,M,1970-01-11,1,First10 Last10,"1234567890
|
903
903
|
1234567890
|
904
904
|
1234567890
|
905
905
|
1234567890
|
@@ -999,7 +999,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
999
999
|
1234567890
|
1000
1000
|
1234567890
|
1001
1001
|
1234567890"
|
1002
|
-
11,Canada,BC,Port Hammond,First11,Last11,First11 Last11,F,"1234567890
|
1002
|
+
11,Canada,BC,Port Hammond,First11,Last11,First11 Last11,F,1970-01-12,2,First11 Last11,"1234567890
|
1003
1003
|
1234567890
|
1004
1004
|
1234567890
|
1005
1005
|
1234567890
|
@@ -1099,7 +1099,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
1099
1099
|
1234567890
|
1100
1100
|
1234567890
|
1101
1101
|
1234567890"
|
1102
|
-
12,Canada,BC,Richmond,First12,Last12,First12 Last12,M,"1234567890
|
1102
|
+
12,Canada,BC,Richmond,First12,Last12,First12 Last12,M,1970-01-13,3,First12 Last12,"1234567890
|
1103
1103
|
1234567890
|
1104
1104
|
1234567890
|
1105
1105
|
1234567890
|
@@ -1199,7 +1199,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
1199
1199
|
1234567890
|
1200
1200
|
1234567890
|
1201
1201
|
1234567890"
|
1202
|
-
13,Canada,BC,Royal Oak,First13,Last13,First13 Last13,F,"1234567890
|
1202
|
+
13,Canada,BC,Royal Oak,First13,Last13,First13 Last13,F,1970-01-14,4,First13 Last13,"1234567890
|
1203
1203
|
1234567890
|
1204
1204
|
1234567890
|
1205
1205
|
1234567890
|
@@ -1299,7 +1299,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
1299
1299
|
1234567890
|
1300
1300
|
1234567890
|
1301
1301
|
1234567890"
|
1302
|
-
14,Canada,BC,Shawnee,First14,Last14,First14 Last14,M,"1234567890
|
1302
|
+
14,Canada,BC,Shawnee,First14,Last14,First14 Last14,M,1970-01-15,5,First14 Last14,"1234567890
|
1303
1303
|
1234567890
|
1304
1304
|
1234567890
|
1305
1305
|
1234567890
|
@@ -1399,7 +1399,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
1399
1399
|
1234567890
|
1400
1400
|
1234567890
|
1401
1401
|
1234567890"
|
1402
|
-
15,Canada,BC,Sooke,First15,Last15,First15 Last15,F,"1234567890
|
1402
|
+
15,Canada,BC,Sooke,First15,Last15,First15 Last15,F,1970-01-16,6,First15 Last15,"1234567890
|
1403
1403
|
1234567890
|
1404
1404
|
1234567890
|
1405
1405
|
1234567890
|
@@ -1499,7 +1499,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
1499
1499
|
1234567890
|
1500
1500
|
1234567890
|
1501
1501
|
1234567890"
|
1502
|
-
16,Canada,BC,Vancouver,First16,Last16,First16 Last16,M,"1234567890
|
1502
|
+
16,Canada,BC,Vancouver,First16,Last16,First16 Last16,M,1970-01-17,7,First16 Last16,"1234567890
|
1503
1503
|
1234567890
|
1504
1504
|
1234567890
|
1505
1505
|
1234567890
|
@@ -1599,7 +1599,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
1599
1599
|
1234567890
|
1600
1600
|
1234567890
|
1601
1601
|
1234567890"
|
1602
|
-
17,Canada,BC,Victoria,First17,Last17,First17 Last17,F,"1234567890
|
1602
|
+
17,Canada,BC,Victoria,First17,Last17,First17 Last17,F,1970-01-18,8,First17 Last17,"1234567890
|
1603
1603
|
1234567890
|
1604
1604
|
1234567890
|
1605
1605
|
1234567890
|
@@ -1699,7 +1699,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
1699
1699
|
1234567890
|
1700
1700
|
1234567890
|
1701
1701
|
1234567890"
|
1702
|
-
18,Canada,BC,Westminster,First18,Last18,First18 Last18,M,"1234567890
|
1702
|
+
18,Canada,BC,Westminster,First18,Last18,First18 Last18,M,1970-01-19,9,First18 Last18,"1234567890
|
1703
1703
|
1234567890
|
1704
1704
|
1234567890
|
1705
1705
|
1234567890
|
@@ -1799,7 +1799,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
1799
1799
|
1234567890
|
1800
1800
|
1234567890
|
1801
1801
|
1234567890"
|
1802
|
-
19,Mexico,DF,San Andres,First19,Last19,First19 Last19,F,"1234567890
|
1802
|
+
19,Mexico,DF,San Andres,First19,Last19,First19 Last19,F,1970-01-20,10,First19 Last19,"1234567890
|
1803
1803
|
1234567890
|
1804
1804
|
1234567890
|
1805
1805
|
1234567890
|
@@ -1899,7 +1899,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
1899
1899
|
1234567890
|
1900
1900
|
1234567890
|
1901
1901
|
1234567890"
|
1902
|
-
20,Mexico,DF,Santa Anita,First20,Last20,First20 Last20,M,"1234567890
|
1902
|
+
20,Mexico,DF,Santa Anita,First20,Last20,First20 Last20,M,1970-01-21,1,First20 Last20,"1234567890
|
1903
1903
|
1234567890
|
1904
1904
|
1234567890
|
1905
1905
|
1234567890
|
@@ -1999,7 +1999,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
1999
1999
|
1234567890
|
2000
2000
|
1234567890
|
2001
2001
|
1234567890"
|
2002
|
-
21,Mexico,DF,Santa Fe,First21,Last21,First21 Last21,F,"1234567890
|
2002
|
+
21,Mexico,DF,Santa Fe,First21,Last21,First21 Last21,F,1970-01-22,2,First21 Last21,"1234567890
|
2003
2003
|
1234567890
|
2004
2004
|
1234567890
|
2005
2005
|
1234567890
|
@@ -2099,7 +2099,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
2099
2099
|
1234567890
|
2100
2100
|
1234567890
|
2101
2101
|
1234567890"
|
2102
|
-
22,Mexico,DF,Tixapan,First22,Last22,First22 Last22,M,"1234567890
|
2102
|
+
22,Mexico,DF,Tixapan,First22,Last22,First22 Last22,M,1970-01-23,3,First22 Last22,"1234567890
|
2103
2103
|
1234567890
|
2104
2104
|
1234567890
|
2105
2105
|
1234567890
|
@@ -2199,7 +2199,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
2199
2199
|
1234567890
|
2200
2200
|
1234567890
|
2201
2201
|
1234567890"
|
2202
|
-
23,Mexico,Guerrero,Acapulco,First23,Last23,First23 Last23,F,"1234567890
|
2202
|
+
23,Mexico,Guerrero,Acapulco,First23,Last23,First23 Last23,F,1970-01-24,4,First23 Last23,"1234567890
|
2203
2203
|
1234567890
|
2204
2204
|
1234567890
|
2205
2205
|
1234567890
|
@@ -2299,7 +2299,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
2299
2299
|
1234567890
|
2300
2300
|
1234567890
|
2301
2301
|
1234567890"
|
2302
|
-
24,Mexico,Jalisco,Guadalajara,First24,Last24,First24 Last24,M,"1234567890
|
2302
|
+
24,Mexico,Jalisco,Guadalajara,First24,Last24,First24 Last24,M,1970-01-25,5,First24 Last24,"1234567890
|
2303
2303
|
1234567890
|
2304
2304
|
1234567890
|
2305
2305
|
1234567890
|
@@ -2399,7 +2399,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
2399
2399
|
1234567890
|
2400
2400
|
1234567890
|
2401
2401
|
1234567890"
|
2402
|
-
25,Mexico,Mexico,Mexico City,First25,Last25,First25 Last25,F,"1234567890
|
2402
|
+
25,Mexico,Mexico,Mexico City,First25,Last25,First25 Last25,F,1970-01-26,6,First25 Last25,"1234567890
|
2403
2403
|
1234567890
|
2404
2404
|
1234567890
|
2405
2405
|
1234567890
|
@@ -2499,7 +2499,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
2499
2499
|
1234567890
|
2500
2500
|
1234567890
|
2501
2501
|
1234567890"
|
2502
|
-
26,Mexico,Oaxaca,Tlaxiaco,First26,Last26,First26 Last26,M,"1234567890
|
2502
|
+
26,Mexico,Oaxaca,Tlaxiaco,First26,Last26,First26 Last26,M,1970-01-27,7,First26 Last26,"1234567890
|
2503
2503
|
1234567890
|
2504
2504
|
1234567890
|
2505
2505
|
1234567890
|
@@ -2599,7 +2599,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
2599
2599
|
1234567890
|
2600
2600
|
1234567890
|
2601
2601
|
1234567890"
|
2602
|
-
27,Mexico,Sinaloa,La Cruz,First27,Last27,First27 Last27,F,"1234567890
|
2602
|
+
27,Mexico,Sinaloa,La Cruz,First27,Last27,First27 Last27,F,1970-01-28,8,First27 Last27,"1234567890
|
2603
2603
|
1234567890
|
2604
2604
|
1234567890
|
2605
2605
|
1234567890
|
@@ -2699,7 +2699,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
2699
2699
|
1234567890
|
2700
2700
|
1234567890
|
2701
2701
|
1234567890"
|
2702
|
-
28,Mexico,Veracruz,Orizaba,First28,Last28,First28 Last28,M,"1234567890
|
2702
|
+
28,Mexico,Veracruz,Orizaba,First28,Last28,First28 Last28,M,1970-01-29,9,First28 Last28,"1234567890
|
2703
2703
|
1234567890
|
2704
2704
|
1234567890
|
2705
2705
|
1234567890
|
@@ -2799,7 +2799,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
2799
2799
|
1234567890
|
2800
2800
|
1234567890
|
2801
2801
|
1234567890"
|
2802
|
-
29,Mexico,Yucatan,Merida,First29,Last29,First29 Last29,F,"1234567890
|
2802
|
+
29,Mexico,Yucatan,Merida,First29,Last29,First29 Last29,F,1970-01-30,10,First29 Last29,"1234567890
|
2803
2803
|
1234567890
|
2804
2804
|
1234567890
|
2805
2805
|
1234567890
|
@@ -2899,7 +2899,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
2899
2899
|
1234567890
|
2900
2900
|
1234567890
|
2901
2901
|
1234567890"
|
2902
|
-
30,Mexico,Zacatecas,Camacho,First30,Last30,First30 Last30,M,"1234567890
|
2902
|
+
30,Mexico,Zacatecas,Camacho,First30,Last30,First30 Last30,M,1970-01-31,1,First30 Last30,"1234567890
|
2903
2903
|
1234567890
|
2904
2904
|
1234567890
|
2905
2905
|
1234567890
|
@@ -2999,7 +2999,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
2999
2999
|
1234567890
|
3000
3000
|
1234567890
|
3001
3001
|
1234567890"
|
3002
|
-
31,Mexico,Zacatecas,Hidalgo,First31,Last31,First31 Last31,F,"1234567890
|
3002
|
+
31,Mexico,Zacatecas,Hidalgo,First31,Last31,First31 Last31,F,1970-02-01,2,First31 Last31,"1234567890
|
3003
3003
|
1234567890
|
3004
3004
|
1234567890
|
3005
3005
|
1234567890
|
@@ -3099,7 +3099,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
3099
3099
|
1234567890
|
3100
3100
|
1234567890
|
3101
3101
|
1234567890"
|
3102
|
-
32,USA,CA,Altadena,First32,Last32,First32 Last32,M,"1234567890
|
3102
|
+
32,USA,CA,Altadena,First32,Last32,First32 Last32,M,1970-02-02,3,First32 Last32,"1234567890
|
3103
3103
|
1234567890
|
3104
3104
|
1234567890
|
3105
3105
|
1234567890
|
@@ -3199,7 +3199,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
3199
3199
|
1234567890
|
3200
3200
|
1234567890
|
3201
3201
|
1234567890"
|
3202
|
-
33,USA,CA,Arcadia,First33,Last33,First33 Last33,F,"1234567890
|
3202
|
+
33,USA,CA,Arcadia,First33,Last33,First33 Last33,F,1970-02-03,4,First33 Last33,"1234567890
|
3203
3203
|
1234567890
|
3204
3204
|
1234567890
|
3205
3205
|
1234567890
|
@@ -3299,7 +3299,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
3299
3299
|
1234567890
|
3300
3300
|
1234567890
|
3301
3301
|
1234567890"
|
3302
|
-
34,USA,CA,Bellflower,First34,Last34,First34 Last34,M,"1234567890
|
3302
|
+
34,USA,CA,Bellflower,First34,Last34,First34 Last34,M,1970-02-04,5,First34 Last34,"1234567890
|
3303
3303
|
1234567890
|
3304
3304
|
1234567890
|
3305
3305
|
1234567890
|
@@ -3399,7 +3399,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
3399
3399
|
1234567890
|
3400
3400
|
1234567890
|
3401
3401
|
1234567890"
|
3402
|
-
35,USA,CA,Berkeley,First35,Last35,First35 Last35,F,"1234567890
|
3402
|
+
35,USA,CA,Berkeley,First35,Last35,First35 Last35,F,1970-02-05,6,First35 Last35,"1234567890
|
3403
3403
|
1234567890
|
3404
3404
|
1234567890
|
3405
3405
|
1234567890
|
@@ -3499,7 +3499,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
3499
3499
|
1234567890
|
3500
3500
|
1234567890
|
3501
3501
|
1234567890"
|
3502
|
-
36,USA,CA,Beverly Hills,First36,Last36,First36 Last36,M,"1234567890
|
3502
|
+
36,USA,CA,Beverly Hills,First36,Last36,First36 Last36,M,1970-02-06,7,First36 Last36,"1234567890
|
3503
3503
|
1234567890
|
3504
3504
|
1234567890
|
3505
3505
|
1234567890
|
@@ -3599,7 +3599,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
3599
3599
|
1234567890
|
3600
3600
|
1234567890
|
3601
3601
|
1234567890"
|
3602
|
-
37,USA,CA,Burbank,First37,Last37,First37 Last37,F,"1234567890
|
3602
|
+
37,USA,CA,Burbank,First37,Last37,First37 Last37,F,1970-02-07,8,First37 Last37,"1234567890
|
3603
3603
|
1234567890
|
3604
3604
|
1234567890
|
3605
3605
|
1234567890
|
@@ -3699,7 +3699,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
3699
3699
|
1234567890
|
3700
3700
|
1234567890
|
3701
3701
|
1234567890"
|
3702
|
-
38,USA,CA,Burlingame,First38,Last38,First38 Last38,M,"1234567890
|
3702
|
+
38,USA,CA,Burlingame,First38,Last38,First38 Last38,M,1970-02-08,9,First38 Last38,"1234567890
|
3703
3703
|
1234567890
|
3704
3704
|
1234567890
|
3705
3705
|
1234567890
|
@@ -3799,7 +3799,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
3799
3799
|
1234567890
|
3800
3800
|
1234567890
|
3801
3801
|
1234567890"
|
3802
|
-
39,USA,CA,Chula Vista,First39,Last39,First39 Last39,F,"1234567890
|
3802
|
+
39,USA,CA,Chula Vista,First39,Last39,First39 Last39,F,1970-02-09,10,First39 Last39,"1234567890
|
3803
3803
|
1234567890
|
3804
3804
|
1234567890
|
3805
3805
|
1234567890
|
@@ -3899,7 +3899,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
3899
3899
|
1234567890
|
3900
3900
|
1234567890
|
3901
3901
|
1234567890"
|
3902
|
-
40,USA,CA,Colma,First40,Last40,First40 Last40,M,"1234567890
|
3902
|
+
40,USA,CA,Colma,First40,Last40,First40 Last40,M,1970-02-10,1,First40 Last40,"1234567890
|
3903
3903
|
1234567890
|
3904
3904
|
1234567890
|
3905
3905
|
1234567890
|
@@ -3999,7 +3999,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
3999
3999
|
1234567890
|
4000
4000
|
1234567890
|
4001
4001
|
1234567890"
|
4002
|
-
41,USA,CA,Concord,First41,Last41,First41 Last41,F,"1234567890
|
4002
|
+
41,USA,CA,Concord,First41,Last41,First41 Last41,F,1970-02-11,2,First41 Last41,"1234567890
|
4003
4003
|
1234567890
|
4004
4004
|
1234567890
|
4005
4005
|
1234567890
|
@@ -4099,7 +4099,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
4099
4099
|
1234567890
|
4100
4100
|
1234567890
|
4101
4101
|
1234567890"
|
4102
|
-
42,USA,CA,Coronado,First42,Last42,First42 Last42,M,"1234567890
|
4102
|
+
42,USA,CA,Coronado,First42,Last42,First42 Last42,M,1970-02-12,3,First42 Last42,"1234567890
|
4103
4103
|
1234567890
|
4104
4104
|
1234567890
|
4105
4105
|
1234567890
|
@@ -4199,7 +4199,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
4199
4199
|
1234567890
|
4200
4200
|
1234567890
|
4201
4201
|
1234567890"
|
4202
|
-
43,USA,CA,Daly City,First43,Last43,First43 Last43,F,"1234567890
|
4202
|
+
43,USA,CA,Daly City,First43,Last43,First43 Last43,F,1970-02-13,4,First43 Last43,"1234567890
|
4203
4203
|
1234567890
|
4204
4204
|
1234567890
|
4205
4205
|
1234567890
|
@@ -4299,7 +4299,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
4299
4299
|
1234567890
|
4300
4300
|
1234567890
|
4301
4301
|
1234567890"
|
4302
|
-
44,USA,CA,Downey,First44,Last44,First44 Last44,M,"1234567890
|
4302
|
+
44,USA,CA,Downey,First44,Last44,First44 Last44,M,1970-02-14,5,First44 Last44,"1234567890
|
4303
4303
|
1234567890
|
4304
4304
|
1234567890
|
4305
4305
|
1234567890
|
@@ -4399,7 +4399,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
4399
4399
|
1234567890
|
4400
4400
|
1234567890
|
4401
4401
|
1234567890"
|
4402
|
-
45,USA,CA,El Cajon,First45,Last45,First45 Last45,F,"1234567890
|
4402
|
+
45,USA,CA,El Cajon,First45,Last45,First45 Last45,F,1970-02-15,6,First45 Last45,"1234567890
|
4403
4403
|
1234567890
|
4404
4404
|
1234567890
|
4405
4405
|
1234567890
|
@@ -4499,7 +4499,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
4499
4499
|
1234567890
|
4500
4500
|
1234567890
|
4501
4501
|
1234567890"
|
4502
|
-
46,USA,CA,Fremont,First46,Last46,First46 Last46,M,"1234567890
|
4502
|
+
46,USA,CA,Fremont,First46,Last46,First46 Last46,M,1970-02-16,7,First46 Last46,"1234567890
|
4503
4503
|
1234567890
|
4504
4504
|
1234567890
|
4505
4505
|
1234567890
|
@@ -4599,7 +4599,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
4599
4599
|
1234567890
|
4600
4600
|
1234567890
|
4601
4601
|
1234567890"
|
4602
|
-
47,USA,CA,Glendale,First47,Last47,First47 Last47,F,"1234567890
|
4602
|
+
47,USA,CA,Glendale,First47,Last47,First47 Last47,F,1970-02-17,8,First47 Last47,"1234567890
|
4603
4603
|
1234567890
|
4604
4604
|
1234567890
|
4605
4605
|
1234567890
|
@@ -4699,7 +4699,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
4699
4699
|
1234567890
|
4700
4700
|
1234567890
|
4701
4701
|
1234567890"
|
4702
|
-
48,USA,CA,Grossmont,First48,Last48,First48 Last48,M,"1234567890
|
4702
|
+
48,USA,CA,Grossmont,First48,Last48,First48 Last48,M,1970-02-18,9,First48 Last48,"1234567890
|
4703
4703
|
1234567890
|
4704
4704
|
1234567890
|
4705
4705
|
1234567890
|
@@ -4799,7 +4799,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
4799
4799
|
1234567890
|
4800
4800
|
1234567890
|
4801
4801
|
1234567890"
|
4802
|
-
49,USA,CA,Imperial Beach,First49,Last49,First49 Last49,F,"1234567890
|
4802
|
+
49,USA,CA,Imperial Beach,First49,Last49,First49 Last49,F,1970-02-19,10,First49 Last49,"1234567890
|
4803
4803
|
1234567890
|
4804
4804
|
1234567890
|
4805
4805
|
1234567890
|
@@ -4899,7 +4899,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
4899
4899
|
1234567890
|
4900
4900
|
1234567890
|
4901
4901
|
1234567890"
|
4902
|
-
50,USA,CA,La Jolla,First50,Last50,First50 Last50,M,"1234567890
|
4902
|
+
50,USA,CA,La Jolla,First50,Last50,First50 Last50,M,1970-02-20,1,First50 Last50,"1234567890
|
4903
4903
|
1234567890
|
4904
4904
|
1234567890
|
4905
4905
|
1234567890
|
@@ -4999,7 +4999,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
4999
4999
|
1234567890
|
5000
5000
|
1234567890
|
5001
5001
|
1234567890"
|
5002
|
-
51,USA,CA,La Mesa,First51,Last51,First51 Last51,F,"1234567890
|
5002
|
+
51,USA,CA,La Mesa,First51,Last51,First51 Last51,F,1970-02-21,2,First51 Last51,"1234567890
|
5003
5003
|
1234567890
|
5004
5004
|
1234567890
|
5005
5005
|
1234567890
|
@@ -5099,7 +5099,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
5099
5099
|
1234567890
|
5100
5100
|
1234567890
|
5101
5101
|
1234567890"
|
5102
|
-
52,USA,CA,Lakewood,First52,Last52,First52 Last52,M,"1234567890
|
5102
|
+
52,USA,CA,Lakewood,First52,Last52,First52 Last52,M,1970-02-22,3,First52 Last52,"1234567890
|
5103
5103
|
1234567890
|
5104
5104
|
1234567890
|
5105
5105
|
1234567890
|
@@ -5199,7 +5199,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
5199
5199
|
1234567890
|
5200
5200
|
1234567890
|
5201
5201
|
1234567890"
|
5202
|
-
53,USA,CA,Lemon Grove,First53,Last53,First53 Last53,F,"1234567890
|
5202
|
+
53,USA,CA,Lemon Grove,First53,Last53,First53 Last53,F,1970-02-23,4,First53 Last53,"1234567890
|
5203
5203
|
1234567890
|
5204
5204
|
1234567890
|
5205
5205
|
1234567890
|
@@ -5299,7 +5299,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
5299
5299
|
1234567890
|
5300
5300
|
1234567890
|
5301
5301
|
1234567890"
|
5302
|
-
54,USA,CA,Lincoln Acres,First54,Last54,First54 Last54,M,"1234567890
|
5302
|
+
54,USA,CA,Lincoln Acres,First54,Last54,First54 Last54,M,1970-02-24,5,First54 Last54,"1234567890
|
5303
5303
|
1234567890
|
5304
5304
|
1234567890
|
5305
5305
|
1234567890
|
@@ -5399,7 +5399,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
5399
5399
|
1234567890
|
5400
5400
|
1234567890
|
5401
5401
|
1234567890"
|
5402
|
-
55,USA,CA,Long Beach,First55,Last55,First55 Last55,F,"1234567890
|
5402
|
+
55,USA,CA,Long Beach,First55,Last55,First55 Last55,F,1970-02-25,6,First55 Last55,"1234567890
|
5403
5403
|
1234567890
|
5404
5404
|
1234567890
|
5405
5405
|
1234567890
|
@@ -5499,7 +5499,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
5499
5499
|
1234567890
|
5500
5500
|
1234567890
|
5501
5501
|
1234567890"
|
5502
|
-
56,USA,CA,Los Angeles,First56,Last56,First56 Last56,M,"1234567890
|
5502
|
+
56,USA,CA,Los Angeles,First56,Last56,First56 Last56,M,1970-02-26,7,First56 Last56,"1234567890
|
5503
5503
|
1234567890
|
5504
5504
|
1234567890
|
5505
5505
|
1234567890
|
@@ -5599,7 +5599,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
5599
5599
|
1234567890
|
5600
5600
|
1234567890
|
5601
5601
|
1234567890"
|
5602
|
-
57,USA,CA,Mill Valley,First57,Last57,First57 Last57,F,"1234567890
|
5602
|
+
57,USA,CA,Mill Valley,First57,Last57,First57 Last57,F,1970-02-27,8,First57 Last57,"1234567890
|
5603
5603
|
1234567890
|
5604
5604
|
1234567890
|
5605
5605
|
1234567890
|
@@ -5699,7 +5699,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
5699
5699
|
1234567890
|
5700
5700
|
1234567890
|
5701
5701
|
1234567890"
|
5702
|
-
58,USA,CA,National City,First58,Last58,First58 Last58,M,"1234567890
|
5702
|
+
58,USA,CA,National City,First58,Last58,First58 Last58,M,1970-02-28,9,First58 Last58,"1234567890
|
5703
5703
|
1234567890
|
5704
5704
|
1234567890
|
5705
5705
|
1234567890
|
@@ -5799,7 +5799,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
5799
5799
|
1234567890
|
5800
5800
|
1234567890
|
5801
5801
|
1234567890"
|
5802
|
-
59,USA,CA,Newport Beach,First59,Last59,First59 Last59,F,"1234567890
|
5802
|
+
59,USA,CA,Newport Beach,First59,Last59,First59 Last59,F,1970-03-01,10,First59 Last59,"1234567890
|
5803
5803
|
1234567890
|
5804
5804
|
1234567890
|
5805
5805
|
1234567890
|
@@ -5899,7 +5899,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
5899
5899
|
1234567890
|
5900
5900
|
1234567890
|
5901
5901
|
1234567890"
|
5902
|
-
60,USA,CA,Novato,First60,Last60,First60 Last60,M,"1234567890
|
5902
|
+
60,USA,CA,Novato,First60,Last60,First60 Last60,M,1970-03-02,1,First60 Last60,"1234567890
|
5903
5903
|
1234567890
|
5904
5904
|
1234567890
|
5905
5905
|
1234567890
|
@@ -5999,7 +5999,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
5999
5999
|
1234567890
|
6000
6000
|
1234567890
|
6001
6001
|
1234567890"
|
6002
|
-
61,USA,CA,Oakland,First61,Last61,First61 Last61,F,"1234567890
|
6002
|
+
61,USA,CA,Oakland,First61,Last61,First61 Last61,F,1970-03-03,2,First61 Last61,"1234567890
|
6003
6003
|
1234567890
|
6004
6004
|
1234567890
|
6005
6005
|
1234567890
|
@@ -6099,7 +6099,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
6099
6099
|
1234567890
|
6100
6100
|
1234567890
|
6101
6101
|
1234567890"
|
6102
|
-
62,USA,CA,Palo Alto,First62,Last62,First62 Last62,M,"1234567890
|
6102
|
+
62,USA,CA,Palo Alto,First62,Last62,First62 Last62,M,1970-03-04,3,First62 Last62,"1234567890
|
6103
6103
|
1234567890
|
6104
6104
|
1234567890
|
6105
6105
|
1234567890
|
@@ -6199,7 +6199,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
6199
6199
|
1234567890
|
6200
6200
|
1234567890
|
6201
6201
|
1234567890"
|
6202
|
-
63,USA,CA,Pomona,First63,Last63,First63 Last63,F,"1234567890
|
6202
|
+
63,USA,CA,Pomona,First63,Last63,First63 Last63,F,1970-03-05,4,First63 Last63,"1234567890
|
6203
6203
|
1234567890
|
6204
6204
|
1234567890
|
6205
6205
|
1234567890
|
@@ -6299,7 +6299,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
6299
6299
|
1234567890
|
6300
6300
|
1234567890
|
6301
6301
|
1234567890"
|
6302
|
-
64,USA,CA,Redwood City,First64,Last64,First64 Last64,M,"1234567890
|
6302
|
+
64,USA,CA,Redwood City,First64,Last64,First64 Last64,M,1970-03-06,5,First64 Last64,"1234567890
|
6303
6303
|
1234567890
|
6304
6304
|
1234567890
|
6305
6305
|
1234567890
|
@@ -6399,7 +6399,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
6399
6399
|
1234567890
|
6400
6400
|
1234567890
|
6401
6401
|
1234567890"
|
6402
|
-
65,USA,CA,Richmond,First65,Last65,First65 Last65,F,"1234567890
|
6402
|
+
65,USA,CA,Richmond,First65,Last65,First65 Last65,F,1970-03-07,6,First65 Last65,"1234567890
|
6403
6403
|
1234567890
|
6404
6404
|
1234567890
|
6405
6405
|
1234567890
|
@@ -6499,7 +6499,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
6499
6499
|
1234567890
|
6500
6500
|
1234567890
|
6501
6501
|
1234567890"
|
6502
|
-
66,USA,CA,San Carlos,First66,Last66,First66 Last66,M,"1234567890
|
6502
|
+
66,USA,CA,San Carlos,First66,Last66,First66 Last66,M,1970-03-08,7,First66 Last66,"1234567890
|
6503
6503
|
1234567890
|
6504
6504
|
1234567890
|
6505
6505
|
1234567890
|
@@ -6599,7 +6599,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
6599
6599
|
1234567890
|
6600
6600
|
1234567890
|
6601
6601
|
1234567890"
|
6602
|
-
67,USA,CA,San Diego,First67,Last67,First67 Last67,F,"1234567890
|
6602
|
+
67,USA,CA,San Diego,First67,Last67,First67 Last67,F,1970-03-09,8,First67 Last67,"1234567890
|
6603
6603
|
1234567890
|
6604
6604
|
1234567890
|
6605
6605
|
1234567890
|
@@ -6699,7 +6699,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
6699
6699
|
1234567890
|
6700
6700
|
1234567890
|
6701
6701
|
1234567890"
|
6702
|
-
68,USA,CA,San Francisco,First68,Last68,First68 Last68,M,"1234567890
|
6702
|
+
68,USA,CA,San Francisco,First68,Last68,First68 Last68,M,1970-03-10,9,First68 Last68,"1234567890
|
6703
6703
|
1234567890
|
6704
6704
|
1234567890
|
6705
6705
|
1234567890
|
@@ -6799,7 +6799,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
6799
6799
|
1234567890
|
6800
6800
|
1234567890
|
6801
6801
|
1234567890"
|
6802
|
-
69,USA,CA,San Gabriel,First69,Last69,First69 Last69,F,"1234567890
|
6802
|
+
69,USA,CA,San Gabriel,First69,Last69,First69 Last69,F,1970-03-11,10,First69 Last69,"1234567890
|
6803
6803
|
1234567890
|
6804
6804
|
1234567890
|
6805
6805
|
1234567890
|
@@ -6899,7 +6899,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
6899
6899
|
1234567890
|
6900
6900
|
1234567890
|
6901
6901
|
1234567890"
|
6902
|
-
70,USA,CA,San Jose,First70,Last70,First70 Last70,M,"1234567890
|
6902
|
+
70,USA,CA,San Jose,First70,Last70,First70 Last70,M,1970-03-12,1,First70 Last70,"1234567890
|
6903
6903
|
1234567890
|
6904
6904
|
1234567890
|
6905
6905
|
1234567890
|
@@ -6999,7 +6999,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
6999
6999
|
1234567890
|
7000
7000
|
1234567890
|
7001
7001
|
1234567890"
|
7002
|
-
71,USA,CA,Santa Cruz,First71,Last71,First71 Last71,F,"1234567890
|
7002
|
+
71,USA,CA,Santa Cruz,First71,Last71,First71 Last71,F,1970-03-13,2,First71 Last71,"1234567890
|
7003
7003
|
1234567890
|
7004
7004
|
1234567890
|
7005
7005
|
1234567890
|
@@ -7099,7 +7099,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
7099
7099
|
1234567890
|
7100
7100
|
1234567890
|
7101
7101
|
1234567890"
|
7102
|
-
72,USA,CA,Santa Monica,First72,Last72,First72 Last72,M,"1234567890
|
7102
|
+
72,USA,CA,Santa Monica,First72,Last72,First72 Last72,M,1970-03-14,3,First72 Last72,"1234567890
|
7103
7103
|
1234567890
|
7104
7104
|
1234567890
|
7105
7105
|
1234567890
|
@@ -7199,7 +7199,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
7199
7199
|
1234567890
|
7200
7200
|
1234567890
|
7201
7201
|
1234567890"
|
7202
|
-
73,USA,CA,Spring Valley,First73,Last73,First73 Last73,F,"1234567890
|
7202
|
+
73,USA,CA,Spring Valley,First73,Last73,First73 Last73,F,1970-03-15,4,First73 Last73,"1234567890
|
7203
7203
|
1234567890
|
7204
7204
|
1234567890
|
7205
7205
|
1234567890
|
@@ -7299,7 +7299,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
7299
7299
|
1234567890
|
7300
7300
|
1234567890
|
7301
7301
|
1234567890"
|
7302
|
-
74,USA,CA,Torrance,First74,Last74,First74 Last74,M,"1234567890
|
7302
|
+
74,USA,CA,Torrance,First74,Last74,First74 Last74,M,1970-03-16,5,First74 Last74,"1234567890
|
7303
7303
|
1234567890
|
7304
7304
|
1234567890
|
7305
7305
|
1234567890
|
@@ -7399,7 +7399,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
7399
7399
|
1234567890
|
7400
7400
|
1234567890
|
7401
7401
|
1234567890"
|
7402
|
-
75,USA,CA,West Covina,First75,Last75,First75 Last75,F,"1234567890
|
7402
|
+
75,USA,CA,West Covina,First75,Last75,First75 Last75,F,1970-03-17,6,First75 Last75,"1234567890
|
7403
7403
|
1234567890
|
7404
7404
|
1234567890
|
7405
7405
|
1234567890
|
@@ -7499,7 +7499,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
7499
7499
|
1234567890
|
7500
7500
|
1234567890
|
7501
7501
|
1234567890"
|
7502
|
-
76,USA,CA,Woodland Hills,First76,Last76,First76 Last76,M,"1234567890
|
7502
|
+
76,USA,CA,Woodland Hills,First76,Last76,First76 Last76,M,1970-03-18,7,First76 Last76,"1234567890
|
7503
7503
|
1234567890
|
7504
7504
|
1234567890
|
7505
7505
|
1234567890
|
@@ -7599,7 +7599,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
7599
7599
|
1234567890
|
7600
7600
|
1234567890
|
7601
7601
|
1234567890"
|
7602
|
-
77,USA,OR,Albany,First77,Last77,First77 Last77,F,"1234567890
|
7602
|
+
77,USA,OR,Albany,First77,Last77,First77 Last77,F,1970-03-19,8,First77 Last77,"1234567890
|
7603
7603
|
1234567890
|
7604
7604
|
1234567890
|
7605
7605
|
1234567890
|
@@ -7699,7 +7699,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
7699
7699
|
1234567890
|
7700
7700
|
1234567890
|
7701
7701
|
1234567890"
|
7702
|
-
78,USA,OR,Beaverton,First78,Last78,First78 Last78,M,"1234567890
|
7702
|
+
78,USA,OR,Beaverton,First78,Last78,First78 Last78,M,1970-03-20,9,First78 Last78,"1234567890
|
7703
7703
|
1234567890
|
7704
7704
|
1234567890
|
7705
7705
|
1234567890
|
@@ -7799,7 +7799,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
7799
7799
|
1234567890
|
7800
7800
|
1234567890
|
7801
7801
|
1234567890"
|
7802
|
-
79,USA,OR,Corvallis,First79,Last79,First79 Last79,F,"1234567890
|
7802
|
+
79,USA,OR,Corvallis,First79,Last79,First79 Last79,F,1970-03-21,10,First79 Last79,"1234567890
|
7803
7803
|
1234567890
|
7804
7804
|
1234567890
|
7805
7805
|
1234567890
|
@@ -7899,7 +7899,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
7899
7899
|
1234567890
|
7900
7900
|
1234567890
|
7901
7901
|
1234567890"
|
7902
|
-
80,USA,OR,Lake Oswego,First80,Last80,First80 Last80,M,"1234567890
|
7902
|
+
80,USA,OR,Lake Oswego,First80,Last80,First80 Last80,M,1970-03-22,1,First80 Last80,"1234567890
|
7903
7903
|
1234567890
|
7904
7904
|
1234567890
|
7905
7905
|
1234567890
|
@@ -7999,7 +7999,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
7999
7999
|
1234567890
|
8000
8000
|
1234567890
|
8001
8001
|
1234567890"
|
8002
|
-
81,USA,OR,Lebanon,First81,Last81,First81 Last81,F,"1234567890
|
8002
|
+
81,USA,OR,Lebanon,First81,Last81,First81 Last81,F,1970-03-23,2,First81 Last81,"1234567890
|
8003
8003
|
1234567890
|
8004
8004
|
1234567890
|
8005
8005
|
1234567890
|
@@ -8099,7 +8099,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
8099
8099
|
1234567890
|
8100
8100
|
1234567890
|
8101
8101
|
1234567890"
|
8102
|
-
82,USA,OR,Milwaukie,First82,Last82,First82 Last82,M,"1234567890
|
8102
|
+
82,USA,OR,Milwaukie,First82,Last82,First82 Last82,M,1970-03-24,3,First82 Last82,"1234567890
|
8103
8103
|
1234567890
|
8104
8104
|
1234567890
|
8105
8105
|
1234567890
|
@@ -8199,7 +8199,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
8199
8199
|
1234567890
|
8200
8200
|
1234567890
|
8201
8201
|
1234567890"
|
8202
|
-
83,USA,OR,Oregon City,First83,Last83,First83 Last83,F,"1234567890
|
8202
|
+
83,USA,OR,Oregon City,First83,Last83,First83 Last83,F,1970-03-25,4,First83 Last83,"1234567890
|
8203
8203
|
1234567890
|
8204
8204
|
1234567890
|
8205
8205
|
1234567890
|
@@ -8299,7 +8299,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
8299
8299
|
1234567890
|
8300
8300
|
1234567890
|
8301
8301
|
1234567890"
|
8302
|
-
84,USA,OR,Portland,First84,Last84,First84 Last84,M,"1234567890
|
8302
|
+
84,USA,OR,Portland,First84,Last84,First84 Last84,M,1970-03-26,5,First84 Last84,"1234567890
|
8303
8303
|
1234567890
|
8304
8304
|
1234567890
|
8305
8305
|
1234567890
|
@@ -8399,7 +8399,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
8399
8399
|
1234567890
|
8400
8400
|
1234567890
|
8401
8401
|
1234567890"
|
8402
|
-
85,USA,OR,Salem,First85,Last85,First85 Last85,F,"1234567890
|
8402
|
+
85,USA,OR,Salem,First85,Last85,First85 Last85,F,1970-03-27,6,First85 Last85,"1234567890
|
8403
8403
|
1234567890
|
8404
8404
|
1234567890
|
8405
8405
|
1234567890
|
@@ -8499,7 +8499,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
8499
8499
|
1234567890
|
8500
8500
|
1234567890
|
8501
8501
|
1234567890"
|
8502
|
-
86,USA,OR,W. Linn,First86,Last86,First86 Last86,M,"1234567890
|
8502
|
+
86,USA,OR,W. Linn,First86,Last86,First86 Last86,M,1970-03-28,7,First86 Last86,"1234567890
|
8503
8503
|
1234567890
|
8504
8504
|
1234567890
|
8505
8505
|
1234567890
|
@@ -8599,7 +8599,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
8599
8599
|
1234567890
|
8600
8600
|
1234567890
|
8601
8601
|
1234567890"
|
8602
|
-
87,USA,OR,Woodburn,First87,Last87,First87 Last87,F,"1234567890
|
8602
|
+
87,USA,OR,Woodburn,First87,Last87,First87 Last87,F,1970-03-29,8,First87 Last87,"1234567890
|
8603
8603
|
1234567890
|
8604
8604
|
1234567890
|
8605
8605
|
1234567890
|
@@ -8699,7 +8699,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
8699
8699
|
1234567890
|
8700
8700
|
1234567890
|
8701
8701
|
1234567890"
|
8702
|
-
88,USA,WA,Anacortes,First88,Last88,First88 Last88,M,"1234567890
|
8702
|
+
88,USA,WA,Anacortes,First88,Last88,First88 Last88,M,1970-03-30,9,First88 Last88,"1234567890
|
8703
8703
|
1234567890
|
8704
8704
|
1234567890
|
8705
8705
|
1234567890
|
@@ -8799,7 +8799,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
8799
8799
|
1234567890
|
8800
8800
|
1234567890
|
8801
8801
|
1234567890"
|
8802
|
-
89,USA,WA,Ballard,First89,Last89,First89 Last89,F,"1234567890
|
8802
|
+
89,USA,WA,Ballard,First89,Last89,First89 Last89,F,1970-03-31,10,First89 Last89,"1234567890
|
8803
8803
|
1234567890
|
8804
8804
|
1234567890
|
8805
8805
|
1234567890
|
@@ -8899,7 +8899,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
8899
8899
|
1234567890
|
8900
8900
|
1234567890
|
8901
8901
|
1234567890"
|
8902
|
-
90,USA,WA,Bellingham,First90,Last90,First90 Last90,M,"1234567890
|
8902
|
+
90,USA,WA,Bellingham,First90,Last90,First90 Last90,M,1970-04-01,1,First90 Last90,"1234567890
|
8903
8903
|
1234567890
|
8904
8904
|
1234567890
|
8905
8905
|
1234567890
|
@@ -8999,7 +8999,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
8999
8999
|
1234567890
|
9000
9000
|
1234567890
|
9001
9001
|
1234567890"
|
9002
|
-
91,USA,WA,Bremerton,First91,Last91,First91 Last91,F,"1234567890
|
9002
|
+
91,USA,WA,Bremerton,First91,Last91,First91 Last91,F,1970-04-02,2,First91 Last91,"1234567890
|
9003
9003
|
1234567890
|
9004
9004
|
1234567890
|
9005
9005
|
1234567890
|
@@ -9099,7 +9099,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
9099
9099
|
1234567890
|
9100
9100
|
1234567890
|
9101
9101
|
1234567890"
|
9102
|
-
92,USA,WA,Burien,First92,Last92,First92 Last92,M,"1234567890
|
9102
|
+
92,USA,WA,Burien,First92,Last92,First92 Last92,M,1970-04-03,3,First92 Last92,"1234567890
|
9103
9103
|
1234567890
|
9104
9104
|
1234567890
|
9105
9105
|
1234567890
|
@@ -9199,7 +9199,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
9199
9199
|
1234567890
|
9200
9200
|
1234567890
|
9201
9201
|
1234567890"
|
9202
|
-
93,USA,WA,Edmonds,First93,Last93,First93 Last93,F,"1234567890
|
9202
|
+
93,USA,WA,Edmonds,First93,Last93,First93 Last93,F,1970-04-04,4,First93 Last93,"1234567890
|
9203
9203
|
1234567890
|
9204
9204
|
1234567890
|
9205
9205
|
1234567890
|
@@ -9299,7 +9299,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
9299
9299
|
1234567890
|
9300
9300
|
1234567890
|
9301
9301
|
1234567890"
|
9302
|
-
94,USA,WA,Everett,First94,Last94,First94 Last94,M,"1234567890
|
9302
|
+
94,USA,WA,Everett,First94,Last94,First94 Last94,M,1970-04-05,5,First94 Last94,"1234567890
|
9303
9303
|
1234567890
|
9304
9304
|
1234567890
|
9305
9305
|
1234567890
|
@@ -9399,7 +9399,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
9399
9399
|
1234567890
|
9400
9400
|
1234567890
|
9401
9401
|
1234567890"
|
9402
|
-
95,USA,WA,Issaquah,First95,Last95,First95 Last95,F,"1234567890
|
9402
|
+
95,USA,WA,Issaquah,First95,Last95,First95 Last95,F,1970-04-06,6,First95 Last95,"1234567890
|
9403
9403
|
1234567890
|
9404
9404
|
1234567890
|
9405
9405
|
1234567890
|
@@ -9499,7 +9499,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
9499
9499
|
1234567890
|
9500
9500
|
1234567890
|
9501
9501
|
1234567890"
|
9502
|
-
96,USA,WA,Kirkland,First96,Last96,First96 Last96,M,"1234567890
|
9502
|
+
96,USA,WA,Kirkland,First96,Last96,First96 Last96,M,1970-04-07,7,First96 Last96,"1234567890
|
9503
9503
|
1234567890
|
9504
9504
|
1234567890
|
9505
9505
|
1234567890
|
@@ -9599,7 +9599,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
9599
9599
|
1234567890
|
9600
9600
|
1234567890
|
9601
9601
|
1234567890"
|
9602
|
-
97,USA,WA,Lynnwood,First97,Last97,First97 Last97,F,"1234567890
|
9602
|
+
97,USA,WA,Lynnwood,First97,Last97,First97 Last97,F,1970-04-08,8,First97 Last97,"1234567890
|
9603
9603
|
1234567890
|
9604
9604
|
1234567890
|
9605
9605
|
1234567890
|
@@ -9699,7 +9699,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
9699
9699
|
1234567890
|
9700
9700
|
1234567890
|
9701
9701
|
1234567890"
|
9702
|
-
98,USA,WA,Marysville,First98,Last98,First98 Last98,M,"1234567890
|
9702
|
+
98,USA,WA,Marysville,First98,Last98,First98 Last98,M,1970-04-09,9,First98 Last98,"1234567890
|
9703
9703
|
1234567890
|
9704
9704
|
1234567890
|
9705
9705
|
1234567890
|
@@ -9799,7 +9799,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
9799
9799
|
1234567890
|
9800
9800
|
1234567890
|
9801
9801
|
1234567890"
|
9802
|
-
99,USA,WA,Olympia,First99,Last99,First99 Last99,F,"1234567890
|
9802
|
+
99,USA,WA,Olympia,First99,Last99,First99 Last99,F,1970-04-10,10,First99 Last99,"1234567890
|
9803
9803
|
1234567890
|
9804
9804
|
1234567890
|
9805
9805
|
1234567890
|
@@ -9899,7 +9899,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
9899
9899
|
1234567890
|
9900
9900
|
1234567890
|
9901
9901
|
1234567890"
|
9902
|
-
100,USA,WA,Port Orchard,First100,Last100,First100 Last100,M,"1234567890
|
9902
|
+
100,USA,WA,Port Orchard,First100,Last100,First100 Last100,M,1970-04-11,1,First100 Last100,"1234567890
|
9903
9903
|
1234567890
|
9904
9904
|
1234567890
|
9905
9905
|
1234567890
|
@@ -9999,7 +9999,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
9999
9999
|
1234567890
|
10000
10000
|
1234567890
|
10001
10001
|
1234567890"
|
10002
|
-
101,USA,WA,Puyallup,First101,Last101,First101 Last101,F,"1234567890
|
10002
|
+
101,USA,WA,Puyallup,First101,Last101,First101 Last101,F,1970-04-12,2,First101 Last101,"1234567890
|
10003
10003
|
1234567890
|
10004
10004
|
1234567890
|
10005
10005
|
1234567890
|
@@ -10099,7 +10099,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
10099
10099
|
1234567890
|
10100
10100
|
1234567890
|
10101
10101
|
1234567890"
|
10102
|
-
102,USA,WA,Redmond,First102,Last102,First102 Last102,M,"1234567890
|
10102
|
+
102,USA,WA,Redmond,First102,Last102,First102 Last102,M,1970-04-13,3,First102 Last102,"1234567890
|
10103
10103
|
1234567890
|
10104
10104
|
1234567890
|
10105
10105
|
1234567890
|
@@ -10199,7 +10199,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
10199
10199
|
1234567890
|
10200
10200
|
1234567890
|
10201
10201
|
1234567890"
|
10202
|
-
103,USA,WA,Renton,First103,Last103,First103 Last103,F,"1234567890
|
10202
|
+
103,USA,WA,Renton,First103,Last103,First103 Last103,F,1970-04-14,4,First103 Last103,"1234567890
|
10203
10203
|
1234567890
|
10204
10204
|
1234567890
|
10205
10205
|
1234567890
|
@@ -10299,7 +10299,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
10299
10299
|
1234567890
|
10300
10300
|
1234567890
|
10301
10301
|
1234567890"
|
10302
|
-
104,USA,WA,Seattle,First104,Last104,First104 Last104,M,"1234567890
|
10302
|
+
104,USA,WA,Seattle,First104,Last104,First104 Last104,M,1970-04-15,5,First104 Last104,"1234567890
|
10303
10303
|
1234567890
|
10304
10304
|
1234567890
|
10305
10305
|
1234567890
|
@@ -10399,7 +10399,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
10399
10399
|
1234567890
|
10400
10400
|
1234567890
|
10401
10401
|
1234567890"
|
10402
|
-
105,USA,WA,Sedro Woolley,First105,Last105,First105 Last105,F,"1234567890
|
10402
|
+
105,USA,WA,Sedro Woolley,First105,Last105,First105 Last105,F,1970-04-16,6,First105 Last105,"1234567890
|
10403
10403
|
1234567890
|
10404
10404
|
1234567890
|
10405
10405
|
1234567890
|
@@ -10499,7 +10499,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
10499
10499
|
1234567890
|
10500
10500
|
1234567890
|
10501
10501
|
1234567890"
|
10502
|
-
106,USA,WA,Spokane,First106,Last106,First106 Last106,M,"1234567890
|
10502
|
+
106,USA,WA,Spokane,First106,Last106,First106 Last106,M,1970-04-17,7,First106 Last106,"1234567890
|
10503
10503
|
1234567890
|
10504
10504
|
1234567890
|
10505
10505
|
1234567890
|
@@ -10599,7 +10599,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
10599
10599
|
1234567890
|
10600
10600
|
1234567890
|
10601
10601
|
1234567890"
|
10602
|
-
107,USA,WA,Tacoma,First107,Last107,First107 Last107,F,"1234567890
|
10602
|
+
107,USA,WA,Tacoma,First107,Last107,First107 Last107,F,1970-04-18,8,First107 Last107,"1234567890
|
10603
10603
|
1234567890
|
10604
10604
|
1234567890
|
10605
10605
|
1234567890
|
@@ -10699,7 +10699,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
10699
10699
|
1234567890
|
10700
10700
|
1234567890
|
10701
10701
|
1234567890"
|
10702
|
-
108,USA,WA,Walla Walla,First108,Last108,First108 Last108,M,"1234567890
|
10702
|
+
108,USA,WA,Walla Walla,First108,Last108,First108 Last108,M,1970-04-19,9,First108 Last108,"1234567890
|
10703
10703
|
1234567890
|
10704
10704
|
1234567890
|
10705
10705
|
1234567890
|
@@ -10799,7 +10799,7 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
10799
10799
|
1234567890
|
10800
10800
|
1234567890
|
10801
10801
|
1234567890"
|
10802
|
-
109,USA,WA,Yakima,First109,Last109,First109 Last109,F,"1234567890
|
10802
|
+
109,USA,WA,Yakima,First109,Last109,First109 Last109,F,1970-04-20,10,First109 Last109,"1234567890
|
10803
10803
|
1234567890
|
10804
10804
|
1234567890
|
10805
10805
|
1234567890
|
@@ -10899,4 +10899,4 @@ id,country,state_province,city,fname,lname,fullname,gender,description
|
|
10899
10899
|
1234567890
|
10900
10900
|
1234567890
|
10901
10901
|
1234567890"
|
10902
|
-
10000000000,USA,CA,Rīga,Big,Number,Big Number,M,
|
10902
|
+
10000000000,USA,CA,Rīga,Big,Number,Big Number,M,,1,Big Number,
|