Browse Source

added transaction wise named list

master
Asitav Sen 4 years ago
parent
commit
c094b1f552
  1. 43
      Analysis.Rmd
  2. 5986
      data-raw/jan052021/active/trans/discontinuedtrans.csv
  3. 9316
      data-raw/jan052021/active/trans/inactivetrans.csv
  4. 16430
      data-raw/jan052021/active/trans/migratedtrans.csv
  5. 12579
      data-raw/jan052021/active/trans/passedtrans.csv
  6. 779
      data-raw/jan052021/inactive/trans/deceasedtrans.csv
  7. 1248
      data-raw/jan052021/inactive/trans/discontinuedtrans.csv
  8. 1046
      data-raw/jan052021/inactive/trans/migratedtrans.csv
  9. 4129
      data-raw/jan052021/inactive/trans/smalltrans.csv
  10. 303124
      data-raw/jan052021/inactive/trans/timebarredtrans.csv

43
Analysis.Rmd

@ -20,14 +20,14 @@ library(scales)
# l <- get_png("logo.png")
# sum.na<-function(x){sum(is.na(x))}
id<-read.csv("./data/id20210921.csv", sep=";", header = F)
# id<-read.csv("./data/id20210921.csv", sep=";", header = F)
# alive<-read.csv("active.csv",sep=",")
# dead<-read.csv("inactive.csv",sep=",")
oi<-read.fst("./data/open_items_new.fst")
# oi |> filter(o.type =="Installments") |> filter(due_date>"2021-07-31")
indi<-id %>%
filter(V3=="Identiteitsbewijs") %>%
select(V2,V4)
# indi<-id %>%
# filter(V3=="Identiteitsbewijs") %>%
# select(V2,V4)
dunn<-read.fst("./data/dunning.fst")
last.dunn<-dunn %>%
@ -402,7 +402,7 @@ deceased |> #pull(Grand.Total) |> sum() # They have not used the 60 days filter
left_join(real.pos, by="contract_account") |>
select(-business_partner.y) |>
rename(business_partner=business_partner.x) |>
mutate(year.due=lubridate::year(due_date)) |>
mutate(year.due=lubridate::year(due_date)) |> select(-c(status.x,AGE_BUCKET,o.type,spread,dunn_status, new_contract_type, date.event, Reasonunregistered,e.status,date.relaxed, rel.status, age, year.due )) |> write.csv("./data-raw/jan052021/inactive/deceasedtrans.csv")
group_by(contract_account, business_partner, Name, year.due) |>
summarise(amount=sum(amount)) |>
pivot_wider(names_from = year.due, values_from = amount) |>
@ -416,7 +416,7 @@ discontinued |> #pull(amount) |> sum() # 1108257
filter(AGE_BUCKET %in% c("4-5 years","3-4 years","2-3 years","1-2 years",
"181-365 days","91-180 days","61-90 days", "0-30 days")) |>
filter(o.type %in% c("Real", "Installments") ) |>
mutate(year.due=lubridate::year(due_date)) |>
mutate(year.due=lubridate::year(due_date)) |> select(-c(status.x,AGE_BUCKET,o.type,spread,dunn_status, new_contract_type, date.event, Reasonunregistered,e.status,date.relaxed, rel.status, year.due )) |> write.csv("./data-raw/jan052021/inactive/discontinuedtrans.csv", na="", row.names = F)
group_by(contract_account,year.due) |>
summarise(amount=sum(amount)) |> #pull(amount) |> sum()
pivot_wider(names_from = year.due, values_from = amount) |>
@ -433,7 +433,7 @@ migrated |> #pull(Grand.Total) |> sum()#130502
#filter(o.type %in% c("Real", "Installments") ) |>
filter(AGE_BUCKET %in% c("4-5 years","3-4 years","2-3 years","1-2 years",
"181-365 days","91-180 days","61-90 days","31-60 days")) |>
mutate(year.due=lubridate::year(due_date)) |>
mutate(year.due=lubridate::year(due_date)) |> select(-c(status.x,AGE_BUCKET,o.type,spread,dunn_status, new_contract_type, date.event, Reasonunregistered,e.status,date.relaxed, rel.status, age, year.due )) |> write.csv("./data-raw/jan052021/inactive/migratedtrans.csv", na="", row.names = F)
group_by(contract_account,year.due) |>
summarise(amount=sum(amount)) |> #pull(amount) |> sum()
pivot_wider(names_from = year.due, values_from = amount) |>
@ -448,24 +448,33 @@ small |> #pull(Open.Items) |> sum() #123207.9
left_join(real.pos, by="contract_account") |>
select(-business_partner.y) |>
rename(business_partner=business_partner.x) |> #pull(amount) |> sum()
mutate(year.due=lubridate::year(due_date)) |>
mutate(year.due=lubridate::year(due_date)) |> select(-c(status.x,AGE_BUCKET,o.type,spread,dunn_status, new_contract_type, date.event, Reasonunregistered,e.status,date.relaxed, rel.status, age, year.due )) |> write.csv("./data-raw/jan052021/inactive/smalltrans.csv", na="")
group_by(contract_account, business_partner, Name.x, year.due) |>
summarise(amount=sum(amount)) |>
pivot_wider(names_from = year.due, values_from = amount) |>
rename(name=Name.x) |> write.csv("./data-raw/jan052021/inactive/smallbyyear.csv", na="")
real.pos.uni<-real.pos |> unique()
# not required
timebarred |> #pull(Sum.of.amount) |> sum() #25943341
rename(contract_account=Row.Labels) |>
mutate(contract_account=as.character(contract_account)) |>
left_join(real.pos, by="contract_account") |>
select(-business_partner.y) |>
rename(business_partner=business_partner.x) |> pull(amount) |> sum()
left_join(real.pos.uni, by="contract_account") |> select(-Reasonunregistered) |>
filter(AGE_BUCKET=="5+ years") |>
unique() |> select(-c(status.x,AGE_BUCKET,o.type,spread,dunn_status, new_contract_type, date.event, e.status,date.relaxed, rel.status, age)) |>
write.csv("./data-raw/jan052021/inactive/timebarredtrans.csv", na="")
group_by(contract_account,business_partner.x, Name, Sum.of.amount) |>
summarise(amount=sum(amount)) |>
#select(-business_partner.y) |> #write.csv("./data-raw/jan052021/inactive/timebarredtrans.csv", na="")
filter(amount!=Sum.of.amount)
pull(amount) |> sum()
real.pos |>
filter(contract_account=="15276925") |>
pull(amount) |> sum()
filter(contract_account=="10043660") |> arrange(amount) |> pull(amount) |> sum()
```
@ -484,7 +493,7 @@ act.inact |> #pull(amount) |> sum() #6830028
select(c(contract_account)) |> unique() |>
mutate(contract_account=as.character(contract_account)) |>
left_join(real.pos, by="contract_account") |> #pull(amount) |> sum()
mutate(year.due=lubridate::year(due_date)) |>
mutate(year.due=lubridate::year(due_date)) |> select(-c(status.x,AGE_BUCKET,o.type,spread,dunn_status, new_contract_type, date.event, Reasonunregistered,e.status,date.relaxed, rel.status, age, year.due )) |> write.csv("./data-raw/jan052021/active/inactivetrans.csv", na="", row.names = F)
group_by(contract_account,year.due) |>
summarise(amount=sum(amount)) |> #pull(amount) |> sum()
pivot_wider(names_from = year.due, values_from = amount) |>
@ -498,7 +507,7 @@ act.disc |> #pull(amount) |> sum() #1214182
mutate(rel.status=ifelse(rel.status=="More than 60 days", "long past","within limit")) |>
mutate(contract_account=as.character(contract_account)) |>
left_join(real.pos, by=c("contract_account"="contract_account", "rel.status"="rel.status","age"="age")) |>
mutate(year.due=lubridate::year(due_date)) |>
mutate(year.due=lubridate::year(due_date)) |> select(-c(status.x,AGE_BUCKET,o.type,spread,dunn_status, new_contract_type, date.event, Reasonunregistered,e.status,date.relaxed, rel.status, age, year.due )) |> write.csv("./data-raw/jan052021/active/discontinuedtrans.csv", na="", row.names = F)
group_by(contract_account,year.due) |>
summarise(amount=sum(amount)) |> #pull(amount) |> sum()
pivot_wider(names_from = year.due, values_from = amount) |>
@ -514,7 +523,7 @@ act.migrated |> #1401989
select(c(contract_account, Name)) |>
mutate(contract_account=as.character(contract_account)) |>
left_join(real.pos, by="contract_account") |>
mutate(year.due=lubridate::year(due_date)) |>
mutate(year.due=lubridate::year(due_date)) |> select(-c(status.x,AGE_BUCKET,o.type,spread,dunn_status, new_contract_type, date.event, Reasonunregistered,e.status,date.relaxed, rel.status, age, year.due )) |> write.csv("./data-raw/jan052021/active/migratedtrans.csv", na="", row.names = F)
group_by(contract_account,business_partner, Name, year.due) |>
summarise(amount=sum(amount)) |> #pull(amount) |> sum(na.rm = T)
pivot_wider(names_from = year.due, values_from = amount) |>
@ -530,7 +539,7 @@ act.passed |> #pull(duedatebeforedaterelaxed) |> sum(na.rm=T) #929285.6
select(c(contract_account, Name)) |>
mutate(contract_account=as.character(contract_account)) |>
left_join(real.pos, by="contract_account") |>
mutate(year.due=lubridate::year(due_date)) |>
mutate(year.due=lubridate::year(due_date)) |> select(-c(status.x,AGE_BUCKET,o.type,spread,dunn_status, new_contract_type, date.event, Reasonunregistered,e.status,date.relaxed, rel.status, age, year.due )) |> write.csv("./data-raw/jan052021/active/passedtrans.csv", na="", row.names = F)
group_by(contract_account,business_partner, Name, year.due) |>
summarise(amount=sum(amount)) |> #pull(amount) |> sum(na.rm = T)
pivot_wider(names_from = year.due, values_from = amount) |>

5986
data-raw/jan052021/active/trans/discontinuedtrans.csv

File diff suppressed because it is too large

9316
data-raw/jan052021/active/trans/inactivetrans.csv

File diff suppressed because it is too large

16430
data-raw/jan052021/active/trans/migratedtrans.csv

File diff suppressed because it is too large

12579
data-raw/jan052021/active/trans/passedtrans.csv

File diff suppressed because it is too large

779
data-raw/jan052021/inactive/trans/deceasedtrans.csv

@ -0,0 +1,779 @@
"","contract_account","business_partner","Name","bp_category","active","contract_type","deposit","doc_date","post_date","currency","due_date","amount","negative","documen_desc","trandesc"
"1","10021171",1301014078,"How-Breeveld Henriette","Person",FALSE,"Residential",FALSE,2016-08-02,2018-01-02,"ANG",2016-08-19,51.09,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"2","10021171",1301014078,"How-Breeveld Henriette","Person",FALSE,"Residential",FALSE,2016-07-05,2018-01-02,"ANG",2016-08-19,12.13,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"3","10032562",1301013959,"Hodge Edward","Person",FALSE,"Residential",FALSE,2016-10-11,2018-01-02,"ANG",2016-11-18,471.58,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"4","10045060",1301047436,"Pichardo-Palm Iris","Person",FALSE,"Residential",FALSE,2017-08-02,2018-01-02,"ANG",2017-08-21,128.28,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"5","10045060",1301047436,"Pichardo-Palm Iris","Person",FALSE,"Residential",FALSE,2017-07-03,2018-01-02,"ANG",2017-07-20,213.46,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"6","10045060",1301047436,"Pichardo-Palm Iris","Person",FALSE,"Residential",FALSE,2017-05-05,2018-01-02,"ANG",2017-05-24,156.07,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"7","10045060",1301047436,"Pichardo-Palm Iris","Person",FALSE,"Residential",FALSE,2017-04-03,2018-01-02,"ANG",2017-04-20,171.77,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"8","10045060",1301047436,"Pichardo-Palm Iris","Person",FALSE,"Residential",FALSE,2017-06-02,2018-01-02,"ANG",2017-06-22,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"9","10045060",1301047436,"Pichardo-Palm Iris","Person",FALSE,"Residential",FALSE,2017-06-02,2018-01-02,"ANG",2017-06-22,212.9,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"10","10045060",1301047436,"Pichardo-Palm Iris","Person",FALSE,"Residential",FALSE,2017-06-02,2018-01-02,"ANG",2017-06-22,200,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"11","10045060",1301047436,"Pichardo-Palm Iris","Person",FALSE,"Residential",FALSE,2017-03-02,2018-01-02,"ANG",2017-03-21,128.99,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"12","10045060",1301047436,"Pichardo-Palm Iris","Person",FALSE,"Residential",FALSE,2017-03-02,2018-01-02,"ANG",2017-03-21,200,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"13","10045060",1301047436,"Pichardo-Palm Iris","Person",FALSE,"Residential",FALSE,2017-03-02,2018-01-02,"ANG",2017-03-21,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"14","10045060",1301047436,"Pichardo-Palm Iris","Person",FALSE,"Residential",FALSE,2017-07-03,2018-01-02,"ANG",2017-07-20,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"15","10045060",1301047436,"Pichardo-Palm Iris","Person",FALSE,"Residential",FALSE,2017-05-05,2018-01-02,"ANG",2017-05-24,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"16","10045060",1301047436,"Pichardo-Palm Iris","Person",FALSE,"Residential",FALSE,2017-08-02,2018-01-02,"ANG",2017-08-21,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"17","10045060",1301047436,"Pichardo-Palm Iris","Person",FALSE,"Residential",FALSE,2017-04-03,2018-01-02,"ANG",2017-04-20,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"18","10045060",1301047436,"Pichardo-Palm Iris","Person",FALSE,"Residential",FALSE,2017-08-07,2018-01-02,"ANG",2017-09-20,15,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"19","10045060",1301047436,"Pichardo-Palm Iris","Person",FALSE,"Residential",FALSE,2017-04-03,2018-01-02,"ANG",2017-04-20,200,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"20","10045060",1301047436,"Pichardo-Palm Iris","Person",FALSE,"Residential",FALSE,2017-07-03,2018-01-02,"ANG",2017-07-20,200,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"21","10045060",1301047436,"Pichardo-Palm Iris","Person",FALSE,"Residential",FALSE,2017-05-05,2018-01-02,"ANG",2017-05-24,200,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"22","10045060",1301047436,"Pichardo-Palm Iris","Person",FALSE,"Residential",FALSE,2017-08-02,2018-01-02,"ANG",2017-08-21,200,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"23","10045060",1301047436,"Pichardo-Palm Iris","Person",FALSE,"Residential",FALSE,2017-08-14,2018-01-02,"ANG",2017-09-20,25065.53,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"24","10045345",1301033777,"Libiee Robert","Person",FALSE,"Residential",FALSE,2017-09-01,2018-01-02,"ANG",2017-09-20,184.83,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"25","10045345",1301033777,"Libiee Robert","Person",FALSE,"Residential",FALSE,2017-09-01,2018-01-02,"ANG",2017-09-20,182.96,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"26","10045345",1301033777,"Libiee Robert","Person",FALSE,"Residential",FALSE,2017-09-01,2018-01-02,"ANG",2017-09-20,16.01,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"27","10045345",1301033777,"Libiee Robert","Person",FALSE,"Residential",FALSE,2017-09-01,2018-01-02,"ANG",2017-09-20,6.06,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"28","10048636",1301019733,"Neuman Peggy","Person",FALSE,"Residential",FALSE,2017-03-02,2018-01-02,"ANG",2017-03-21,10.55,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"29","10048636",1301019733,"Neuman Peggy","Person",FALSE,"Residential",FALSE,2017-03-02,2018-01-02,"ANG",2017-03-21,4.8,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"30","10048636",1301019733,"Neuman Peggy","Person",FALSE,"Residential",FALSE,2017-03-02,2018-01-02,"ANG",2017-03-21,7.36,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"31","10048636",1301019733,"Neuman Peggy","Person",FALSE,"Residential",FALSE,2017-03-02,2018-01-02,"ANG",2017-03-21,7.39,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"32","10048636",1301019733,"Neuman Peggy","Person",FALSE,"Residential",FALSE,2017-03-02,2018-01-02,"ANG",2017-03-21,7.93,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"33","10048636",1301019733,"Neuman Peggy","Person",FALSE,"Residential",FALSE,2017-03-02,2018-01-02,"ANG",2017-03-21,5.7,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"34","10055251",1301002948,"Casimiri Johanna","Person",FALSE,"Residential",FALSE,2017-07-03,2018-01-02,"ANG",2017-07-20,35.32,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"35","10055251",1301002948,"Casimiri Johanna","Person",FALSE,"Residential",FALSE,2017-05-05,2018-01-02,"ANG",2017-05-24,6.87,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"36","10055251",1301002948,"Casimiri Johanna","Person",FALSE,"Residential",FALSE,2017-06-02,2018-01-02,"ANG",2017-06-22,49.25,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"37","10055251",1301002948,"Casimiri Johanna","Person",FALSE,"Residential",FALSE,2017-06-02,2018-01-02,"ANG",2017-06-22,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"38","10083204",1301004126,"Bomba Cornelia","Person",FALSE,"Residential",FALSE,2017-10-03,2018-01-02,"ANG",2017-10-20,4.79,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"39","10091574",1301017091,"Francisco Consuelo","Person",FALSE,"Residential",FALSE,2017-03-03,2018-01-02,"ANG",2017-03-22,45.62,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"40","10091574",1301017091,"Francisco Consuelo","Person",FALSE,"Residential",FALSE,2017-05-08,2018-01-02,"ANG",2017-05-29,14,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"41","10091574",1301017091,"Francisco Consuelo","Person",FALSE,"Residential",FALSE,2017-05-08,2018-01-02,"ANG",2017-05-29,2.83,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"42","10091574",1301017091,"Francisco Consuelo","Person",FALSE,"Residential",FALSE,2017-05-08,2018-01-02,"ANG",2017-05-29,42.47,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"43","10091574",1301017091,"Francisco Consuelo","Person",FALSE,"Residential",FALSE,2017-01-23,2018-01-02,"ANG",2017-02-20,445.58,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"44","10091574",1301017091,"Francisco Consuelo","Person",FALSE,"Residential",FALSE,2017-04-04,2018-01-02,"ANG",2017-04-21,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"45","10091574",1301017091,"Francisco Consuelo","Person",FALSE,"Residential",FALSE,2017-03-03,2018-01-02,"ANG",2017-03-22,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"46","10091574",1301017091,"Francisco Consuelo","Person",FALSE,"Residential",FALSE,2017-03-31,2018-01-02,"ANG",2017-04-21,15,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"47","10092245",1301019960,"Bictorina Melvyn","Person",FALSE,"Residential",FALSE,2017-02-10,2018-01-02,"ANG",2017-03-22,1000,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"48","10105941",1301009669,"Haseth Hubert","Person",FALSE,"Residential",FALSE,2017-06-28,2018-01-02,"ANG",2017-07-21,31744.91,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"49","10105941",1301009669,"Haseth Hubert","Person",FALSE,"Residential",FALSE,2017-06-28,2018-01-02,"ANG",2017-07-21,25,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"50","10105941",1301009669,"Haseth Hubert","Person",FALSE,"Residential",FALSE,2017-06-28,2018-01-02,"ANG",2017-07-21,250,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"51","10111780",1301042066,"Kwidama-Rosalina Estrella R","Person",FALSE,"Residential",FALSE,2016-08-03,2018-01-02,"ANG",2016-08-22,177.39,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"52","10111780",1301042066,"Kwidama-Rosalina Estrella R","Person",FALSE,"Residential",FALSE,2016-08-03,2018-01-02,"ANG",2016-08-22,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"53","10111780",1301042066,"Kwidama-Rosalina Estrella R","Person",FALSE,"Residential",FALSE,2016-08-03,2018-01-02,"ANG",2016-08-22,43.84,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"54","10131382",1301009892,"Agatha Marco","Person",FALSE,"Residential",FALSE,2017-05-08,2018-01-02,"ANG",2017-05-29,0.51,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"55","10131382",1301009892,"Agatha Marco","Person",FALSE,"Residential",FALSE,2017-05-08,2018-01-02,"ANG",2017-05-29,4.49,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"56","10147799",1301036903,"Cyntje Lucien","Person",FALSE,"Residential",FALSE,2016-11-02,2018-01-02,"ANG",2016-11-21,0.18,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"57","10167553",1301009158,"Emerencia-Damon Ana","Person",FALSE,"Residential",FALSE,2017-03-03,2018-01-02,"ANG",2017-03-22,7.39,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"58","10167553",1301009158,"Emerencia-Damon Ana","Person",FALSE,"Residential",FALSE,2017-03-03,2018-01-02,"ANG",2017-03-22,0.52,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"59","10167553",1301009158,"Emerencia-Damon Ana","Person",FALSE,"Residential",FALSE,2017-03-03,2018-01-02,"ANG",2017-03-22,36.37,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"60","10171227",1301017414,"Torbed Johan","Person",FALSE,"Residential",FALSE,2016-12-02,2018-01-02,"ANG",2016-12-21,27.71,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"61","10171405",1301006199,"Constancia-Zimmerman Petronilia","Person",FALSE,"Residential",FALSE,2017-05-09,2018-01-02,"ANG",2017-05-29,2.26,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"62","10171405",1301006199,"Constancia-Zimmerman Petronilia","Person",FALSE,"Residential",FALSE,2017-05-09,2018-01-02,"ANG",2017-05-29,2.21,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"63","10171405",1301006199,"Constancia-Zimmerman Petronilia","Person",FALSE,"Residential",FALSE,2017-05-09,2018-01-02,"ANG",2017-05-29,724.88,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"64","10179877",1301020006,"De Lanoe Erick","Person",FALSE,"Residential",FALSE,2016-12-02,2018-01-02,"ANG",2016-12-21,65.19,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"65","10179877",1301020006,"De Lanoe Erick","Person",FALSE,"Residential",FALSE,2017-03-06,2018-01-02,"ANG",2017-03-23,129.1,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"66","10179877",1301020006,"De Lanoe Erick","Person",FALSE,"Residential",FALSE,2017-03-06,2018-01-02,"ANG",2017-03-23,111.8,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"67","10179877",1301020006,"De Lanoe Erick","Person",FALSE,"Residential",FALSE,2016-12-02,2018-01-02,"ANG",2016-12-21,142.35,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"68","10179877",1301020006,"De Lanoe Erick","Person",FALSE,"Residential",FALSE,2017-01-04,2018-01-02,"ANG",2017-01-23,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"69","10179877",1301020006,"De Lanoe Erick","Person",FALSE,"Residential",FALSE,2017-01-04,2018-01-02,"ANG",2017-01-23,29.09,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"70","10179877",1301020006,"De Lanoe Erick","Person",FALSE,"Residential",FALSE,2017-01-04,2018-01-02,"ANG",2017-01-23,96.08,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"71","10179877",1301020006,"De Lanoe Erick","Person",FALSE,"Residential",FALSE,2016-12-02,2018-01-02,"ANG",2016-12-21,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"72","10179877",1301020006,"De Lanoe Erick","Person",FALSE,"Residential",FALSE,2017-03-06,2018-01-02,"ANG",2017-03-23,2.27,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"73","10217756",1301038293,"Schoop Esmee","Person",FALSE,"Residential",FALSE,2017-11-03,2018-01-02,"ANG",2017-11-22,74.66,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"74","10238354",1301008454,"Damoen Lorencia","Person",FALSE,"Residential",FALSE,2017-01-04,2018-01-02,"ANG",2017-01-23,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"75","10238354",1301008454,"Damoen Lorencia","Person",FALSE,"Residential",FALSE,2017-01-04,2018-01-02,"ANG",2017-01-23,26.62,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"76","10238354",1301008454,"Damoen Lorencia","Person",FALSE,"Residential",FALSE,2017-01-04,2018-01-02,"ANG",2017-01-23,29.1,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"77","10238956",1301007446,"Plantijn Dario","Person",FALSE,"Residential",FALSE,2016-09-05,2018-01-02,"ANG",2016-09-22,2880,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"78","10238956",1301007446,"Plantijn Dario","Person",FALSE,"Residential",FALSE,2016-10-05,2018-01-02,"ANG",2016-10-24,44.77,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"79","10238956",1301007446,"Plantijn Dario","Person",FALSE,"Residential",FALSE,2016-10-05,2018-01-02,"ANG",2016-10-24,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"80","10249313",1301005242,"Lubliek Gustaaf","Person",FALSE,"Residential",FALSE,2017-02-03,2018-01-02,"ANG",2017-02-22,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"81","10259473",1301013244,"Apostel Johannes","Person",FALSE,"Residential",FALSE,2016-07-01,2018-01-02,"ANG",2016-07-25,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"82","10259677",1301003339,"Martes Francisco","Person",FALSE,"Residential",FALSE,2017-02-03,2018-01-02,"ANG",2017-02-22,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"83","10259766",1301018837,"Albert-Jansen Helen","Person",FALSE,"Residential",FALSE,2017-11-06,2018-01-02,"ANG",2017-11-23,29.11,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"84","10259766",1301018837,"Albert-Jansen Helen","Person",FALSE,"Residential",FALSE,2017-11-06,2018-01-02,"ANG",2017-11-23,27,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"85","10259766",1301018837,"Albert-Jansen Helen","Person",FALSE,"Residential",FALSE,2017-11-06,2018-01-02,"ANG",2017-11-23,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"86","10273980",1301016681,"Soleana Edwin","Person",FALSE,"Residential",FALSE,2017-09-05,2018-01-02,"ANG",2017-09-22,48.24,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"87","10273980",1301016681,"Soleana Edwin","Person",FALSE,"Residential",FALSE,2017-08-31,2018-01-02,"ANG",2017-09-22,600,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"88","10277984",1301000711,"De Jongh Alberto","Person",FALSE,"Residential",FALSE,2017-01-05,2018-01-02,"ANG",2017-01-24,3.39,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"89","10284127",1301033186,"Cijntje Humphrey","Person",FALSE,"Residential",FALSE,2016-09-07,2018-01-02,"ANG",2016-09-26,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"90","10314003",1301023248,"Helmijr Astrid","Person",FALSE,"Residential",FALSE,2016-09-07,2018-01-02,"ANG",2016-09-26,22.41,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"91","10314003",1301023248,"Helmijr Astrid","Person",FALSE,"Residential",FALSE,2016-07-07,2018-01-02,"ANG",2016-07-26,66.41,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"92","10314003",1301023248,"Helmijr Astrid","Person",FALSE,"Residential",FALSE,2016-09-07,2018-01-02,"ANG",2016-09-26,27.79,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"93","10314003",1301023248,"Helmijr Astrid","Person",FALSE,"Residential",FALSE,2016-08-08,2018-01-02,"ANG",2016-08-25,90.85,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"94","10314003",1301023248,"Helmijr Astrid","Person",FALSE,"Residential",FALSE,2016-08-08,2018-01-02,"ANG",2016-08-25,47.74,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"95","10314003",1301023248,"Helmijr Astrid","Person",FALSE,"Residential",FALSE,2016-08-08,2018-01-02,"ANG",2016-08-25,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"96","10314003",1301023248,"Helmijr Astrid","Person",FALSE,"Residential",FALSE,2016-10-07,2018-01-02,"ANG",2016-10-27,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"97","10314003",1301023248,"Helmijr Astrid","Person",FALSE,"Residential",FALSE,2016-09-07,2018-01-02,"ANG",2016-09-26,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"98","10314003",1301023248,"Helmijr Astrid","Person",FALSE,"Residential",FALSE,2016-10-07,2018-01-02,"ANG",2016-10-27,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"99","10372695",1301025500,"Lucas Criselda","Person",FALSE,"Residential",FALSE,2017-04-07,2018-01-02,"ANG",2017-04-26,41.66,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"100","10372695",1301025500,"Lucas Criselda","Person",FALSE,"Residential",FALSE,2017-04-07,2018-01-02,"ANG",2017-04-26,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"101","10396110",1301003284,"Pisas Juancito","Person",FALSE,"Residential",FALSE,2016-11-08,2018-01-02,"ANG",2016-11-25,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"102","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-08-10,2018-01-02,"ANG",2017-08-29,14.16,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"103","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-09-08,2018-01-02,"ANG",2017-09-27,22.12,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"104","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-06-12,2018-01-02,"ANG",2017-06-29,14.08,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"105","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-07-11,2018-01-02,"ANG",2017-07-28,21.2,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"106","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-10-11,2018-01-02,"ANG",2017-10-30,29.26,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"107","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-05-12,2018-01-02,"ANG",2017-06-01,14.05,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"108","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-10-04,2018-01-02,"ANG",2017-10-30,44.91,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"109","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-10-04,2018-01-02,"ANG",2017-10-30,45.28,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"110","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-10-04,2018-01-02,"ANG",2017-10-30,53.05,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"111","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-10-04,2018-01-02,"ANG",2017-10-30,43.81,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"112","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-10-04,2018-01-02,"ANG",2017-10-30,44.47,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"113","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-10-04,2018-01-02,"ANG",2017-10-30,45.73,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"114","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-10-04,2018-01-02,"ANG",2017-10-30,50.16,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"115","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-10-04,2018-01-02,"ANG",2017-10-30,52.31,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"116","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-10-04,2018-01-02,"ANG",2017-10-30,47.71,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"117","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-10-04,2018-01-02,"ANG",2017-10-30,48.26,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"118","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-10-04,2018-01-02,"ANG",2017-10-30,47.58,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"119","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-10-04,2018-01-02,"ANG",2017-10-30,45.43,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"120","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-01-10,2018-01-02,"ANG",2017-01-27,5.01,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"121","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-08-10,2018-01-02,"ANG",2017-08-29,47.73,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"122","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-06-12,2018-01-02,"ANG",2017-06-29,94.07,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"123","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-07-11,2018-01-02,"ANG",2017-07-28,94.51,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"124","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-01-10,2018-01-02,"ANG",2017-01-27,32.44,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"125","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-05-12,2018-01-02,"ANG",2017-06-01,42.28,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"126","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-04-10,2018-01-02,"ANG",2017-05-02,43.59,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"127","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-04-10,2018-01-02,"ANG",2017-05-02,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"128","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-04-10,2018-01-02,"ANG",2017-05-02,20.94,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"129","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-02-08,2018-01-02,"ANG",2017-02-28,18.65,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"130","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-02-08,2018-01-02,"ANG",2017-02-28,24.68,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"131","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-02-08,2018-01-02,"ANG",2017-02-28,3.38,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"132","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-02-08,2018-01-02,"ANG",2017-02-28,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"133","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-03-10,2018-01-02,"ANG",2017-03-29,40.02,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"134","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-03-10,2018-01-02,"ANG",2017-03-29,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"135","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-03-10,2018-01-02,"ANG",2017-03-29,22.77,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"136","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-05-12,2018-01-02,"ANG",2017-06-01,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"137","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-08-10,2018-01-02,"ANG",2017-08-29,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"138","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-07-11,2018-01-02,"ANG",2017-07-28,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"139","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-06-12,2018-01-02,"ANG",2017-06-29,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"140","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-01-10,2018-01-02,"ANG",2017-01-27,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"141","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-10-11,2018-01-02,"ANG",2017-10-30,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"142","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-09-08,2018-01-02,"ANG",2017-09-27,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"143","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-12-08,2018-01-02,"ANG",2017-12-28,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"144","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-10-11,2018-01-02,"ANG",2017-10-30,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"145","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-09-08,2018-01-02,"ANG",2017-09-27,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"146","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-09-21,2018-01-02,"ANG",2017-10-30,15,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"147","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-04-26,2018-01-02,"ANG",2017-06-01,15,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"148","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-09-21,2018-01-02,"ANG",2017-10-30,25,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"149","10408852",1301031965,"Allee Rudsel","Person",FALSE,"Residential",FALSE,2017-09-21,2018-01-02,"ANG",2017-10-30,75,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"150","10427547",1301003913,"Koeiman Serapio","Person",FALSE,"Residential",FALSE,2016-10-11,2018-01-02,"ANG",2016-10-28,116.13,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"151","10427547",1301003913,"Koeiman Serapio","Person",FALSE,"Residential",FALSE,2016-10-11,2018-01-02,"ANG",2016-10-28,56.65,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"152","10427547",1301003913,"Koeiman Serapio","Person",FALSE,"Residential",FALSE,2016-10-11,2018-01-02,"ANG",2016-10-28,328.53,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"153","10427547",1301003913,"Koeiman Serapio","Person",FALSE,"Residential",FALSE,2016-10-11,2018-01-02,"ANG",2016-10-28,20,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"154","10431407",1301046829,"Isenia Alvin","Person",FALSE,"Residential",FALSE,2017-12-08,2018-01-02,"ANG",2017-12-28,3.32,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"155","10431407",1301046829,"Isenia Alvin","Person",FALSE,"Residential",FALSE,2017-12-08,2018-01-02,"ANG",2017-12-28,57.71,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"156","10431407",1301046829,"Isenia Alvin","Person",FALSE,"Residential",FALSE,2017-12-08,2018-01-02,"ANG",2017-12-28,6.26,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"157","10431407",1301046829,"Isenia Alvin","Person",FALSE,"Residential",FALSE,2017-12-08,2018-01-02,"ANG",2017-12-28,5.16,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"158","10431407",1301046829,"Isenia Alvin","Person",FALSE,"Residential",FALSE,2017-12-08,2018-01-02,"ANG",2017-12-28,5.85,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"159","10443454",1301023695,"Sprock Royston","Person",FALSE,"Residential",FALSE,2016-08-09,2018-01-02,"ANG",2016-08-26,25.76,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"160","10456253",1301012576,"Bart Serapio","Person",FALSE,"Residential",FALSE,2017-09-11,2018-01-02,"ANG",2017-09-28,294.39,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"161","10461957",1301005773,"Marcos Clemencia","Person",FALSE,"Residential",FALSE,2016-06-14,2018-01-02,"ANG",2016-07-01,76.6,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"162","10461957",1301005773,"Marcos Clemencia","Person",FALSE,"Residential",FALSE,2016-06-14,2018-01-02,"ANG",2016-07-01,53.97,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"163","10461957",1301005773,"Marcos Clemencia","Person",FALSE,"Residential",FALSE,2016-07-12,2018-01-02,"ANG",2016-07-29,64.91,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"164","10461957",1301005773,"Marcos Clemencia","Person",FALSE,"Residential",FALSE,2016-07-12,2018-01-02,"ANG",2016-07-29,120.32,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"165","10461957",1301005773,"Marcos Clemencia","Person",FALSE,"Residential",FALSE,2016-07-12,2018-01-02,"ANG",2016-07-29,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"166","10461957",1301005773,"Marcos Clemencia","Person",FALSE,"Residential",FALSE,2016-08-11,2018-01-02,"ANG",2016-08-30,29.25,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"167","10461957",1301005773,"Marcos Clemencia","Person",FALSE,"Residential",FALSE,2016-08-11,2018-01-02,"ANG",2016-08-30,53.33,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"168","10461957",1301005773,"Marcos Clemencia","Person",FALSE,"Residential",FALSE,2016-06-14,2018-01-02,"ANG",2016-07-01,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"169","10493726",1301015406,"Wieske Frank","Person",FALSE,"Residential",FALSE,2016-10-11,2018-01-02,"ANG",2016-10-28,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"170","10493726",1301015406,"Wieske Frank","Person",FALSE,"Residential",FALSE,2016-10-11,2018-01-02,"ANG",2016-10-28,43.65,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"171","10496295",1301003059,"Ramada Andres","Person",FALSE,"Residential",FALSE,2016-06-13,2018-01-02,"ANG",2016-07-04,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"172","10496295",1301003059,"Ramada Andres","Person",FALSE,"Residential",FALSE,2016-06-13,2018-01-02,"ANG",2016-07-04,346.88,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"173","10496295",1301003059,"Ramada Andres","Person",FALSE,"Residential",FALSE,2016-08-10,2018-01-02,"ANG",2016-08-29,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"174","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2017-08-11,2018-01-02,"ANG",2017-08-30,21.26,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"175","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2017-07-12,2018-01-02,"ANG",2017-07-31,21.2,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"176","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2017-09-11,2018-01-02,"ANG",2017-09-28,22.1,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"177","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2017-06-13,2018-01-02,"ANG",2017-06-30,21.13,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"178","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2017-11-10,2018-01-02,"ANG",2017-11-29,14.57,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"179","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2017-10-12,2018-01-02,"ANG",2017-10-31,14.63,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"180","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2016-10-12,2018-01-02,"ANG",2016-10-31,29.08,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"181","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2017-12-11,2018-01-02,"ANG",2017-12-28,14.79,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"182","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2016-09-12,2018-01-02,"ANG",2016-09-29,29.76,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"183","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2016-09-12,2018-01-02,"ANG",2016-09-29,3.52,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"184","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2016-11-10,2018-01-02,"ANG",2016-11-29,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"185","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2016-11-10,2018-01-02,"ANG",2016-11-29,35.9,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"186","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2017-04-11,2018-01-02,"ANG",2017-05-02,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"187","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2017-02-09,2018-01-02,"ANG",2017-02-28,14.82,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"188","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2017-02-09,2018-01-02,"ANG",2017-02-28,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"189","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2017-01-11,2018-01-02,"ANG",2017-01-30,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"190","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2017-01-11,2018-01-02,"ANG",2017-01-30,21.87,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"191","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2017-03-13,2018-01-02,"ANG",2017-03-30,15.05,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"192","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2017-03-13,2018-01-02,"ANG",2017-03-30,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"193","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2016-12-09,2018-01-02,"ANG",2016-12-28,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"194","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2016-12-09,2018-01-02,"ANG",2016-12-28,29.03,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"195","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2016-08-11,2018-01-02,"ANG",2016-08-30,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"196","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2016-08-11,2018-01-02,"ANG",2016-08-30,18.44,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"197","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2017-09-11,2018-01-02,"ANG",2017-09-28,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"198","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2017-06-13,2018-01-02,"ANG",2017-06-30,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"199","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2017-05-15,2018-01-02,"ANG",2017-06-01,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"200","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2017-10-12,2018-01-02,"ANG",2017-10-31,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"201","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2017-07-12,2018-01-02,"ANG",2017-07-31,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"202","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2017-08-11,2018-01-02,"ANG",2017-08-30,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"203","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2016-09-12,2018-01-02,"ANG",2016-09-29,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"204","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2016-10-12,2018-01-02,"ANG",2016-10-31,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"205","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2017-11-10,2018-01-02,"ANG",2017-11-29,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"206","10501286",1301010933,"Mercelina Thelma","Person",FALSE,"Residential",FALSE,2017-12-11,2018-01-02,"ANG",2017-12-28,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"207","10521804",1301004214,"Rooi Ergath","Person",FALSE,"Residential",FALSE,2017-01-10,2018-01-02,"ANG",2017-01-27,21.86,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"208","10521804",1301004214,"Rooi Ergath","Person",FALSE,"Residential",FALSE,2017-01-10,2018-01-02,"ANG",2017-01-27,134.83,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"209","10521804",1301004214,"Rooi Ergath","Person",FALSE,"Residential",FALSE,2016-12-08,2018-01-02,"ANG",2016-12-27,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"210","10521804",1301004214,"Rooi Ergath","Person",FALSE,"Residential",FALSE,2016-12-08,2018-01-02,"ANG",2016-12-27,27.69,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"211","10521804",1301004214,"Rooi Ergath","Person",FALSE,"Residential",FALSE,2017-03-10,2018-01-02,"ANG",2017-03-29,133.38,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"212","10521804",1301004214,"Rooi Ergath","Person",FALSE,"Residential",FALSE,2017-03-10,2018-01-02,"ANG",2017-03-29,37.01,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"213","10521804",1301004214,"Rooi Ergath","Person",FALSE,"Residential",FALSE,2017-03-10,2018-01-02,"ANG",2017-03-29,18.3,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"214","10521804",1301004214,"Rooi Ergath","Person",FALSE,"Residential",FALSE,2017-03-10,2018-01-02,"ANG",2017-03-29,35.94,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"215","10521804",1301004214,"Rooi Ergath","Person",FALSE,"Residential",FALSE,2017-01-10,2018-01-02,"ANG",2017-01-27,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"216","10521943",1301001536,"Mathilda Francisco","Person",FALSE,"Residential",FALSE,2017-01-10,2018-01-02,"ANG",2017-01-27,7.39,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"217","10524103",1301015973,"Plantijn Nelio","Person",FALSE,"Residential",FALSE,2017-04-10,2018-01-02,"ANG",2017-05-02,20.52,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"218","10524103",1301015973,"Plantijn Nelio","Person",FALSE,"Residential",FALSE,2017-04-10,2018-01-02,"ANG",2017-05-02,146.69,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"219","10535798",1301002483,"Valerian Theofiel","Person",FALSE,"Residential",FALSE,2017-03-13,2018-01-02,"ANG",2017-03-30,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"220","10569462",1301021063,"Bart-Tschumie Ivonne","Person",FALSE,"Residential",FALSE,2016-08-12,2018-01-02,"ANG",2016-08-31,11.81,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"221","10569462",1301021063,"Bart-Tschumie Ivonne","Person",FALSE,"Residential",FALSE,2016-08-12,2018-01-02,"ANG",2016-08-31,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"222","10569462",1301021063,"Bart-Tschumie Ivonne","Person",FALSE,"Residential",FALSE,2016-08-12,2018-01-02,"ANG",2016-08-31,88.82,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"223","10577986",1301001664,"Girigorie Ladislaus","Person",FALSE,"Residential",FALSE,2016-10-13,2018-01-02,"ANG",2016-11-01,29.07,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"224","10577986",1301001664,"Girigorie Ladislaus","Person",FALSE,"Residential",FALSE,2016-10-13,2018-01-02,"ANG",2016-11-01,68.9,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"225","10577986",1301001664,"Girigorie Ladislaus","Person",FALSE,"Residential",FALSE,2016-09-13,2018-01-02,"ANG",2016-09-30,44.57,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"226","10577986",1301001664,"Girigorie Ladislaus","Person",FALSE,"Residential",FALSE,2016-09-13,2018-01-02,"ANG",2016-09-30,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"227","10577986",1301001664,"Girigorie Ladislaus","Person",FALSE,"Residential",FALSE,2016-09-13,2018-01-02,"ANG",2016-09-30,48.28,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"228","10577986",1301001664,"Girigorie Ladislaus","Person",FALSE,"Residential",FALSE,2016-08-12,2018-01-02,"ANG",2016-08-31,53.81,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"229","10583563",1301058998,"Koeiman Rijnado","Person",FALSE,"Residential",FALSE,2017-06-27,2018-01-02,"ANG",2017-08-01,9615.55,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"230","10583563",1301058998,"Koeiman Rijnado","Person",FALSE,"Residential",FALSE,2017-07-13,2018-01-02,"ANG",2017-08-01,100.21,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"231","10583563",1301058998,"Koeiman Rijnado","Person",FALSE,"Residential",FALSE,2017-06-27,2018-01-02,"ANG",2017-08-01,232,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"232","10583563",1301058998,"Koeiman Rijnado","Person",FALSE,"Residential",FALSE,2017-06-27,2018-01-02,"ANG",2017-08-01,70,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"233","10583563",1301058998,"Koeiman Rijnado","Person",FALSE,"Residential",FALSE,2017-07-13,2018-01-02,"ANG",2017-08-01,175.44,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"234","10583563",1301058998,"Koeiman Rijnado","Person",FALSE,"Residential",FALSE,2017-06-27,2018-01-02,"ANG",2017-08-01,25,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"235","10608591",1301031475,"Anastacia Elvin","Person",FALSE,"Residential",FALSE,2017-08-14,2018-01-02,"ANG",2017-08-31,35.21,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"236","10608591",1301031475,"Anastacia Elvin","Person",FALSE,"Residential",FALSE,2017-07-13,2018-01-02,"ANG",2017-08-01,170.89,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"237","10608591",1301031475,"Anastacia Elvin","Person",FALSE,"Residential",FALSE,2017-07-13,2018-01-02,"ANG",2017-08-01,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"238","10622529",1301020866,"Bonevacia Gijsbertha","Person",FALSE,"Residential",FALSE,2016-10-13,2018-01-02,"ANG",2016-11-01,144.54,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"239","10622529",1301020866,"Bonevacia Gijsbertha","Person",FALSE,"Residential",FALSE,2016-11-11,2018-01-02,"ANG",2016-11-30,144.43,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"240","10622529",1301020866,"Bonevacia Gijsbertha","Person",FALSE,"Residential",FALSE,2016-11-04,2018-01-02,"ANG",2016-11-30,400,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"241","10641599",1301010176,"Firma Oswald","Person",FALSE,"Residential",FALSE,2016-12-13,2018-01-02,"ANG",2016-12-30,56.38,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"242","10641599",1301010176,"Firma Oswald","Person",FALSE,"Residential",FALSE,2016-12-13,2018-01-02,"ANG",2016-12-30,49.04,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"243","10641599",1301010176,"Firma Oswald","Person",FALSE,"Residential",FALSE,2016-12-13,2018-01-02,"ANG",2016-12-30,99.58,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"244","10653392",1301001217,"Florentina Hipolito","Person",FALSE,"Residential",FALSE,2017-08-15,2018-01-02,"ANG",2017-09-01,14.45,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"245","10668240",1301003740,"Mc Kenzie Julian","Person",FALSE,"Residential",FALSE,2016-11-28,2018-01-02,"ANG",2016-12-30,35,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"246","10668240",1301003740,"Mc Kenzie Julian","Person",FALSE,"Residential",FALSE,2016-12-13,2018-01-02,"ANG",2016-12-30,30.37,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"247","10671853",1301017570,"Capricornie Johannita","Person",FALSE,"Residential",FALSE,2016-11-02,2018-01-02,"ANG",2016-12-02,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"248","10674788",1301010351,"Joaquim Da Mata Luis","Person",FALSE,"Residential",FALSE,2017-03-15,2018-01-02,"ANG",2017-04-03,44.84,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"249","10674788",1301010351,"Joaquim Da Mata Luis","Person",FALSE,"Residential",FALSE,2017-03-15,2018-01-02,"ANG",2017-04-03,142.54,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"250","10674788",1301010351,"Joaquim Da Mata Luis","Person",FALSE,"Residential",FALSE,2017-03-15,2018-01-02,"ANG",2017-04-03,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"251","10683402",1301001604,"Martis Antonio","Person",FALSE,"Residential",FALSE,2017-01-13,2018-01-02,"ANG",2017-02-01,43.78,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"252","10683402",1301001604,"Martis Antonio","Person",FALSE,"Residential",FALSE,2016-12-13,2018-01-02,"ANG",2016-12-30,58.07,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"253","10683402",1301001604,"Martis Antonio","Person",FALSE,"Residential",FALSE,2016-10-14,2018-01-02,"ANG",2016-11-02,131.32,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"254","10683402",1301001604,"Martis Antonio","Person",FALSE,"Residential",FALSE,2017-01-13,2018-01-02,"ANG",2017-02-01,157.76,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"255","10683402",1301001604,"Martis Antonio","Person",FALSE,"Residential",FALSE,2016-12-13,2018-01-02,"ANG",2016-12-30,89.15,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"256","10683402",1301001604,"Martis Antonio","Person",FALSE,"Residential",FALSE,2016-10-14,2018-01-02,"ANG",2016-11-02,98.62,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"257","10683402",1301001604,"Martis Antonio","Person",FALSE,"Residential",FALSE,2016-11-14,2018-01-02,"ANG",2016-12-01,297.21,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"258","10683402",1301001604,"Martis Antonio","Person",FALSE,"Residential",FALSE,2016-11-14,2018-01-02,"ANG",2016-12-01,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"259","10683402",1301001604,"Martis Antonio","Person",FALSE,"Residential",FALSE,2016-10-27,2018-01-02,"ANG",2016-12-01,15,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"260","10683402",1301001604,"Martis Antonio","Person",FALSE,"Residential",FALSE,2016-11-14,2018-01-02,"ANG",2016-12-01,425.53,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"261","10683402",1301001604,"Martis Antonio","Person",FALSE,"Residential",FALSE,2017-01-13,2018-01-02,"ANG",2017-02-01,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"262","10683402",1301001604,"Martis Antonio","Person",FALSE,"Residential",FALSE,2016-12-13,2018-01-02,"ANG",2016-12-30,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"263","10683402",1301001604,"Martis Antonio","Person",FALSE,"Residential",FALSE,2016-10-14,2018-01-02,"ANG",2016-11-02,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"264","10703545",1301028333,"Martis Rupert","Person",FALSE,"Residential",FALSE,2017-04-12,2018-01-02,"ANG",2017-05-03,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"265","10706307",1301006472,"Felida Benigno","Person",FALSE,"Residential",FALSE,2017-04-18,2018-01-02,"ANG",2017-05-05,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"266","10706307",1301006472,"Felida Benigno","Person",FALSE,"Residential",FALSE,2017-04-18,2018-01-02,"ANG",2017-05-05,2.3,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"267","10706307",1301006472,"Felida Benigno","Person",FALSE,"Residential",FALSE,2017-04-18,2018-01-02,"ANG",2017-05-05,2.2,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"268","10713320",1301002390,"Simon Lorenzo","Person",FALSE,"Residential",FALSE,2016-07-15,2018-01-02,"ANG",2016-08-03,42.79,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"269","10718419",1301002395,"Candeuil Hose","Person",FALSE,"Residential",FALSE,2016-09-16,2018-01-02,"ANG",2016-10-05,0.93,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"270","10740880",1301010307,"Rosheuvel Rudolf","Person",FALSE,"Residential",FALSE,2016-08-17,2018-01-02,"ANG",2016-09-05,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"271","10741496",1301017688,"Sakoetoe Hubert","Person",FALSE,"Residential",FALSE,2017-04-19,2018-01-02,"ANG",2017-05-08,610.93,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"272","10750699",1301006200,"Cijntje Hose","Person",FALSE,"Residential",FALSE,2016-07-15,2018-01-02,"ANG",2016-08-03,7.4,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"273","10750699",1301006200,"Cijntje Hose","Person",FALSE,"Residential",FALSE,2016-07-15,2018-01-02,"ANG",2016-08-03,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"274","10750699",1301006200,"Cijntje Hose","Person",FALSE,"Residential",FALSE,2016-07-15,2018-01-02,"ANG",2016-08-03,7.24,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"275","10750699",1301006200,"Cijntje Hose","Person",FALSE,"Residential",FALSE,2016-06-17,2018-01-02,"ANG",2016-07-06,0.05,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"276","10750699",1301006200,"Cijntje Hose","Person",FALSE,"Residential",FALSE,2016-06-17,2018-01-02,"ANG",2016-07-06,28.61,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"277","10750699",1301006200,"Cijntje Hose","Person",FALSE,"Residential",FALSE,2016-08-16,2018-01-02,"ANG",2016-09-02,64.55,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"278","10750699",1301006200,"Cijntje Hose","Person",FALSE,"Residential",FALSE,2016-08-16,2018-01-02,"ANG",2016-09-02,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"279","10751124",1301010437,"Engelhardt Altagracia","Person",FALSE,"Residential",FALSE,2016-10-20,2018-01-02,"ANG",2016-12-02,15,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"280","10751124",1301010437,"Engelhardt Altagracia","Person",FALSE,"Residential",FALSE,2016-10-20,2018-01-02,"ANG",2016-12-02,25,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"281","10751124",1301010437,"Engelhardt Altagracia","Person",FALSE,"Residential",FALSE,2016-10-20,2018-01-02,"ANG",2016-12-02,75,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"282","10756221",1301013553,"Hueck Raul","Person",FALSE,"Residential",FALSE,2017-07-18,2018-01-02,"ANG",2017-08-04,156.76,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"283","10756221",1301013553,"Hueck Raul","Person",FALSE,"Residential",FALSE,2017-07-18,2018-01-02,"ANG",2017-08-04,375.79,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"284","10756221",1301013553,"Hueck Raul","Person",FALSE,"Residential",FALSE,2017-07-18,2018-01-02,"ANG",2017-08-04,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"285","10767167",1301011611,"Costina Jesus","Person",FALSE,"Residential",FALSE,2016-11-16,2018-01-02,"ANG",2016-12-05,110.94,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"286","10810601",1301010201,"Gijsbertha Johan","Person",FALSE,"Residential",FALSE,2017-08-17,2018-01-02,"ANG",2017-09-05,30.51,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"287","10810601",1301010201,"Gijsbertha Johan","Person",FALSE,"Residential",FALSE,2017-08-17,2018-01-02,"ANG",2017-09-05,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"288","10815384",1301006347,"Fraites Antoine","Person",FALSE,"Residential",FALSE,2017-08-17,2018-01-02,"ANG",2017-09-05,28.17,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"289","10815384",1301006347,"Fraites Antoine","Person",FALSE,"Residential",FALSE,2017-06-19,2018-01-02,"ANG",2017-07-06,213.17,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"290","10815384",1301006347,"Fraites Antoine","Person",FALSE,"Residential",FALSE,2017-07-18,2018-01-02,"ANG",2017-08-04,42.35,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"291","10815384",1301006347,"Fraites Antoine","Person",FALSE,"Residential",FALSE,2017-07-18,2018-01-02,"ANG",2017-08-04,31.67,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"292","10815384",1301006347,"Fraites Antoine","Person",FALSE,"Residential",FALSE,2017-07-18,2018-01-02,"ANG",2017-08-04,16.69,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"293","10815384",1301006347,"Fraites Antoine","Person",FALSE,"Residential",FALSE,2016-09-16,2018-01-02,"ANG",2016-10-05,104.39,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"294","10815384",1301006347,"Fraites Antoine","Person",FALSE,"Residential",FALSE,2016-09-16,2018-01-02,"ANG",2016-10-05,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"295","10815384",1301006347,"Fraites Antoine","Person",FALSE,"Residential",FALSE,2016-09-16,2018-01-02,"ANG",2016-10-05,6.91,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"296","10815384",1301006347,"Fraites Antoine","Person",FALSE,"Residential",FALSE,2016-08-17,2018-01-02,"ANG",2016-09-05,5.33,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"297","10815384",1301006347,"Fraites Antoine","Person",FALSE,"Residential",FALSE,2016-12-15,2018-01-02,"ANG",2017-01-03,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"298","10815384",1301006347,"Fraites Antoine","Person",FALSE,"Residential",FALSE,2016-12-15,2018-01-02,"ANG",2017-01-03,7.26,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"299","10815384",1301006347,"Fraites Antoine","Person",FALSE,"Residential",FALSE,2016-12-15,2018-01-02,"ANG",2017-01-03,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"300","10815384",1301006347,"Fraites Antoine","Person",FALSE,"Residential",FALSE,2016-11-16,2018-01-02,"ANG",2016-12-05,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"301","10815384",1301006347,"Fraites Antoine","Person",FALSE,"Residential",FALSE,2016-11-16,2018-01-02,"ANG",2016-12-05,7.19,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"302","10815384",1301006347,"Fraites Antoine","Person",FALSE,"Residential",FALSE,2016-11-16,2018-01-02,"ANG",2016-12-05,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"303","10815384",1301006347,"Fraites Antoine","Person",FALSE,"Residential",FALSE,2017-04-19,2018-01-02,"ANG",2017-05-08,34.95,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"304","10815384",1301006347,"Fraites Antoine","Person",FALSE,"Residential",FALSE,2017-04-19,2018-01-02,"ANG",2017-05-08,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"305","10815384",1301006347,"Fraites Antoine","Person",FALSE,"Residential",FALSE,2017-04-19,2018-01-02,"ANG",2017-05-08,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"306","10815384",1301006347,"Fraites Antoine","Person",FALSE,"Residential",FALSE,2017-02-15,2018-01-02,"ANG",2017-03-06,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"307","10815384",1301006347,"Fraites Antoine","Person",FALSE,"Residential",FALSE,2017-02-15,2018-01-02,"ANG",2017-03-06,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"308","10815384",1301006347,"Fraites Antoine","Person",FALSE,"Residential",FALSE,2017-03-17,2018-01-02,"ANG",2017-04-05,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"309","10815384",1301006347,"Fraites Antoine","Person",FALSE,"Residential",FALSE,2017-03-17,2018-01-02,"ANG",2017-04-05,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"310","10815384",1301006347,"Fraites Antoine","Person",FALSE,"Residential",FALSE,2017-01-17,2018-01-02,"ANG",2017-02-03,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"311","10815384",1301006347,"Fraites Antoine","Person",FALSE,"Residential",FALSE,2017-01-17,2018-01-02,"ANG",2017-02-03,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"312","10815384",1301006347,"Fraites Antoine","Person",FALSE,"Residential",FALSE,2017-07-18,2018-01-02,"ANG",2017-08-04,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"313","10815384",1301006347,"Fraites Antoine","Person",FALSE,"Residential",FALSE,2017-06-19,2018-01-02,"ANG",2017-07-06,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"314","10815384",1301006347,"Fraites Antoine","Person",FALSE,"Residential",FALSE,2017-06-19,2018-01-02,"ANG",2017-07-06,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"315","10815384",1301006347,"Fraites Antoine","Person",FALSE,"Residential",FALSE,2017-08-17,2018-01-02,"ANG",2017-09-05,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"316","10821898",1301017084,"Martijn Hubert","Person",FALSE,"Residential",FALSE,2016-06-20,2018-01-02,"ANG",2016-07-07,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"317","10822420",1301013368,"Esser Stanley","Person",FALSE,"Residential",FALSE,2016-08-12,2018-01-02,"ANG",2016-09-05,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"318","10826149",1301055916,"Felicia-Nicolina Anna","Person",FALSE,"Residential",FALSE,2016-10-19,2018-01-02,"ANG",2016-11-07,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"319","10826149",1301055916,"Felicia-Nicolina Anna","Person",FALSE,"Residential",FALSE,2016-10-19,2018-01-02,"ANG",2016-11-07,15,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"320","10829286",1301019414,"Figueira Ferraz Feliciano","Person",FALSE,"Residential",FALSE,2016-11-17,2018-01-02,"ANG",2016-12-06,2.06,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"321","10849456",1301026654,"Nicolaas Scarlet","Person",FALSE,"Residential",FALSE,2016-11-17,2018-01-02,"ANG",2016-12-06,43.66,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"322","10849456",1301026654,"Nicolaas Scarlet","Person",FALSE,"Residential",FALSE,2016-11-17,2018-01-02,"ANG",2016-12-06,36.32,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"323","10859435",1301028875,"Godfried Ingrid","Person",FALSE,"Residential",FALSE,2017-03-06,2018-01-02,"ANG",2017-04-06,33.22,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"324","10859477",1301017105,"Presentacion-Koffie Emerita E","Person",FALSE,"Residential",FALSE,2017-06-20,2018-01-02,"ANG",2017-07-07,156.62,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"325","10859477",1301017105,"Presentacion-Koffie Emerita E","Person",FALSE,"Residential",FALSE,2017-06-20,2018-01-02,"ANG",2017-07-07,273.89,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"326","10859477",1301017105,"Presentacion-Koffie Emerita E","Person",FALSE,"Residential",FALSE,2017-06-20,2018-01-02,"ANG",2017-07-07,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"327","10871102",1301013639,"Martis Thomas","Person",FALSE,"Residential",FALSE,2017-01-18,2018-01-02,"ANG",2017-02-06,7.27,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"328","10871102",1301013639,"Martis Thomas","Person",FALSE,"Residential",FALSE,2016-12-16,2018-01-02,"ANG",2017-01-04,50.82,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"329","10871102",1301013639,"Martis Thomas","Person",FALSE,"Residential",FALSE,2017-01-18,2018-01-02,"ANG",2017-02-06,10.78,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"330","10871102",1301013639,"Martis Thomas","Person",FALSE,"Residential",FALSE,2016-12-16,2018-01-02,"ANG",2017-01-04,78.48,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"331","10871102",1301013639,"Martis Thomas","Person",FALSE,"Residential",FALSE,2016-12-16,2018-01-02,"ANG",2017-01-04,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"332","10909492",1301004154,"Abelina-Martina Macedonia","Person",FALSE,"Residential",FALSE,2017-04-07,2018-01-02,"ANG",2017-05-10,152.99,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"333","10931910",1301037230,"Paulina Mildred","Person",FALSE,"Residential",FALSE,2016-09-20,2018-01-02,"ANG",2016-10-07,14.93,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"334","10931910",1301037230,"Paulina Mildred","Person",FALSE,"Residential",FALSE,2016-08-24,2018-01-02,"ANG",2016-10-07,15,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"335","10940812",1301019373,"De Windt Hubert","Person",FALSE,"Residential",FALSE,2017-05-19,2018-01-02,"ANG",2017-06-08,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"336","10940812",1301019373,"De Windt Hubert","Person",FALSE,"Residential",FALSE,2017-02-16,2018-01-02,"ANG",2017-03-07,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"337","10940812",1301019373,"De Windt Hubert","Person",FALSE,"Residential",FALSE,2017-10-19,2018-01-02,"ANG",2017-11-06,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"338","10940812",1301019373,"De Windt Hubert","Person",FALSE,"Residential",FALSE,2017-07-19,2018-01-02,"ANG",2017-08-07,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"339","10940812",1301019373,"De Windt Hubert","Person",FALSE,"Residential",FALSE,2017-04-20,2018-01-02,"ANG",2017-05-09,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"340","10940812",1301019373,"De Windt Hubert","Person",FALSE,"Residential",FALSE,2017-06-20,2018-01-02,"ANG",2017-07-07,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"341","10940812",1301019373,"De Windt Hubert","Person",FALSE,"Residential",FALSE,2017-09-18,2018-01-02,"ANG",2017-10-05,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"342","10940812",1301019373,"De Windt Hubert","Person",FALSE,"Residential",FALSE,2017-08-18,2018-01-02,"ANG",2017-09-06,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"343","10940812",1301019373,"De Windt Hubert","Person",FALSE,"Residential",FALSE,2017-03-20,2018-01-02,"ANG",2017-04-06,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"344","10940812",1301019373,"De Windt Hubert","Person",FALSE,"Residential",FALSE,2017-02-28,2018-01-02,"ANG",2017-04-06,15,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"345","10956677",1301028791,"Abdul Hamid Nelson","Person",FALSE,"Residential",FALSE,2017-05-22,2018-01-02,"ANG",2017-06-08,99.84,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"346","10956677",1301028791,"Abdul Hamid Nelson","Person",FALSE,"Residential",FALSE,2017-05-22,2018-01-02,"ANG",2017-06-08,0.16,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"347","10967929",1301026661,"Brunings Alfred","Person",FALSE,"Residential",FALSE,2017-08-22,2018-01-02,"ANG",2017-09-08,4.47,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"348","10992576",1301017432,"Da Costa Gomez Eithel","Person",FALSE,"Residential",FALSE,2017-06-22,2018-01-02,"ANG",2017-07-11,4.99,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"349","11003215",1301006171,"Moreno Ivan","Person",FALSE,"Residential",FALSE,2017-02-20,2018-01-02,"ANG",2017-03-09,504.68,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"350","11006027",1301002602,"Rodriquez Requilda","Person",FALSE,"Residential",FALSE,2017-08-23,2018-01-02,"ANG",2017-09-11,57.52,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"351","11006027",1301002602,"Rodriquez Requilda","Person",FALSE,"Residential",FALSE,2017-07-24,2018-01-02,"ANG",2017-08-10,51.04,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"352","11006027",1301002602,"Rodriquez Requilda","Person",FALSE,"Residential",FALSE,2017-06-23,2018-01-02,"ANG",2017-07-12,52.13,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"353","11006027",1301002602,"Rodriquez Requilda","Person",FALSE,"Residential",FALSE,2017-05-24,2018-01-02,"ANG",2017-06-14,10.97,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"354","11006027",1301002602,"Rodriquez Requilda","Person",FALSE,"Residential",FALSE,2017-06-23,2018-01-02,"ANG",2017-07-12,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"355","11006027",1301002602,"Rodriquez Requilda","Person",FALSE,"Residential",FALSE,2017-07-24,2018-01-02,"ANG",2017-08-10,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"356","11037866",1301010033,"Gerard Evaristo","Person",FALSE,"Residential",FALSE,2017-09-20,2018-01-02,"ANG",2017-10-09,120.83,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"357","11037866",1301010033,"Gerard Evaristo","Person",FALSE,"Residential",FALSE,2017-09-20,2018-01-02,"ANG",2017-10-09,181.33,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"358","11037874",1301005443,"Trappenberg Pedro","Person",FALSE,"Residential",FALSE,2017-05-23,2018-01-02,"ANG",2017-06-13,49.22,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"359","11037874",1301005443,"Trappenberg Pedro","Person",FALSE,"Residential",FALSE,2017-05-23,2018-01-02,"ANG",2017-06-13,278.73,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"360","11037874",1301005443,"Trappenberg Pedro","Person",FALSE,"Residential",FALSE,2017-05-23,2018-01-02,"ANG",2017-06-13,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"361","11037874",1301005443,"Trappenberg Pedro","Person",FALSE,"Residential",FALSE,2017-05-02,2018-01-02,"ANG",2017-06-13,15,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"362","11039800",1301013230,"Rodriguez Carlos","Person",FALSE,"Residential",FALSE,2017-01-20,2018-01-02,"ANG",2017-02-08,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"363","11067683",1301006731,"Rosaria Francisco","Person",FALSE,"Residential",FALSE,2016-12-21,2018-01-02,"ANG",2017-01-09,43.56,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"364","11076307",1301015155,"Domitilia-Martha Norma","Person",FALSE,"Residential",FALSE,2017-02-21,2018-01-02,"ANG",2017-03-10,80.4,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"365","11076307",1301015155,"Domitilia-Martha Norma","Person",FALSE,"Residential",FALSE,2017-02-21,2018-01-02,"ANG",2017-03-10,145.59,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"366","11077222",1301012233,"Adelina Rini","Person",FALSE,"Residential",FALSE,2017-09-21,2018-01-02,"ANG",2017-10-11,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"367","11079583",1301013213,"Geiger Chaim","Person",FALSE,"Residential",FALSE,2016-08-23,2018-01-02,"ANG",2016-09-09,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"368","11093317",1301001724,"Piekeur Minguel","Person",FALSE,"Residential",FALSE,2017-10-23,2018-01-02,"ANG",2017-11-09,7.34,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"369","11093317",1301001724,"Piekeur Minguel","Person",FALSE,"Residential",FALSE,2017-10-23,2018-01-02,"ANG",2017-11-09,30.43,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"370","11093317",1301001724,"Piekeur Minguel","Person",FALSE,"Residential",FALSE,2017-10-23,2018-01-02,"ANG",2017-11-09,10.43,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"371","11118400",1301004038,"Rafael Nicolasa","Person",FALSE,"Residential",FALSE,2017-11-22,2018-01-02,"ANG",2017-12-11,7.27,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"372","11136660",1301023544,"Hanson Roberto","Person",FALSE,"Residential",FALSE,2017-06-26,2018-01-02,"ANG",2017-07-13,168.15,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"373","11136660",1301023544,"Hanson Roberto","Person",FALSE,"Residential",FALSE,2017-06-26,2018-01-02,"ANG",2017-07-13,209.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"374","11136660",1301023544,"Hanson Roberto","Person",FALSE,"Residential",FALSE,2017-06-26,2018-01-02,"ANG",2017-07-13,299.76,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"375","11139359",1301029000,"Dijksteel Mirna","Person",FALSE,"Residential",FALSE,2017-07-24,2018-01-02,"ANG",2017-08-10,19.84,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"376","11150347",1301014810,"Philips Marie","Person",FALSE,"Residential",FALSE,2016-10-25,2018-01-02,"ANG",2016-11-11,14.44,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"377","11150347",1301014810,"Philips Marie","Person",FALSE,"Residential",FALSE,2016-09-23,2018-01-02,"ANG",2016-10-12,91.31,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"378","11150347",1301014810,"Philips Marie","Person",FALSE,"Residential",FALSE,2016-08-24,2018-01-02,"ANG",2016-09-12,145.56,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"379","11150347",1301014810,"Philips Marie","Person",FALSE,"Residential",FALSE,2016-10-25,2018-01-02,"ANG",2016-11-11,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"380","11150347",1301014810,"Philips Marie","Person",FALSE,"Residential",FALSE,2016-11-23,2018-01-02,"ANG",2016-12-12,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"381","11150347",1301014810,"Philips Marie","Person",FALSE,"Residential",FALSE,2016-08-24,2018-01-02,"ANG",2016-09-12,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"382","11150347",1301014810,"Philips Marie","Person",FALSE,"Residential",FALSE,2016-09-23,2018-01-02,"ANG",2016-10-12,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"383","11168528",1301010330,"Barby Augusto","Person",FALSE,"Residential",FALSE,2017-05-30,2018-01-02,"ANG",2017-06-16,145.96,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"384","11170664",1301045750,"Maduro Arturo","Person",FALSE,"Residential",FALSE,2017-01-23,2018-01-02,"ANG",2017-02-09,71.81,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"385","11170664",1301045750,"Maduro Arturo","Person",FALSE,"Residential",FALSE,2017-01-23,2018-01-02,"ANG",2017-02-09,13.89,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"386","11170664",1301045750,"Maduro Arturo","Person",FALSE,"Residential",FALSE,2017-01-23,2018-01-02,"ANG",2017-02-09,358.45,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"387","11170664",1301045750,"Maduro Arturo","Person",FALSE,"Residential",FALSE,2017-01-23,2018-01-02,"ANG",2017-02-09,57.87,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"388","11182344",1301043257,"De Ponte Brazao Ernesto","Person",FALSE,"Residential",FALSE,2016-07-25,2018-01-02,"ANG",2016-08-11,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"389","11190729",1301017226,"Bernadina Eddy","Person",FALSE,"Residential",FALSE,2017-03-24,2018-01-02,"ANG",2017-04-12,808.72,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"390","11190729",1301017226,"Bernadina Eddy","Person",FALSE,"Residential",FALSE,2017-03-24,2018-01-02,"ANG",2017-04-12,248.18,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"391","11190729",1301017226,"Bernadina Eddy","Person",FALSE,"Residential",FALSE,2017-01-23,2018-01-02,"ANG",2017-02-09,138.07,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"392","11245451",1301023607,"Alberto Johnny","Person",FALSE,"Residential",FALSE,2016-10-27,2018-01-02,"ANG",2016-11-15,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"393","11256800",1301016111,"Martina Anna","Person",FALSE,"Residential",FALSE,2016-08-26,2018-01-02,"ANG",2016-09-14,2400,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"394","11256800",1301016111,"Martina Anna","Person",FALSE,"Residential",FALSE,2017-02-24,2018-01-02,"ANG",2017-03-16,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"395","11256800",1301016111,"Martina Anna","Person",FALSE,"Residential",FALSE,2016-11-25,2018-01-02,"ANG",2016-12-14,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"396","11256800",1301016111,"Martina Anna","Person",FALSE,"Residential",FALSE,2016-11-25,2018-01-02,"ANG",2016-12-14,14.44,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"397","11256800",1301016111,"Martina Anna","Person",FALSE,"Residential",FALSE,2016-10-27,2018-01-02,"ANG",2016-11-15,14.41,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"398","11256800",1301016111,"Martina Anna","Person",FALSE,"Residential",FALSE,2016-10-27,2018-01-02,"ANG",2016-11-15,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"399","11256800",1301016111,"Martina Anna","Person",FALSE,"Residential",FALSE,2016-09-27,2018-01-02,"ANG",2016-10-14,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"400","11256800",1301016111,"Martina Anna","Person",FALSE,"Residential",FALSE,2016-09-27,2018-01-02,"ANG",2016-10-14,1530.85,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"401","11256800",1301016111,"Martina Anna","Person",FALSE,"Residential",FALSE,2017-01-25,2018-01-02,"ANG",2017-02-13,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"402","11256800",1301016111,"Martina Anna","Person",FALSE,"Residential",FALSE,2016-12-27,2018-01-02,"ANG",2017-01-13,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"403","11266766",1301012354,"Decaster Anastacia","Person",FALSE,"Residential",FALSE,2017-02-24,2018-01-02,"ANG",2017-03-16,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"404","11267908",1301000073,"Nicolaas Jozef","Person",FALSE,"Residential",FALSE,2017-05-30,2018-01-02,"ANG",2017-06-16,4.95,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"405","11267908",1301000073,"Nicolaas Jozef","Person",FALSE,"Residential",FALSE,2017-05-30,2018-01-02,"ANG",2017-06-16,45.42,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"406","11270503",1301011336,"Dollison Mario","Person",FALSE,"Residential",FALSE,2016-08-26,2018-01-02,"ANG",2016-09-14,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"407","11271240",1301026133,"Chirino Marcos","Person",FALSE,"Residential",FALSE,2017-10-27,2018-01-02,"ANG",2017-11-14,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"408","11303479",1301015908,"Simmons Willy","Person",FALSE,"Residential",FALSE,2017-09-26,2018-01-02,"ANG",2017-10-13,918.85,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"409","11309352",1301003812,"Martina Aminta","Person",FALSE,"Residential",FALSE,2017-08-28,2018-01-02,"ANG",2017-09-14,36.32,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"410","11309352",1301003812,"Martina Aminta","Person",FALSE,"Residential",FALSE,2017-07-27,2018-01-02,"ANG",2017-08-15,56.41,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"411","11309352",1301003812,"Martina Aminta","Person",FALSE,"Residential",FALSE,2017-06-28,2018-01-02,"ANG",2017-07-17,49.41,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"412","11309352",1301003812,"Martina Aminta","Person",FALSE,"Residential",FALSE,2017-08-28,2018-01-02,"ANG",2017-09-14,23.57,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"413","11309352",1301003812,"Martina Aminta","Person",FALSE,"Residential",FALSE,2017-07-27,2018-01-02,"ANG",2017-08-15,24.11,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"414","11309352",1301003812,"Martina Aminta","Person",FALSE,"Residential",FALSE,2017-06-28,2018-01-02,"ANG",2017-07-17,22.25,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"415","11309352",1301003812,"Martina Aminta","Person",FALSE,"Residential",FALSE,2017-08-28,2018-01-02,"ANG",2017-09-14,1.33,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"416","11309352",1301003812,"Martina Aminta","Person",FALSE,"Residential",FALSE,2017-05-31,2018-01-02,"ANG",2017-06-19,33.3,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"417","11309352",1301003812,"Martina Aminta","Person",FALSE,"Residential",FALSE,2017-06-28,2018-01-02,"ANG",2017-07-17,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"418","11309352",1301003812,"Martina Aminta","Person",FALSE,"Residential",FALSE,2017-07-27,2018-01-02,"ANG",2017-08-15,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"419","11309352",1301003812,"Martina Aminta","Person",FALSE,"Residential",FALSE,2017-08-28,2018-01-02,"ANG",2017-09-14,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"420","11337397",1301007667,"Philipa Mario","Person",FALSE,"Residential",FALSE,2017-06-01,2018-01-02,"ANG",2017-06-20,58.85,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"421","11337397",1301007667,"Philipa Mario","Person",FALSE,"Residential",FALSE,2017-06-01,2018-01-02,"ANG",2017-06-20,34.39,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"422","11337397",1301007667,"Philipa Mario","Person",FALSE,"Residential",FALSE,2017-06-01,2018-01-02,"ANG",2017-06-20,228.58,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"423","11342677",1301013074,"Themen Henry","Person",FALSE,"Residential",FALSE,2017-06-29,2018-01-02,"ANG",2017-07-18,28.76,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"424","11364336",1301007556,"Rynschot Huberto","Person",FALSE,"Residential",FALSE,2017-06-01,2018-01-02,"ANG",2017-06-20,133.89,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"425","11366095",1301026936,"Daal Sirma","Person",FALSE,"Residential",FALSE,2016-10-28,2018-01-02,"ANG",2016-11-16,57.65,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"426","11366095",1301026936,"Daal Sirma","Person",FALSE,"Residential",FALSE,2016-11-28,2018-01-02,"ANG",2016-12-15,57.82,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"427","11366095",1301026936,"Daal Sirma","Person",FALSE,"Residential",FALSE,2016-09-28,2018-01-02,"ANG",2016-10-17,51.35,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"428","11366095",1301026936,"Daal Sirma","Person",FALSE,"Residential",FALSE,2016-08-29,2018-01-02,"ANG",2016-09-15,66.92,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"429","11366095",1301026936,"Daal Sirma","Person",FALSE,"Residential",FALSE,2016-12-28,2018-01-02,"ANG",2017-01-17,0.46,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"430","11366095",1301026936,"Daal Sirma","Person",FALSE,"Residential",FALSE,2017-03-30,2018-01-02,"ANG",2017-04-18,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"431","11366095",1301026936,"Daal Sirma","Person",FALSE,"Residential",FALSE,2017-03-30,2018-01-02,"ANG",2017-04-18,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"432","11366095",1301026936,"Daal Sirma","Person",FALSE,"Residential",FALSE,2016-06-29,2018-01-02,"ANG",2016-07-18,46.9,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"433","11366095",1301026936,"Daal Sirma","Person",FALSE,"Residential",FALSE,2016-07-28,2018-01-02,"ANG",2016-08-16,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"434","11366095",1301026936,"Daal Sirma","Person",FALSE,"Residential",FALSE,2016-07-28,2018-01-02,"ANG",2016-08-16,78.02,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"435","11366095",1301026936,"Daal Sirma","Person",FALSE,"Residential",FALSE,2016-07-28,2018-01-02,"ANG",2016-08-16,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"436","11366095",1301026936,"Daal Sirma","Person",FALSE,"Residential",FALSE,2017-01-26,2018-01-02,"ANG",2017-02-14,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"437","11366095",1301026936,"Daal Sirma","Person",FALSE,"Residential",FALSE,2017-01-26,2018-01-02,"ANG",2017-02-14,44.1,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"438","11366095",1301026936,"Daal Sirma","Person",FALSE,"Residential",FALSE,2017-01-26,2018-01-02,"ANG",2017-02-14,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"439","11366095",1301026936,"Daal Sirma","Person",FALSE,"Residential",FALSE,2016-12-28,2018-01-02,"ANG",2017-01-17,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"440","11366095",1301026936,"Daal Sirma","Person",FALSE,"Residential",FALSE,2016-10-28,2018-01-02,"ANG",2016-11-16,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"441","11366095",1301026936,"Daal Sirma","Person",FALSE,"Residential",FALSE,2016-11-28,2018-01-02,"ANG",2016-12-15,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"442","11366095",1301026936,"Daal Sirma","Person",FALSE,"Residential",FALSE,2016-08-29,2018-01-02,"ANG",2016-09-15,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"443","11366095",1301026936,"Daal Sirma","Person",FALSE,"Residential",FALSE,2016-09-28,2018-01-02,"ANG",2016-10-17,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"444","11366095",1301026936,"Daal Sirma","Person",FALSE,"Residential",FALSE,2016-10-28,2018-01-02,"ANG",2016-11-16,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"445","11366095",1301026936,"Daal Sirma","Person",FALSE,"Residential",FALSE,2016-11-28,2018-01-02,"ANG",2016-12-15,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"446","11366095",1301026936,"Daal Sirma","Person",FALSE,"Residential",FALSE,2016-08-29,2018-01-02,"ANG",2016-09-15,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"447","11366095",1301026936,"Daal Sirma","Person",FALSE,"Residential",FALSE,2016-09-28,2018-01-02,"ANG",2016-10-17,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"448","11366095",1301026936,"Daal Sirma","Person",FALSE,"Residential",FALSE,2016-12-28,2018-01-02,"ANG",2017-01-17,4.54,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"449","11380691",1301003096,"Casperson-Duke Carolina","Person",FALSE,"Residential",FALSE,2017-03-01,2018-01-02,"ANG",2017-03-20,165.17,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"450","11380691",1301003096,"Casperson-Duke Carolina","Person",FALSE,"Residential",FALSE,2017-03-01,2018-01-02,"ANG",2017-03-20,152.47,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"451","11380691",1301003096,"Casperson-Duke Carolina","Person",FALSE,"Residential",FALSE,2017-01-27,2018-01-02,"ANG",2017-02-15,128.41,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"452","11380691",1301003096,"Casperson-Duke Carolina","Person",FALSE,"Residential",FALSE,2017-01-27,2018-01-02,"ANG",2017-02-15,145.44,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"453","11380691",1301003096,"Casperson-Duke Carolina","Person",FALSE,"Residential",FALSE,2017-01-27,2018-01-02,"ANG",2017-02-15,150.53,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"454","11380691",1301003096,"Casperson-Duke Carolina","Person",FALSE,"Residential",FALSE,2017-01-27,2018-01-02,"ANG",2017-02-15,107.57,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"455","11380691",1301003096,"Casperson-Duke Carolina","Person",FALSE,"Residential",FALSE,2017-03-01,2018-01-02,"ANG",2017-03-20,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"456","11394886",1301007081,"Suares Eva","Person",FALSE,"Residential",FALSE,2017-11-29,2018-01-02,"ANG",2017-12-18,78.62,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"457","11394886",1301007081,"Suares Eva","Person",FALSE,"Residential",FALSE,2017-11-29,2018-01-02,"ANG",2017-12-18,110.49,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"458","11394886",1301007081,"Suares Eva","Person",FALSE,"Residential",FALSE,2017-11-24,2018-01-02,"ANG",2017-12-18,907.74,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"459","11394886",1301007081,"Suares Eva","Person",FALSE,"Residential",FALSE,2017-11-24,2018-01-02,"ANG",2017-12-18,102.65,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"460","11394886",1301007081,"Suares Eva","Person",FALSE,"Residential",FALSE,2017-11-29,2018-01-02,"ANG",2017-12-18,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"461","11396210",1301044180,"Magdalena Mary Ann","Person",FALSE,"Residential",FALSE,2016-12-28,2018-01-02,"ANG",2017-01-17,14.53,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"462","11396210",1301044180,"Magdalena Mary Ann","Person",FALSE,"Residential",FALSE,2016-11-28,2018-01-02,"ANG",2016-12-15,36.13,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"463","11396210",1301044180,"Magdalena Mary Ann","Person",FALSE,"Residential",FALSE,2016-10-28,2018-01-02,"ANG",2016-11-16,29.32,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"464","11396210",1301044180,"Magdalena Mary Ann","Person",FALSE,"Residential",FALSE,2016-11-28,2018-01-02,"ANG",2016-12-15,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"465","11405768",1301027137,"Leitoe Felipe","Person",FALSE,"Residential",FALSE,2017-06-30,2018-01-02,"ANG",2017-07-19,75.76,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"466","11405768",1301027137,"Leitoe Felipe","Person",FALSE,"Residential",FALSE,2017-06-30,2018-01-02,"ANG",2017-07-19,24.57,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"467","11405768",1301027137,"Leitoe Felipe","Person",FALSE,"Residential",FALSE,2017-06-30,2018-01-02,"ANG",2017-07-19,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"468","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2017-01-18,2018-01-02,"ANG",2017-02-06,7.32,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"469","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2016-12-16,2018-01-02,"ANG",2017-01-04,21.79,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"470","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2016-12-16,2018-01-02,"ANG",2017-01-04,38.76,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"471","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2017-01-18,2018-01-02,"ANG",2017-02-06,6.16,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"472","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2016-10-19,2018-01-02,"ANG",2016-11-07,11.55,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"473","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2017-05-19,2018-01-02,"ANG",2017-06-08,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"474","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2017-05-19,2018-01-02,"ANG",2017-06-08,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"475","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2016-11-17,2018-01-02,"ANG",2016-12-06,21.61,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"476","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2016-10-20,2018-01-02,"ANG",2016-12-06,15,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"477","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2016-10-20,2018-01-02,"ANG",2016-12-06,25,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"478","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2016-10-20,2018-01-02,"ANG",2016-12-06,150,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"479","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2016-10-20,2018-01-02,"ANG",2016-12-06,15,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"480","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2016-11-17,2018-01-02,"ANG",2016-12-06,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"481","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2016-10-20,2018-01-02,"ANG",2016-12-06,25,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"482","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2016-10-20,2018-01-02,"ANG",2016-12-06,75,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"483","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2016-11-17,2018-01-02,"ANG",2016-12-06,85.2,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"484","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2017-02-16,2018-01-02,"ANG",2017-03-07,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"485","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2017-02-16,2018-01-02,"ANG",2017-03-07,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"486","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2017-07-19,2018-01-02,"ANG",2017-08-07,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"487","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2017-07-19,2018-01-02,"ANG",2017-08-07,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"488","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2017-04-20,2018-01-02,"ANG",2017-05-09,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"489","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2017-06-20,2018-01-02,"ANG",2017-07-07,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"490","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2016-12-16,2018-01-02,"ANG",2017-01-04,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"491","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2017-03-20,2018-01-02,"ANG",2017-04-06,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"492","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2017-01-18,2018-01-02,"ANG",2017-02-06,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"493","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2017-04-20,2018-01-02,"ANG",2017-05-09,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"494","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2017-06-20,2018-01-02,"ANG",2017-07-07,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"495","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2017-03-20,2018-01-02,"ANG",2017-04-06,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"496","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2016-12-14,2018-01-02,"ANG",2017-01-04,15,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"497","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2016-12-01,2018-01-02,"ANG",2017-01-04,15,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"498","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2016-12-14,2018-01-02,"ANG",2017-01-04,15,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"499","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2016-12-01,2018-01-02,"ANG",2017-01-04,15,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"500","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2016-12-14,2018-01-02,"ANG",2017-01-04,25,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"501","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2016-12-14,2018-01-02,"ANG",2017-01-04,25,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"502","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2016-12-14,2018-01-02,"ANG",2017-01-04,75,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"503","11644126",1301059072,"Gysbertha Evelin","Person",FALSE,"Residential",FALSE,2016-12-14,2018-01-02,"ANG",2017-01-04,150,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"504","11806883",1301059733,"Augusta Glenda","Person",FALSE,"Residential",FALSE,2016-12-27,2018-01-02,"ANG",2017-01-13,14.45,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"505","11992024",1301015575,"Phillips Luis","Person",FALSE,"Residential",FALSE,2016-11-01,2018-01-02,"ANG",2016-11-18,47.87,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"506","11992024",1301015575,"Phillips Luis","Person",FALSE,"Residential",FALSE,2016-11-01,2018-01-02,"ANG",2016-11-18,36.32,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"507","11992024",1301015575,"Phillips Luis","Person",FALSE,"Residential",FALSE,2016-11-01,2018-01-02,"ANG",2016-11-18,42,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"508","11992024",1301015575,"Phillips Luis","Person",FALSE,"Residential",FALSE,2016-11-01,2018-01-02,"ANG",2016-11-18,46.76,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"509","11992024",1301015575,"Phillips Luis","Person",FALSE,"Residential",FALSE,2016-11-01,2018-01-02,"ANG",2016-11-18,347.32,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"510","12091855",1301039130,"Kook Edseline","Person",FALSE,"Residential",FALSE,2017-10-06,2018-01-02,"ANG",2017-10-27,95.3,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"511","12091855",1301039130,"Kook Edseline","Person",FALSE,"Residential",FALSE,2017-11-07,2018-01-02,"ANG",2017-11-24,190.43,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"512","12154213",1301039130,"Kook Edseline","Person",FALSE,"Residential",FALSE,2017-09-06,2018-01-02,"ANG",2017-09-25,24.47,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"513","12154213",1301039130,"Kook Edseline","Person",FALSE,"Residential",FALSE,2017-11-07,2018-01-02,"ANG",2017-11-24,65.47,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"514","12154213",1301039130,"Kook Edseline","Person",FALSE,"Residential",FALSE,2017-10-06,2018-01-02,"ANG",2017-10-27,51.23,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"515","12154213",1301039130,"Kook Edseline","Person",FALSE,"Residential",FALSE,2017-12-07,2018-01-02,"ANG",2017-12-27,22.16,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"516","12154213",1301039130,"Kook Edseline","Person",FALSE,"Residential",FALSE,2017-10-06,2018-01-02,"ANG",2017-10-27,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"517","12154213",1301039130,"Kook Edseline","Person",FALSE,"Residential",FALSE,2017-11-07,2018-01-02,"ANG",2017-11-24,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"518","12230409",1301022520,"Dometilia Edwin","Person",FALSE,"Residential",FALSE,2017-11-17,2018-01-02,"ANG",2017-12-06,146.26,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"519","12230409",1301022520,"Dometilia Edwin","Person",FALSE,"Residential",FALSE,2017-11-17,2018-01-02,"ANG",2017-12-06,90.7,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"520","12230409",1301022520,"Dometilia Edwin","Person",FALSE,"Residential",FALSE,2017-10-19,2018-01-02,"ANG",2017-11-06,342.18,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"521","12237914",1301063132,"Jacinto Francisco","Person",FALSE,"Residential",FALSE,2017-08-14,2018-01-02,"ANG",2017-08-31,42.33,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"522","12237914",1301063132,"Jacinto Francisco","Person",FALSE,"Residential",FALSE,2017-07-13,2018-01-02,"ANG",2017-08-01,35.32,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"523","12237914",1301063132,"Jacinto Francisco","Person",FALSE,"Residential",FALSE,2017-07-13,2018-01-02,"ANG",2017-08-01,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"524","12241515",1301047808,"Nieuw-De Geus Klasina","Person",FALSE,"Residential",FALSE,2017-08-03,2018-01-02,"ANG",2017-08-22,49.31,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"525","12241515",1301047808,"Nieuw-De Geus Klasina","Person",FALSE,"Residential",FALSE,2017-11-02,2018-01-02,"ANG",2017-11-21,65.97,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"526","12241515",1301047808,"Nieuw-De Geus Klasina","Person",FALSE,"Residential",FALSE,2017-11-02,2018-01-02,"ANG",2017-11-21,38.64,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"527","12241515",1301047808,"Nieuw-De Geus Klasina","Person",FALSE,"Residential",FALSE,2017-08-03,2018-01-02,"ANG",2017-08-22,93.61,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"528","12241515",1301047808,"Nieuw-De Geus Klasina","Person",FALSE,"Residential",FALSE,2017-11-02,2018-01-02,"ANG",2017-11-21,160.77,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"529","12241515",1301047808,"Nieuw-De Geus Klasina","Person",FALSE,"Residential",FALSE,2017-11-02,2018-01-02,"ANG",2017-11-21,1.6,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"530","12241515",1301047808,"Nieuw-De Geus Klasina","Person",FALSE,"Residential",FALSE,2017-11-02,2018-01-02,"ANG",2017-11-21,117.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"531","12241515",1301047808,"Nieuw-De Geus Klasina","Person",FALSE,"Residential",FALSE,2017-07-21,2018-01-02,"ANG",2017-08-22,15,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"532","12241515",1301047808,"Nieuw-De Geus Klasina","Person",FALSE,"Residential",FALSE,2017-06-05,2018-01-02,"ANG",2017-06-22,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"533","12241515",1301047808,"Nieuw-De Geus Klasina","Person",FALSE,"Residential",FALSE,2017-06-05,2018-01-02,"ANG",2017-06-22,87.69,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"534","12241515",1301047808,"Nieuw-De Geus Klasina","Person",FALSE,"Residential",FALSE,2017-06-05,2018-01-02,"ANG",2017-06-22,124.55,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"535","12241515",1301047808,"Nieuw-De Geus Klasina","Person",FALSE,"Residential",FALSE,2017-05-08,2018-01-02,"ANG",2017-05-29,63.19,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"536","12241515",1301047808,"Nieuw-De Geus Klasina","Person",FALSE,"Residential",FALSE,2017-05-08,2018-01-02,"ANG",2017-05-29,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"537","12241515",1301047808,"Nieuw-De Geus Klasina","Person",FALSE,"Residential",FALSE,2017-05-08,2018-01-02,"ANG",2017-05-29,96.25,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"538","12241515",1301047808,"Nieuw-De Geus Klasina","Person",FALSE,"Residential",FALSE,2017-09-01,2018-01-02,"ANG",2017-09-21,58.61,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"539","12241515",1301047808,"Nieuw-De Geus Klasina","Person",FALSE,"Residential",FALSE,2017-09-01,2018-01-02,"ANG",2017-09-21,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"540","12241515",1301047808,"Nieuw-De Geus Klasina","Person",FALSE,"Residential",FALSE,2017-09-01,2018-01-02,"ANG",2017-09-21,104.51,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"541","12241515",1301047808,"Nieuw-De Geus Klasina","Person",FALSE,"Residential",FALSE,2017-04-04,2018-01-02,"ANG",2017-04-21,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"542","12241515",1301047808,"Nieuw-De Geus Klasina","Person",FALSE,"Residential",FALSE,2017-04-04,2018-01-02,"ANG",2017-04-21,102.26,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"543","12241515",1301047808,"Nieuw-De Geus Klasina","Person",FALSE,"Residential",FALSE,2017-04-04,2018-01-02,"ANG",2017-04-21,29.09,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"544","12241515",1301047808,"Nieuw-De Geus Klasina","Person",FALSE,"Residential",FALSE,2017-07-04,2018-01-02,"ANG",2017-07-21,49.46,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"545","12241515",1301047808,"Nieuw-De Geus Klasina","Person",FALSE,"Residential",FALSE,2017-07-04,2018-01-02,"ANG",2017-07-21,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"546","12241515",1301047808,"Nieuw-De Geus Klasina","Person",FALSE,"Residential",FALSE,2017-07-04,2018-01-02,"ANG",2017-07-21,106.36,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"547","12241515",1301047808,"Nieuw-De Geus Klasina","Person",FALSE,"Residential",FALSE,2017-08-03,2018-01-02,"ANG",2017-08-22,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"548","12361713",1301064178,"Perry Verine","Person",FALSE,"Residential",FALSE,2016-06-17,2018-01-02,"ANG",2016-07-06,42.9,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"549","12361713",1301064178,"Perry Verine","Person",FALSE,"Residential",FALSE,2016-06-17,2018-01-02,"ANG",2016-07-06,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"550","12397170",1301025095,"James Lucinda","Person",FALSE,"Residential",FALSE,2017-08-18,2018-01-02,"ANG",2017-09-06,50.04,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"551","12397170",1301025095,"James Lucinda","Person",FALSE,"Residential",FALSE,2017-06-20,2018-01-02,"ANG",2017-07-07,63.45,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"552","12397170",1301025095,"James Lucinda","Person",FALSE,"Residential",FALSE,2017-04-20,2018-01-02,"ANG",2017-05-09,31.38,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"553","12397170",1301025095,"James Lucinda","Person",FALSE,"Residential",FALSE,2017-05-19,2018-01-02,"ANG",2017-06-08,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"554","12397170",1301025095,"James Lucinda","Person",FALSE,"Residential",FALSE,2017-05-19,2018-01-02,"ANG",2017-06-08,49.22,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"555","12397170",1301025095,"James Lucinda","Person",FALSE,"Residential",FALSE,2017-07-19,2018-01-02,"ANG",2017-08-07,42.34,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"556","12397170",1301025095,"James Lucinda","Person",FALSE,"Residential",FALSE,2017-07-19,2018-01-02,"ANG",2017-08-07,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"557","12397170",1301025095,"James Lucinda","Person",FALSE,"Residential",FALSE,2017-06-20,2018-01-02,"ANG",2017-07-07,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"558","12437019",1301041740,"Davelaar/Meyer Irma","Person",FALSE,"Residential",FALSE,2016-12-15,2018-01-02,"ANG",2017-01-03,182.7,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"559","12437019",1301041740,"Davelaar/Meyer Irma","Person",FALSE,"Residential",FALSE,2017-01-17,2018-01-02,"ANG",2017-02-03,204.02,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"560","12437019",1301041740,"Davelaar/Meyer Irma","Person",FALSE,"Residential",FALSE,2017-01-17,2018-01-02,"ANG",2017-02-03,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"561","12453269",1301063772,"Rosaria Andres","Person",FALSE,"Residential",FALSE,2017-10-12,2018-01-02,"ANG",2017-10-31,58.55,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"562","12453269",1301063772,"Rosaria Andres","Person",FALSE,"Residential",FALSE,2017-10-12,2018-01-02,"ANG",2017-10-31,14.75,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"563","12453269",1301063772,"Rosaria Andres","Person",FALSE,"Residential",FALSE,2017-10-12,2018-01-02,"ANG",2017-10-31,20.74,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"564","12453269",1301063772,"Rosaria Andres","Person",FALSE,"Residential",FALSE,2017-10-12,2018-01-02,"ANG",2017-10-31,14.77,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"565","12453269",1301063772,"Rosaria Andres","Person",FALSE,"Residential",FALSE,2017-09-11,2018-01-02,"ANG",2017-09-28,76.52,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"566","12485729",1301027275,"Petronia Russell","Person",FALSE,"Residential",FALSE,2017-05-02,2018-01-02,"ANG",2017-05-19,87.66,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"567","12501224",1301064301,"Van Lent Johannes","Person",FALSE,"Residential",FALSE,2017-02-14,2018-01-02,"ANG",2017-03-03,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"568","12501224",1301064301,"Van Lent Johannes","Person",FALSE,"Residential",FALSE,2017-02-14,2018-01-02,"ANG",2017-03-03,0.89,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"569","12506101",1301064575,"De Wind Ulrich","Person",FALSE,"Residential",FALSE,2016-11-22,2018-01-02,"ANG",2016-12-09,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"570","12506101",1301064575,"De Wind Ulrich","Person",FALSE,"Residential",FALSE,2016-11-22,2018-01-02,"ANG",2016-12-09,145.18,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"571","12563462",1301065705,"Servage Dolores","Person",FALSE,"Residential",FALSE,2017-05-03,2018-01-02,"ANG",2017-05-22,6.32,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"572","12563462",1301065705,"Servage Dolores","Person",FALSE,"Residential",FALSE,2017-06-01,2018-01-02,"ANG",2017-06-20,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"573","12563462",1301065705,"Servage Dolores","Person",FALSE,"Residential",FALSE,2017-06-01,2018-01-02,"ANG",2017-06-20,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"574","12563462",1301065705,"Servage Dolores","Person",FALSE,"Residential",FALSE,2017-05-03,2018-01-02,"ANG",2017-05-22,3.99,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"575","12586850",1301022682,"Ferreira Ronald","Person",FALSE,"Residential",FALSE,2017-06-16,2018-01-02,"ANG",2017-07-05,35.19,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"576","12586850",1301022682,"Ferreira Ronald","Person",FALSE,"Residential",FALSE,2017-05-18,2018-01-02,"ANG",2017-06-06,1,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"577","12586850",1301022682,"Ferreira Ronald","Person",FALSE,"Residential",FALSE,2017-05-18,2018-01-02,"ANG",2017-06-06,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"578","12586850",1301022682,"Ferreira Ronald","Person",FALSE,"Residential",FALSE,2017-05-18,2018-01-02,"ANG",2017-06-06,99.82,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"579","12586850",1301022682,"Ferreira Ronald","Person",FALSE,"Residential",FALSE,2017-06-01,2018-01-02,"ANG",2017-07-05,909.96,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"580","12620109",1301070338,"Baudouin Garry","Person",FALSE,"Residential",FALSE,2017-09-08,2018-01-02,"ANG",2017-09-27,7.37,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"581","12620109",1301070338,"Baudouin Garry","Person",FALSE,"Residential",FALSE,2017-04-10,2018-01-02,"ANG",2017-05-02,62.8,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"582","12620109",1301070338,"Baudouin Garry","Person",FALSE,"Residential",FALSE,2017-04-10,2018-01-02,"ANG",2017-05-02,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"583","12620109",1301070338,"Baudouin Garry","Person",FALSE,"Residential",FALSE,2017-03-10,2018-01-02,"ANG",2017-03-29,56.18,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"584","12620109",1301070338,"Baudouin Garry","Person",FALSE,"Residential",FALSE,2017-05-12,2018-01-02,"ANG",2017-06-01,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"585","12620109",1301070338,"Baudouin Garry","Person",FALSE,"Residential",FALSE,2017-12-08,2018-01-02,"ANG",2017-12-28,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"586","12620109",1301070338,"Baudouin Garry","Person",FALSE,"Residential",FALSE,2017-08-10,2018-01-02,"ANG",2017-08-29,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"587","12620109",1301070338,"Baudouin Garry","Person",FALSE,"Residential",FALSE,2017-07-11,2018-01-02,"ANG",2017-07-28,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"588","12620109",1301070338,"Baudouin Garry","Person",FALSE,"Residential",FALSE,2017-06-12,2018-01-02,"ANG",2017-06-29,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"589","12620109",1301070338,"Baudouin Garry","Person",FALSE,"Residential",FALSE,2017-10-11,2018-01-02,"ANG",2017-10-30,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"590","12620109",1301070338,"Baudouin Garry","Person",FALSE,"Residential",FALSE,2017-09-08,2018-01-02,"ANG",2017-09-27,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"591","12620109",1301070338,"Baudouin Garry","Person",FALSE,"Residential",FALSE,2017-11-09,2018-01-02,"ANG",2017-11-28,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"592","12625280",1301044130,"Jones Sharina","Person",FALSE,"Residential",FALSE,2016-08-24,2018-01-02,"ANG",2016-09-12,7.81,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"593","12625280",1301044130,"Jones Sharina","Person",FALSE,"Residential",FALSE,2016-08-24,2018-01-02,"ANG",2016-09-12,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"594","12666634",1301023612,"Winkel Carel","Person",FALSE,"Residential",FALSE,2017-06-02,2018-01-02,"ANG",2017-06-22,259.63,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"595","12669064",1301052969,"Sophia Gwendolyn","Person",FALSE,"Residential",FALSE,2016-11-01,2018-01-02,"ANG",2016-11-18,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"596","12669064",1301052969,"Sophia Gwendolyn","Person",FALSE,"Residential",FALSE,2016-11-01,2018-01-02,"ANG",2016-11-18,130.4,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"597","12669064",1301052969,"Sophia Gwendolyn","Person",FALSE,"Residential",FALSE,2016-10-03,2018-01-02,"ANG",2016-10-20,90.86,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"598","12669064",1301052969,"Sophia Gwendolyn","Person",FALSE,"Residential",FALSE,2016-10-03,2018-01-02,"ANG",2016-10-20,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"599","12669064",1301052969,"Sophia Gwendolyn","Person",FALSE,"Residential",FALSE,2016-09-16,2018-01-02,"ANG",2016-10-20,3.87,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"600","12859601",1301027422,"Maduro Guillermo","Person",FALSE,"Residential",FALSE,2017-04-12,2018-01-02,"ANG",2017-05-03,12.83,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"601","12859601",1301027422,"Maduro Guillermo","Person",FALSE,"Residential",FALSE,2017-04-12,2018-01-02,"ANG",2017-05-03,25.14,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"602","13169635",1301009646,"Lopez Trina","Person",FALSE,"Residential",FALSE,2016-08-02,2018-01-02,"ANG",2016-08-19,16.29,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"603","13275591",1301074307,"Van Der Steen Maria","Person",FALSE,"Residential",FALSE,2017-01-20,2018-01-02,"ANG",2017-02-09,36.31,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"604","13275591",1301074307,"Van Der Steen Maria","Person",FALSE,"Residential",FALSE,2017-01-20,2018-01-02,"ANG",2017-02-09,0.01,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"605","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2017-07-03,2018-01-02,"ANG",2017-07-20,7.06,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"606","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2017-01-02,2018-01-02,"ANG",2017-01-19,50.89,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"607","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2017-05-05,2018-01-02,"ANG",2017-05-24,21.05,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"608","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2017-04-03,2018-01-02,"ANG",2017-04-20,42.65,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"609","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2017-08-02,2018-01-02,"ANG",2017-08-21,0.95,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"610","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2017-07-03,2018-01-02,"ANG",2017-07-20,4.25,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"611","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2017-01-02,2018-01-02,"ANG",2017-01-19,30.45,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"612","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2017-01-02,2018-01-02,"ANG",2017-01-19,16,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"613","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2017-06-02,2018-01-02,"ANG",2017-06-22,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"614","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2017-06-02,2018-01-02,"ANG",2017-06-22,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"615","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2016-07-01,2018-01-02,"ANG",2016-07-20,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"616","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2016-07-01,2018-01-02,"ANG",2016-07-20,43.07,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"617","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2016-07-01,2018-01-02,"ANG",2016-07-20,10.62,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"618","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2016-11-01,2018-01-02,"ANG",2016-11-18,5.91,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"619","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2016-11-01,2018-01-02,"ANG",2016-11-18,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"620","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2016-10-03,2018-01-02,"ANG",2016-10-20,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"621","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2016-10-03,2018-01-02,"ANG",2016-10-20,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"622","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2016-08-02,2018-01-02,"ANG",2016-08-19,111.45,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"623","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2016-08-02,2018-01-02,"ANG",2016-08-19,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"624","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2016-08-02,2018-01-02,"ANG",2016-08-19,65.73,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"625","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2017-01-30,2018-01-02,"ANG",2017-02-16,78.81,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"626","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2017-01-30,2018-01-02,"ANG",2017-02-16,2.61,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"627","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2017-01-30,2018-01-02,"ANG",2017-02-16,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"628","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2017-01-25,2018-01-02,"ANG",2017-02-16,25,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"629","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2017-01-25,2018-01-02,"ANG",2017-02-16,75,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"630","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2017-01-30,2018-01-02,"ANG",2017-02-16,2.39,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"631","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2016-09-01,2018-01-02,"ANG",2016-09-20,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"632","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2016-09-01,2018-01-02,"ANG",2016-09-20,148.42,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"633","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2016-09-01,2018-01-02,"ANG",2016-09-20,108.46,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"634","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2017-03-02,2018-01-02,"ANG",2017-03-21,15.18,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"635","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2017-03-02,2018-01-02,"ANG",2017-03-21,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"636","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2017-03-02,2018-01-02,"ANG",2017-03-21,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"637","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2016-11-30,2018-01-02,"ANG",2016-12-17,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"638","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2016-11-30,2018-01-02,"ANG",2016-12-17,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"639","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2017-07-03,2018-01-02,"ANG",2017-07-20,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"640","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2017-05-05,2018-01-02,"ANG",2017-05-24,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"641","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2017-01-02,2018-01-02,"ANG",2017-01-19,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"642","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2017-08-02,2018-01-02,"ANG",2017-08-21,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"643","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2017-04-03,2018-01-02,"ANG",2017-04-20,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"644","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2017-05-05,2018-01-02,"ANG",2017-05-24,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"645","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2017-04-03,2018-01-02,"ANG",2017-04-20,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"646","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2017-07-03,2018-01-02,"ANG",2017-07-20,0.75,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"647","13326596",1301077632,"Vrutaal Egidio","Person",FALSE,"Residential",FALSE,2017-08-02,2018-01-02,"ANG",2017-08-21,4.05,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"648","13361392",1301067529,"De Groote Alexander","Person",FALSE,"Residential",FALSE,2017-07-20,2018-01-02,"ANG",2017-08-08,73.62,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"649","13426215",1301055821,"Casperson Jonis Arlette","Person",FALSE,"Residential",FALSE,2016-07-26,2018-01-02,"ANG",2016-08-12,5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"650","13468877",1301078268,"Doran Erwin","Person",FALSE,"Residential",FALSE,2017-03-03,2018-01-02,"ANG",2017-03-22,7.6,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"651","13468877",1301078268,"Doran Erwin","Person",FALSE,"Residential",FALSE,2017-02-01,2018-01-02,"ANG",2017-02-20,7.38,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"652","13468877",1301078268,"Doran Erwin","Person",FALSE,"Residential",FALSE,2017-02-01,2018-01-02,"ANG",2017-02-20,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"653","13468877",1301078268,"Doran Erwin","Person",FALSE,"Residential",FALSE,2017-04-04,2018-01-02,"ANG",2017-04-21,14.18,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"654","13468877",1301078268,"Doran Erwin","Person",FALSE,"Residential",FALSE,2017-03-03,2018-01-02,"ANG",2017-03-22,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"655","13504445",1301070381,"Coeriel Edgar","Person",FALSE,"Residential",FALSE,2016-10-28,2018-01-02,"ANG",2016-11-16,64.86,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"656","13504445",1301070381,"Coeriel Edgar","Person",FALSE,"Residential",FALSE,2016-11-28,2018-01-02,"ANG",2016-12-15,50.47,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"657","13504445",1301070381,"Coeriel Edgar","Person",FALSE,"Residential",FALSE,2016-10-28,2018-01-02,"ANG",2016-11-16,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"658","13533371",1301017435,"Annastatia Wilfred","Person",FALSE,"Residential",FALSE,2016-11-14,2018-01-02,"ANG",2016-12-01,14.34,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"659","13555276",1301013214,"Ansjeliena Virginia","Person",FALSE,"Residential",FALSE,2017-10-12,2018-01-02,"ANG",2017-10-31,146.45,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"660","13555276",1301013214,"Ansjeliena Virginia","Person",FALSE,"Residential",FALSE,2017-10-12,2018-01-02,"ANG",2017-10-31,89.83,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"661","13555276",1301013214,"Ansjeliena Virginia","Person",FALSE,"Residential",FALSE,2017-10-12,2018-01-02,"ANG",2017-10-31,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"662","13578216",1301059338,"Paulina -Rama Dolores","Person",FALSE,"Residential",FALSE,2016-11-18,2018-01-02,"ANG",2016-12-07,7.21,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"663","13578216",1301059338,"Paulina -Rama Dolores","Person",FALSE,"Residential",FALSE,2016-11-18,2018-01-02,"ANG",2016-12-07,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"664","13578216",1301059338,"Paulina -Rama Dolores","Person",FALSE,"Residential",FALSE,2016-12-19,2018-01-02,"ANG",2017-01-05,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"665","13597024",1301080019,"Henriquez Maria","Person",FALSE,"Residential",FALSE,2017-07-12,2018-01-02,"ANG",2017-07-31,11.3,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"666","13635026",1301088457,"La Cruz - Passial Khyshaira","Person",FALSE,"Residential",FALSE,2017-04-21,2018-01-02,"ANG",2017-05-10,34.98,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"667","13635026",1301088457,"La Cruz - Passial Khyshaira","Person",FALSE,"Residential",FALSE,2017-05-22,2018-01-02,"ANG",2017-06-08,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"668","13635026",1301088457,"La Cruz - Passial Khyshaira","Person",FALSE,"Residential",FALSE,2017-05-22,2018-01-02,"ANG",2017-06-08,35.16,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"669","13635026",1301088457,"La Cruz - Passial Khyshaira","Person",FALSE,"Residential",FALSE,2017-02-17,2018-01-02,"ANG",2017-03-08,52.38,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"670","13635026",1301088457,"La Cruz - Passial Khyshaira","Person",FALSE,"Residential",FALSE,2017-02-17,2018-01-02,"ANG",2017-03-08,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"671","13635026",1301088457,"La Cruz - Passial Khyshaira","Person",FALSE,"Residential",FALSE,2017-01-19,2018-01-02,"ANG",2017-02-07,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"672","13635026",1301088457,"La Cruz - Passial Khyshaira","Person",FALSE,"Residential",FALSE,2017-01-19,2018-01-02,"ANG",2017-02-07,36.61,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"673","13635026",1301088457,"La Cruz - Passial Khyshaira","Person",FALSE,"Residential",FALSE,2017-03-21,2018-01-02,"ANG",2017-04-07,44.15,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"674","13635026",1301088457,"La Cruz - Passial Khyshaira","Person",FALSE,"Residential",FALSE,2017-03-21,2018-01-02,"ANG",2017-04-07,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"675","13635026",1301088457,"La Cruz - Passial Khyshaira","Person",FALSE,"Residential",FALSE,2017-04-21,2018-01-02,"ANG",2017-05-10,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"676","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2017-03-14,2018-01-02,"ANG",2017-03-31,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"677","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2017-03-14,2018-01-02,"ANG",2017-03-31,125,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"678","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2016-09-13,2018-01-02,"ANG",2016-09-30,418.6,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"679","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2016-09-13,2018-01-02,"ANG",2016-09-30,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"680","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2016-09-13,2018-01-02,"ANG",2016-09-30,125,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"681","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2016-08-12,2018-01-02,"ANG",2016-08-31,161.46,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"682","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2016-08-12,2018-01-02,"ANG",2016-08-31,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"683","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2016-08-12,2018-01-02,"ANG",2016-08-31,125,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"684","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2016-07-13,2018-01-02,"ANG",2016-08-01,125,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"685","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2016-07-13,2018-01-02,"ANG",2016-08-01,493.13,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"686","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2016-07-13,2018-01-02,"ANG",2016-08-01,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"687","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2017-02-10,2018-01-02,"ANG",2017-03-01,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"688","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2016-11-11,2018-01-02,"ANG",2016-11-30,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"689","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2017-04-12,2018-01-02,"ANG",2017-05-03,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"690","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2017-08-14,2018-01-02,"ANG",2017-08-31,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"691","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2017-01-12,2018-01-02,"ANG",2017-01-31,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"692","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2017-06-14,2018-01-02,"ANG",2017-07-03,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"693","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2017-07-13,2018-01-02,"ANG",2017-08-01,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"694","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2017-05-16,2018-01-02,"ANG",2017-06-02,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"695","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2016-12-12,2018-01-02,"ANG",2016-12-29,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"696","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2017-09-12,2018-01-02,"ANG",2017-09-29,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"697","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2016-10-13,2018-01-02,"ANG",2016-11-01,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"698","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2017-10-13,2018-01-02,"ANG",2017-11-01,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"699","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2017-08-14,2018-01-02,"ANG",2017-08-31,125,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"700","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2017-09-12,2018-01-02,"ANG",2017-09-29,125,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"701","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2017-01-12,2018-01-02,"ANG",2017-01-31,125,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"702","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2017-05-16,2018-01-02,"ANG",2017-06-02,125,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"703","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2017-02-10,2018-01-02,"ANG",2017-03-01,125,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"704","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2017-04-12,2018-01-02,"ANG",2017-05-03,125,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"705","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2017-06-14,2018-01-02,"ANG",2017-07-03,125,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"706","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2016-12-12,2018-01-02,"ANG",2016-12-29,125,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"707","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2017-07-13,2018-01-02,"ANG",2017-08-01,125,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"708","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2016-11-11,2018-01-02,"ANG",2016-11-30,125,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"709","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2016-10-13,2018-01-02,"ANG",2016-11-01,125,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"710","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2017-10-13,2018-01-02,"ANG",2017-11-01,125,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"711","13693854",1301018497,"Abath Alouisio","Person",FALSE,"Residential",FALSE,2017-10-16,2018-01-02,"ANG",2017-11-30,16000,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"712","13739325",1301018557,"Martina Firmo","Person",FALSE,"Residential",FALSE,2016-12-19,2018-01-02,"ANG",2017-01-05,21.79,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"713","13739325",1301018557,"Martina Firmo","Person",FALSE,"Residential",FALSE,2016-10-20,2018-01-02,"ANG",2016-11-08,14.47,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"714","13739325",1301018557,"Martina Firmo","Person",FALSE,"Residential",FALSE,2016-08-19,2018-01-02,"ANG",2016-09-07,12.29,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"715","13739325",1301018557,"Martina Firmo","Person",FALSE,"Residential",FALSE,2016-09-20,2018-01-02,"ANG",2016-10-07,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"716","13739325",1301018557,"Martina Firmo","Person",FALSE,"Residential",FALSE,2016-09-20,2018-01-02,"ANG",2016-10-07,14.77,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"717","13739325",1301018557,"Martina Firmo","Person",FALSE,"Residential",FALSE,2016-11-18,2018-01-02,"ANG",2016-12-07,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"718","13739325",1301018557,"Martina Firmo","Person",FALSE,"Residential",FALSE,2016-11-18,2018-01-02,"ANG",2016-12-07,14.4,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"719","13739325",1301018557,"Martina Firmo","Person",FALSE,"Residential",FALSE,2017-02-17,2018-01-02,"ANG",2017-03-08,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"720","13739325",1301018557,"Martina Firmo","Person",FALSE,"Residential",FALSE,2017-02-17,2018-01-02,"ANG",2017-03-08,22.46,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"721","13739325",1301018557,"Martina Firmo","Person",FALSE,"Residential",FALSE,2017-01-19,2018-01-02,"ANG",2017-02-07,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"722","13739325",1301018557,"Martina Firmo","Person",FALSE,"Residential",FALSE,2017-01-19,2018-01-02,"ANG",2017-02-07,21.97,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"723","13739325",1301018557,"Martina Firmo","Person",FALSE,"Residential",FALSE,2017-03-21,2018-01-02,"ANG",2017-04-07,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"724","13739325",1301018557,"Martina Firmo","Person",FALSE,"Residential",FALSE,2017-03-21,2018-01-02,"ANG",2017-04-07,29.43,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"725","13739325",1301018557,"Martina Firmo","Person",FALSE,"Residential",FALSE,2016-10-20,2018-01-02,"ANG",2016-11-08,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"726","13739325",1301018557,"Martina Firmo","Person",FALSE,"Residential",FALSE,2016-12-19,2018-01-02,"ANG",2017-01-05,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"727","13824112",1301034396,"Sniphout Andrew","Person",FALSE,"Residential",FALSE,2016-07-25,2018-01-02,"ANG",2016-08-11,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"728","13824112",1301034396,"Sniphout Andrew","Person",FALSE,"Residential",FALSE,2016-08-24,2018-01-02,"ANG",2016-09-12,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"729","13848920",1301083918,"Rigaud-Hudson Gloria","Person",FALSE,"Residential",FALSE,2017-01-26,2018-01-02,"ANG",2017-02-14,92.12,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"730","13877115",1301046829,"Isenia Alvin","Person",FALSE,"Residential",FALSE,2017-09-22,2018-01-02,"ANG",2017-10-30,982.43,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"731","13877115",1301046829,"Isenia Alvin","Person",FALSE,"Residential",FALSE,2017-12-08,2018-01-02,"ANG",2017-12-28,29.13,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"732","13877115",1301046829,"Isenia Alvin","Person",FALSE,"Residential",FALSE,2017-12-08,2018-01-02,"ANG",2017-12-28,36.92,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"733","13877115",1301046829,"Isenia Alvin","Person",FALSE,"Residential",FALSE,2017-10-06,2018-01-02,"ANG",2017-10-30,1.39,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"734","13877115",1301046829,"Isenia Alvin","Person",FALSE,"Residential",FALSE,2017-12-08,2018-01-02,"ANG",2017-12-28,29.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"735","13877115",1301046829,"Isenia Alvin","Person",FALSE,"Residential",FALSE,2017-10-06,2018-01-02,"ANG",2017-10-30,8.05,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"736","13877115",1301046829,"Isenia Alvin","Person",FALSE,"Residential",FALSE,2017-09-22,2018-01-02,"ANG",2017-10-30,80,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"737","13877115",1301046829,"Isenia Alvin","Person",FALSE,"Residential",FALSE,2017-10-06,2018-01-02,"ANG",2017-10-30,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"738","13877115",1301046829,"Isenia Alvin","Person",FALSE,"Residential",FALSE,2017-11-08,2018-01-02,"ANG",2017-11-27,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"739","13877115",1301046829,"Isenia Alvin","Person",FALSE,"Residential",FALSE,2017-09-22,2018-01-02,"ANG",2017-10-30,25,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"740","13877115",1301046829,"Isenia Alvin","Person",FALSE,"Residential",FALSE,2017-09-22,2018-01-02,"ANG",2017-10-30,250,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"741","13877123",1301046829,"Isenia Alvin","Person",FALSE,"Residential",FALSE,2017-12-08,2018-01-02,"ANG",2017-12-28,117.23,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"742","13877123",1301046829,"Isenia Alvin","Person",FALSE,"Residential",FALSE,2017-10-06,2018-01-02,"ANG",2017-10-30,397.41,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"743","13877123",1301046829,"Isenia Alvin","Person",FALSE,"Residential",FALSE,2017-12-08,2018-01-02,"ANG",2017-12-28,36.55,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"744","13877123",1301046829,"Isenia Alvin","Person",FALSE,"Residential",FALSE,2017-09-22,2018-01-02,"ANG",2017-10-30,5209.72,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"745","13877123",1301046829,"Isenia Alvin","Person",FALSE,"Residential",FALSE,2017-11-08,2018-01-02,"ANG",2017-11-27,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"746","13877123",1301046829,"Isenia Alvin","Person",FALSE,"Residential",FALSE,2017-09-22,2018-01-02,"ANG",2017-10-30,25,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"747","13887322",1301086615,"George Hubert","Person",FALSE,"Residential",FALSE,2016-12-16,2018-01-02,"ANG",2017-01-17,25,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"748","13887322",1301086615,"George Hubert","Person",FALSE,"Residential",FALSE,2016-11-28,2018-01-02,"ANG",2016-12-15,543.77,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"749","13887322",1301086615,"George Hubert","Person",FALSE,"Residential",FALSE,2016-11-28,2018-01-02,"ANG",2016-12-15,563.66,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"750","13887322",1301086615,"George Hubert","Person",FALSE,"Residential",FALSE,2016-11-28,2018-01-02,"ANG",2016-12-15,619.08,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"751","13887322",1301086615,"George Hubert","Person",FALSE,"Residential",FALSE,2016-12-16,2018-01-02,"ANG",2017-01-17,75,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"752","13887322",1301086615,"George Hubert","Person",FALSE,"Residential",FALSE,2016-11-28,2018-01-02,"ANG",2016-12-15,587.87,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"753","13887322",1301086615,"George Hubert","Person",FALSE,"Residential",FALSE,2016-11-28,2018-01-02,"ANG",2016-12-15,8991.92,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"754","13971692",1301081431,"Sambre Kenia","Person",FALSE,"Residential",FALSE,2016-12-23,2018-01-02,"ANG",2017-01-12,0.02,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"755","13996545",1301022324,"Cornelis Noris","Person",FALSE,"Residential",FALSE,2016-09-07,2018-01-02,"ANG",2016-09-26,79.82,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"756","13996545",1301022324,"Cornelis Noris","Person",FALSE,"Residential",FALSE,2016-08-08,2018-01-02,"ANG",2016-08-25,19.68,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"757","13996545",1301022324,"Cornelis Noris","Person",FALSE,"Residential",FALSE,2016-09-07,2018-01-02,"ANG",2016-09-26,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"758","14015627",1301088790,"Wolters Albertus","Person",FALSE,"Residential",FALSE,2017-04-19,2018-01-02,"ANG",2017-05-08,181.87,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"759","14040672",1301026971,"Calvo Saureen","Person",FALSE,"Residential",FALSE,2016-08-25,2018-01-02,"ANG",2016-09-13,7.41,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"760","14040672",1301026971,"Calvo Saureen","Person",FALSE,"Residential",FALSE,2016-07-26,2018-01-02,"ANG",2016-08-12,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"761","14040672",1301026971,"Calvo Saureen","Person",FALSE,"Residential",FALSE,2016-07-26,2018-01-02,"ANG",2016-08-12,7.28,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"762","14040672",1301026971,"Calvo Saureen","Person",FALSE,"Residential",FALSE,2016-08-25,2018-01-02,"ANG",2016-09-13,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"763","14069676",1301096129,"Rusch Martin","Person",FALSE,"Residential",FALSE,2017-12-21,2018-01-02,"ANG",2018-01-15,346.41,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"764","14069676",1301096129,"Rusch Martin","Person",FALSE,"Residential",FALSE,2017-11-27,2018-01-02,"ANG",2017-12-14,233.32,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"765","14094875",1301074462,"Martha Wollit","Person",FALSE,"Residential",FALSE,2017-03-24,2018-01-02,"ANG",2017-04-12,29.08,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"766","14094875",1301074462,"Martha Wollit","Person",FALSE,"Residential",FALSE,2017-03-24,2018-01-02,"ANG",2017-04-12,15.13,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"767","14094875",1301074462,"Martha Wollit","Person",FALSE,"Residential",FALSE,2017-03-24,2018-01-02,"ANG",2017-04-12,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"768","14221040",1301028006,"Salsbach-Clemencia Marie","Person",FALSE,"Residential",FALSE,2017-05-30,2018-01-02,"ANG",2017-06-15,99.85,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"769","14221040",1301028006,"Salsbach-Clemencia Marie","Person",FALSE,"Residential",FALSE,2017-05-30,2018-01-02,"ANG",2017-06-15,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"770","14221040",1301028006,"Salsbach-Clemencia Marie","Person",FALSE,"Residential",FALSE,2017-05-30,2018-01-02,"ANG",2017-06-15,61.49,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"771","14354958",1301028465,"Minnaar-Berens Merle","Person",FALSE,"Residential",FALSE,2017-11-08,2018-01-02,"ANG",2017-11-27,0.1,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"772","14354958",1301028465,"Minnaar-Berens Merle","Person",FALSE,"Residential",FALSE,2017-12-08,2018-01-02,"ANG",2017-12-27,7.39,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"773","14389694",1301099263,"Van Heyningen Terence","Person",FALSE,"Residential",FALSE,2016-11-04,2018-01-02,"ANG",2016-11-23,21.55,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"774","14389694",1301099263,"Van Heyningen Terence","Person",FALSE,"Residential",FALSE,2016-10-06,2018-01-02,"ANG",2016-10-26,36.47,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"775","14389694",1301099263,"Van Heyningen Terence","Person",FALSE,"Residential",FALSE,2016-10-06,2018-01-02,"ANG",2016-10-26,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"776","14389694",1301099263,"Van Heyningen Terence","Person",FALSE,"Residential",FALSE,2016-09-06,2018-01-02,"ANG",2016-09-23,37.34,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"777","14389694",1301099263,"Van Heyningen Terence","Person",FALSE,"Residential",FALSE,2016-09-06,2018-01-02,"ANG",2016-09-23,0.5,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
"778","14451302",1301055145,"Zimmerman-Mademilia Maria","Person",FALSE,"Residential",FALSE,2016-11-21,2018-01-02,"ANG",2016-12-08,46.11,FALSE,"Migration Document","Migrated Transfer posting (Dr)"
1 contract_account business_partner Name bp_category active contract_type deposit doc_date post_date currency due_date amount negative documen_desc trandesc
2 1 10021171 1301014078 How-Breeveld Henriette Person FALSE Residential FALSE 2016-08-02 2018-01-02 ANG 2016-08-19 51.09 FALSE Migration Document Migrated Transfer posting (Dr)
3 2 10021171 1301014078 How-Breeveld Henriette Person FALSE Residential FALSE 2016-07-05 2018-01-02 ANG 2016-08-19 12.13 FALSE Migration Document Migrated Transfer posting (Dr)
4 3 10032562 1301013959 Hodge Edward Person FALSE Residential FALSE 2016-10-11 2018-01-02 ANG 2016-11-18 471.58 FALSE Migration Document Migrated Transfer posting (Dr)
5 4 10045060 1301047436 Pichardo-Palm Iris Person FALSE Residential FALSE 2017-08-02 2018-01-02 ANG 2017-08-21 128.28 FALSE Migration Document Migrated Transfer posting (Dr)
6 5 10045060 1301047436 Pichardo-Palm Iris Person FALSE Residential FALSE 2017-07-03 2018-01-02 ANG 2017-07-20 213.46 FALSE Migration Document Migrated Transfer posting (Dr)
7 6 10045060 1301047436 Pichardo-Palm Iris Person FALSE Residential FALSE 2017-05-05 2018-01-02 ANG 2017-05-24 156.07 FALSE Migration Document Migrated Transfer posting (Dr)
8 7 10045060 1301047436 Pichardo-Palm Iris Person FALSE Residential FALSE 2017-04-03 2018-01-02 ANG 2017-04-20 171.77 FALSE Migration Document Migrated Transfer posting (Dr)
9 8 10045060 1301047436 Pichardo-Palm Iris Person FALSE Residential FALSE 2017-06-02 2018-01-02 ANG 2017-06-22 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
10 9 10045060 1301047436 Pichardo-Palm Iris Person FALSE Residential FALSE 2017-06-02 2018-01-02 ANG 2017-06-22 212.9 FALSE Migration Document Migrated Transfer posting (Dr)
11 10 10045060 1301047436 Pichardo-Palm Iris Person FALSE Residential FALSE 2017-06-02 2018-01-02 ANG 2017-06-22 200 FALSE Migration Document Migrated Transfer posting (Dr)
12 11 10045060 1301047436 Pichardo-Palm Iris Person FALSE Residential FALSE 2017-03-02 2018-01-02 ANG 2017-03-21 128.99 FALSE Migration Document Migrated Transfer posting (Dr)
13 12 10045060 1301047436 Pichardo-Palm Iris Person FALSE Residential FALSE 2017-03-02 2018-01-02 ANG 2017-03-21 200 FALSE Migration Document Migrated Transfer posting (Dr)
14 13 10045060 1301047436 Pichardo-Palm Iris Person FALSE Residential FALSE 2017-03-02 2018-01-02 ANG 2017-03-21 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
15 14 10045060 1301047436 Pichardo-Palm Iris Person FALSE Residential FALSE 2017-07-03 2018-01-02 ANG 2017-07-20 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
16 15 10045060 1301047436 Pichardo-Palm Iris Person FALSE Residential FALSE 2017-05-05 2018-01-02 ANG 2017-05-24 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
17 16 10045060 1301047436 Pichardo-Palm Iris Person FALSE Residential FALSE 2017-08-02 2018-01-02 ANG 2017-08-21 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
18 17 10045060 1301047436 Pichardo-Palm Iris Person FALSE Residential FALSE 2017-04-03 2018-01-02 ANG 2017-04-20 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
19 18 10045060 1301047436 Pichardo-Palm Iris Person FALSE Residential FALSE 2017-08-07 2018-01-02 ANG 2017-09-20 15 FALSE Migration Document Migrated Transfer posting (Dr)
20 19 10045060 1301047436 Pichardo-Palm Iris Person FALSE Residential FALSE 2017-04-03 2018-01-02 ANG 2017-04-20 200 FALSE Migration Document Migrated Transfer posting (Dr)
21 20 10045060 1301047436 Pichardo-Palm Iris Person FALSE Residential FALSE 2017-07-03 2018-01-02 ANG 2017-07-20 200 FALSE Migration Document Migrated Transfer posting (Dr)
22 21 10045060 1301047436 Pichardo-Palm Iris Person FALSE Residential FALSE 2017-05-05 2018-01-02 ANG 2017-05-24 200 FALSE Migration Document Migrated Transfer posting (Dr)
23 22 10045060 1301047436 Pichardo-Palm Iris Person FALSE Residential FALSE 2017-08-02 2018-01-02 ANG 2017-08-21 200 FALSE Migration Document Migrated Transfer posting (Dr)
24 23 10045060 1301047436 Pichardo-Palm Iris Person FALSE Residential FALSE 2017-08-14 2018-01-02 ANG 2017-09-20 25065.53 FALSE Migration Document Migrated Transfer posting (Dr)
25 24 10045345 1301033777 Libiee Robert Person FALSE Residential FALSE 2017-09-01 2018-01-02 ANG 2017-09-20 184.83 FALSE Migration Document Migrated Transfer posting (Dr)
26 25 10045345 1301033777 Libiee Robert Person FALSE Residential FALSE 2017-09-01 2018-01-02 ANG 2017-09-20 182.96 FALSE Migration Document Migrated Transfer posting (Dr)
27 26 10045345 1301033777 Libiee Robert Person FALSE Residential FALSE 2017-09-01 2018-01-02 ANG 2017-09-20 16.01 FALSE Migration Document Migrated Transfer posting (Dr)
28 27 10045345 1301033777 Libiee Robert Person FALSE Residential FALSE 2017-09-01 2018-01-02 ANG 2017-09-20 6.06 FALSE Migration Document Migrated Transfer posting (Dr)
29 28 10048636 1301019733 Neuman Peggy Person FALSE Residential FALSE 2017-03-02 2018-01-02 ANG 2017-03-21 10.55 FALSE Migration Document Migrated Transfer posting (Dr)
30 29 10048636 1301019733 Neuman Peggy Person FALSE Residential FALSE 2017-03-02 2018-01-02 ANG 2017-03-21 4.8 FALSE Migration Document Migrated Transfer posting (Dr)
31 30 10048636 1301019733 Neuman Peggy Person FALSE Residential FALSE 2017-03-02 2018-01-02 ANG 2017-03-21 7.36 FALSE Migration Document Migrated Transfer posting (Dr)
32 31 10048636 1301019733 Neuman Peggy Person FALSE Residential FALSE 2017-03-02 2018-01-02 ANG 2017-03-21 7.39 FALSE Migration Document Migrated Transfer posting (Dr)
33 32 10048636 1301019733 Neuman Peggy Person FALSE Residential FALSE 2017-03-02 2018-01-02 ANG 2017-03-21 7.93 FALSE Migration Document Migrated Transfer posting (Dr)
34 33 10048636 1301019733 Neuman Peggy Person FALSE Residential FALSE 2017-03-02 2018-01-02 ANG 2017-03-21 5.7 FALSE Migration Document Migrated Transfer posting (Dr)
35 34 10055251 1301002948 Casimiri Johanna Person FALSE Residential FALSE 2017-07-03 2018-01-02 ANG 2017-07-20 35.32 FALSE Migration Document Migrated Transfer posting (Dr)
36 35 10055251 1301002948 Casimiri Johanna Person FALSE Residential FALSE 2017-05-05 2018-01-02 ANG 2017-05-24 6.87 FALSE Migration Document Migrated Transfer posting (Dr)
37 36 10055251 1301002948 Casimiri Johanna Person FALSE Residential FALSE 2017-06-02 2018-01-02 ANG 2017-06-22 49.25 FALSE Migration Document Migrated Transfer posting (Dr)
38 37 10055251 1301002948 Casimiri Johanna Person FALSE Residential FALSE 2017-06-02 2018-01-02 ANG 2017-06-22 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
39 38 10083204 1301004126 Bomba Cornelia Person FALSE Residential FALSE 2017-10-03 2018-01-02 ANG 2017-10-20 4.79 FALSE Migration Document Migrated Transfer posting (Dr)
40 39 10091574 1301017091 Francisco Consuelo Person FALSE Residential FALSE 2017-03-03 2018-01-02 ANG 2017-03-22 45.62 FALSE Migration Document Migrated Transfer posting (Dr)
41 40 10091574 1301017091 Francisco Consuelo Person FALSE Residential FALSE 2017-05-08 2018-01-02 ANG 2017-05-29 14 FALSE Migration Document Migrated Transfer posting (Dr)
42 41 10091574 1301017091 Francisco Consuelo Person FALSE Residential FALSE 2017-05-08 2018-01-02 ANG 2017-05-29 2.83 FALSE Migration Document Migrated Transfer posting (Dr)
43 42 10091574 1301017091 Francisco Consuelo Person FALSE Residential FALSE 2017-05-08 2018-01-02 ANG 2017-05-29 42.47 FALSE Migration Document Migrated Transfer posting (Dr)
44 43 10091574 1301017091 Francisco Consuelo Person FALSE Residential FALSE 2017-01-23 2018-01-02 ANG 2017-02-20 445.58 FALSE Migration Document Migrated Transfer posting (Dr)
45 44 10091574 1301017091 Francisco Consuelo Person FALSE Residential FALSE 2017-04-04 2018-01-02 ANG 2017-04-21 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
46 45 10091574 1301017091 Francisco Consuelo Person FALSE Residential FALSE 2017-03-03 2018-01-02 ANG 2017-03-22 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
47 46 10091574 1301017091 Francisco Consuelo Person FALSE Residential FALSE 2017-03-31 2018-01-02 ANG 2017-04-21 15 FALSE Migration Document Migrated Transfer posting (Dr)
48 47 10092245 1301019960 Bictorina Melvyn Person FALSE Residential FALSE 2017-02-10 2018-01-02 ANG 2017-03-22 1000 FALSE Migration Document Migrated Transfer posting (Dr)
49 48 10105941 1301009669 Haseth Hubert Person FALSE Residential FALSE 2017-06-28 2018-01-02 ANG 2017-07-21 31744.91 FALSE Migration Document Migrated Transfer posting (Dr)
50 49 10105941 1301009669 Haseth Hubert Person FALSE Residential FALSE 2017-06-28 2018-01-02 ANG 2017-07-21 25 FALSE Migration Document Migrated Transfer posting (Dr)
51 50 10105941 1301009669 Haseth Hubert Person FALSE Residential FALSE 2017-06-28 2018-01-02 ANG 2017-07-21 250 FALSE Migration Document Migrated Transfer posting (Dr)
52 51 10111780 1301042066 Kwidama-Rosalina Estrella R Person FALSE Residential FALSE 2016-08-03 2018-01-02 ANG 2016-08-22 177.39 FALSE Migration Document Migrated Transfer posting (Dr)
53 52 10111780 1301042066 Kwidama-Rosalina Estrella R Person FALSE Residential FALSE 2016-08-03 2018-01-02 ANG 2016-08-22 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
54 53 10111780 1301042066 Kwidama-Rosalina Estrella R Person FALSE Residential FALSE 2016-08-03 2018-01-02 ANG 2016-08-22 43.84 FALSE Migration Document Migrated Transfer posting (Dr)
55 54 10131382 1301009892 Agatha Marco Person FALSE Residential FALSE 2017-05-08 2018-01-02 ANG 2017-05-29 0.51 FALSE Migration Document Migrated Transfer posting (Dr)
56 55 10131382 1301009892 Agatha Marco Person FALSE Residential FALSE 2017-05-08 2018-01-02 ANG 2017-05-29 4.49 FALSE Migration Document Migrated Transfer posting (Dr)
57 56 10147799 1301036903 Cyntje Lucien Person FALSE Residential FALSE 2016-11-02 2018-01-02 ANG 2016-11-21 0.18 FALSE Migration Document Migrated Transfer posting (Dr)
58 57 10167553 1301009158 Emerencia-Damon Ana Person FALSE Residential FALSE 2017-03-03 2018-01-02 ANG 2017-03-22 7.39 FALSE Migration Document Migrated Transfer posting (Dr)
59 58 10167553 1301009158 Emerencia-Damon Ana Person FALSE Residential FALSE 2017-03-03 2018-01-02 ANG 2017-03-22 0.52 FALSE Migration Document Migrated Transfer posting (Dr)
60 59 10167553 1301009158 Emerencia-Damon Ana Person FALSE Residential FALSE 2017-03-03 2018-01-02 ANG 2017-03-22 36.37 FALSE Migration Document Migrated Transfer posting (Dr)
61 60 10171227 1301017414 Torbed Johan Person FALSE Residential FALSE 2016-12-02 2018-01-02 ANG 2016-12-21 27.71 FALSE Migration Document Migrated Transfer posting (Dr)
62 61 10171405 1301006199 Constancia-Zimmerman Petronilia Person FALSE Residential FALSE 2017-05-09 2018-01-02 ANG 2017-05-29 2.26 FALSE Migration Document Migrated Transfer posting (Dr)
63 62 10171405 1301006199 Constancia-Zimmerman Petronilia Person FALSE Residential FALSE 2017-05-09 2018-01-02 ANG 2017-05-29 2.21 FALSE Migration Document Migrated Transfer posting (Dr)
64 63 10171405 1301006199 Constancia-Zimmerman Petronilia Person FALSE Residential FALSE 2017-05-09 2018-01-02 ANG 2017-05-29 724.88 FALSE Migration Document Migrated Transfer posting (Dr)
65 64 10179877 1301020006 De Lanoe Erick Person FALSE Residential FALSE 2016-12-02 2018-01-02 ANG 2016-12-21 65.19 FALSE Migration Document Migrated Transfer posting (Dr)
66 65 10179877 1301020006 De Lanoe Erick Person FALSE Residential FALSE 2017-03-06 2018-01-02 ANG 2017-03-23 129.1 FALSE Migration Document Migrated Transfer posting (Dr)
67 66 10179877 1301020006 De Lanoe Erick Person FALSE Residential FALSE 2017-03-06 2018-01-02 ANG 2017-03-23 111.8 FALSE Migration Document Migrated Transfer posting (Dr)
68 67 10179877 1301020006 De Lanoe Erick Person FALSE Residential FALSE 2016-12-02 2018-01-02 ANG 2016-12-21 142.35 FALSE Migration Document Migrated Transfer posting (Dr)
69 68 10179877 1301020006 De Lanoe Erick Person FALSE Residential FALSE 2017-01-04 2018-01-02 ANG 2017-01-23 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
70 69 10179877 1301020006 De Lanoe Erick Person FALSE Residential FALSE 2017-01-04 2018-01-02 ANG 2017-01-23 29.09 FALSE Migration Document Migrated Transfer posting (Dr)
71 70 10179877 1301020006 De Lanoe Erick Person FALSE Residential FALSE 2017-01-04 2018-01-02 ANG 2017-01-23 96.08 FALSE Migration Document Migrated Transfer posting (Dr)
72 71 10179877 1301020006 De Lanoe Erick Person FALSE Residential FALSE 2016-12-02 2018-01-02 ANG 2016-12-21 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
73 72 10179877 1301020006 De Lanoe Erick Person FALSE Residential FALSE 2017-03-06 2018-01-02 ANG 2017-03-23 2.27 FALSE Migration Document Migrated Transfer posting (Dr)
74 73 10217756 1301038293 Schoop Esmee Person FALSE Residential FALSE 2017-11-03 2018-01-02 ANG 2017-11-22 74.66 FALSE Migration Document Migrated Transfer posting (Dr)
75 74 10238354 1301008454 Damoen Lorencia Person FALSE Residential FALSE 2017-01-04 2018-01-02 ANG 2017-01-23 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
76 75 10238354 1301008454 Damoen Lorencia Person FALSE Residential FALSE 2017-01-04 2018-01-02 ANG 2017-01-23 26.62 FALSE Migration Document Migrated Transfer posting (Dr)
77 76 10238354 1301008454 Damoen Lorencia Person FALSE Residential FALSE 2017-01-04 2018-01-02 ANG 2017-01-23 29.1 FALSE Migration Document Migrated Transfer posting (Dr)
78 77 10238956 1301007446 Plantijn Dario Person FALSE Residential FALSE 2016-09-05 2018-01-02 ANG 2016-09-22 2880 FALSE Migration Document Migrated Transfer posting (Dr)
79 78 10238956 1301007446 Plantijn Dario Person FALSE Residential FALSE 2016-10-05 2018-01-02 ANG 2016-10-24 44.77 FALSE Migration Document Migrated Transfer posting (Dr)
80 79 10238956 1301007446 Plantijn Dario Person FALSE Residential FALSE 2016-10-05 2018-01-02 ANG 2016-10-24 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
81 80 10249313 1301005242 Lubliek Gustaaf Person FALSE Residential FALSE 2017-02-03 2018-01-02 ANG 2017-02-22 5 FALSE Migration Document Migrated Transfer posting (Dr)
82 81 10259473 1301013244 Apostel Johannes Person FALSE Residential FALSE 2016-07-01 2018-01-02 ANG 2016-07-25 5 FALSE Migration Document Migrated Transfer posting (Dr)
83 82 10259677 1301003339 Martes Francisco Person FALSE Residential FALSE 2017-02-03 2018-01-02 ANG 2017-02-22 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
84 83 10259766 1301018837 Albert-Jansen Helen Person FALSE Residential FALSE 2017-11-06 2018-01-02 ANG 2017-11-23 29.11 FALSE Migration Document Migrated Transfer posting (Dr)
85 84 10259766 1301018837 Albert-Jansen Helen Person FALSE Residential FALSE 2017-11-06 2018-01-02 ANG 2017-11-23 27 FALSE Migration Document Migrated Transfer posting (Dr)
86 85 10259766 1301018837 Albert-Jansen Helen Person FALSE Residential FALSE 2017-11-06 2018-01-02 ANG 2017-11-23 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
87 86 10273980 1301016681 Soleana Edwin Person FALSE Residential FALSE 2017-09-05 2018-01-02 ANG 2017-09-22 48.24 FALSE Migration Document Migrated Transfer posting (Dr)
88 87 10273980 1301016681 Soleana Edwin Person FALSE Residential FALSE 2017-08-31 2018-01-02 ANG 2017-09-22 600 FALSE Migration Document Migrated Transfer posting (Dr)
89 88 10277984 1301000711 De Jongh Alberto Person FALSE Residential FALSE 2017-01-05 2018-01-02 ANG 2017-01-24 3.39 FALSE Migration Document Migrated Transfer posting (Dr)
90 89 10284127 1301033186 Cijntje Humphrey Person FALSE Residential FALSE 2016-09-07 2018-01-02 ANG 2016-09-26 5 FALSE Migration Document Migrated Transfer posting (Dr)
91 90 10314003 1301023248 Helmijr Astrid Person FALSE Residential FALSE 2016-09-07 2018-01-02 ANG 2016-09-26 22.41 FALSE Migration Document Migrated Transfer posting (Dr)
92 91 10314003 1301023248 Helmijr Astrid Person FALSE Residential FALSE 2016-07-07 2018-01-02 ANG 2016-07-26 66.41 FALSE Migration Document Migrated Transfer posting (Dr)
93 92 10314003 1301023248 Helmijr Astrid Person FALSE Residential FALSE 2016-09-07 2018-01-02 ANG 2016-09-26 27.79 FALSE Migration Document Migrated Transfer posting (Dr)
94 93 10314003 1301023248 Helmijr Astrid Person FALSE Residential FALSE 2016-08-08 2018-01-02 ANG 2016-08-25 90.85 FALSE Migration Document Migrated Transfer posting (Dr)
95 94 10314003 1301023248 Helmijr Astrid Person FALSE Residential FALSE 2016-08-08 2018-01-02 ANG 2016-08-25 47.74 FALSE Migration Document Migrated Transfer posting (Dr)
96 95 10314003 1301023248 Helmijr Astrid Person FALSE Residential FALSE 2016-08-08 2018-01-02 ANG 2016-08-25 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
97 96 10314003 1301023248 Helmijr Astrid Person FALSE Residential FALSE 2016-10-07 2018-01-02 ANG 2016-10-27 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
98 97 10314003 1301023248 Helmijr Astrid Person FALSE Residential FALSE 2016-09-07 2018-01-02 ANG 2016-09-26 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
99 98 10314003 1301023248 Helmijr Astrid Person FALSE Residential FALSE 2016-10-07 2018-01-02 ANG 2016-10-27 5 FALSE Migration Document Migrated Transfer posting (Dr)
100 99 10372695 1301025500 Lucas Criselda Person FALSE Residential FALSE 2017-04-07 2018-01-02 ANG 2017-04-26 41.66 FALSE Migration Document Migrated Transfer posting (Dr)
101 100 10372695 1301025500 Lucas Criselda Person FALSE Residential FALSE 2017-04-07 2018-01-02 ANG 2017-04-26 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
102 101 10396110 1301003284 Pisas Juancito Person FALSE Residential FALSE 2016-11-08 2018-01-02 ANG 2016-11-25 5 FALSE Migration Document Migrated Transfer posting (Dr)
103 102 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-08-10 2018-01-02 ANG 2017-08-29 14.16 FALSE Migration Document Migrated Transfer posting (Dr)
104 103 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-09-08 2018-01-02 ANG 2017-09-27 22.12 FALSE Migration Document Migrated Transfer posting (Dr)
105 104 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-06-12 2018-01-02 ANG 2017-06-29 14.08 FALSE Migration Document Migrated Transfer posting (Dr)
106 105 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-07-11 2018-01-02 ANG 2017-07-28 21.2 FALSE Migration Document Migrated Transfer posting (Dr)
107 106 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-10-11 2018-01-02 ANG 2017-10-30 29.26 FALSE Migration Document Migrated Transfer posting (Dr)
108 107 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-05-12 2018-01-02 ANG 2017-06-01 14.05 FALSE Migration Document Migrated Transfer posting (Dr)
109 108 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-10-04 2018-01-02 ANG 2017-10-30 44.91 FALSE Migration Document Migrated Transfer posting (Dr)
110 109 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-10-04 2018-01-02 ANG 2017-10-30 45.28 FALSE Migration Document Migrated Transfer posting (Dr)
111 110 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-10-04 2018-01-02 ANG 2017-10-30 53.05 FALSE Migration Document Migrated Transfer posting (Dr)
112 111 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-10-04 2018-01-02 ANG 2017-10-30 43.81 FALSE Migration Document Migrated Transfer posting (Dr)
113 112 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-10-04 2018-01-02 ANG 2017-10-30 44.47 FALSE Migration Document Migrated Transfer posting (Dr)
114 113 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-10-04 2018-01-02 ANG 2017-10-30 45.73 FALSE Migration Document Migrated Transfer posting (Dr)
115 114 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-10-04 2018-01-02 ANG 2017-10-30 50.16 FALSE Migration Document Migrated Transfer posting (Dr)
116 115 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-10-04 2018-01-02 ANG 2017-10-30 52.31 FALSE Migration Document Migrated Transfer posting (Dr)
117 116 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-10-04 2018-01-02 ANG 2017-10-30 47.71 FALSE Migration Document Migrated Transfer posting (Dr)
118 117 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-10-04 2018-01-02 ANG 2017-10-30 48.26 FALSE Migration Document Migrated Transfer posting (Dr)
119 118 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-10-04 2018-01-02 ANG 2017-10-30 47.58 FALSE Migration Document Migrated Transfer posting (Dr)
120 119 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-10-04 2018-01-02 ANG 2017-10-30 45.43 FALSE Migration Document Migrated Transfer posting (Dr)
121 120 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-01-10 2018-01-02 ANG 2017-01-27 5.01 FALSE Migration Document Migrated Transfer posting (Dr)
122 121 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-08-10 2018-01-02 ANG 2017-08-29 47.73 FALSE Migration Document Migrated Transfer posting (Dr)
123 122 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-06-12 2018-01-02 ANG 2017-06-29 94.07 FALSE Migration Document Migrated Transfer posting (Dr)
124 123 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-07-11 2018-01-02 ANG 2017-07-28 94.51 FALSE Migration Document Migrated Transfer posting (Dr)
125 124 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-01-10 2018-01-02 ANG 2017-01-27 32.44 FALSE Migration Document Migrated Transfer posting (Dr)
126 125 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-05-12 2018-01-02 ANG 2017-06-01 42.28 FALSE Migration Document Migrated Transfer posting (Dr)
127 126 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-04-10 2018-01-02 ANG 2017-05-02 43.59 FALSE Migration Document Migrated Transfer posting (Dr)
128 127 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-04-10 2018-01-02 ANG 2017-05-02 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
129 128 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-04-10 2018-01-02 ANG 2017-05-02 20.94 FALSE Migration Document Migrated Transfer posting (Dr)
130 129 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-02-08 2018-01-02 ANG 2017-02-28 18.65 FALSE Migration Document Migrated Transfer posting (Dr)
131 130 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-02-08 2018-01-02 ANG 2017-02-28 24.68 FALSE Migration Document Migrated Transfer posting (Dr)
132 131 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-02-08 2018-01-02 ANG 2017-02-28 3.38 FALSE Migration Document Migrated Transfer posting (Dr)
133 132 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-02-08 2018-01-02 ANG 2017-02-28 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
134 133 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-03-10 2018-01-02 ANG 2017-03-29 40.02 FALSE Migration Document Migrated Transfer posting (Dr)
135 134 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-03-10 2018-01-02 ANG 2017-03-29 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
136 135 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-03-10 2018-01-02 ANG 2017-03-29 22.77 FALSE Migration Document Migrated Transfer posting (Dr)
137 136 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-05-12 2018-01-02 ANG 2017-06-01 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
138 137 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-08-10 2018-01-02 ANG 2017-08-29 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
139 138 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-07-11 2018-01-02 ANG 2017-07-28 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
140 139 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-06-12 2018-01-02 ANG 2017-06-29 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
141 140 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-01-10 2018-01-02 ANG 2017-01-27 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
142 141 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-10-11 2018-01-02 ANG 2017-10-30 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
143 142 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-09-08 2018-01-02 ANG 2017-09-27 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
144 143 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-12-08 2018-01-02 ANG 2017-12-28 5 FALSE Migration Document Migrated Transfer posting (Dr)
145 144 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-10-11 2018-01-02 ANG 2017-10-30 5 FALSE Migration Document Migrated Transfer posting (Dr)
146 145 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-09-08 2018-01-02 ANG 2017-09-27 5 FALSE Migration Document Migrated Transfer posting (Dr)
147 146 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-09-21 2018-01-02 ANG 2017-10-30 15 FALSE Migration Document Migrated Transfer posting (Dr)
148 147 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-04-26 2018-01-02 ANG 2017-06-01 15 FALSE Migration Document Migrated Transfer posting (Dr)
149 148 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-09-21 2018-01-02 ANG 2017-10-30 25 FALSE Migration Document Migrated Transfer posting (Dr)
150 149 10408852 1301031965 Allee Rudsel Person FALSE Residential FALSE 2017-09-21 2018-01-02 ANG 2017-10-30 75 FALSE Migration Document Migrated Transfer posting (Dr)
151 150 10427547 1301003913 Koeiman Serapio Person FALSE Residential FALSE 2016-10-11 2018-01-02 ANG 2016-10-28 116.13 FALSE Migration Document Migrated Transfer posting (Dr)
152 151 10427547 1301003913 Koeiman Serapio Person FALSE Residential FALSE 2016-10-11 2018-01-02 ANG 2016-10-28 56.65 FALSE Migration Document Migrated Transfer posting (Dr)
153 152 10427547 1301003913 Koeiman Serapio Person FALSE Residential FALSE 2016-10-11 2018-01-02 ANG 2016-10-28 328.53 FALSE Migration Document Migrated Transfer posting (Dr)
154 153 10427547 1301003913 Koeiman Serapio Person FALSE Residential FALSE 2016-10-11 2018-01-02 ANG 2016-10-28 20 FALSE Migration Document Migrated Transfer posting (Dr)
155 154 10431407 1301046829 Isenia Alvin Person FALSE Residential FALSE 2017-12-08 2018-01-02 ANG 2017-12-28 3.32 FALSE Migration Document Migrated Transfer posting (Dr)
156 155 10431407 1301046829 Isenia Alvin Person FALSE Residential FALSE 2017-12-08 2018-01-02 ANG 2017-12-28 57.71 FALSE Migration Document Migrated Transfer posting (Dr)
157 156 10431407 1301046829 Isenia Alvin Person FALSE Residential FALSE 2017-12-08 2018-01-02 ANG 2017-12-28 6.26 FALSE Migration Document Migrated Transfer posting (Dr)
158 157 10431407 1301046829 Isenia Alvin Person FALSE Residential FALSE 2017-12-08 2018-01-02 ANG 2017-12-28 5.16 FALSE Migration Document Migrated Transfer posting (Dr)
159 158 10431407 1301046829 Isenia Alvin Person FALSE Residential FALSE 2017-12-08 2018-01-02 ANG 2017-12-28 5.85 FALSE Migration Document Migrated Transfer posting (Dr)
160 159 10443454 1301023695 Sprock Royston Person FALSE Residential FALSE 2016-08-09 2018-01-02 ANG 2016-08-26 25.76 FALSE Migration Document Migrated Transfer posting (Dr)
161 160 10456253 1301012576 Bart Serapio Person FALSE Residential FALSE 2017-09-11 2018-01-02 ANG 2017-09-28 294.39 FALSE Migration Document Migrated Transfer posting (Dr)
162 161 10461957 1301005773 Marcos Clemencia Person FALSE Residential FALSE 2016-06-14 2018-01-02 ANG 2016-07-01 76.6 FALSE Migration Document Migrated Transfer posting (Dr)
163 162 10461957 1301005773 Marcos Clemencia Person FALSE Residential FALSE 2016-06-14 2018-01-02 ANG 2016-07-01 53.97 FALSE Migration Document Migrated Transfer posting (Dr)
164 163 10461957 1301005773 Marcos Clemencia Person FALSE Residential FALSE 2016-07-12 2018-01-02 ANG 2016-07-29 64.91 FALSE Migration Document Migrated Transfer posting (Dr)
165 164 10461957 1301005773 Marcos Clemencia Person FALSE Residential FALSE 2016-07-12 2018-01-02 ANG 2016-07-29 120.32 FALSE Migration Document Migrated Transfer posting (Dr)
166 165 10461957 1301005773 Marcos Clemencia Person FALSE Residential FALSE 2016-07-12 2018-01-02 ANG 2016-07-29 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
167 166 10461957 1301005773 Marcos Clemencia Person FALSE Residential FALSE 2016-08-11 2018-01-02 ANG 2016-08-30 29.25 FALSE Migration Document Migrated Transfer posting (Dr)
168 167 10461957 1301005773 Marcos Clemencia Person FALSE Residential FALSE 2016-08-11 2018-01-02 ANG 2016-08-30 53.33 FALSE Migration Document Migrated Transfer posting (Dr)
169 168 10461957 1301005773 Marcos Clemencia Person FALSE Residential FALSE 2016-06-14 2018-01-02 ANG 2016-07-01 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
170 169 10493726 1301015406 Wieske Frank Person FALSE Residential FALSE 2016-10-11 2018-01-02 ANG 2016-10-28 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
171 170 10493726 1301015406 Wieske Frank Person FALSE Residential FALSE 2016-10-11 2018-01-02 ANG 2016-10-28 43.65 FALSE Migration Document Migrated Transfer posting (Dr)
172 171 10496295 1301003059 Ramada Andres Person FALSE Residential FALSE 2016-06-13 2018-01-02 ANG 2016-07-04 5 FALSE Migration Document Migrated Transfer posting (Dr)
173 172 10496295 1301003059 Ramada Andres Person FALSE Residential FALSE 2016-06-13 2018-01-02 ANG 2016-07-04 346.88 FALSE Migration Document Migrated Transfer posting (Dr)
174 173 10496295 1301003059 Ramada Andres Person FALSE Residential FALSE 2016-08-10 2018-01-02 ANG 2016-08-29 5 FALSE Migration Document Migrated Transfer posting (Dr)
175 174 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2017-08-11 2018-01-02 ANG 2017-08-30 21.26 FALSE Migration Document Migrated Transfer posting (Dr)
176 175 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2017-07-12 2018-01-02 ANG 2017-07-31 21.2 FALSE Migration Document Migrated Transfer posting (Dr)
177 176 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2017-09-11 2018-01-02 ANG 2017-09-28 22.1 FALSE Migration Document Migrated Transfer posting (Dr)
178 177 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2017-06-13 2018-01-02 ANG 2017-06-30 21.13 FALSE Migration Document Migrated Transfer posting (Dr)
179 178 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2017-11-10 2018-01-02 ANG 2017-11-29 14.57 FALSE Migration Document Migrated Transfer posting (Dr)
180 179 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2017-10-12 2018-01-02 ANG 2017-10-31 14.63 FALSE Migration Document Migrated Transfer posting (Dr)
181 180 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2016-10-12 2018-01-02 ANG 2016-10-31 29.08 FALSE Migration Document Migrated Transfer posting (Dr)
182 181 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2017-12-11 2018-01-02 ANG 2017-12-28 14.79 FALSE Migration Document Migrated Transfer posting (Dr)
183 182 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2016-09-12 2018-01-02 ANG 2016-09-29 29.76 FALSE Migration Document Migrated Transfer posting (Dr)
184 183 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2016-09-12 2018-01-02 ANG 2016-09-29 3.52 FALSE Migration Document Migrated Transfer posting (Dr)
185 184 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2016-11-10 2018-01-02 ANG 2016-11-29 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
186 185 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2016-11-10 2018-01-02 ANG 2016-11-29 35.9 FALSE Migration Document Migrated Transfer posting (Dr)
187 186 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2017-04-11 2018-01-02 ANG 2017-05-02 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
188 187 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2017-02-09 2018-01-02 ANG 2017-02-28 14.82 FALSE Migration Document Migrated Transfer posting (Dr)
189 188 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2017-02-09 2018-01-02 ANG 2017-02-28 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
190 189 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2017-01-11 2018-01-02 ANG 2017-01-30 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
191 190 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2017-01-11 2018-01-02 ANG 2017-01-30 21.87 FALSE Migration Document Migrated Transfer posting (Dr)
192 191 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2017-03-13 2018-01-02 ANG 2017-03-30 15.05 FALSE Migration Document Migrated Transfer posting (Dr)
193 192 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2017-03-13 2018-01-02 ANG 2017-03-30 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
194 193 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2016-12-09 2018-01-02 ANG 2016-12-28 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
195 194 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2016-12-09 2018-01-02 ANG 2016-12-28 29.03 FALSE Migration Document Migrated Transfer posting (Dr)
196 195 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2016-08-11 2018-01-02 ANG 2016-08-30 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
197 196 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2016-08-11 2018-01-02 ANG 2016-08-30 18.44 FALSE Migration Document Migrated Transfer posting (Dr)
198 197 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2017-09-11 2018-01-02 ANG 2017-09-28 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
199 198 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2017-06-13 2018-01-02 ANG 2017-06-30 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
200 199 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2017-05-15 2018-01-02 ANG 2017-06-01 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
201 200 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2017-10-12 2018-01-02 ANG 2017-10-31 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
202 201 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2017-07-12 2018-01-02 ANG 2017-07-31 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
203 202 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2017-08-11 2018-01-02 ANG 2017-08-30 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
204 203 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2016-09-12 2018-01-02 ANG 2016-09-29 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
205 204 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2016-10-12 2018-01-02 ANG 2016-10-31 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
206 205 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2017-11-10 2018-01-02 ANG 2017-11-29 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
207 206 10501286 1301010933 Mercelina Thelma Person FALSE Residential FALSE 2017-12-11 2018-01-02 ANG 2017-12-28 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
208 207 10521804 1301004214 Rooi Ergath Person FALSE Residential FALSE 2017-01-10 2018-01-02 ANG 2017-01-27 21.86 FALSE Migration Document Migrated Transfer posting (Dr)
209 208 10521804 1301004214 Rooi Ergath Person FALSE Residential FALSE 2017-01-10 2018-01-02 ANG 2017-01-27 134.83 FALSE Migration Document Migrated Transfer posting (Dr)
210 209 10521804 1301004214 Rooi Ergath Person FALSE Residential FALSE 2016-12-08 2018-01-02 ANG 2016-12-27 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
211 210 10521804 1301004214 Rooi Ergath Person FALSE Residential FALSE 2016-12-08 2018-01-02 ANG 2016-12-27 27.69 FALSE Migration Document Migrated Transfer posting (Dr)
212 211 10521804 1301004214 Rooi Ergath Person FALSE Residential FALSE 2017-03-10 2018-01-02 ANG 2017-03-29 133.38 FALSE Migration Document Migrated Transfer posting (Dr)
213 212 10521804 1301004214 Rooi Ergath Person FALSE Residential FALSE 2017-03-10 2018-01-02 ANG 2017-03-29 37.01 FALSE Migration Document Migrated Transfer posting (Dr)
214 213 10521804 1301004214 Rooi Ergath Person FALSE Residential FALSE 2017-03-10 2018-01-02 ANG 2017-03-29 18.3 FALSE Migration Document Migrated Transfer posting (Dr)
215 214 10521804 1301004214 Rooi Ergath Person FALSE Residential FALSE 2017-03-10 2018-01-02 ANG 2017-03-29 35.94 FALSE Migration Document Migrated Transfer posting (Dr)
216 215 10521804 1301004214 Rooi Ergath Person FALSE Residential FALSE 2017-01-10 2018-01-02 ANG 2017-01-27 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
217 216 10521943 1301001536 Mathilda Francisco Person FALSE Residential FALSE 2017-01-10 2018-01-02 ANG 2017-01-27 7.39 FALSE Migration Document Migrated Transfer posting (Dr)
218 217 10524103 1301015973 Plantijn Nelio Person FALSE Residential FALSE 2017-04-10 2018-01-02 ANG 2017-05-02 20.52 FALSE Migration Document Migrated Transfer posting (Dr)
219 218 10524103 1301015973 Plantijn Nelio Person FALSE Residential FALSE 2017-04-10 2018-01-02 ANG 2017-05-02 146.69 FALSE Migration Document Migrated Transfer posting (Dr)
220 219 10535798 1301002483 Valerian Theofiel Person FALSE Residential FALSE 2017-03-13 2018-01-02 ANG 2017-03-30 5 FALSE Migration Document Migrated Transfer posting (Dr)
221 220 10569462 1301021063 Bart-Tschumie Ivonne Person FALSE Residential FALSE 2016-08-12 2018-01-02 ANG 2016-08-31 11.81 FALSE Migration Document Migrated Transfer posting (Dr)
222 221 10569462 1301021063 Bart-Tschumie Ivonne Person FALSE Residential FALSE 2016-08-12 2018-01-02 ANG 2016-08-31 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
223 222 10569462 1301021063 Bart-Tschumie Ivonne Person FALSE Residential FALSE 2016-08-12 2018-01-02 ANG 2016-08-31 88.82 FALSE Migration Document Migrated Transfer posting (Dr)
224 223 10577986 1301001664 Girigorie Ladislaus Person FALSE Residential FALSE 2016-10-13 2018-01-02 ANG 2016-11-01 29.07 FALSE Migration Document Migrated Transfer posting (Dr)
225 224 10577986 1301001664 Girigorie Ladislaus Person FALSE Residential FALSE 2016-10-13 2018-01-02 ANG 2016-11-01 68.9 FALSE Migration Document Migrated Transfer posting (Dr)
226 225 10577986 1301001664 Girigorie Ladislaus Person FALSE Residential FALSE 2016-09-13 2018-01-02 ANG 2016-09-30 44.57 FALSE Migration Document Migrated Transfer posting (Dr)
227 226 10577986 1301001664 Girigorie Ladislaus Person FALSE Residential FALSE 2016-09-13 2018-01-02 ANG 2016-09-30 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
228 227 10577986 1301001664 Girigorie Ladislaus Person FALSE Residential FALSE 2016-09-13 2018-01-02 ANG 2016-09-30 48.28 FALSE Migration Document Migrated Transfer posting (Dr)
229 228 10577986 1301001664 Girigorie Ladislaus Person FALSE Residential FALSE 2016-08-12 2018-01-02 ANG 2016-08-31 53.81 FALSE Migration Document Migrated Transfer posting (Dr)
230 229 10583563 1301058998 Koeiman Rijnado Person FALSE Residential FALSE 2017-06-27 2018-01-02 ANG 2017-08-01 9615.55 FALSE Migration Document Migrated Transfer posting (Dr)
231 230 10583563 1301058998 Koeiman Rijnado Person FALSE Residential FALSE 2017-07-13 2018-01-02 ANG 2017-08-01 100.21 FALSE Migration Document Migrated Transfer posting (Dr)
232 231 10583563 1301058998 Koeiman Rijnado Person FALSE Residential FALSE 2017-06-27 2018-01-02 ANG 2017-08-01 232 FALSE Migration Document Migrated Transfer posting (Dr)
233 232 10583563 1301058998 Koeiman Rijnado Person FALSE Residential FALSE 2017-06-27 2018-01-02 ANG 2017-08-01 70 FALSE Migration Document Migrated Transfer posting (Dr)
234 233 10583563 1301058998 Koeiman Rijnado Person FALSE Residential FALSE 2017-07-13 2018-01-02 ANG 2017-08-01 175.44 FALSE Migration Document Migrated Transfer posting (Dr)
235 234 10583563 1301058998 Koeiman Rijnado Person FALSE Residential FALSE 2017-06-27 2018-01-02 ANG 2017-08-01 25 FALSE Migration Document Migrated Transfer posting (Dr)
236 235 10608591 1301031475 Anastacia Elvin Person FALSE Residential FALSE 2017-08-14 2018-01-02 ANG 2017-08-31 35.21 FALSE Migration Document Migrated Transfer posting (Dr)
237 236 10608591 1301031475 Anastacia Elvin Person FALSE Residential FALSE 2017-07-13 2018-01-02 ANG 2017-08-01 170.89 FALSE Migration Document Migrated Transfer posting (Dr)
238 237 10608591 1301031475 Anastacia Elvin Person FALSE Residential FALSE 2017-07-13 2018-01-02 ANG 2017-08-01 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
239 238 10622529 1301020866 Bonevacia Gijsbertha Person FALSE Residential FALSE 2016-10-13 2018-01-02 ANG 2016-11-01 144.54 FALSE Migration Document Migrated Transfer posting (Dr)
240 239 10622529 1301020866 Bonevacia Gijsbertha Person FALSE Residential FALSE 2016-11-11 2018-01-02 ANG 2016-11-30 144.43 FALSE Migration Document Migrated Transfer posting (Dr)
241 240 10622529 1301020866 Bonevacia Gijsbertha Person FALSE Residential FALSE 2016-11-04 2018-01-02 ANG 2016-11-30 400 FALSE Migration Document Migrated Transfer posting (Dr)
242 241 10641599 1301010176 Firma Oswald Person FALSE Residential FALSE 2016-12-13 2018-01-02 ANG 2016-12-30 56.38 FALSE Migration Document Migrated Transfer posting (Dr)
243 242 10641599 1301010176 Firma Oswald Person FALSE Residential FALSE 2016-12-13 2018-01-02 ANG 2016-12-30 49.04 FALSE Migration Document Migrated Transfer posting (Dr)
244 243 10641599 1301010176 Firma Oswald Person FALSE Residential FALSE 2016-12-13 2018-01-02 ANG 2016-12-30 99.58 FALSE Migration Document Migrated Transfer posting (Dr)
245 244 10653392 1301001217 Florentina Hipolito Person FALSE Residential FALSE 2017-08-15 2018-01-02 ANG 2017-09-01 14.45 FALSE Migration Document Migrated Transfer posting (Dr)
246 245 10668240 1301003740 Mc Kenzie Julian Person FALSE Residential FALSE 2016-11-28 2018-01-02 ANG 2016-12-30 35 FALSE Migration Document Migrated Transfer posting (Dr)
247 246 10668240 1301003740 Mc Kenzie Julian Person FALSE Residential FALSE 2016-12-13 2018-01-02 ANG 2016-12-30 30.37 FALSE Migration Document Migrated Transfer posting (Dr)
248 247 10671853 1301017570 Capricornie Johannita Person FALSE Residential FALSE 2016-11-02 2018-01-02 ANG 2016-12-02 5 FALSE Migration Document Migrated Transfer posting (Dr)
249 248 10674788 1301010351 Joaquim Da Mata Luis Person FALSE Residential FALSE 2017-03-15 2018-01-02 ANG 2017-04-03 44.84 FALSE Migration Document Migrated Transfer posting (Dr)
250 249 10674788 1301010351 Joaquim Da Mata Luis Person FALSE Residential FALSE 2017-03-15 2018-01-02 ANG 2017-04-03 142.54 FALSE Migration Document Migrated Transfer posting (Dr)
251 250 10674788 1301010351 Joaquim Da Mata Luis Person FALSE Residential FALSE 2017-03-15 2018-01-02 ANG 2017-04-03 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
252 251 10683402 1301001604 Martis Antonio Person FALSE Residential FALSE 2017-01-13 2018-01-02 ANG 2017-02-01 43.78 FALSE Migration Document Migrated Transfer posting (Dr)
253 252 10683402 1301001604 Martis Antonio Person FALSE Residential FALSE 2016-12-13 2018-01-02 ANG 2016-12-30 58.07 FALSE Migration Document Migrated Transfer posting (Dr)
254 253 10683402 1301001604 Martis Antonio Person FALSE Residential FALSE 2016-10-14 2018-01-02 ANG 2016-11-02 131.32 FALSE Migration Document Migrated Transfer posting (Dr)
255 254 10683402 1301001604 Martis Antonio Person FALSE Residential FALSE 2017-01-13 2018-01-02 ANG 2017-02-01 157.76 FALSE Migration Document Migrated Transfer posting (Dr)
256 255 10683402 1301001604 Martis Antonio Person FALSE Residential FALSE 2016-12-13 2018-01-02 ANG 2016-12-30 89.15 FALSE Migration Document Migrated Transfer posting (Dr)
257 256 10683402 1301001604 Martis Antonio Person FALSE Residential FALSE 2016-10-14 2018-01-02 ANG 2016-11-02 98.62 FALSE Migration Document Migrated Transfer posting (Dr)
258 257 10683402 1301001604 Martis Antonio Person FALSE Residential FALSE 2016-11-14 2018-01-02 ANG 2016-12-01 297.21 FALSE Migration Document Migrated Transfer posting (Dr)
259 258 10683402 1301001604 Martis Antonio Person FALSE Residential FALSE 2016-11-14 2018-01-02 ANG 2016-12-01 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
260 259 10683402 1301001604 Martis Antonio Person FALSE Residential FALSE 2016-10-27 2018-01-02 ANG 2016-12-01 15 FALSE Migration Document Migrated Transfer posting (Dr)
261 260 10683402 1301001604 Martis Antonio Person FALSE Residential FALSE 2016-11-14 2018-01-02 ANG 2016-12-01 425.53 FALSE Migration Document Migrated Transfer posting (Dr)
262 261 10683402 1301001604 Martis Antonio Person FALSE Residential FALSE 2017-01-13 2018-01-02 ANG 2017-02-01 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
263 262 10683402 1301001604 Martis Antonio Person FALSE Residential FALSE 2016-12-13 2018-01-02 ANG 2016-12-30 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
264 263 10683402 1301001604 Martis Antonio Person FALSE Residential FALSE 2016-10-14 2018-01-02 ANG 2016-11-02 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
265 264 10703545 1301028333 Martis Rupert Person FALSE Residential FALSE 2017-04-12 2018-01-02 ANG 2017-05-03 5 FALSE Migration Document Migrated Transfer posting (Dr)
266 265 10706307 1301006472 Felida Benigno Person FALSE Residential FALSE 2017-04-18 2018-01-02 ANG 2017-05-05 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
267 266 10706307 1301006472 Felida Benigno Person FALSE Residential FALSE 2017-04-18 2018-01-02 ANG 2017-05-05 2.3 FALSE Migration Document Migrated Transfer posting (Dr)
268 267 10706307 1301006472 Felida Benigno Person FALSE Residential FALSE 2017-04-18 2018-01-02 ANG 2017-05-05 2.2 FALSE Migration Document Migrated Transfer posting (Dr)
269 268 10713320 1301002390 Simon Lorenzo Person FALSE Residential FALSE 2016-07-15 2018-01-02 ANG 2016-08-03 42.79 FALSE Migration Document Migrated Transfer posting (Dr)
270 269 10718419 1301002395 Candeuil Hose Person FALSE Residential FALSE 2016-09-16 2018-01-02 ANG 2016-10-05 0.93 FALSE Migration Document Migrated Transfer posting (Dr)
271 270 10740880 1301010307 Rosheuvel Rudolf Person FALSE Residential FALSE 2016-08-17 2018-01-02 ANG 2016-09-05 5 FALSE Migration Document Migrated Transfer posting (Dr)
272 271 10741496 1301017688 Sakoetoe Hubert Person FALSE Residential FALSE 2017-04-19 2018-01-02 ANG 2017-05-08 610.93 FALSE Migration Document Migrated Transfer posting (Dr)
273 272 10750699 1301006200 Cijntje Hose Person FALSE Residential FALSE 2016-07-15 2018-01-02 ANG 2016-08-03 7.4 FALSE Migration Document Migrated Transfer posting (Dr)
274 273 10750699 1301006200 Cijntje Hose Person FALSE Residential FALSE 2016-07-15 2018-01-02 ANG 2016-08-03 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
275 274 10750699 1301006200 Cijntje Hose Person FALSE Residential FALSE 2016-07-15 2018-01-02 ANG 2016-08-03 7.24 FALSE Migration Document Migrated Transfer posting (Dr)
276 275 10750699 1301006200 Cijntje Hose Person FALSE Residential FALSE 2016-06-17 2018-01-02 ANG 2016-07-06 0.05 FALSE Migration Document Migrated Transfer posting (Dr)
277 276 10750699 1301006200 Cijntje Hose Person FALSE Residential FALSE 2016-06-17 2018-01-02 ANG 2016-07-06 28.61 FALSE Migration Document Migrated Transfer posting (Dr)
278 277 10750699 1301006200 Cijntje Hose Person FALSE Residential FALSE 2016-08-16 2018-01-02 ANG 2016-09-02 64.55 FALSE Migration Document Migrated Transfer posting (Dr)
279 278 10750699 1301006200 Cijntje Hose Person FALSE Residential FALSE 2016-08-16 2018-01-02 ANG 2016-09-02 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
280 279 10751124 1301010437 Engelhardt Altagracia Person FALSE Residential FALSE 2016-10-20 2018-01-02 ANG 2016-12-02 15 FALSE Migration Document Migrated Transfer posting (Dr)
281 280 10751124 1301010437 Engelhardt Altagracia Person FALSE Residential FALSE 2016-10-20 2018-01-02 ANG 2016-12-02 25 FALSE Migration Document Migrated Transfer posting (Dr)
282 281 10751124 1301010437 Engelhardt Altagracia Person FALSE Residential FALSE 2016-10-20 2018-01-02 ANG 2016-12-02 75 FALSE Migration Document Migrated Transfer posting (Dr)
283 282 10756221 1301013553 Hueck Raul Person FALSE Residential FALSE 2017-07-18 2018-01-02 ANG 2017-08-04 156.76 FALSE Migration Document Migrated Transfer posting (Dr)
284 283 10756221 1301013553 Hueck Raul Person FALSE Residential FALSE 2017-07-18 2018-01-02 ANG 2017-08-04 375.79 FALSE Migration Document Migrated Transfer posting (Dr)
285 284 10756221 1301013553 Hueck Raul Person FALSE Residential FALSE 2017-07-18 2018-01-02 ANG 2017-08-04 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
286 285 10767167 1301011611 Costina Jesus Person FALSE Residential FALSE 2016-11-16 2018-01-02 ANG 2016-12-05 110.94 FALSE Migration Document Migrated Transfer posting (Dr)
287 286 10810601 1301010201 Gijsbertha Johan Person FALSE Residential FALSE 2017-08-17 2018-01-02 ANG 2017-09-05 30.51 FALSE Migration Document Migrated Transfer posting (Dr)
288 287 10810601 1301010201 Gijsbertha Johan Person FALSE Residential FALSE 2017-08-17 2018-01-02 ANG 2017-09-05 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
289 288 10815384 1301006347 Fraites Antoine Person FALSE Residential FALSE 2017-08-17 2018-01-02 ANG 2017-09-05 28.17 FALSE Migration Document Migrated Transfer posting (Dr)
290 289 10815384 1301006347 Fraites Antoine Person FALSE Residential FALSE 2017-06-19 2018-01-02 ANG 2017-07-06 213.17 FALSE Migration Document Migrated Transfer posting (Dr)
291 290 10815384 1301006347 Fraites Antoine Person FALSE Residential FALSE 2017-07-18 2018-01-02 ANG 2017-08-04 42.35 FALSE Migration Document Migrated Transfer posting (Dr)
292 291 10815384 1301006347 Fraites Antoine Person FALSE Residential FALSE 2017-07-18 2018-01-02 ANG 2017-08-04 31.67 FALSE Migration Document Migrated Transfer posting (Dr)
293 292 10815384 1301006347 Fraites Antoine Person FALSE Residential FALSE 2017-07-18 2018-01-02 ANG 2017-08-04 16.69 FALSE Migration Document Migrated Transfer posting (Dr)
294 293 10815384 1301006347 Fraites Antoine Person FALSE Residential FALSE 2016-09-16 2018-01-02 ANG 2016-10-05 104.39 FALSE Migration Document Migrated Transfer posting (Dr)
295 294 10815384 1301006347 Fraites Antoine Person FALSE Residential FALSE 2016-09-16 2018-01-02 ANG 2016-10-05 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
296 295 10815384 1301006347 Fraites Antoine Person FALSE Residential FALSE 2016-09-16 2018-01-02 ANG 2016-10-05 6.91 FALSE Migration Document Migrated Transfer posting (Dr)
297 296 10815384 1301006347 Fraites Antoine Person FALSE Residential FALSE 2016-08-17 2018-01-02 ANG 2016-09-05 5.33 FALSE Migration Document Migrated Transfer posting (Dr)
298 297 10815384 1301006347 Fraites Antoine Person FALSE Residential FALSE 2016-12-15 2018-01-02 ANG 2017-01-03 5 FALSE Migration Document Migrated Transfer posting (Dr)
299 298 10815384 1301006347 Fraites Antoine Person FALSE Residential FALSE 2016-12-15 2018-01-02 ANG 2017-01-03 7.26 FALSE Migration Document Migrated Transfer posting (Dr)
300 299 10815384 1301006347 Fraites Antoine Person FALSE Residential FALSE 2016-12-15 2018-01-02 ANG 2017-01-03 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
301 300 10815384 1301006347 Fraites Antoine Person FALSE Residential FALSE 2016-11-16 2018-01-02 ANG 2016-12-05 5 FALSE Migration Document Migrated Transfer posting (Dr)
302 301 10815384 1301006347 Fraites Antoine Person FALSE Residential FALSE 2016-11-16 2018-01-02 ANG 2016-12-05 7.19 FALSE Migration Document Migrated Transfer posting (Dr)
303 302 10815384 1301006347 Fraites Antoine Person FALSE Residential FALSE 2016-11-16 2018-01-02 ANG 2016-12-05 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
304 303 10815384 1301006347 Fraites Antoine Person FALSE Residential FALSE 2017-04-19 2018-01-02 ANG 2017-05-08 34.95 FALSE Migration Document Migrated Transfer posting (Dr)
305 304 10815384 1301006347 Fraites Antoine Person FALSE Residential FALSE 2017-04-19 2018-01-02 ANG 2017-05-08 5 FALSE Migration Document Migrated Transfer posting (Dr)
306 305 10815384 1301006347 Fraites Antoine Person FALSE Residential FALSE 2017-04-19 2018-01-02 ANG 2017-05-08 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
307 306 10815384 1301006347 Fraites Antoine Person FALSE Residential FALSE 2017-02-15 2018-01-02 ANG 2017-03-06 5 FALSE Migration Document Migrated Transfer posting (Dr)
308 307 10815384 1301006347 Fraites Antoine Person FALSE Residential FALSE 2017-02-15 2018-01-02 ANG 2017-03-06 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
309 308 10815384 1301006347 Fraites Antoine Person FALSE Residential FALSE 2017-03-17 2018-01-02 ANG 2017-04-05 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
310 309 10815384 1301006347 Fraites Antoine Person FALSE Residential FALSE 2017-03-17 2018-01-02 ANG 2017-04-05 5 FALSE Migration Document Migrated Transfer posting (Dr)
311 310 10815384 1301006347 Fraites Antoine Person FALSE Residential FALSE 2017-01-17 2018-01-02 ANG 2017-02-03 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
312 311 10815384 1301006347 Fraites Antoine Person FALSE Residential FALSE 2017-01-17 2018-01-02 ANG 2017-02-03 5 FALSE Migration Document Migrated Transfer posting (Dr)
313 312 10815384 1301006347 Fraites Antoine Person FALSE Residential FALSE 2017-07-18 2018-01-02 ANG 2017-08-04 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
314 313 10815384 1301006347 Fraites Antoine Person FALSE Residential FALSE 2017-06-19 2018-01-02 ANG 2017-07-06 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
315 314 10815384 1301006347 Fraites Antoine Person FALSE Residential FALSE 2017-06-19 2018-01-02 ANG 2017-07-06 5 FALSE Migration Document Migrated Transfer posting (Dr)
316 315 10815384 1301006347 Fraites Antoine Person FALSE Residential FALSE 2017-08-17 2018-01-02 ANG 2017-09-05 5 FALSE Migration Document Migrated Transfer posting (Dr)
317 316 10821898 1301017084 Martijn Hubert Person FALSE Residential FALSE 2016-06-20 2018-01-02 ANG 2016-07-07 5 FALSE Migration Document Migrated Transfer posting (Dr)
318 317 10822420 1301013368 Esser Stanley Person FALSE Residential FALSE 2016-08-12 2018-01-02 ANG 2016-09-05 5 FALSE Migration Document Migrated Transfer posting (Dr)
319 318 10826149 1301055916 Felicia-Nicolina Anna Person FALSE Residential FALSE 2016-10-19 2018-01-02 ANG 2016-11-07 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
320 319 10826149 1301055916 Felicia-Nicolina Anna Person FALSE Residential FALSE 2016-10-19 2018-01-02 ANG 2016-11-07 15 FALSE Migration Document Migrated Transfer posting (Dr)
321 320 10829286 1301019414 Figueira Ferraz Feliciano Person FALSE Residential FALSE 2016-11-17 2018-01-02 ANG 2016-12-06 2.06 FALSE Migration Document Migrated Transfer posting (Dr)
322 321 10849456 1301026654 Nicolaas Scarlet Person FALSE Residential FALSE 2016-11-17 2018-01-02 ANG 2016-12-06 43.66 FALSE Migration Document Migrated Transfer posting (Dr)
323 322 10849456 1301026654 Nicolaas Scarlet Person FALSE Residential FALSE 2016-11-17 2018-01-02 ANG 2016-12-06 36.32 FALSE Migration Document Migrated Transfer posting (Dr)
324 323 10859435 1301028875 Godfried Ingrid Person FALSE Residential FALSE 2017-03-06 2018-01-02 ANG 2017-04-06 33.22 FALSE Migration Document Migrated Transfer posting (Dr)
325 324 10859477 1301017105 Presentacion-Koffie Emerita E Person FALSE Residential FALSE 2017-06-20 2018-01-02 ANG 2017-07-07 156.62 FALSE Migration Document Migrated Transfer posting (Dr)
326 325 10859477 1301017105 Presentacion-Koffie Emerita E Person FALSE Residential FALSE 2017-06-20 2018-01-02 ANG 2017-07-07 273.89 FALSE Migration Document Migrated Transfer posting (Dr)
327 326 10859477 1301017105 Presentacion-Koffie Emerita E Person FALSE Residential FALSE 2017-06-20 2018-01-02 ANG 2017-07-07 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
328 327 10871102 1301013639 Martis Thomas Person FALSE Residential FALSE 2017-01-18 2018-01-02 ANG 2017-02-06 7.27 FALSE Migration Document Migrated Transfer posting (Dr)
329 328 10871102 1301013639 Martis Thomas Person FALSE Residential FALSE 2016-12-16 2018-01-02 ANG 2017-01-04 50.82 FALSE Migration Document Migrated Transfer posting (Dr)
330 329 10871102 1301013639 Martis Thomas Person FALSE Residential FALSE 2017-01-18 2018-01-02 ANG 2017-02-06 10.78 FALSE Migration Document Migrated Transfer posting (Dr)
331 330 10871102 1301013639 Martis Thomas Person FALSE Residential FALSE 2016-12-16 2018-01-02 ANG 2017-01-04 78.48 FALSE Migration Document Migrated Transfer posting (Dr)
332 331 10871102 1301013639 Martis Thomas Person FALSE Residential FALSE 2016-12-16 2018-01-02 ANG 2017-01-04 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
333 332 10909492 1301004154 Abelina-Martina Macedonia Person FALSE Residential FALSE 2017-04-07 2018-01-02 ANG 2017-05-10 152.99 FALSE Migration Document Migrated Transfer posting (Dr)
334 333 10931910 1301037230 Paulina Mildred Person FALSE Residential FALSE 2016-09-20 2018-01-02 ANG 2016-10-07 14.93 FALSE Migration Document Migrated Transfer posting (Dr)
335 334 10931910 1301037230 Paulina Mildred Person FALSE Residential FALSE 2016-08-24 2018-01-02 ANG 2016-10-07 15 FALSE Migration Document Migrated Transfer posting (Dr)
336 335 10940812 1301019373 De Windt Hubert Person FALSE Residential FALSE 2017-05-19 2018-01-02 ANG 2017-06-08 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
337 336 10940812 1301019373 De Windt Hubert Person FALSE Residential FALSE 2017-02-16 2018-01-02 ANG 2017-03-07 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
338 337 10940812 1301019373 De Windt Hubert Person FALSE Residential FALSE 2017-10-19 2018-01-02 ANG 2017-11-06 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
339 338 10940812 1301019373 De Windt Hubert Person FALSE Residential FALSE 2017-07-19 2018-01-02 ANG 2017-08-07 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
340 339 10940812 1301019373 De Windt Hubert Person FALSE Residential FALSE 2017-04-20 2018-01-02 ANG 2017-05-09 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
341 340 10940812 1301019373 De Windt Hubert Person FALSE Residential FALSE 2017-06-20 2018-01-02 ANG 2017-07-07 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
342 341 10940812 1301019373 De Windt Hubert Person FALSE Residential FALSE 2017-09-18 2018-01-02 ANG 2017-10-05 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
343 342 10940812 1301019373 De Windt Hubert Person FALSE Residential FALSE 2017-08-18 2018-01-02 ANG 2017-09-06 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
344 343 10940812 1301019373 De Windt Hubert Person FALSE Residential FALSE 2017-03-20 2018-01-02 ANG 2017-04-06 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
345 344 10940812 1301019373 De Windt Hubert Person FALSE Residential FALSE 2017-02-28 2018-01-02 ANG 2017-04-06 15 FALSE Migration Document Migrated Transfer posting (Dr)
346 345 10956677 1301028791 Abdul Hamid Nelson Person FALSE Residential FALSE 2017-05-22 2018-01-02 ANG 2017-06-08 99.84 FALSE Migration Document Migrated Transfer posting (Dr)
347 346 10956677 1301028791 Abdul Hamid Nelson Person FALSE Residential FALSE 2017-05-22 2018-01-02 ANG 2017-06-08 0.16 FALSE Migration Document Migrated Transfer posting (Dr)
348 347 10967929 1301026661 Brunings Alfred Person FALSE Residential FALSE 2017-08-22 2018-01-02 ANG 2017-09-08 4.47 FALSE Migration Document Migrated Transfer posting (Dr)
349 348 10992576 1301017432 Da Costa Gomez Eithel Person FALSE Residential FALSE 2017-06-22 2018-01-02 ANG 2017-07-11 4.99 FALSE Migration Document Migrated Transfer posting (Dr)
350 349 11003215 1301006171 Moreno Ivan Person FALSE Residential FALSE 2017-02-20 2018-01-02 ANG 2017-03-09 504.68 FALSE Migration Document Migrated Transfer posting (Dr)
351 350 11006027 1301002602 Rodriquez Requilda Person FALSE Residential FALSE 2017-08-23 2018-01-02 ANG 2017-09-11 57.52 FALSE Migration Document Migrated Transfer posting (Dr)
352 351 11006027 1301002602 Rodriquez Requilda Person FALSE Residential FALSE 2017-07-24 2018-01-02 ANG 2017-08-10 51.04 FALSE Migration Document Migrated Transfer posting (Dr)
353 352 11006027 1301002602 Rodriquez Requilda Person FALSE Residential FALSE 2017-06-23 2018-01-02 ANG 2017-07-12 52.13 FALSE Migration Document Migrated Transfer posting (Dr)
354 353 11006027 1301002602 Rodriquez Requilda Person FALSE Residential FALSE 2017-05-24 2018-01-02 ANG 2017-06-14 10.97 FALSE Migration Document Migrated Transfer posting (Dr)
355 354 11006027 1301002602 Rodriquez Requilda Person FALSE Residential FALSE 2017-06-23 2018-01-02 ANG 2017-07-12 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
356 355 11006027 1301002602 Rodriquez Requilda Person FALSE Residential FALSE 2017-07-24 2018-01-02 ANG 2017-08-10 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
357 356 11037866 1301010033 Gerard Evaristo Person FALSE Residential FALSE 2017-09-20 2018-01-02 ANG 2017-10-09 120.83 FALSE Migration Document Migrated Transfer posting (Dr)
358 357 11037866 1301010033 Gerard Evaristo Person FALSE Residential FALSE 2017-09-20 2018-01-02 ANG 2017-10-09 181.33 FALSE Migration Document Migrated Transfer posting (Dr)
359 358 11037874 1301005443 Trappenberg Pedro Person FALSE Residential FALSE 2017-05-23 2018-01-02 ANG 2017-06-13 49.22 FALSE Migration Document Migrated Transfer posting (Dr)
360 359 11037874 1301005443 Trappenberg Pedro Person FALSE Residential FALSE 2017-05-23 2018-01-02 ANG 2017-06-13 278.73 FALSE Migration Document Migrated Transfer posting (Dr)
361 360 11037874 1301005443 Trappenberg Pedro Person FALSE Residential FALSE 2017-05-23 2018-01-02 ANG 2017-06-13 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
362 361 11037874 1301005443 Trappenberg Pedro Person FALSE Residential FALSE 2017-05-02 2018-01-02 ANG 2017-06-13 15 FALSE Migration Document Migrated Transfer posting (Dr)
363 362 11039800 1301013230 Rodriguez Carlos Person FALSE Residential FALSE 2017-01-20 2018-01-02 ANG 2017-02-08 5 FALSE Migration Document Migrated Transfer posting (Dr)
364 363 11067683 1301006731 Rosaria Francisco Person FALSE Residential FALSE 2016-12-21 2018-01-02 ANG 2017-01-09 43.56 FALSE Migration Document Migrated Transfer posting (Dr)
365 364 11076307 1301015155 Domitilia-Martha Norma Person FALSE Residential FALSE 2017-02-21 2018-01-02 ANG 2017-03-10 80.4 FALSE Migration Document Migrated Transfer posting (Dr)
366 365 11076307 1301015155 Domitilia-Martha Norma Person FALSE Residential FALSE 2017-02-21 2018-01-02 ANG 2017-03-10 145.59 FALSE Migration Document Migrated Transfer posting (Dr)
367 366 11077222 1301012233 Adelina Rini Person FALSE Residential FALSE 2017-09-21 2018-01-02 ANG 2017-10-11 5 FALSE Migration Document Migrated Transfer posting (Dr)
368 367 11079583 1301013213 Geiger Chaim Person FALSE Residential FALSE 2016-08-23 2018-01-02 ANG 2016-09-09 5 FALSE Migration Document Migrated Transfer posting (Dr)
369 368 11093317 1301001724 Piekeur Minguel Person FALSE Residential FALSE 2017-10-23 2018-01-02 ANG 2017-11-09 7.34 FALSE Migration Document Migrated Transfer posting (Dr)
370 369 11093317 1301001724 Piekeur Minguel Person FALSE Residential FALSE 2017-10-23 2018-01-02 ANG 2017-11-09 30.43 FALSE Migration Document Migrated Transfer posting (Dr)
371 370 11093317 1301001724 Piekeur Minguel Person FALSE Residential FALSE 2017-10-23 2018-01-02 ANG 2017-11-09 10.43 FALSE Migration Document Migrated Transfer posting (Dr)
372 371 11118400 1301004038 Rafael Nicolasa Person FALSE Residential FALSE 2017-11-22 2018-01-02 ANG 2017-12-11 7.27 FALSE Migration Document Migrated Transfer posting (Dr)
373 372 11136660 1301023544 Hanson Roberto Person FALSE Residential FALSE 2017-06-26 2018-01-02 ANG 2017-07-13 168.15 FALSE Migration Document Migrated Transfer posting (Dr)
374 373 11136660 1301023544 Hanson Roberto Person FALSE Residential FALSE 2017-06-26 2018-01-02 ANG 2017-07-13 209.5 FALSE Migration Document Migrated Transfer posting (Dr)
375 374 11136660 1301023544 Hanson Roberto Person FALSE Residential FALSE 2017-06-26 2018-01-02 ANG 2017-07-13 299.76 FALSE Migration Document Migrated Transfer posting (Dr)
376 375 11139359 1301029000 Dijksteel Mirna Person FALSE Residential FALSE 2017-07-24 2018-01-02 ANG 2017-08-10 19.84 FALSE Migration Document Migrated Transfer posting (Dr)
377 376 11150347 1301014810 Philips Marie Person FALSE Residential FALSE 2016-10-25 2018-01-02 ANG 2016-11-11 14.44 FALSE Migration Document Migrated Transfer posting (Dr)
378 377 11150347 1301014810 Philips Marie Person FALSE Residential FALSE 2016-09-23 2018-01-02 ANG 2016-10-12 91.31 FALSE Migration Document Migrated Transfer posting (Dr)
379 378 11150347 1301014810 Philips Marie Person FALSE Residential FALSE 2016-08-24 2018-01-02 ANG 2016-09-12 145.56 FALSE Migration Document Migrated Transfer posting (Dr)
380 379 11150347 1301014810 Philips Marie Person FALSE Residential FALSE 2016-10-25 2018-01-02 ANG 2016-11-11 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
381 380 11150347 1301014810 Philips Marie Person FALSE Residential FALSE 2016-11-23 2018-01-02 ANG 2016-12-12 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
382 381 11150347 1301014810 Philips Marie Person FALSE Residential FALSE 2016-08-24 2018-01-02 ANG 2016-09-12 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
383 382 11150347 1301014810 Philips Marie Person FALSE Residential FALSE 2016-09-23 2018-01-02 ANG 2016-10-12 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
384 383 11168528 1301010330 Barby Augusto Person FALSE Residential FALSE 2017-05-30 2018-01-02 ANG 2017-06-16 145.96 FALSE Migration Document Migrated Transfer posting (Dr)
385 384 11170664 1301045750 Maduro Arturo Person FALSE Residential FALSE 2017-01-23 2018-01-02 ANG 2017-02-09 71.81 FALSE Migration Document Migrated Transfer posting (Dr)
386 385 11170664 1301045750 Maduro Arturo Person FALSE Residential FALSE 2017-01-23 2018-01-02 ANG 2017-02-09 13.89 FALSE Migration Document Migrated Transfer posting (Dr)
387 386 11170664 1301045750 Maduro Arturo Person FALSE Residential FALSE 2017-01-23 2018-01-02 ANG 2017-02-09 358.45 FALSE Migration Document Migrated Transfer posting (Dr)
388 387 11170664 1301045750 Maduro Arturo Person FALSE Residential FALSE 2017-01-23 2018-01-02 ANG 2017-02-09 57.87 FALSE Migration Document Migrated Transfer posting (Dr)
389 388 11182344 1301043257 De Ponte Brazao Ernesto Person FALSE Residential FALSE 2016-07-25 2018-01-02 ANG 2016-08-11 5 FALSE Migration Document Migrated Transfer posting (Dr)
390 389 11190729 1301017226 Bernadina Eddy Person FALSE Residential FALSE 2017-03-24 2018-01-02 ANG 2017-04-12 808.72 FALSE Migration Document Migrated Transfer posting (Dr)
391 390 11190729 1301017226 Bernadina Eddy Person FALSE Residential FALSE 2017-03-24 2018-01-02 ANG 2017-04-12 248.18 FALSE Migration Document Migrated Transfer posting (Dr)
392 391 11190729 1301017226 Bernadina Eddy Person FALSE Residential FALSE 2017-01-23 2018-01-02 ANG 2017-02-09 138.07 FALSE Migration Document Migrated Transfer posting (Dr)
393 392 11245451 1301023607 Alberto Johnny Person FALSE Residential FALSE 2016-10-27 2018-01-02 ANG 2016-11-15 5 FALSE Migration Document Migrated Transfer posting (Dr)
394 393 11256800 1301016111 Martina Anna Person FALSE Residential FALSE 2016-08-26 2018-01-02 ANG 2016-09-14 2400 FALSE Migration Document Migrated Transfer posting (Dr)
395 394 11256800 1301016111 Martina Anna Person FALSE Residential FALSE 2017-02-24 2018-01-02 ANG 2017-03-16 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
396 395 11256800 1301016111 Martina Anna Person FALSE Residential FALSE 2016-11-25 2018-01-02 ANG 2016-12-14 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
397 396 11256800 1301016111 Martina Anna Person FALSE Residential FALSE 2016-11-25 2018-01-02 ANG 2016-12-14 14.44 FALSE Migration Document Migrated Transfer posting (Dr)
398 397 11256800 1301016111 Martina Anna Person FALSE Residential FALSE 2016-10-27 2018-01-02 ANG 2016-11-15 14.41 FALSE Migration Document Migrated Transfer posting (Dr)
399 398 11256800 1301016111 Martina Anna Person FALSE Residential FALSE 2016-10-27 2018-01-02 ANG 2016-11-15 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
400 399 11256800 1301016111 Martina Anna Person FALSE Residential FALSE 2016-09-27 2018-01-02 ANG 2016-10-14 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
401 400 11256800 1301016111 Martina Anna Person FALSE Residential FALSE 2016-09-27 2018-01-02 ANG 2016-10-14 1530.85 FALSE Migration Document Migrated Transfer posting (Dr)
402 401 11256800 1301016111 Martina Anna Person FALSE Residential FALSE 2017-01-25 2018-01-02 ANG 2017-02-13 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
403 402 11256800 1301016111 Martina Anna Person FALSE Residential FALSE 2016-12-27 2018-01-02 ANG 2017-01-13 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
404 403 11266766 1301012354 Decaster Anastacia Person FALSE Residential FALSE 2017-02-24 2018-01-02 ANG 2017-03-16 5 FALSE Migration Document Migrated Transfer posting (Dr)
405 404 11267908 1301000073 Nicolaas Jozef Person FALSE Residential FALSE 2017-05-30 2018-01-02 ANG 2017-06-16 4.95 FALSE Migration Document Migrated Transfer posting (Dr)
406 405 11267908 1301000073 Nicolaas Jozef Person FALSE Residential FALSE 2017-05-30 2018-01-02 ANG 2017-06-16 45.42 FALSE Migration Document Migrated Transfer posting (Dr)
407 406 11270503 1301011336 Dollison Mario Person FALSE Residential FALSE 2016-08-26 2018-01-02 ANG 2016-09-14 5 FALSE Migration Document Migrated Transfer posting (Dr)
408 407 11271240 1301026133 Chirino Marcos Person FALSE Residential FALSE 2017-10-27 2018-01-02 ANG 2017-11-14 5 FALSE Migration Document Migrated Transfer posting (Dr)
409 408 11303479 1301015908 Simmons Willy Person FALSE Residential FALSE 2017-09-26 2018-01-02 ANG 2017-10-13 918.85 FALSE Migration Document Migrated Transfer posting (Dr)
410 409 11309352 1301003812 Martina Aminta Person FALSE Residential FALSE 2017-08-28 2018-01-02 ANG 2017-09-14 36.32 FALSE Migration Document Migrated Transfer posting (Dr)
411 410 11309352 1301003812 Martina Aminta Person FALSE Residential FALSE 2017-07-27 2018-01-02 ANG 2017-08-15 56.41 FALSE Migration Document Migrated Transfer posting (Dr)
412 411 11309352 1301003812 Martina Aminta Person FALSE Residential FALSE 2017-06-28 2018-01-02 ANG 2017-07-17 49.41 FALSE Migration Document Migrated Transfer posting (Dr)
413 412 11309352 1301003812 Martina Aminta Person FALSE Residential FALSE 2017-08-28 2018-01-02 ANG 2017-09-14 23.57 FALSE Migration Document Migrated Transfer posting (Dr)
414 413 11309352 1301003812 Martina Aminta Person FALSE Residential FALSE 2017-07-27 2018-01-02 ANG 2017-08-15 24.11 FALSE Migration Document Migrated Transfer posting (Dr)
415 414 11309352 1301003812 Martina Aminta Person FALSE Residential FALSE 2017-06-28 2018-01-02 ANG 2017-07-17 22.25 FALSE Migration Document Migrated Transfer posting (Dr)
416 415 11309352 1301003812 Martina Aminta Person FALSE Residential FALSE 2017-08-28 2018-01-02 ANG 2017-09-14 1.33 FALSE Migration Document Migrated Transfer posting (Dr)
417 416 11309352 1301003812 Martina Aminta Person FALSE Residential FALSE 2017-05-31 2018-01-02 ANG 2017-06-19 33.3 FALSE Migration Document Migrated Transfer posting (Dr)
418 417 11309352 1301003812 Martina Aminta Person FALSE Residential FALSE 2017-06-28 2018-01-02 ANG 2017-07-17 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
419 418 11309352 1301003812 Martina Aminta Person FALSE Residential FALSE 2017-07-27 2018-01-02 ANG 2017-08-15 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
420 419 11309352 1301003812 Martina Aminta Person FALSE Residential FALSE 2017-08-28 2018-01-02 ANG 2017-09-14 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
421 420 11337397 1301007667 Philipa Mario Person FALSE Residential FALSE 2017-06-01 2018-01-02 ANG 2017-06-20 58.85 FALSE Migration Document Migrated Transfer posting (Dr)
422 421 11337397 1301007667 Philipa Mario Person FALSE Residential FALSE 2017-06-01 2018-01-02 ANG 2017-06-20 34.39 FALSE Migration Document Migrated Transfer posting (Dr)
423 422 11337397 1301007667 Philipa Mario Person FALSE Residential FALSE 2017-06-01 2018-01-02 ANG 2017-06-20 228.58 FALSE Migration Document Migrated Transfer posting (Dr)
424 423 11342677 1301013074 Themen Henry Person FALSE Residential FALSE 2017-06-29 2018-01-02 ANG 2017-07-18 28.76 FALSE Migration Document Migrated Transfer posting (Dr)
425 424 11364336 1301007556 Rynschot Huberto Person FALSE Residential FALSE 2017-06-01 2018-01-02 ANG 2017-06-20 133.89 FALSE Migration Document Migrated Transfer posting (Dr)
426 425 11366095 1301026936 Daal Sirma Person FALSE Residential FALSE 2016-10-28 2018-01-02 ANG 2016-11-16 57.65 FALSE Migration Document Migrated Transfer posting (Dr)
427 426 11366095 1301026936 Daal Sirma Person FALSE Residential FALSE 2016-11-28 2018-01-02 ANG 2016-12-15 57.82 FALSE Migration Document Migrated Transfer posting (Dr)
428 427 11366095 1301026936 Daal Sirma Person FALSE Residential FALSE 2016-09-28 2018-01-02 ANG 2016-10-17 51.35 FALSE Migration Document Migrated Transfer posting (Dr)
429 428 11366095 1301026936 Daal Sirma Person FALSE Residential FALSE 2016-08-29 2018-01-02 ANG 2016-09-15 66.92 FALSE Migration Document Migrated Transfer posting (Dr)
430 429 11366095 1301026936 Daal Sirma Person FALSE Residential FALSE 2016-12-28 2018-01-02 ANG 2017-01-17 0.46 FALSE Migration Document Migrated Transfer posting (Dr)
431 430 11366095 1301026936 Daal Sirma Person FALSE Residential FALSE 2017-03-30 2018-01-02 ANG 2017-04-18 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
432 431 11366095 1301026936 Daal Sirma Person FALSE Residential FALSE 2017-03-30 2018-01-02 ANG 2017-04-18 5 FALSE Migration Document Migrated Transfer posting (Dr)
433 432 11366095 1301026936 Daal Sirma Person FALSE Residential FALSE 2016-06-29 2018-01-02 ANG 2016-07-18 46.9 FALSE Migration Document Migrated Transfer posting (Dr)
434 433 11366095 1301026936 Daal Sirma Person FALSE Residential FALSE 2016-07-28 2018-01-02 ANG 2016-08-16 5 FALSE Migration Document Migrated Transfer posting (Dr)
435 434 11366095 1301026936 Daal Sirma Person FALSE Residential FALSE 2016-07-28 2018-01-02 ANG 2016-08-16 78.02 FALSE Migration Document Migrated Transfer posting (Dr)
436 435 11366095 1301026936 Daal Sirma Person FALSE Residential FALSE 2016-07-28 2018-01-02 ANG 2016-08-16 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
437 436 11366095 1301026936 Daal Sirma Person FALSE Residential FALSE 2017-01-26 2018-01-02 ANG 2017-02-14 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
438 437 11366095 1301026936 Daal Sirma Person FALSE Residential FALSE 2017-01-26 2018-01-02 ANG 2017-02-14 44.1 FALSE Migration Document Migrated Transfer posting (Dr)
439 438 11366095 1301026936 Daal Sirma Person FALSE Residential FALSE 2017-01-26 2018-01-02 ANG 2017-02-14 5 FALSE Migration Document Migrated Transfer posting (Dr)
440 439 11366095 1301026936 Daal Sirma Person FALSE Residential FALSE 2016-12-28 2018-01-02 ANG 2017-01-17 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
441 440 11366095 1301026936 Daal Sirma Person FALSE Residential FALSE 2016-10-28 2018-01-02 ANG 2016-11-16 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
442 441 11366095 1301026936 Daal Sirma Person FALSE Residential FALSE 2016-11-28 2018-01-02 ANG 2016-12-15 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
443 442 11366095 1301026936 Daal Sirma Person FALSE Residential FALSE 2016-08-29 2018-01-02 ANG 2016-09-15 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
444 443 11366095 1301026936 Daal Sirma Person FALSE Residential FALSE 2016-09-28 2018-01-02 ANG 2016-10-17 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
445 444 11366095 1301026936 Daal Sirma Person FALSE Residential FALSE 2016-10-28 2018-01-02 ANG 2016-11-16 5 FALSE Migration Document Migrated Transfer posting (Dr)
446 445 11366095 1301026936 Daal Sirma Person FALSE Residential FALSE 2016-11-28 2018-01-02 ANG 2016-12-15 5 FALSE Migration Document Migrated Transfer posting (Dr)
447 446 11366095 1301026936 Daal Sirma Person FALSE Residential FALSE 2016-08-29 2018-01-02 ANG 2016-09-15 5 FALSE Migration Document Migrated Transfer posting (Dr)
448 447 11366095 1301026936 Daal Sirma Person FALSE Residential FALSE 2016-09-28 2018-01-02 ANG 2016-10-17 5 FALSE Migration Document Migrated Transfer posting (Dr)
449 448 11366095 1301026936 Daal Sirma Person FALSE Residential FALSE 2016-12-28 2018-01-02 ANG 2017-01-17 4.54 FALSE Migration Document Migrated Transfer posting (Dr)
450 449 11380691 1301003096 Casperson-Duke Carolina Person FALSE Residential FALSE 2017-03-01 2018-01-02 ANG 2017-03-20 165.17 FALSE Migration Document Migrated Transfer posting (Dr)
451 450 11380691 1301003096 Casperson-Duke Carolina Person FALSE Residential FALSE 2017-03-01 2018-01-02 ANG 2017-03-20 152.47 FALSE Migration Document Migrated Transfer posting (Dr)
452 451 11380691 1301003096 Casperson-Duke Carolina Person FALSE Residential FALSE 2017-01-27 2018-01-02 ANG 2017-02-15 128.41 FALSE Migration Document Migrated Transfer posting (Dr)
453 452 11380691 1301003096 Casperson-Duke Carolina Person FALSE Residential FALSE 2017-01-27 2018-01-02 ANG 2017-02-15 145.44 FALSE Migration Document Migrated Transfer posting (Dr)
454 453 11380691 1301003096 Casperson-Duke Carolina Person FALSE Residential FALSE 2017-01-27 2018-01-02 ANG 2017-02-15 150.53 FALSE Migration Document Migrated Transfer posting (Dr)
455 454 11380691 1301003096 Casperson-Duke Carolina Person FALSE Residential FALSE 2017-01-27 2018-01-02 ANG 2017-02-15 107.57 FALSE Migration Document Migrated Transfer posting (Dr)
456 455 11380691 1301003096 Casperson-Duke Carolina Person FALSE Residential FALSE 2017-03-01 2018-01-02 ANG 2017-03-20 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
457 456 11394886 1301007081 Suares Eva Person FALSE Residential FALSE 2017-11-29 2018-01-02 ANG 2017-12-18 78.62 FALSE Migration Document Migrated Transfer posting (Dr)
458 457 11394886 1301007081 Suares Eva Person FALSE Residential FALSE 2017-11-29 2018-01-02 ANG 2017-12-18 110.49 FALSE Migration Document Migrated Transfer posting (Dr)
459 458 11394886 1301007081 Suares Eva Person FALSE Residential FALSE 2017-11-24 2018-01-02 ANG 2017-12-18 907.74 FALSE Migration Document Migrated Transfer posting (Dr)
460 459 11394886 1301007081 Suares Eva Person FALSE Residential FALSE 2017-11-24 2018-01-02 ANG 2017-12-18 102.65 FALSE Migration Document Migrated Transfer posting (Dr)
461 460 11394886 1301007081 Suares Eva Person FALSE Residential FALSE 2017-11-29 2018-01-02 ANG 2017-12-18 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
462 461 11396210 1301044180 Magdalena Mary Ann Person FALSE Residential FALSE 2016-12-28 2018-01-02 ANG 2017-01-17 14.53 FALSE Migration Document Migrated Transfer posting (Dr)
463 462 11396210 1301044180 Magdalena Mary Ann Person FALSE Residential FALSE 2016-11-28 2018-01-02 ANG 2016-12-15 36.13 FALSE Migration Document Migrated Transfer posting (Dr)
464 463 11396210 1301044180 Magdalena Mary Ann Person FALSE Residential FALSE 2016-10-28 2018-01-02 ANG 2016-11-16 29.32 FALSE Migration Document Migrated Transfer posting (Dr)
465 464 11396210 1301044180 Magdalena Mary Ann Person FALSE Residential FALSE 2016-11-28 2018-01-02 ANG 2016-12-15 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
466 465 11405768 1301027137 Leitoe Felipe Person FALSE Residential FALSE 2017-06-30 2018-01-02 ANG 2017-07-19 75.76 FALSE Migration Document Migrated Transfer posting (Dr)
467 466 11405768 1301027137 Leitoe Felipe Person FALSE Residential FALSE 2017-06-30 2018-01-02 ANG 2017-07-19 24.57 FALSE Migration Document Migrated Transfer posting (Dr)
468 467 11405768 1301027137 Leitoe Felipe Person FALSE Residential FALSE 2017-06-30 2018-01-02 ANG 2017-07-19 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
469 468 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2017-01-18 2018-01-02 ANG 2017-02-06 7.32 FALSE Migration Document Migrated Transfer posting (Dr)
470 469 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2016-12-16 2018-01-02 ANG 2017-01-04 21.79 FALSE Migration Document Migrated Transfer posting (Dr)
471 470 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2016-12-16 2018-01-02 ANG 2017-01-04 38.76 FALSE Migration Document Migrated Transfer posting (Dr)
472 471 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2017-01-18 2018-01-02 ANG 2017-02-06 6.16 FALSE Migration Document Migrated Transfer posting (Dr)
473 472 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2016-10-19 2018-01-02 ANG 2016-11-07 11.55 FALSE Migration Document Migrated Transfer posting (Dr)
474 473 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2017-05-19 2018-01-02 ANG 2017-06-08 5 FALSE Migration Document Migrated Transfer posting (Dr)
475 474 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2017-05-19 2018-01-02 ANG 2017-06-08 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
476 475 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2016-11-17 2018-01-02 ANG 2016-12-06 21.61 FALSE Migration Document Migrated Transfer posting (Dr)
477 476 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2016-10-20 2018-01-02 ANG 2016-12-06 15 FALSE Migration Document Migrated Transfer posting (Dr)
478 477 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2016-10-20 2018-01-02 ANG 2016-12-06 25 FALSE Migration Document Migrated Transfer posting (Dr)
479 478 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2016-10-20 2018-01-02 ANG 2016-12-06 150 FALSE Migration Document Migrated Transfer posting (Dr)
480 479 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2016-10-20 2018-01-02 ANG 2016-12-06 15 FALSE Migration Document Migrated Transfer posting (Dr)
481 480 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2016-11-17 2018-01-02 ANG 2016-12-06 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
482 481 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2016-10-20 2018-01-02 ANG 2016-12-06 25 FALSE Migration Document Migrated Transfer posting (Dr)
483 482 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2016-10-20 2018-01-02 ANG 2016-12-06 75 FALSE Migration Document Migrated Transfer posting (Dr)
484 483 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2016-11-17 2018-01-02 ANG 2016-12-06 85.2 FALSE Migration Document Migrated Transfer posting (Dr)
485 484 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2017-02-16 2018-01-02 ANG 2017-03-07 5 FALSE Migration Document Migrated Transfer posting (Dr)
486 485 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2017-02-16 2018-01-02 ANG 2017-03-07 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
487 486 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2017-07-19 2018-01-02 ANG 2017-08-07 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
488 487 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2017-07-19 2018-01-02 ANG 2017-08-07 5 FALSE Migration Document Migrated Transfer posting (Dr)
489 488 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2017-04-20 2018-01-02 ANG 2017-05-09 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
490 489 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2017-06-20 2018-01-02 ANG 2017-07-07 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
491 490 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2016-12-16 2018-01-02 ANG 2017-01-04 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
492 491 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2017-03-20 2018-01-02 ANG 2017-04-06 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
493 492 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2017-01-18 2018-01-02 ANG 2017-02-06 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
494 493 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2017-04-20 2018-01-02 ANG 2017-05-09 5 FALSE Migration Document Migrated Transfer posting (Dr)
495 494 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2017-06-20 2018-01-02 ANG 2017-07-07 5 FALSE Migration Document Migrated Transfer posting (Dr)
496 495 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2017-03-20 2018-01-02 ANG 2017-04-06 5 FALSE Migration Document Migrated Transfer posting (Dr)
497 496 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2016-12-14 2018-01-02 ANG 2017-01-04 15 FALSE Migration Document Migrated Transfer posting (Dr)
498 497 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2016-12-01 2018-01-02 ANG 2017-01-04 15 FALSE Migration Document Migrated Transfer posting (Dr)
499 498 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2016-12-14 2018-01-02 ANG 2017-01-04 15 FALSE Migration Document Migrated Transfer posting (Dr)
500 499 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2016-12-01 2018-01-02 ANG 2017-01-04 15 FALSE Migration Document Migrated Transfer posting (Dr)
501 500 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2016-12-14 2018-01-02 ANG 2017-01-04 25 FALSE Migration Document Migrated Transfer posting (Dr)
502 501 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2016-12-14 2018-01-02 ANG 2017-01-04 25 FALSE Migration Document Migrated Transfer posting (Dr)
503 502 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2016-12-14 2018-01-02 ANG 2017-01-04 75 FALSE Migration Document Migrated Transfer posting (Dr)
504 503 11644126 1301059072 Gysbertha Evelin Person FALSE Residential FALSE 2016-12-14 2018-01-02 ANG 2017-01-04 150 FALSE Migration Document Migrated Transfer posting (Dr)
505 504 11806883 1301059733 Augusta Glenda Person FALSE Residential FALSE 2016-12-27 2018-01-02 ANG 2017-01-13 14.45 FALSE Migration Document Migrated Transfer posting (Dr)
506 505 11992024 1301015575 Phillips Luis Person FALSE Residential FALSE 2016-11-01 2018-01-02 ANG 2016-11-18 47.87 FALSE Migration Document Migrated Transfer posting (Dr)
507 506 11992024 1301015575 Phillips Luis Person FALSE Residential FALSE 2016-11-01 2018-01-02 ANG 2016-11-18 36.32 FALSE Migration Document Migrated Transfer posting (Dr)
508 507 11992024 1301015575 Phillips Luis Person FALSE Residential FALSE 2016-11-01 2018-01-02 ANG 2016-11-18 42 FALSE Migration Document Migrated Transfer posting (Dr)
509 508 11992024 1301015575 Phillips Luis Person FALSE Residential FALSE 2016-11-01 2018-01-02 ANG 2016-11-18 46.76 FALSE Migration Document Migrated Transfer posting (Dr)
510 509 11992024 1301015575 Phillips Luis Person FALSE Residential FALSE 2016-11-01 2018-01-02 ANG 2016-11-18 347.32 FALSE Migration Document Migrated Transfer posting (Dr)
511 510 12091855 1301039130 Kook Edseline Person FALSE Residential FALSE 2017-10-06 2018-01-02 ANG 2017-10-27 95.3 FALSE Migration Document Migrated Transfer posting (Dr)
512 511 12091855 1301039130 Kook Edseline Person FALSE Residential FALSE 2017-11-07 2018-01-02 ANG 2017-11-24 190.43 FALSE Migration Document Migrated Transfer posting (Dr)
513 512 12154213 1301039130 Kook Edseline Person FALSE Residential FALSE 2017-09-06 2018-01-02 ANG 2017-09-25 24.47 FALSE Migration Document Migrated Transfer posting (Dr)
514 513 12154213 1301039130 Kook Edseline Person FALSE Residential FALSE 2017-11-07 2018-01-02 ANG 2017-11-24 65.47 FALSE Migration Document Migrated Transfer posting (Dr)
515 514 12154213 1301039130 Kook Edseline Person FALSE Residential FALSE 2017-10-06 2018-01-02 ANG 2017-10-27 51.23 FALSE Migration Document Migrated Transfer posting (Dr)
516 515 12154213 1301039130 Kook Edseline Person FALSE Residential FALSE 2017-12-07 2018-01-02 ANG 2017-12-27 22.16 FALSE Migration Document Migrated Transfer posting (Dr)
517 516 12154213 1301039130 Kook Edseline Person FALSE Residential FALSE 2017-10-06 2018-01-02 ANG 2017-10-27 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
518 517 12154213 1301039130 Kook Edseline Person FALSE Residential FALSE 2017-11-07 2018-01-02 ANG 2017-11-24 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
519 518 12230409 1301022520 Dometilia Edwin Person FALSE Residential FALSE 2017-11-17 2018-01-02 ANG 2017-12-06 146.26 FALSE Migration Document Migrated Transfer posting (Dr)
520 519 12230409 1301022520 Dometilia Edwin Person FALSE Residential FALSE 2017-11-17 2018-01-02 ANG 2017-12-06 90.7 FALSE Migration Document Migrated Transfer posting (Dr)
521 520 12230409 1301022520 Dometilia Edwin Person FALSE Residential FALSE 2017-10-19 2018-01-02 ANG 2017-11-06 342.18 FALSE Migration Document Migrated Transfer posting (Dr)
522 521 12237914 1301063132 Jacinto Francisco Person FALSE Residential FALSE 2017-08-14 2018-01-02 ANG 2017-08-31 42.33 FALSE Migration Document Migrated Transfer posting (Dr)
523 522 12237914 1301063132 Jacinto Francisco Person FALSE Residential FALSE 2017-07-13 2018-01-02 ANG 2017-08-01 35.32 FALSE Migration Document Migrated Transfer posting (Dr)
524 523 12237914 1301063132 Jacinto Francisco Person FALSE Residential FALSE 2017-07-13 2018-01-02 ANG 2017-08-01 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
525 524 12241515 1301047808 Nieuw-De Geus Klasina Person FALSE Residential FALSE 2017-08-03 2018-01-02 ANG 2017-08-22 49.31 FALSE Migration Document Migrated Transfer posting (Dr)
526 525 12241515 1301047808 Nieuw-De Geus Klasina Person FALSE Residential FALSE 2017-11-02 2018-01-02 ANG 2017-11-21 65.97 FALSE Migration Document Migrated Transfer posting (Dr)
527 526 12241515 1301047808 Nieuw-De Geus Klasina Person FALSE Residential FALSE 2017-11-02 2018-01-02 ANG 2017-11-21 38.64 FALSE Migration Document Migrated Transfer posting (Dr)
528 527 12241515 1301047808 Nieuw-De Geus Klasina Person FALSE Residential FALSE 2017-08-03 2018-01-02 ANG 2017-08-22 93.61 FALSE Migration Document Migrated Transfer posting (Dr)
529 528 12241515 1301047808 Nieuw-De Geus Klasina Person FALSE Residential FALSE 2017-11-02 2018-01-02 ANG 2017-11-21 160.77 FALSE Migration Document Migrated Transfer posting (Dr)
530 529 12241515 1301047808 Nieuw-De Geus Klasina Person FALSE Residential FALSE 2017-11-02 2018-01-02 ANG 2017-11-21 1.6 FALSE Migration Document Migrated Transfer posting (Dr)
531 530 12241515 1301047808 Nieuw-De Geus Klasina Person FALSE Residential FALSE 2017-11-02 2018-01-02 ANG 2017-11-21 117.5 FALSE Migration Document Migrated Transfer posting (Dr)
532 531 12241515 1301047808 Nieuw-De Geus Klasina Person FALSE Residential FALSE 2017-07-21 2018-01-02 ANG 2017-08-22 15 FALSE Migration Document Migrated Transfer posting (Dr)
533 532 12241515 1301047808 Nieuw-De Geus Klasina Person FALSE Residential FALSE 2017-06-05 2018-01-02 ANG 2017-06-22 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
534 533 12241515 1301047808 Nieuw-De Geus Klasina Person FALSE Residential FALSE 2017-06-05 2018-01-02 ANG 2017-06-22 87.69 FALSE Migration Document Migrated Transfer posting (Dr)
535 534 12241515 1301047808 Nieuw-De Geus Klasina Person FALSE Residential FALSE 2017-06-05 2018-01-02 ANG 2017-06-22 124.55 FALSE Migration Document Migrated Transfer posting (Dr)
536 535 12241515 1301047808 Nieuw-De Geus Klasina Person FALSE Residential FALSE 2017-05-08 2018-01-02 ANG 2017-05-29 63.19 FALSE Migration Document Migrated Transfer posting (Dr)
537 536 12241515 1301047808 Nieuw-De Geus Klasina Person FALSE Residential FALSE 2017-05-08 2018-01-02 ANG 2017-05-29 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
538 537 12241515 1301047808 Nieuw-De Geus Klasina Person FALSE Residential FALSE 2017-05-08 2018-01-02 ANG 2017-05-29 96.25 FALSE Migration Document Migrated Transfer posting (Dr)
539 538 12241515 1301047808 Nieuw-De Geus Klasina Person FALSE Residential FALSE 2017-09-01 2018-01-02 ANG 2017-09-21 58.61 FALSE Migration Document Migrated Transfer posting (Dr)
540 539 12241515 1301047808 Nieuw-De Geus Klasina Person FALSE Residential FALSE 2017-09-01 2018-01-02 ANG 2017-09-21 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
541 540 12241515 1301047808 Nieuw-De Geus Klasina Person FALSE Residential FALSE 2017-09-01 2018-01-02 ANG 2017-09-21 104.51 FALSE Migration Document Migrated Transfer posting (Dr)
542 541 12241515 1301047808 Nieuw-De Geus Klasina Person FALSE Residential FALSE 2017-04-04 2018-01-02 ANG 2017-04-21 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
543 542 12241515 1301047808 Nieuw-De Geus Klasina Person FALSE Residential FALSE 2017-04-04 2018-01-02 ANG 2017-04-21 102.26 FALSE Migration Document Migrated Transfer posting (Dr)
544 543 12241515 1301047808 Nieuw-De Geus Klasina Person FALSE Residential FALSE 2017-04-04 2018-01-02 ANG 2017-04-21 29.09 FALSE Migration Document Migrated Transfer posting (Dr)
545 544 12241515 1301047808 Nieuw-De Geus Klasina Person FALSE Residential FALSE 2017-07-04 2018-01-02 ANG 2017-07-21 49.46 FALSE Migration Document Migrated Transfer posting (Dr)
546 545 12241515 1301047808 Nieuw-De Geus Klasina Person FALSE Residential FALSE 2017-07-04 2018-01-02 ANG 2017-07-21 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
547 546 12241515 1301047808 Nieuw-De Geus Klasina Person FALSE Residential FALSE 2017-07-04 2018-01-02 ANG 2017-07-21 106.36 FALSE Migration Document Migrated Transfer posting (Dr)
548 547 12241515 1301047808 Nieuw-De Geus Klasina Person FALSE Residential FALSE 2017-08-03 2018-01-02 ANG 2017-08-22 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
549 548 12361713 1301064178 Perry Verine Person FALSE Residential FALSE 2016-06-17 2018-01-02 ANG 2016-07-06 42.9 FALSE Migration Document Migrated Transfer posting (Dr)
550 549 12361713 1301064178 Perry Verine Person FALSE Residential FALSE 2016-06-17 2018-01-02 ANG 2016-07-06 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
551 550 12397170 1301025095 James Lucinda Person FALSE Residential FALSE 2017-08-18 2018-01-02 ANG 2017-09-06 50.04 FALSE Migration Document Migrated Transfer posting (Dr)
552 551 12397170 1301025095 James Lucinda Person FALSE Residential FALSE 2017-06-20 2018-01-02 ANG 2017-07-07 63.45 FALSE Migration Document Migrated Transfer posting (Dr)
553 552 12397170 1301025095 James Lucinda Person FALSE Residential FALSE 2017-04-20 2018-01-02 ANG 2017-05-09 31.38 FALSE Migration Document Migrated Transfer posting (Dr)
554 553 12397170 1301025095 James Lucinda Person FALSE Residential FALSE 2017-05-19 2018-01-02 ANG 2017-06-08 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
555 554 12397170 1301025095 James Lucinda Person FALSE Residential FALSE 2017-05-19 2018-01-02 ANG 2017-06-08 49.22 FALSE Migration Document Migrated Transfer posting (Dr)
556 555 12397170 1301025095 James Lucinda Person FALSE Residential FALSE 2017-07-19 2018-01-02 ANG 2017-08-07 42.34 FALSE Migration Document Migrated Transfer posting (Dr)
557 556 12397170 1301025095 James Lucinda Person FALSE Residential FALSE 2017-07-19 2018-01-02 ANG 2017-08-07 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
558 557 12397170 1301025095 James Lucinda Person FALSE Residential FALSE 2017-06-20 2018-01-02 ANG 2017-07-07 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
559 558 12437019 1301041740 Davelaar/Meyer Irma Person FALSE Residential FALSE 2016-12-15 2018-01-02 ANG 2017-01-03 182.7 FALSE Migration Document Migrated Transfer posting (Dr)
560 559 12437019 1301041740 Davelaar/Meyer Irma Person FALSE Residential FALSE 2017-01-17 2018-01-02 ANG 2017-02-03 204.02 FALSE Migration Document Migrated Transfer posting (Dr)
561 560 12437019 1301041740 Davelaar/Meyer Irma Person FALSE Residential FALSE 2017-01-17 2018-01-02 ANG 2017-02-03 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
562 561 12453269 1301063772 Rosaria Andres Person FALSE Residential FALSE 2017-10-12 2018-01-02 ANG 2017-10-31 58.55 FALSE Migration Document Migrated Transfer posting (Dr)
563 562 12453269 1301063772 Rosaria Andres Person FALSE Residential FALSE 2017-10-12 2018-01-02 ANG 2017-10-31 14.75 FALSE Migration Document Migrated Transfer posting (Dr)
564 563 12453269 1301063772 Rosaria Andres Person FALSE Residential FALSE 2017-10-12 2018-01-02 ANG 2017-10-31 20.74 FALSE Migration Document Migrated Transfer posting (Dr)
565 564 12453269 1301063772 Rosaria Andres Person FALSE Residential FALSE 2017-10-12 2018-01-02 ANG 2017-10-31 14.77 FALSE Migration Document Migrated Transfer posting (Dr)
566 565 12453269 1301063772 Rosaria Andres Person FALSE Residential FALSE 2017-09-11 2018-01-02 ANG 2017-09-28 76.52 FALSE Migration Document Migrated Transfer posting (Dr)
567 566 12485729 1301027275 Petronia Russell Person FALSE Residential FALSE 2017-05-02 2018-01-02 ANG 2017-05-19 87.66 FALSE Migration Document Migrated Transfer posting (Dr)
568 567 12501224 1301064301 Van Lent Johannes Person FALSE Residential FALSE 2017-02-14 2018-01-02 ANG 2017-03-03 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
569 568 12501224 1301064301 Van Lent Johannes Person FALSE Residential FALSE 2017-02-14 2018-01-02 ANG 2017-03-03 0.89 FALSE Migration Document Migrated Transfer posting (Dr)
570 569 12506101 1301064575 De Wind Ulrich Person FALSE Residential FALSE 2016-11-22 2018-01-02 ANG 2016-12-09 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
571 570 12506101 1301064575 De Wind Ulrich Person FALSE Residential FALSE 2016-11-22 2018-01-02 ANG 2016-12-09 145.18 FALSE Migration Document Migrated Transfer posting (Dr)
572 571 12563462 1301065705 Servage Dolores Person FALSE Residential FALSE 2017-05-03 2018-01-02 ANG 2017-05-22 6.32 FALSE Migration Document Migrated Transfer posting (Dr)
573 572 12563462 1301065705 Servage Dolores Person FALSE Residential FALSE 2017-06-01 2018-01-02 ANG 2017-06-20 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
574 573 12563462 1301065705 Servage Dolores Person FALSE Residential FALSE 2017-06-01 2018-01-02 ANG 2017-06-20 5 FALSE Migration Document Migrated Transfer posting (Dr)
575 574 12563462 1301065705 Servage Dolores Person FALSE Residential FALSE 2017-05-03 2018-01-02 ANG 2017-05-22 3.99 FALSE Migration Document Migrated Transfer posting (Dr)
576 575 12586850 1301022682 Ferreira Ronald Person FALSE Residential FALSE 2017-06-16 2018-01-02 ANG 2017-07-05 35.19 FALSE Migration Document Migrated Transfer posting (Dr)
577 576 12586850 1301022682 Ferreira Ronald Person FALSE Residential FALSE 2017-05-18 2018-01-02 ANG 2017-06-06 1 FALSE Migration Document Migrated Transfer posting (Dr)
578 577 12586850 1301022682 Ferreira Ronald Person FALSE Residential FALSE 2017-05-18 2018-01-02 ANG 2017-06-06 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
579 578 12586850 1301022682 Ferreira Ronald Person FALSE Residential FALSE 2017-05-18 2018-01-02 ANG 2017-06-06 99.82 FALSE Migration Document Migrated Transfer posting (Dr)
580 579 12586850 1301022682 Ferreira Ronald Person FALSE Residential FALSE 2017-06-01 2018-01-02 ANG 2017-07-05 909.96 FALSE Migration Document Migrated Transfer posting (Dr)
581 580 12620109 1301070338 Baudouin Garry Person FALSE Residential FALSE 2017-09-08 2018-01-02 ANG 2017-09-27 7.37 FALSE Migration Document Migrated Transfer posting (Dr)
582 581 12620109 1301070338 Baudouin Garry Person FALSE Residential FALSE 2017-04-10 2018-01-02 ANG 2017-05-02 62.8 FALSE Migration Document Migrated Transfer posting (Dr)
583 582 12620109 1301070338 Baudouin Garry Person FALSE Residential FALSE 2017-04-10 2018-01-02 ANG 2017-05-02 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
584 583 12620109 1301070338 Baudouin Garry Person FALSE Residential FALSE 2017-03-10 2018-01-02 ANG 2017-03-29 56.18 FALSE Migration Document Migrated Transfer posting (Dr)
585 584 12620109 1301070338 Baudouin Garry Person FALSE Residential FALSE 2017-05-12 2018-01-02 ANG 2017-06-01 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
586 585 12620109 1301070338 Baudouin Garry Person FALSE Residential FALSE 2017-12-08 2018-01-02 ANG 2017-12-28 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
587 586 12620109 1301070338 Baudouin Garry Person FALSE Residential FALSE 2017-08-10 2018-01-02 ANG 2017-08-29 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
588 587 12620109 1301070338 Baudouin Garry Person FALSE Residential FALSE 2017-07-11 2018-01-02 ANG 2017-07-28 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
589 588 12620109 1301070338 Baudouin Garry Person FALSE Residential FALSE 2017-06-12 2018-01-02 ANG 2017-06-29 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
590 589 12620109 1301070338 Baudouin Garry Person FALSE Residential FALSE 2017-10-11 2018-01-02 ANG 2017-10-30 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
591 590 12620109 1301070338 Baudouin Garry Person FALSE Residential FALSE 2017-09-08 2018-01-02 ANG 2017-09-27 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
592 591 12620109 1301070338 Baudouin Garry Person FALSE Residential FALSE 2017-11-09 2018-01-02 ANG 2017-11-28 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
593 592 12625280 1301044130 Jones Sharina Person FALSE Residential FALSE 2016-08-24 2018-01-02 ANG 2016-09-12 7.81 FALSE Migration Document Migrated Transfer posting (Dr)
594 593 12625280 1301044130 Jones Sharina Person FALSE Residential FALSE 2016-08-24 2018-01-02 ANG 2016-09-12 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
595 594 12666634 1301023612 Winkel Carel Person FALSE Residential FALSE 2017-06-02 2018-01-02 ANG 2017-06-22 259.63 FALSE Migration Document Migrated Transfer posting (Dr)
596 595 12669064 1301052969 Sophia Gwendolyn Person FALSE Residential FALSE 2016-11-01 2018-01-02 ANG 2016-11-18 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
597 596 12669064 1301052969 Sophia Gwendolyn Person FALSE Residential FALSE 2016-11-01 2018-01-02 ANG 2016-11-18 130.4 FALSE Migration Document Migrated Transfer posting (Dr)
598 597 12669064 1301052969 Sophia Gwendolyn Person FALSE Residential FALSE 2016-10-03 2018-01-02 ANG 2016-10-20 90.86 FALSE Migration Document Migrated Transfer posting (Dr)
599 598 12669064 1301052969 Sophia Gwendolyn Person FALSE Residential FALSE 2016-10-03 2018-01-02 ANG 2016-10-20 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
600 599 12669064 1301052969 Sophia Gwendolyn Person FALSE Residential FALSE 2016-09-16 2018-01-02 ANG 2016-10-20 3.87 FALSE Migration Document Migrated Transfer posting (Dr)
601 600 12859601 1301027422 Maduro Guillermo Person FALSE Residential FALSE 2017-04-12 2018-01-02 ANG 2017-05-03 12.83 FALSE Migration Document Migrated Transfer posting (Dr)
602 601 12859601 1301027422 Maduro Guillermo Person FALSE Residential FALSE 2017-04-12 2018-01-02 ANG 2017-05-03 25.14 FALSE Migration Document Migrated Transfer posting (Dr)
603 602 13169635 1301009646 Lopez Trina Person FALSE Residential FALSE 2016-08-02 2018-01-02 ANG 2016-08-19 16.29 FALSE Migration Document Migrated Transfer posting (Dr)
604 603 13275591 1301074307 Van Der Steen Maria Person FALSE Residential FALSE 2017-01-20 2018-01-02 ANG 2017-02-09 36.31 FALSE Migration Document Migrated Transfer posting (Dr)
605 604 13275591 1301074307 Van Der Steen Maria Person FALSE Residential FALSE 2017-01-20 2018-01-02 ANG 2017-02-09 0.01 FALSE Migration Document Migrated Transfer posting (Dr)
606 605 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2017-07-03 2018-01-02 ANG 2017-07-20 7.06 FALSE Migration Document Migrated Transfer posting (Dr)
607 606 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2017-01-02 2018-01-02 ANG 2017-01-19 50.89 FALSE Migration Document Migrated Transfer posting (Dr)
608 607 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2017-05-05 2018-01-02 ANG 2017-05-24 21.05 FALSE Migration Document Migrated Transfer posting (Dr)
609 608 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2017-04-03 2018-01-02 ANG 2017-04-20 42.65 FALSE Migration Document Migrated Transfer posting (Dr)
610 609 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2017-08-02 2018-01-02 ANG 2017-08-21 0.95 FALSE Migration Document Migrated Transfer posting (Dr)
611 610 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2017-07-03 2018-01-02 ANG 2017-07-20 4.25 FALSE Migration Document Migrated Transfer posting (Dr)
612 611 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2017-01-02 2018-01-02 ANG 2017-01-19 30.45 FALSE Migration Document Migrated Transfer posting (Dr)
613 612 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2017-01-02 2018-01-02 ANG 2017-01-19 16 FALSE Migration Document Migrated Transfer posting (Dr)
614 613 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2017-06-02 2018-01-02 ANG 2017-06-22 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
615 614 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2017-06-02 2018-01-02 ANG 2017-06-22 5 FALSE Migration Document Migrated Transfer posting (Dr)
616 615 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2016-07-01 2018-01-02 ANG 2016-07-20 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
617 616 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2016-07-01 2018-01-02 ANG 2016-07-20 43.07 FALSE Migration Document Migrated Transfer posting (Dr)
618 617 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2016-07-01 2018-01-02 ANG 2016-07-20 10.62 FALSE Migration Document Migrated Transfer posting (Dr)
619 618 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2016-11-01 2018-01-02 ANG 2016-11-18 5.91 FALSE Migration Document Migrated Transfer posting (Dr)
620 619 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2016-11-01 2018-01-02 ANG 2016-11-18 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
621 620 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2016-10-03 2018-01-02 ANG 2016-10-20 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
622 621 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2016-10-03 2018-01-02 ANG 2016-10-20 5 FALSE Migration Document Migrated Transfer posting (Dr)
623 622 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2016-08-02 2018-01-02 ANG 2016-08-19 111.45 FALSE Migration Document Migrated Transfer posting (Dr)
624 623 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2016-08-02 2018-01-02 ANG 2016-08-19 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
625 624 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2016-08-02 2018-01-02 ANG 2016-08-19 65.73 FALSE Migration Document Migrated Transfer posting (Dr)
626 625 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2017-01-30 2018-01-02 ANG 2017-02-16 78.81 FALSE Migration Document Migrated Transfer posting (Dr)
627 626 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2017-01-30 2018-01-02 ANG 2017-02-16 2.61 FALSE Migration Document Migrated Transfer posting (Dr)
628 627 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2017-01-30 2018-01-02 ANG 2017-02-16 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
629 628 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2017-01-25 2018-01-02 ANG 2017-02-16 25 FALSE Migration Document Migrated Transfer posting (Dr)
630 629 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2017-01-25 2018-01-02 ANG 2017-02-16 75 FALSE Migration Document Migrated Transfer posting (Dr)
631 630 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2017-01-30 2018-01-02 ANG 2017-02-16 2.39 FALSE Migration Document Migrated Transfer posting (Dr)
632 631 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2016-09-01 2018-01-02 ANG 2016-09-20 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
633 632 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2016-09-01 2018-01-02 ANG 2016-09-20 148.42 FALSE Migration Document Migrated Transfer posting (Dr)
634 633 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2016-09-01 2018-01-02 ANG 2016-09-20 108.46 FALSE Migration Document Migrated Transfer posting (Dr)
635 634 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2017-03-02 2018-01-02 ANG 2017-03-21 15.18 FALSE Migration Document Migrated Transfer posting (Dr)
636 635 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2017-03-02 2018-01-02 ANG 2017-03-21 5 FALSE Migration Document Migrated Transfer posting (Dr)
637 636 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2017-03-02 2018-01-02 ANG 2017-03-21 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
638 637 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2016-11-30 2018-01-02 ANG 2016-12-17 5 FALSE Migration Document Migrated Transfer posting (Dr)
639 638 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2016-11-30 2018-01-02 ANG 2016-12-17 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
640 639 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2017-07-03 2018-01-02 ANG 2017-07-20 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
641 640 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2017-05-05 2018-01-02 ANG 2017-05-24 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
642 641 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2017-01-02 2018-01-02 ANG 2017-01-19 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
643 642 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2017-08-02 2018-01-02 ANG 2017-08-21 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
644 643 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2017-04-03 2018-01-02 ANG 2017-04-20 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
645 644 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2017-05-05 2018-01-02 ANG 2017-05-24 5 FALSE Migration Document Migrated Transfer posting (Dr)
646 645 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2017-04-03 2018-01-02 ANG 2017-04-20 5 FALSE Migration Document Migrated Transfer posting (Dr)
647 646 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2017-07-03 2018-01-02 ANG 2017-07-20 0.75 FALSE Migration Document Migrated Transfer posting (Dr)
648 647 13326596 1301077632 Vrutaal Egidio Person FALSE Residential FALSE 2017-08-02 2018-01-02 ANG 2017-08-21 4.05 FALSE Migration Document Migrated Transfer posting (Dr)
649 648 13361392 1301067529 De Groote Alexander Person FALSE Residential FALSE 2017-07-20 2018-01-02 ANG 2017-08-08 73.62 FALSE Migration Document Migrated Transfer posting (Dr)
650 649 13426215 1301055821 Casperson Jonis Arlette Person FALSE Residential FALSE 2016-07-26 2018-01-02 ANG 2016-08-12 5 FALSE Migration Document Migrated Transfer posting (Dr)
651 650 13468877 1301078268 Doran Erwin Person FALSE Residential FALSE 2017-03-03 2018-01-02 ANG 2017-03-22 7.6 FALSE Migration Document Migrated Transfer posting (Dr)
652 651 13468877 1301078268 Doran Erwin Person FALSE Residential FALSE 2017-02-01 2018-01-02 ANG 2017-02-20 7.38 FALSE Migration Document Migrated Transfer posting (Dr)
653 652 13468877 1301078268 Doran Erwin Person FALSE Residential FALSE 2017-02-01 2018-01-02 ANG 2017-02-20 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
654 653 13468877 1301078268 Doran Erwin Person FALSE Residential FALSE 2017-04-04 2018-01-02 ANG 2017-04-21 14.18 FALSE Migration Document Migrated Transfer posting (Dr)
655 654 13468877 1301078268 Doran Erwin Person FALSE Residential FALSE 2017-03-03 2018-01-02 ANG 2017-03-22 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
656 655 13504445 1301070381 Coeriel Edgar Person FALSE Residential FALSE 2016-10-28 2018-01-02 ANG 2016-11-16 64.86 FALSE Migration Document Migrated Transfer posting (Dr)
657 656 13504445 1301070381 Coeriel Edgar Person FALSE Residential FALSE 2016-11-28 2018-01-02 ANG 2016-12-15 50.47 FALSE Migration Document Migrated Transfer posting (Dr)
658 657 13504445 1301070381 Coeriel Edgar Person FALSE Residential FALSE 2016-10-28 2018-01-02 ANG 2016-11-16 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
659 658 13533371 1301017435 Annastatia Wilfred Person FALSE Residential FALSE 2016-11-14 2018-01-02 ANG 2016-12-01 14.34 FALSE Migration Document Migrated Transfer posting (Dr)
660 659 13555276 1301013214 Ansjeliena Virginia Person FALSE Residential FALSE 2017-10-12 2018-01-02 ANG 2017-10-31 146.45 FALSE Migration Document Migrated Transfer posting (Dr)
661 660 13555276 1301013214 Ansjeliena Virginia Person FALSE Residential FALSE 2017-10-12 2018-01-02 ANG 2017-10-31 89.83 FALSE Migration Document Migrated Transfer posting (Dr)
662 661 13555276 1301013214 Ansjeliena Virginia Person FALSE Residential FALSE 2017-10-12 2018-01-02 ANG 2017-10-31 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
663 662 13578216 1301059338 Paulina -Rama Dolores Person FALSE Residential FALSE 2016-11-18 2018-01-02 ANG 2016-12-07 7.21 FALSE Migration Document Migrated Transfer posting (Dr)
664 663 13578216 1301059338 Paulina -Rama Dolores Person FALSE Residential FALSE 2016-11-18 2018-01-02 ANG 2016-12-07 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
665 664 13578216 1301059338 Paulina -Rama Dolores Person FALSE Residential FALSE 2016-12-19 2018-01-02 ANG 2017-01-05 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
666 665 13597024 1301080019 Henriquez Maria Person FALSE Residential FALSE 2017-07-12 2018-01-02 ANG 2017-07-31 11.3 FALSE Migration Document Migrated Transfer posting (Dr)
667 666 13635026 1301088457 La Cruz - Passial Khyshaira Person FALSE Residential FALSE 2017-04-21 2018-01-02 ANG 2017-05-10 34.98 FALSE Migration Document Migrated Transfer posting (Dr)
668 667 13635026 1301088457 La Cruz - Passial Khyshaira Person FALSE Residential FALSE 2017-05-22 2018-01-02 ANG 2017-06-08 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
669 668 13635026 1301088457 La Cruz - Passial Khyshaira Person FALSE Residential FALSE 2017-05-22 2018-01-02 ANG 2017-06-08 35.16 FALSE Migration Document Migrated Transfer posting (Dr)
670 669 13635026 1301088457 La Cruz - Passial Khyshaira Person FALSE Residential FALSE 2017-02-17 2018-01-02 ANG 2017-03-08 52.38 FALSE Migration Document Migrated Transfer posting (Dr)
671 670 13635026 1301088457 La Cruz - Passial Khyshaira Person FALSE Residential FALSE 2017-02-17 2018-01-02 ANG 2017-03-08 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
672 671 13635026 1301088457 La Cruz - Passial Khyshaira Person FALSE Residential FALSE 2017-01-19 2018-01-02 ANG 2017-02-07 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
673 672 13635026 1301088457 La Cruz - Passial Khyshaira Person FALSE Residential FALSE 2017-01-19 2018-01-02 ANG 2017-02-07 36.61 FALSE Migration Document Migrated Transfer posting (Dr)
674 673 13635026 1301088457 La Cruz - Passial Khyshaira Person FALSE Residential FALSE 2017-03-21 2018-01-02 ANG 2017-04-07 44.15 FALSE Migration Document Migrated Transfer posting (Dr)
675 674 13635026 1301088457 La Cruz - Passial Khyshaira Person FALSE Residential FALSE 2017-03-21 2018-01-02 ANG 2017-04-07 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
676 675 13635026 1301088457 La Cruz - Passial Khyshaira Person FALSE Residential FALSE 2017-04-21 2018-01-02 ANG 2017-05-10 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
677 676 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2017-03-14 2018-01-02 ANG 2017-03-31 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
678 677 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2017-03-14 2018-01-02 ANG 2017-03-31 125 FALSE Migration Document Migrated Transfer posting (Dr)
679 678 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2016-09-13 2018-01-02 ANG 2016-09-30 418.6 FALSE Migration Document Migrated Transfer posting (Dr)
680 679 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2016-09-13 2018-01-02 ANG 2016-09-30 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
681 680 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2016-09-13 2018-01-02 ANG 2016-09-30 125 FALSE Migration Document Migrated Transfer posting (Dr)
682 681 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2016-08-12 2018-01-02 ANG 2016-08-31 161.46 FALSE Migration Document Migrated Transfer posting (Dr)
683 682 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2016-08-12 2018-01-02 ANG 2016-08-31 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
684 683 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2016-08-12 2018-01-02 ANG 2016-08-31 125 FALSE Migration Document Migrated Transfer posting (Dr)
685 684 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2016-07-13 2018-01-02 ANG 2016-08-01 125 FALSE Migration Document Migrated Transfer posting (Dr)
686 685 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2016-07-13 2018-01-02 ANG 2016-08-01 493.13 FALSE Migration Document Migrated Transfer posting (Dr)
687 686 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2016-07-13 2018-01-02 ANG 2016-08-01 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
688 687 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2017-02-10 2018-01-02 ANG 2017-03-01 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
689 688 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2016-11-11 2018-01-02 ANG 2016-11-30 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
690 689 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2017-04-12 2018-01-02 ANG 2017-05-03 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
691 690 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2017-08-14 2018-01-02 ANG 2017-08-31 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
692 691 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2017-01-12 2018-01-02 ANG 2017-01-31 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
693 692 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2017-06-14 2018-01-02 ANG 2017-07-03 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
694 693 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2017-07-13 2018-01-02 ANG 2017-08-01 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
695 694 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2017-05-16 2018-01-02 ANG 2017-06-02 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
696 695 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2016-12-12 2018-01-02 ANG 2016-12-29 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
697 696 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2017-09-12 2018-01-02 ANG 2017-09-29 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
698 697 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2016-10-13 2018-01-02 ANG 2016-11-01 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
699 698 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2017-10-13 2018-01-02 ANG 2017-11-01 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
700 699 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2017-08-14 2018-01-02 ANG 2017-08-31 125 FALSE Migration Document Migrated Transfer posting (Dr)
701 700 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2017-09-12 2018-01-02 ANG 2017-09-29 125 FALSE Migration Document Migrated Transfer posting (Dr)
702 701 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2017-01-12 2018-01-02 ANG 2017-01-31 125 FALSE Migration Document Migrated Transfer posting (Dr)
703 702 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2017-05-16 2018-01-02 ANG 2017-06-02 125 FALSE Migration Document Migrated Transfer posting (Dr)
704 703 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2017-02-10 2018-01-02 ANG 2017-03-01 125 FALSE Migration Document Migrated Transfer posting (Dr)
705 704 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2017-04-12 2018-01-02 ANG 2017-05-03 125 FALSE Migration Document Migrated Transfer posting (Dr)
706 705 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2017-06-14 2018-01-02 ANG 2017-07-03 125 FALSE Migration Document Migrated Transfer posting (Dr)
707 706 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2016-12-12 2018-01-02 ANG 2016-12-29 125 FALSE Migration Document Migrated Transfer posting (Dr)
708 707 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2017-07-13 2018-01-02 ANG 2017-08-01 125 FALSE Migration Document Migrated Transfer posting (Dr)
709 708 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2016-11-11 2018-01-02 ANG 2016-11-30 125 FALSE Migration Document Migrated Transfer posting (Dr)
710 709 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2016-10-13 2018-01-02 ANG 2016-11-01 125 FALSE Migration Document Migrated Transfer posting (Dr)
711 710 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2017-10-13 2018-01-02 ANG 2017-11-01 125 FALSE Migration Document Migrated Transfer posting (Dr)
712 711 13693854 1301018497 Abath Alouisio Person FALSE Residential FALSE 2017-10-16 2018-01-02 ANG 2017-11-30 16000 FALSE Migration Document Migrated Transfer posting (Dr)
713 712 13739325 1301018557 Martina Firmo Person FALSE Residential FALSE 2016-12-19 2018-01-02 ANG 2017-01-05 21.79 FALSE Migration Document Migrated Transfer posting (Dr)
714 713 13739325 1301018557 Martina Firmo Person FALSE Residential FALSE 2016-10-20 2018-01-02 ANG 2016-11-08 14.47 FALSE Migration Document Migrated Transfer posting (Dr)
715 714 13739325 1301018557 Martina Firmo Person FALSE Residential FALSE 2016-08-19 2018-01-02 ANG 2016-09-07 12.29 FALSE Migration Document Migrated Transfer posting (Dr)
716 715 13739325 1301018557 Martina Firmo Person FALSE Residential FALSE 2016-09-20 2018-01-02 ANG 2016-10-07 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
717 716 13739325 1301018557 Martina Firmo Person FALSE Residential FALSE 2016-09-20 2018-01-02 ANG 2016-10-07 14.77 FALSE Migration Document Migrated Transfer posting (Dr)
718 717 13739325 1301018557 Martina Firmo Person FALSE Residential FALSE 2016-11-18 2018-01-02 ANG 2016-12-07 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
719 718 13739325 1301018557 Martina Firmo Person FALSE Residential FALSE 2016-11-18 2018-01-02 ANG 2016-12-07 14.4 FALSE Migration Document Migrated Transfer posting (Dr)
720 719 13739325 1301018557 Martina Firmo Person FALSE Residential FALSE 2017-02-17 2018-01-02 ANG 2017-03-08 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
721 720 13739325 1301018557 Martina Firmo Person FALSE Residential FALSE 2017-02-17 2018-01-02 ANG 2017-03-08 22.46 FALSE Migration Document Migrated Transfer posting (Dr)
722 721 13739325 1301018557 Martina Firmo Person FALSE Residential FALSE 2017-01-19 2018-01-02 ANG 2017-02-07 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
723 722 13739325 1301018557 Martina Firmo Person FALSE Residential FALSE 2017-01-19 2018-01-02 ANG 2017-02-07 21.97 FALSE Migration Document Migrated Transfer posting (Dr)
724 723 13739325 1301018557 Martina Firmo Person FALSE Residential FALSE 2017-03-21 2018-01-02 ANG 2017-04-07 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
725 724 13739325 1301018557 Martina Firmo Person FALSE Residential FALSE 2017-03-21 2018-01-02 ANG 2017-04-07 29.43 FALSE Migration Document Migrated Transfer posting (Dr)
726 725 13739325 1301018557 Martina Firmo Person FALSE Residential FALSE 2016-10-20 2018-01-02 ANG 2016-11-08 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
727 726 13739325 1301018557 Martina Firmo Person FALSE Residential FALSE 2016-12-19 2018-01-02 ANG 2017-01-05 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
728 727 13824112 1301034396 Sniphout Andrew Person FALSE Residential FALSE 2016-07-25 2018-01-02 ANG 2016-08-11 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
729 728 13824112 1301034396 Sniphout Andrew Person FALSE Residential FALSE 2016-08-24 2018-01-02 ANG 2016-09-12 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
730 729 13848920 1301083918 Rigaud-Hudson Gloria Person FALSE Residential FALSE 2017-01-26 2018-01-02 ANG 2017-02-14 92.12 FALSE Migration Document Migrated Transfer posting (Dr)
731 730 13877115 1301046829 Isenia Alvin Person FALSE Residential FALSE 2017-09-22 2018-01-02 ANG 2017-10-30 982.43 FALSE Migration Document Migrated Transfer posting (Dr)
732 731 13877115 1301046829 Isenia Alvin Person FALSE Residential FALSE 2017-12-08 2018-01-02 ANG 2017-12-28 29.13 FALSE Migration Document Migrated Transfer posting (Dr)
733 732 13877115 1301046829 Isenia Alvin Person FALSE Residential FALSE 2017-12-08 2018-01-02 ANG 2017-12-28 36.92 FALSE Migration Document Migrated Transfer posting (Dr)
734 733 13877115 1301046829 Isenia Alvin Person FALSE Residential FALSE 2017-10-06 2018-01-02 ANG 2017-10-30 1.39 FALSE Migration Document Migrated Transfer posting (Dr)
735 734 13877115 1301046829 Isenia Alvin Person FALSE Residential FALSE 2017-12-08 2018-01-02 ANG 2017-12-28 29.5 FALSE Migration Document Migrated Transfer posting (Dr)
736 735 13877115 1301046829 Isenia Alvin Person FALSE Residential FALSE 2017-10-06 2018-01-02 ANG 2017-10-30 8.05 FALSE Migration Document Migrated Transfer posting (Dr)
737 736 13877115 1301046829 Isenia Alvin Person FALSE Residential FALSE 2017-09-22 2018-01-02 ANG 2017-10-30 80 FALSE Migration Document Migrated Transfer posting (Dr)
738 737 13877115 1301046829 Isenia Alvin Person FALSE Residential FALSE 2017-10-06 2018-01-02 ANG 2017-10-30 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
739 738 13877115 1301046829 Isenia Alvin Person FALSE Residential FALSE 2017-11-08 2018-01-02 ANG 2017-11-27 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
740 739 13877115 1301046829 Isenia Alvin Person FALSE Residential FALSE 2017-09-22 2018-01-02 ANG 2017-10-30 25 FALSE Migration Document Migrated Transfer posting (Dr)
741 740 13877115 1301046829 Isenia Alvin Person FALSE Residential FALSE 2017-09-22 2018-01-02 ANG 2017-10-30 250 FALSE Migration Document Migrated Transfer posting (Dr)
742 741 13877123 1301046829 Isenia Alvin Person FALSE Residential FALSE 2017-12-08 2018-01-02 ANG 2017-12-28 117.23 FALSE Migration Document Migrated Transfer posting (Dr)
743 742 13877123 1301046829 Isenia Alvin Person FALSE Residential FALSE 2017-10-06 2018-01-02 ANG 2017-10-30 397.41 FALSE Migration Document Migrated Transfer posting (Dr)
744 743 13877123 1301046829 Isenia Alvin Person FALSE Residential FALSE 2017-12-08 2018-01-02 ANG 2017-12-28 36.55 FALSE Migration Document Migrated Transfer posting (Dr)
745 744 13877123 1301046829 Isenia Alvin Person FALSE Residential FALSE 2017-09-22 2018-01-02 ANG 2017-10-30 5209.72 FALSE Migration Document Migrated Transfer posting (Dr)
746 745 13877123 1301046829 Isenia Alvin Person FALSE Residential FALSE 2017-11-08 2018-01-02 ANG 2017-11-27 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
747 746 13877123 1301046829 Isenia Alvin Person FALSE Residential FALSE 2017-09-22 2018-01-02 ANG 2017-10-30 25 FALSE Migration Document Migrated Transfer posting (Dr)
748 747 13887322 1301086615 George Hubert Person FALSE Residential FALSE 2016-12-16 2018-01-02 ANG 2017-01-17 25 FALSE Migration Document Migrated Transfer posting (Dr)
749 748 13887322 1301086615 George Hubert Person FALSE Residential FALSE 2016-11-28 2018-01-02 ANG 2016-12-15 543.77 FALSE Migration Document Migrated Transfer posting (Dr)
750 749 13887322 1301086615 George Hubert Person FALSE Residential FALSE 2016-11-28 2018-01-02 ANG 2016-12-15 563.66 FALSE Migration Document Migrated Transfer posting (Dr)
751 750 13887322 1301086615 George Hubert Person FALSE Residential FALSE 2016-11-28 2018-01-02 ANG 2016-12-15 619.08 FALSE Migration Document Migrated Transfer posting (Dr)
752 751 13887322 1301086615 George Hubert Person FALSE Residential FALSE 2016-12-16 2018-01-02 ANG 2017-01-17 75 FALSE Migration Document Migrated Transfer posting (Dr)
753 752 13887322 1301086615 George Hubert Person FALSE Residential FALSE 2016-11-28 2018-01-02 ANG 2016-12-15 587.87 FALSE Migration Document Migrated Transfer posting (Dr)
754 753 13887322 1301086615 George Hubert Person FALSE Residential FALSE 2016-11-28 2018-01-02 ANG 2016-12-15 8991.92 FALSE Migration Document Migrated Transfer posting (Dr)
755 754 13971692 1301081431 Sambre Kenia Person FALSE Residential FALSE 2016-12-23 2018-01-02 ANG 2017-01-12 0.02 FALSE Migration Document Migrated Transfer posting (Dr)
756 755 13996545 1301022324 Cornelis Noris Person FALSE Residential FALSE 2016-09-07 2018-01-02 ANG 2016-09-26 79.82 FALSE Migration Document Migrated Transfer posting (Dr)
757 756 13996545 1301022324 Cornelis Noris Person FALSE Residential FALSE 2016-08-08 2018-01-02 ANG 2016-08-25 19.68 FALSE Migration Document Migrated Transfer posting (Dr)
758 757 13996545 1301022324 Cornelis Noris Person FALSE Residential FALSE 2016-09-07 2018-01-02 ANG 2016-09-26 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
759 758 14015627 1301088790 Wolters Albertus Person FALSE Residential FALSE 2017-04-19 2018-01-02 ANG 2017-05-08 181.87 FALSE Migration Document Migrated Transfer posting (Dr)
760 759 14040672 1301026971 Calvo Saureen Person FALSE Residential FALSE 2016-08-25 2018-01-02 ANG 2016-09-13 7.41 FALSE Migration Document Migrated Transfer posting (Dr)
761 760 14040672 1301026971 Calvo Saureen Person FALSE Residential FALSE 2016-07-26 2018-01-02 ANG 2016-08-12 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
762 761 14040672 1301026971 Calvo Saureen Person FALSE Residential FALSE 2016-07-26 2018-01-02 ANG 2016-08-12 7.28 FALSE Migration Document Migrated Transfer posting (Dr)
763 762 14040672 1301026971 Calvo Saureen Person FALSE Residential FALSE 2016-08-25 2018-01-02 ANG 2016-09-13 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
764 763 14069676 1301096129 Rusch Martin Person FALSE Residential FALSE 2017-12-21 2018-01-02 ANG 2018-01-15 346.41 FALSE Migration Document Migrated Transfer posting (Dr)
765 764 14069676 1301096129 Rusch Martin Person FALSE Residential FALSE 2017-11-27 2018-01-02 ANG 2017-12-14 233.32 FALSE Migration Document Migrated Transfer posting (Dr)
766 765 14094875 1301074462 Martha Wollit Person FALSE Residential FALSE 2017-03-24 2018-01-02 ANG 2017-04-12 29.08 FALSE Migration Document Migrated Transfer posting (Dr)
767 766 14094875 1301074462 Martha Wollit Person FALSE Residential FALSE 2017-03-24 2018-01-02 ANG 2017-04-12 15.13 FALSE Migration Document Migrated Transfer posting (Dr)
768 767 14094875 1301074462 Martha Wollit Person FALSE Residential FALSE 2017-03-24 2018-01-02 ANG 2017-04-12 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
769 768 14221040 1301028006 Salsbach-Clemencia Marie Person FALSE Residential FALSE 2017-05-30 2018-01-02 ANG 2017-06-15 99.85 FALSE Migration Document Migrated Transfer posting (Dr)
770 769 14221040 1301028006 Salsbach-Clemencia Marie Person FALSE Residential FALSE 2017-05-30 2018-01-02 ANG 2017-06-15 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
771 770 14221040 1301028006 Salsbach-Clemencia Marie Person FALSE Residential FALSE 2017-05-30 2018-01-02 ANG 2017-06-15 61.49 FALSE Migration Document Migrated Transfer posting (Dr)
772 771 14354958 1301028465 Minnaar-Berens Merle Person FALSE Residential FALSE 2017-11-08 2018-01-02 ANG 2017-11-27 0.1 FALSE Migration Document Migrated Transfer posting (Dr)
773 772 14354958 1301028465 Minnaar-Berens Merle Person FALSE Residential FALSE 2017-12-08 2018-01-02 ANG 2017-12-27 7.39 FALSE Migration Document Migrated Transfer posting (Dr)
774 773 14389694 1301099263 Van Heyningen Terence Person FALSE Residential FALSE 2016-11-04 2018-01-02 ANG 2016-11-23 21.55 FALSE Migration Document Migrated Transfer posting (Dr)
775 774 14389694 1301099263 Van Heyningen Terence Person FALSE Residential FALSE 2016-10-06 2018-01-02 ANG 2016-10-26 36.47 FALSE Migration Document Migrated Transfer posting (Dr)
776 775 14389694 1301099263 Van Heyningen Terence Person FALSE Residential FALSE 2016-10-06 2018-01-02 ANG 2016-10-26 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
777 776 14389694 1301099263 Van Heyningen Terence Person FALSE Residential FALSE 2016-09-06 2018-01-02 ANG 2016-09-23 37.34 FALSE Migration Document Migrated Transfer posting (Dr)
778 777 14389694 1301099263 Van Heyningen Terence Person FALSE Residential FALSE 2016-09-06 2018-01-02 ANG 2016-09-23 0.5 FALSE Migration Document Migrated Transfer posting (Dr)
779 778 14451302 1301055145 Zimmerman-Mademilia Maria Person FALSE Residential FALSE 2016-11-21 2018-01-02 ANG 2016-12-08 46.11 FALSE Migration Document Migrated Transfer posting (Dr)

1248
data-raw/jan052021/inactive/trans/discontinuedtrans.csv

File diff suppressed because it is too large

1046
data-raw/jan052021/inactive/trans/migratedtrans.csv

File diff suppressed because it is too large

4129
data-raw/jan052021/inactive/trans/smalltrans.csv

File diff suppressed because it is too large

303124
data-raw/jan052021/inactive/trans/timebarredtrans.csv

File diff suppressed because it is too large
Loading…
Cancel
Save