Generate Population from National Transport Survey Data¶
Generate caveat schedules and attributes inputs from UK NTS data.
Provided example uses toy data. You can access the real UK travel survey from 2002-2021 from the UK Data Service.
InĀ [22]:
Copied!
from pathlib import Path
import pandas as pd
from pam import read
from pam.core import Population
from pam.utils import datetime_to_matsim_time
from caveat.evaluate.describe.times import (
joint_time_distributions_plot,
times_distributions_plot,
)
from caveat.evaluate.describe.transitions import sequence_prob_plot
from pathlib import Path
import pandas as pd
from pam import read
from pam.core import Population
from pam.utils import datetime_to_matsim_time
from caveat.evaluate.describe.times import (
joint_time_distributions_plot,
times_distributions_plot,
)
from caveat.evaluate.describe.transitions import sequence_prob_plot
InĀ [Ā ]:
Copied!
dir = Path("data/dummyNTS/")
trips_csv = dir / "trips.tab"
attributes_csv = dir / "individuals.tab"
hhs_csv = dir / "households.tab"
# dir = Path("/home/fred/Data/UKDA-5340-tab/tab")
# trips_csv = dir / "trip_eul_2002-2023.tab"
# attributes_csv = dir / "individual_eul_2002-2023.tab"
# hhs_csv = dir / "household_eul_2002-2023.tab"
assert dir.exists()
assert trips_csv.exists()
assert attributes_csv.exists()
assert hhs_csv.exists()
years = [2021]
write_dir = Path("tmp")
write_dir.mkdir(exist_ok=True)
schedules_path = write_dir / "nts_schedules_2019.csv"
attributes_path = write_dir / "nts_attributes_2019.csv"
dir = Path("data/dummyNTS/")
trips_csv = dir / "trips.tab"
attributes_csv = dir / "individuals.tab"
hhs_csv = dir / "households.tab"
# dir = Path("/home/fred/Data/UKDA-5340-tab/tab")
# trips_csv = dir / "trip_eul_2002-2023.tab"
# attributes_csv = dir / "individual_eul_2002-2023.tab"
# hhs_csv = dir / "household_eul_2002-2023.tab"
assert dir.exists()
assert trips_csv.exists()
assert attributes_csv.exists()
assert hhs_csv.exists()
years = [2021]
write_dir = Path("tmp")
write_dir.mkdir(exist_ok=True)
schedules_path = write_dir / "nts_schedules_2019.csv"
attributes_path = write_dir / "nts_attributes_2019.csv"
InĀ [24]:
Copied!
travel_diaries = pd.read_csv(
trips_csv,
sep="\t",
usecols=[
"TripID",
"JourSeq",
"DayID",
"IndividualID",
"HouseholdID",
"MainMode_B04ID",
"TripPurpFrom_B01ID",
"TripPurpTo_B01ID",
"TripStart",
"TripEnd",
"TripOrigGOR_B02ID",
"TripDestGOR_B02ID",
"W5",
"SurveyYear",
],
)
travel_diaries = travel_diaries.rename(
columns={
"TripID": "tid",
"JourSeq": "seq",
"DayID": "day",
"IndividualID": "iid",
"HouseholdID": "hid",
"TripOrigGOR_B02ID": "ozone",
"TripDestGOR_B02ID": "dzone",
"TripPurpFrom_B01ID": "oact",
"TripPurpTo_B01ID": "dact",
"MainMode_B04ID": "mode",
"TripStart": "tst",
"TripEnd": "tet",
"W5": "freq",
"SurveyYear": "year",
}
)
travel_diaries = travel_diaries[travel_diaries.year.isin(years)]
travel_diaries.tst = pd.to_numeric(travel_diaries.tst, errors="coerce")
travel_diaries.tet = pd.to_numeric(travel_diaries.tet, errors="coerce")
travel_diaries.ozone = pd.to_numeric(travel_diaries.ozone, errors="coerce")
travel_diaries.dzone = pd.to_numeric(travel_diaries.dzone, errors="coerce")
travel_diaries.freq = pd.to_numeric(travel_diaries.freq, errors="coerce")
travel_diaries["did"] = travel_diaries.groupby("iid")["day"].transform(
lambda x: pd.factorize(x)[0] + 1
)
travel_diaries["pid"] = [
f"{i}-{d}" for i, d in zip(travel_diaries.iid, travel_diaries.did)
]
travel_diaries = travel_diaries.loc[
travel_diaries.groupby("pid")
.filter(lambda x: pd.isnull(x).sum().sum() < 1)
.index
]
# travel_diaries.freq = travel_diaries.freq / travel_diaries.groupby("iid").day.transform("nunique")
travel_diaries.loc[travel_diaries.tet == 0, "tet"] = 1440
travel_diaries = travel_diaries.drop(["tid", "day", "year", "did"], axis=1)
mode_mapping = {
1: "walk",
2: "bike",
3: "car", #'Car/van driver'
4: "car", #'Car/van driver'
5: "car", #'Motorcycle',
6: "car", #'Other private transport',
7: "pt", # Bus in London',
8: "pt", #'Other local bus',
9: "pt", #'Non-local bus',
10: "pt", #'London Underground',
11: "pt", #'Surface Rail',
12: "car", #'Taxi/minicab',
13: "pt", #'Other public transport',
-10: "DEAD",
-8: "NA",
}
purp_mapping = {
1: "work",
2: "work", #'In course of work',
3: "education",
4: "shop", #'Food shopping',
5: "shop", #'Non food shopping',
6: "medical", #'Personal business medical',
7: "other", #'Personal business eat/drink',
8: "other", #'Personal business other',
9: "other", #'Eat/drink with friends',
10: "visit", #'Visit friends',
11: "other", #'Other social',
12: "other", #'Entertain/ public activity',
13: "other", #'Sport: participate',
14: "home", #'Holiday: base',
15: "other", #'Day trip/just walk',
16: "other", #'Other non-escort',
17: "escort", #'Escort home',
18: "escort", #'Escort work',
19: "escort", #'Escort in course of work',
20: "escort", #'Escort education',
21: "escort", #'Escort shopping/personal business',
22: "escort", #'Other escort',
23: "home", #'Home',
-10: "DEAD",
-8: "NA",
}
travel_diaries["mode"] = travel_diaries["mode"].map(mode_mapping)
travel_diaries["oact"] = travel_diaries["oact"].map(purp_mapping)
travel_diaries["dact"] = travel_diaries["dact"].map(purp_mapping)
travel_diaries.tst = travel_diaries.tst.astype(int)
travel_diaries.tet = travel_diaries.tet.astype(int)
travel_diaries.head(20)
travel_diaries = pd.read_csv(
trips_csv,
sep="\t",
usecols=[
"TripID",
"JourSeq",
"DayID",
"IndividualID",
"HouseholdID",
"MainMode_B04ID",
"TripPurpFrom_B01ID",
"TripPurpTo_B01ID",
"TripStart",
"TripEnd",
"TripOrigGOR_B02ID",
"TripDestGOR_B02ID",
"W5",
"SurveyYear",
],
)
travel_diaries = travel_diaries.rename(
columns={
"TripID": "tid",
"JourSeq": "seq",
"DayID": "day",
"IndividualID": "iid",
"HouseholdID": "hid",
"TripOrigGOR_B02ID": "ozone",
"TripDestGOR_B02ID": "dzone",
"TripPurpFrom_B01ID": "oact",
"TripPurpTo_B01ID": "dact",
"MainMode_B04ID": "mode",
"TripStart": "tst",
"TripEnd": "tet",
"W5": "freq",
"SurveyYear": "year",
}
)
travel_diaries = travel_diaries[travel_diaries.year.isin(years)]
travel_diaries.tst = pd.to_numeric(travel_diaries.tst, errors="coerce")
travel_diaries.tet = pd.to_numeric(travel_diaries.tet, errors="coerce")
travel_diaries.ozone = pd.to_numeric(travel_diaries.ozone, errors="coerce")
travel_diaries.dzone = pd.to_numeric(travel_diaries.dzone, errors="coerce")
travel_diaries.freq = pd.to_numeric(travel_diaries.freq, errors="coerce")
travel_diaries["did"] = travel_diaries.groupby("iid")["day"].transform(
lambda x: pd.factorize(x)[0] + 1
)
travel_diaries["pid"] = [
f"{i}-{d}" for i, d in zip(travel_diaries.iid, travel_diaries.did)
]
travel_diaries = travel_diaries.loc[
travel_diaries.groupby("pid")
.filter(lambda x: pd.isnull(x).sum().sum() < 1)
.index
]
# travel_diaries.freq = travel_diaries.freq / travel_diaries.groupby("iid").day.transform("nunique")
travel_diaries.loc[travel_diaries.tet == 0, "tet"] = 1440
travel_diaries = travel_diaries.drop(["tid", "day", "year", "did"], axis=1)
mode_mapping = {
1: "walk",
2: "bike",
3: "car", #'Car/van driver'
4: "car", #'Car/van driver'
5: "car", #'Motorcycle',
6: "car", #'Other private transport',
7: "pt", # Bus in London',
8: "pt", #'Other local bus',
9: "pt", #'Non-local bus',
10: "pt", #'London Underground',
11: "pt", #'Surface Rail',
12: "car", #'Taxi/minicab',
13: "pt", #'Other public transport',
-10: "DEAD",
-8: "NA",
}
purp_mapping = {
1: "work",
2: "work", #'In course of work',
3: "education",
4: "shop", #'Food shopping',
5: "shop", #'Non food shopping',
6: "medical", #'Personal business medical',
7: "other", #'Personal business eat/drink',
8: "other", #'Personal business other',
9: "other", #'Eat/drink with friends',
10: "visit", #'Visit friends',
11: "other", #'Other social',
12: "other", #'Entertain/ public activity',
13: "other", #'Sport: participate',
14: "home", #'Holiday: base',
15: "other", #'Day trip/just walk',
16: "other", #'Other non-escort',
17: "escort", #'Escort home',
18: "escort", #'Escort work',
19: "escort", #'Escort in course of work',
20: "escort", #'Escort education',
21: "escort", #'Escort shopping/personal business',
22: "escort", #'Other escort',
23: "home", #'Home',
-10: "DEAD",
-8: "NA",
}
travel_diaries["mode"] = travel_diaries["mode"].map(mode_mapping)
travel_diaries["oact"] = travel_diaries["oact"].map(purp_mapping)
travel_diaries["dact"] = travel_diaries["dact"].map(purp_mapping)
travel_diaries.tst = travel_diaries.tst.astype(int)
travel_diaries.tet = travel_diaries.tet.astype(int)
travel_diaries.head(20)
/tmp/ipykernel_18886/1552774066.py:1: DtypeWarning: Columns (40,45) have mixed types. Specify dtype option on import or set low_memory=False. travel_diaries = pd.read_csv(
Out[24]:
iid | hid | seq | mode | oact | dact | tst | tet | ozone | dzone | freq | pid | |
---|---|---|---|---|---|---|---|---|---|---|---|---|
928960 | 2019000134 | 2019000061 | 2 | car | home | work | 450 | 480 | 7 | 7 | 0.787878 | 2019000134-1 |
928961 | 2019000135 | 2019000061 | 2 | car | escort | escort | 565 | 570 | 7 | 7 | 0.859816 | 2019000135-1 |
928962 | 2019000135 | 2019000061 | 3 | car | escort | other | 575 | 600 | 7 | 7 | 0.778427 | 2019000135-1 |
928963 | 2019000135 | 2019000061 | 2 | car | escort | escort | 1140 | 1150 | 7 | 7 | 0.888253 | 2019000135-2 |
928964 | 2019000136 | 2019000061 | 2 | walk | education | home | 910 | 920 | 7 | 7 | 0.760308 | 2019000136-1 |
928965 | 2019000136 | 2019000061 | 1 | pt | home | escort | 1035 | 1040 | 7 | 7 | 0.888253 | 2019000136-2 |
934248 | 2019000024 | 2019000011 | 1 | car | home | visit | 605 | 693 | 8 | 9 | 0.777401 | 2019000024-1 |
934249 | 2019000024 | 2019000011 | 1 | car | home | shop | 503 | 507 | 9 | 9 | 0.975009 | 2019000024-2 |
934428 | 2019000015 | 2019000006 | 2 | car | education | home | 915 | 945 | 7 | 6 | 0.759657 | 2019000015-1 |
934429 | 2019000015 | 2019000006 | 2 | car | education | home | 915 | 945 | 7 | 6 | 0.777065 | 2019000015-2 |
934430 | 2019000017 | 2019000007 | 1 | car | home | work | 540 | 580 | 9 | 9 | 1.448530 | 2019000017-1 |
934431 | 2019000017 | 2019000007 | 1 | car | home | work | 480 | 500 | 9 | 9 | 1.465704 | 2019000017-2 |
934432 | 2019000021 | 2019000009 | 4 | car | escort | home | 924 | 936 | 9 | 9 | 1.081640 | 2019000021-1 |
934433 | 2019000021 | 2019000009 | 2 | car | shop | home | 920 | 951 | 9 | 9 | 1.186110 | 2019000021-2 |
934435 | 2019000022 | 2019000009 | 1 | car | home | education | 496 | 508 | 9 | 9 | 1.116068 | 2019000022-2 |
934436 | 2019000022 | 2019000009 | 2 | car | education | home | 941 | 953 | 9 | 9 | 1.143158 | 2019000022-3 |
934437 | 2019000022 | 2019000009 | 2 | car | education | home | 931 | 943 | 9 | 9 | 1.193024 | 2019000022-4 |
934438 | 2019000024 | 2019000011 | 4 | car | other | other | 745 | 759 | 9 | 9 | 0.777401 | 2019000024-3 |
934439 | 2019000024 | 2019000011 | 1 | car | home | shop | 545 | 550 | 9 | 9 | 0.954613 | 2019000024-4 |
934572 | 2019000030 | 2019000014 | 1 | walk | home | work | 495 | 510 | 9 | 9 | 1.352645 | 2019000030-1 |
InĀ [25]:
Copied!
columns = {
"SurveyYear": "year",
"IndividualID": "iid",
"HouseholdID": "hid",
"Age_B01ID": "age",
"Sex_B01ID": "gender",
"EdAttn1_B01ID": "education",
"DrivLic_B02ID": "license",
"CarAccess_B01ID": "car_access",
"EcoStat_B02ID": "work_status",
"EthGroupTS_B02ID": "ethnicity",
}
attributes = pd.read_csv(
attributes_csv, sep="\t", usecols=columns.keys()
).rename(columns=columns)
attributes = attributes[attributes.year.isin(years)]
attributes = attributes[attributes.iid.isin(travel_diaries.iid)]
# expand attributes to days and add pid
pid_to_iid = travel_diaries.set_index("pid")["iid"].to_dict()
expanded_attributes = []
for k, v in pid_to_iid.items():
expanded_attributes.append(attributes[attributes.iid == v].assign(pid=k))
expanded_attributes = pd.concat(expanded_attributes)
assert set(expanded_attributes.pid) == set(travel_diaries.pid)
# fix special values to zero (DEAD, NULL, NA, etc)
for c in [
"age",
"gender",
"education",
"license",
"car_access",
"work_status",
"ethnicity",
]:
expanded_attributes.loc[expanded_attributes[c] < 0, c] = 0
expanded_attributes.loc[expanded_attributes[c].isnull(), c] = 0
expanded_attributes.head()
columns = {
"SurveyYear": "year",
"IndividualID": "iid",
"HouseholdID": "hid",
"Age_B01ID": "age",
"Sex_B01ID": "gender",
"EdAttn1_B01ID": "education",
"DrivLic_B02ID": "license",
"CarAccess_B01ID": "car_access",
"EcoStat_B02ID": "work_status",
"EthGroupTS_B02ID": "ethnicity",
}
attributes = pd.read_csv(
attributes_csv, sep="\t", usecols=columns.keys()
).rename(columns=columns)
attributes = attributes[attributes.year.isin(years)]
attributes = attributes[attributes.iid.isin(travel_diaries.iid)]
# expand attributes to days and add pid
pid_to_iid = travel_diaries.set_index("pid")["iid"].to_dict()
expanded_attributes = []
for k, v in pid_to_iid.items():
expanded_attributes.append(attributes[attributes.iid == v].assign(pid=k))
expanded_attributes = pd.concat(expanded_attributes)
assert set(expanded_attributes.pid) == set(travel_diaries.pid)
# fix special values to zero (DEAD, NULL, NA, etc)
for c in [
"age",
"gender",
"education",
"license",
"car_access",
"work_status",
"ethnicity",
]:
expanded_attributes.loc[expanded_attributes[c] < 0, c] = 0
expanded_attributes.loc[expanded_attributes[c].isnull(), c] = 0
expanded_attributes.head()
Out[25]:
iid | hid | age | gender | ethnicity | education | license | car_access | work_status | year | pid | |
---|---|---|---|---|---|---|---|---|---|---|---|
324390 | 2019000134 | 2019000061 | 15 | 1 | 2 | 1 | 1 | 2 | 1 | 2019 | 2019000134-1 |
324391 | 2019000135 | 2019000061 | 13 | 2 | 2 | 1 | 1 | 2 | 2 | 2019 | 2019000135-1 |
324391 | 2019000135 | 2019000061 | 13 | 2 | 2 | 1 | 1 | 2 | 2 | 2019 | 2019000135-2 |
324392 | 2019000136 | 2019000061 | 5 | 2 | 2 | 0 | 0 | 4 | 0 | 2019 | 2019000136-1 |
324392 | 2019000136 | 2019000061 | 5 | 2 | 2 | 0 | 0 | 4 | 0 | 2019 | 2019000136-2 |
InĀ [26]:
Copied!
# additionally extract attributes from household table
# add them to individual table for simplicity
columns = {
"HouseholdID": "hid",
"Settlement2011EW_B04ID": "area",
"SurveyYear": "year",
"HHIncQISEngTS_B01ID": "income",
"HHoldNumPeople": "hh_size",
"HHoldStruct_B02ID": "hh_composition",
"HHoldNumChildren": "hh_children",
"NumCar": "hh_cars",
"NumBike": "hh_bikes",
"NumMCycle": "hh_motorcycles",
}
hhs = pd.read_csv(hhs_csv, sep="\t", usecols=columns.keys()).rename(
columns=columns
)
hhs = hhs[hhs.year.isin(years)]
# add hh attributes to individuals
for c in [
"area",
"income",
"hh_size",
"hh_composition",
"hh_children",
"hh_cars",
"hh_bikes",
"hh_motorcycles",
]:
mapper = hhs.set_index("hid")[c].to_dict()
expanded_attributes[c] = expanded_attributes.hid.map(mapper)
for c in [
"area",
"income",
"hh_size",
"hh_composition",
"hh_children",
"hh_cars",
"hh_bikes",
"hh_motorcycles",
]:
expanded_attributes[c] = (
pd.to_numeric(expanded_attributes[c], errors="coerce")
.fillna(0)
.astype(int)
)
expanded_attributes.loc[expanded_attributes[c] < 0, c] = 0
expanded_attributes.loc[expanded_attributes[c].isnull(), c] = 0
expanded_attributes.drop("hid", axis=1, inplace=True)
expanded_attributes.head()
# additionally extract attributes from household table
# add them to individual table for simplicity
columns = {
"HouseholdID": "hid",
"Settlement2011EW_B04ID": "area",
"SurveyYear": "year",
"HHIncQISEngTS_B01ID": "income",
"HHoldNumPeople": "hh_size",
"HHoldStruct_B02ID": "hh_composition",
"HHoldNumChildren": "hh_children",
"NumCar": "hh_cars",
"NumBike": "hh_bikes",
"NumMCycle": "hh_motorcycles",
}
hhs = pd.read_csv(hhs_csv, sep="\t", usecols=columns.keys()).rename(
columns=columns
)
hhs = hhs[hhs.year.isin(years)]
# add hh attributes to individuals
for c in [
"area",
"income",
"hh_size",
"hh_composition",
"hh_children",
"hh_cars",
"hh_bikes",
"hh_motorcycles",
]:
mapper = hhs.set_index("hid")[c].to_dict()
expanded_attributes[c] = expanded_attributes.hid.map(mapper)
for c in [
"area",
"income",
"hh_size",
"hh_composition",
"hh_children",
"hh_cars",
"hh_bikes",
"hh_motorcycles",
]:
expanded_attributes[c] = (
pd.to_numeric(expanded_attributes[c], errors="coerce")
.fillna(0)
.astype(int)
)
expanded_attributes.loc[expanded_attributes[c] < 0, c] = 0
expanded_attributes.loc[expanded_attributes[c].isnull(), c] = 0
expanded_attributes.drop("hid", axis=1, inplace=True)
expanded_attributes.head()
/tmp/ipykernel_18886/20560562.py:15: DtypeWarning: Columns (34,35) have mixed types. Specify dtype option on import or set low_memory=False. hhs = pd.read_csv(hhs_csv, sep="\t", usecols=columns.keys()).rename(
Out[26]:
iid | age | gender | ethnicity | education | license | car_access | work_status | year | pid | area | income | hh_size | hh_composition | hh_children | hh_cars | hh_bikes | hh_motorcycles | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
324390 | 2019000134 | 15 | 1 | 2 | 1 | 1 | 2 | 1 | 2019 | 2019000134-1 | 1 | 3 | 4 | 5 | 2 | 2 | 2 | 0 |
324391 | 2019000135 | 13 | 2 | 2 | 1 | 1 | 2 | 2 | 2019 | 2019000135-1 | 1 | 3 | 4 | 5 | 2 | 2 | 2 | 0 |
324391 | 2019000135 | 13 | 2 | 2 | 1 | 1 | 2 | 2 | 2019 | 2019000135-2 | 1 | 3 | 4 | 5 | 2 | 2 | 2 | 0 |
324392 | 2019000136 | 5 | 2 | 2 | 0 | 0 | 4 | 0 | 2019 | 2019000136-1 | 1 | 3 | 4 | 5 | 2 | 2 | 2 | 0 |
324392 | 2019000136 | 5 | 2 | 2 | 0 | 0 | 4 | 0 | 2019 | 2019000136-2 | 1 | 3 | 4 | 5 | 2 | 2 | 2 | 0 |
InĀ [27]:
Copied!
age_mapping = {
1: 0,
2: 1,
3: 3,
4: 5,
5: 11,
6: 16,
7: 17,
8: 18,
9: 19,
10: 20,
11: 21,
12: 26,
13: 30,
14: 40,
15: 50,
16: 60,
17: 65,
18: 70,
19: 75,
20: 80,
21: 85,
}
age_group_mapping = {
1: "<5",
2: "<5",
3: "<5",
4: "5-11",
5: "11-16",
6: "16-20",
7: "16-20",
8: "16-20",
9: "16-20",
10: "20-30",
11: "20-30",
12: "20-30",
13: "30-40",
14: "40-50",
15: "50-70",
16: "50-70",
17: "50-70",
18: "70+",
19: "70+",
20: "70+",
21: "70+",
}
gender_mapping = {0: "unknown", 1: "M", 2: "F"}
education_mapping = {0: "unknown", 1: "Y", 2: "N"}
license_mapping = {0: "unknown", 1: "yes", 2: "yes", 3: "no"}
car_access_mapping = {
0: "unknown",
1: "yes",
2: "yes",
3: "yes",
4: "yes",
5: "no",
6: "no",
}
work_status_mapping = {
0: "unemployed",
1: "employed",
2: "employed",
3: "unemployed",
4: "unemployed",
5: "student",
6: "unemployed",
}
area_mapping = {
0: "unknown",
1: "suburban",
2: "urban",
3: "rural",
4: "rural",
5: "scotland",
}
ethnicity_mapping = {0: "unknown", 1: "white", 2: "non-white"}
hh_composition_mapping = {
0: "unknown",
1: "1adult",
2: "2adults",
3: "3+adults",
4: "single_parent",
5: "2adult_1+child",
6: "3+adult_1+child",
}
mappings = {
"age": age_mapping,
"gender": gender_mapping,
"education": education_mapping,
"license": license_mapping,
"car_access": car_access_mapping,
"work_status": work_status_mapping,
"area": area_mapping,
"ethnicity": ethnicity_mapping,
"hh_composition": hh_composition_mapping,
}
expanded_attributes["age_group"] = expanded_attributes["age"].map(
age_group_mapping
)
for c, mapping in mappings.items():
if c in expanded_attributes.columns:
expanded_attributes[c] = expanded_attributes[c].map(mapping)
age_mapping = {
1: 0,
2: 1,
3: 3,
4: 5,
5: 11,
6: 16,
7: 17,
8: 18,
9: 19,
10: 20,
11: 21,
12: 26,
13: 30,
14: 40,
15: 50,
16: 60,
17: 65,
18: 70,
19: 75,
20: 80,
21: 85,
}
age_group_mapping = {
1: "<5",
2: "<5",
3: "<5",
4: "5-11",
5: "11-16",
6: "16-20",
7: "16-20",
8: "16-20",
9: "16-20",
10: "20-30",
11: "20-30",
12: "20-30",
13: "30-40",
14: "40-50",
15: "50-70",
16: "50-70",
17: "50-70",
18: "70+",
19: "70+",
20: "70+",
21: "70+",
}
gender_mapping = {0: "unknown", 1: "M", 2: "F"}
education_mapping = {0: "unknown", 1: "Y", 2: "N"}
license_mapping = {0: "unknown", 1: "yes", 2: "yes", 3: "no"}
car_access_mapping = {
0: "unknown",
1: "yes",
2: "yes",
3: "yes",
4: "yes",
5: "no",
6: "no",
}
work_status_mapping = {
0: "unemployed",
1: "employed",
2: "employed",
3: "unemployed",
4: "unemployed",
5: "student",
6: "unemployed",
}
area_mapping = {
0: "unknown",
1: "suburban",
2: "urban",
3: "rural",
4: "rural",
5: "scotland",
}
ethnicity_mapping = {0: "unknown", 1: "white", 2: "non-white"}
hh_composition_mapping = {
0: "unknown",
1: "1adult",
2: "2adults",
3: "3+adults",
4: "single_parent",
5: "2adult_1+child",
6: "3+adult_1+child",
}
mappings = {
"age": age_mapping,
"gender": gender_mapping,
"education": education_mapping,
"license": license_mapping,
"car_access": car_access_mapping,
"work_status": work_status_mapping,
"area": area_mapping,
"ethnicity": ethnicity_mapping,
"hh_composition": hh_composition_mapping,
}
expanded_attributes["age_group"] = expanded_attributes["age"].map(
age_group_mapping
)
for c, mapping in mappings.items():
if c in expanded_attributes.columns:
expanded_attributes[c] = expanded_attributes[c].map(mapping)
InĀ [28]:
Copied!
def filter_home_based(population: Population):
new = Population()
for _, _, person in population.people():
if person.plan.first == "home" and person.plan.last == "home":
new.add(person)
return new
def squash(before: list, following: list, act="home") -> list:
if not following:
return before
a = before[-1]
b = following[1]
if a.act == act and b.act == act:
a.end_time = b.end_time
following = following[2:]
return squash(before, following, act)
else:
before = before + following[:2]
following = following[2:]
return squash(before, following, act)
def squash_population(population: Population, act="home"):
new = Population()
for _, _, person in population.people():
person.plan.day = squash(
[person.plan.day[0]], person.plan.day[1:], act=act
)
new.add(person)
return new
def filter_home_based(population: Population):
new = Population()
for _, _, person in population.people():
if person.plan.first == "home" and person.plan.last == "home":
new.add(person)
return new
def squash(before: list, following: list, act="home") -> list:
if not following:
return before
a = before[-1]
b = following[1]
if a.act == act and b.act == act:
a.end_time = b.end_time
following = following[2:]
return squash(before, following, act)
else:
before = before + following[:2]
following = following[2:]
return squash(before, following, act)
def squash_population(population: Population, act="home"):
new = Population()
for _, _, person in population.people():
person.plan.day = squash(
[person.plan.day[0]], person.plan.day[1:], act=act
)
new.add(person)
return new
InĀ [29]:
Copied!
pam_population = read.load_travel_diary(
trips=travel_diaries,
persons_attributes=expanded_attributes,
trip_freq_as_person_freq=True,
)
print("Raw size: ", pam_population.stats)
pam_population.fix_plans()
print("PAM fix: ", pam_population.stats)
pam_population = filter_home_based(pam_population)
print("home based size: ", pam_population.stats)
pam_population = squash_population(pam_population, "home")
print("Squash home size: ", pam_population.stats)
pam_population = squash_population(pam_population, "work")
print("squash work size: ", pam_population.stats)
pam_population = squash_population(pam_population, "education")
print("squash edu size: ", pam_population.stats)
pam_population.fix_plans()
print("PAM 2nd fix: ", pam_population.stats)
pam_population.random_person().plot()
pam_population = read.load_travel_diary(
trips=travel_diaries,
persons_attributes=expanded_attributes,
trip_freq_as_person_freq=True,
)
print("Raw size: ", pam_population.stats)
pam_population.fix_plans()
print("PAM fix: ", pam_population.stats)
pam_population = filter_home_based(pam_population)
print("home based size: ", pam_population.stats)
pam_population = squash_population(pam_population, "home")
print("Squash home size: ", pam_population.stats)
pam_population = squash_population(pam_population, "work")
print("squash work size: ", pam_population.stats)
pam_population = squash_population(pam_population, "education")
print("squash edu size: ", pam_population.stats)
pam_population.fix_plans()
print("PAM 2nd fix: ", pam_population.stats)
pam_population.random_person().plot()
Using from-to activity parser using 'oact' and 'dact' columns Adding pid->hh mapping to persons_attributes from trips. Unable to load household area ('hzone') - not found in trips_diary or unable to build from attributes. Pam will try to infer home location from activities, but this behaviour is not recommended. Using freq of 'None' for all trips. Person pid:2019000004-5 hid:2019000001 plan does not start with 'home' activity: other Person pid:2019000005-3 hid:2019000002 plan does not start with 'home' activity: work Person pid:2019000011-3 hid:2019000004 plan does not start with 'home' activity: visit Person pid:2019000011-7 hid:2019000004 plan does not start with 'home' activity: visit Person pid:2019000042-1 hid:2019000021 plan does not start with 'home' activity: work Person pid:2019000042-5 hid:2019000021 plan does not start with 'home' activity: work Person pid:2019000045-1 hid:2019000023 plan does not start with 'home' activity: shop Person pid:2019000056-6 hid:2019000028 plan does not start with 'home' activity: visit Person pid:2019000060-1 hid:2019000029 plan does not start with 'home' activity: shop Person pid:2019000062-2 hid:2019000030 plan does not start with 'home' activity: work Person pid:2019000062-4 hid:2019000030 plan does not start with 'home' activity: work Person pid:2019000062-7 hid:2019000030 plan does not start with 'home' activity: work Person pid:2019000068-7 hid:2019000032 plan does not start with 'home' activity: visit Person pid:2019000079-1 hid:2019000038 plan does not start with 'home' activity: work Person pid:2019000079-2 hid:2019000038 plan does not start with 'home' activity: work Person pid:2019000079-4 hid:2019000038 plan does not start with 'home' activity: work Person pid:2019000079-6 hid:2019000038 plan does not start with 'home' activity: work Person pid:2019000079-7 hid:2019000038 plan does not start with 'home' activity: work Person pid:2019000084-7 hid:2019000041 plan does not start with 'home' activity: work Person pid:2019000099-1 hid:2019000047 plan does not start with 'home' activity: education Person pid:2019000100-6 hid:2019000047 plan does not start with 'home' activity: education Person pid:2019000106-1 hid:2019000049 plan does not start with 'home' activity: medical Person pid:2019000116-2 hid:2019000052 plan does not start with 'home' activity: other Person pid:2019000115-1 hid:2019000052 plan does not start with 'home' activity: work Person pid:2019000115-2 hid:2019000052 plan does not start with 'home' activity: work Person pid:2019000115-3 hid:2019000052 plan does not start with 'home' activity: work Person pid:2019000115-4 hid:2019000052 plan does not start with 'home' activity: work Person pid:2019000118-3 hid:2019000053 plan does not start with 'home' activity: work Person pid:2019000118-6 hid:2019000053 plan does not start with 'home' activity: work Person pid:2019000121-5 hid:2019000054 plan does not start with 'home' activity: visit Person pid:2019000122-1 hid:2019000055 plan does not start with 'home' activity: visit Person pid:2019000123-2 hid:2019000056 plan does not start with 'home' activity: other Person pid:2019000124-6 hid:2019000056 plan does not start with 'home' activity: medical Person pid:2019000134-1 hid:2019000061 plan does not start with 'home' activity: visit Person pid:2019000136-3 hid:2019000061 plan does not start with 'home' activity: visit Person pid:2019000137-2 hid:2019000061 plan does not start with 'home' activity: other Person pid:2019000135-5 hid:2019000061 plan does not start with 'home' activity: visit Person pid:2019000137-3 hid:2019000061 plan does not start with 'home' activity: visit Person pid:2019000136-4 hid:2019000061 plan does not start with 'home' activity: education Person pid:2019000136-5 hid:2019000061 plan does not start with 'home' activity: other Person pid:2019000146-3 hid:2019000067 plan does not start with 'home' activity: work Person pid:2019000146-4 hid:2019000067 plan does not start with 'home' activity: work Person pid:2019000146-6 hid:2019000067 plan does not start with 'home' activity: work Person pid:2019000159-4 hid:2019000072 plan does not start with 'home' activity: visit Person pid:2019000164-4 hid:2019000074 plan does not start with 'home' activity: work Person pid:2019000164-5 hid:2019000074 plan does not start with 'home' activity: work Person pid:2019000164-6 hid:2019000074 plan does not start with 'home' activity: work Person pid:2019000164-7 hid:2019000074 plan does not start with 'home' activity: work Person pid:2019000185-4 hid:2019000082 plan does not start with 'home' activity: work Person pid:2019000185-5 hid:2019000082 plan does not start with 'home' activity: visit Person pid:2019000191-3 hid:2019000084 plan does not start with 'home' activity: visit Person pid:2019000192-5 hid:2019000084 plan does not start with 'home' activity: visit Person pid:2019000189-6 hid:2019000084 plan does not start with 'home' activity: visit Person pid:2019000203-2 hid:2019000090 plan does not start with 'home' activity: work Person pid:2019000203-4 hid:2019000090 plan does not start with 'home' activity: work Person pid:2019000210-2 hid:2019000093 plan does not start with 'home' activity: education Person pid:2019000214-3 hid:2019000095 plan does not start with 'home' activity: visit Person pid:2019000215-3 hid:2019000095 plan does not start with 'home' activity: visit Person pid:2019000225-1 hid:2019000100 plan does not start with 'home' activity: work Person pid:2019000225-5 hid:2019000100 plan does not start with 'home' activity: work Person pid:2019000225-6 hid:2019000100 plan does not start with 'home' activity: work Person pid:2019000229-1 hid:2019000102 plan does not start with 'home' activity: work Person pid:2019000237-1 hid:2019000106 plan does not start with 'home' activity: visit Person pid:2019000242-3 hid:2019000110 plan does not start with 'home' activity: other Person pid:2019000245-3 hid:2019000111 plan does not start with 'home' activity: work Person pid:2019000246-2 hid:2019000112 plan does not start with 'home' activity: visit Person pid:2019000249-3 hid:2019000115 plan does not start with 'home' activity: work Person pid:2019000249-5 hid:2019000115 plan does not start with 'home' activity: visit Person pid:2019000249-6 hid:2019000115 plan does not start with 'home' activity: shop Person pid:2019000251-1 hid:2019000116 plan does not start with 'home' activity: visit Person pid:2019000250-7 hid:2019000116 plan does not start with 'home' activity: visit Person pid:2019000251-5 hid:2019000116 plan does not start with 'home' activity: visit Person pid:2019000257-1 hid:2019000119 plan does not start with 'home' activity: work Person pid:2019000259-2 hid:2019000120 plan does not start with 'home' activity: work Person pid:2019000281-1 hid:2019000129 plan does not start with 'home' activity: shop Person pid:2019000301-3 hid:2019000137 plan does not start with 'home' activity: visit Person pid:2019000301-7 hid:2019000137 plan does not start with 'home' activity: visit Person pid:2019000307-2 hid:2019000140 plan does not start with 'home' activity: visit Person pid:2019000309-5 hid:2019000141 plan does not start with 'home' activity: visit Person pid:2019000310-3 hid:2019000141 plan does not start with 'home' activity: visit Person pid:2019000313-1 hid:2019000142 plan does not start with 'home' activity: other Person pid:2019000320-1 hid:2019000146 plan does not start with 'home' activity: work Person pid:2019000321-3 hid:2019000147 plan does not start with 'home' activity: escort Person pid:2019000323-2 hid:2019000147 plan does not start with 'home' activity: other Person pid:2019000321-4 hid:2019000147 plan does not start with 'home' activity: other Person pid:2019000322-2 hid:2019000147 plan does not start with 'home' activity: other Person pid:2019000329-2 hid:2019000149 plan does not start with 'home' activity: visit Person pid:2019000329-5 hid:2019000149 plan does not start with 'home' activity: visit Person pid:2019000329-7 hid:2019000149 plan does not start with 'home' activity: visit Person pid:2019000328-4 hid:2019000149 plan does not start with 'home' activity: work Person pid:2019000328-5 hid:2019000149 plan does not start with 'home' activity: work Person pid:2019000328-6 hid:2019000149 plan does not start with 'home' activity: work Person pid:2019000331-2 hid:2019000151 plan does not start with 'home' activity: other Person pid:2019000359-6 hid:2019000166 plan does not start with 'home' activity: visit Person pid:2019000361-2 hid:2019000167 plan does not start with 'home' activity: visit Person pid:2019000360-6 hid:2019000167 plan does not start with 'home' activity: visit Person pid:2019000366-2 hid:2019000170 plan does not start with 'home' activity: escort Person pid:2019000366-4 hid:2019000170 plan does not start with 'home' activity: escort Person pid:2019000369-2 hid:2019000171 plan does not start with 'home' activity: work Person pid:2019000369-6 hid:2019000171 plan does not start with 'home' activity: work Person pid:2019000372-1 hid:2019000171 plan does not start with 'home' activity: visit Person pid:2019000372-3 hid:2019000171 plan does not start with 'home' activity: visit Person pid:2019000379-3 hid:2019000175 plan does not start with 'home' activity: work Person pid:2019000388-1 hid:2019000179 plan does not start with 'home' activity: work Person pid:2019000388-2 hid:2019000179 plan does not start with 'home' activity: work Person pid:2019000388-3 hid:2019000179 plan does not start with 'home' activity: work Person pid:2019000388-4 hid:2019000179 plan does not start with 'home' activity: work Person pid:2019000388-6 hid:2019000179 plan does not start with 'home' activity: work Person pid:2019000406-2 hid:2019000184 plan does not start with 'home' activity: visit Person pid:2019000407-7 hid:2019000185 plan does not start with 'home' activity: other Person pid:2019000412-2 hid:2019000188 plan does not start with 'home' activity: visit Person pid:2019000412-4 hid:2019000188 plan does not start with 'home' activity: visit Person pid:2019000414-1 hid:2019000188 plan does not start with 'home' activity: visit Person pid:2019000414-2 hid:2019000188 plan does not start with 'home' activity: visit Person pid:2019000415-2 hid:2019000188 plan does not start with 'home' activity: visit Person pid:2019000413-1 hid:2019000188 plan does not start with 'home' activity: visit Person pid:2019000413-2 hid:2019000188 plan does not start with 'home' activity: visit Person pid:2019000416-3 hid:2019000188 plan does not start with 'home' activity: visit Person pid:2019000416-4 hid:2019000188 plan does not start with 'home' activity: visit Person pid:2019000415-5 hid:2019000188 plan does not start with 'home' activity: visit Person pid:2019000426-1 hid:2019000193 plan does not start with 'home' activity: work Person pid:2019000426-2 hid:2019000193 plan does not start with 'home' activity: work Person pid:2019000426-4 hid:2019000193 plan does not start with 'home' activity: visit Person pid:2019000428-4 hid:2019000193 plan does not start with 'home' activity: visit Person pid:2019000427-5 hid:2019000193 plan does not start with 'home' activity: visit Person pid:2019000429-4 hid:2019000193 plan does not start with 'home' activity: visit Person pid:2019000437-1 hid:2019000195 plan does not start with 'home' activity: work Person pid:2019000437-2 hid:2019000195 plan does not start with 'home' activity: work Person pid:2019000437-3 hid:2019000195 plan does not start with 'home' activity: work Person pid:2019000437-7 hid:2019000195 plan does not start with 'home' activity: work Person pid:2019000458-1 hid:2019000204 plan does not start with 'home' activity: work Person pid:2019000458-2 hid:2019000204 plan does not start with 'home' activity: work Person pid:2019000458-3 hid:2019000204 plan does not start with 'home' activity: work Person pid:2019000458-4 hid:2019000204 plan does not start with 'home' activity: work Person pid:2019000458-5 hid:2019000204 plan does not start with 'home' activity: work Person pid:2019000463-1 hid:2019000205 plan does not start with 'home' activity: visit Person pid:2019000473-2 hid:2019000208 plan does not start with 'home' activity: visit Person pid:2019000473-5 hid:2019000208 plan does not start with 'home' activity: visit Person pid:2019000473-7 hid:2019000208 plan does not start with 'home' activity: visit Person pid:2019000494-3 hid:2019000216 plan does not start with 'home' activity: work Person pid:2019000494-4 hid:2019000216 plan does not start with 'home' activity: work Person pid:2019000511-5 hid:2019000222 plan does not start with 'home' activity: visit Person pid:2019000517-2 hid:2019000224 plan does not start with 'home' activity: other Person pid:2019000532-1 hid:2019000231 plan does not start with 'home' activity: visit Person pid:2019000535-7 hid:2019000232 plan does not start with 'home' activity: work Person pid:2019000564-1 hid:2019000242 plan does not start with 'home' activity: work Person pid:2019000564-4 hid:2019000242 plan does not start with 'home' activity: work Person pid:2019000564-7 hid:2019000242 plan does not start with 'home' activity: work Person pid:2019000572-7 hid:2019000246 plan does not start with 'home' activity: work Person pid:2019000574-3 hid:2019000246 plan does not start with 'home' activity: visit Person pid:2019000577-1 hid:2019000247 plan does not start with 'home' activity: visit Person pid:2019000577-5 hid:2019000247 plan does not start with 'home' activity: visit Person pid:2019000577-7 hid:2019000247 plan does not start with 'home' activity: visit Person pid:2019000581-5 hid:2019000249 plan does not start with 'home' activity: visit Person pid:2019000598-6 hid:2019000256 plan does not start with 'home' activity: visit Person pid:2019000599-6 hid:2019000256 plan does not start with 'home' activity: visit Person pid:2019000607-2 hid:2019000260 plan does not start with 'home' activity: visit Person pid:2019000607-3 hid:2019000260 plan does not start with 'home' activity: other Person pid:2019000607-4 hid:2019000260 plan does not start with 'home' activity: visit Person pid:2019000610-2 hid:2019000260 plan does not start with 'home' activity: visit Person pid:2019000609-3 hid:2019000260 plan does not start with 'home' activity: visit Person pid:2019000617-4 hid:2019000262 plan does not start with 'home' activity: shop Person pid:2019000617-5 hid:2019000262 plan does not start with 'home' activity: other Person pid:2019000617-6 hid:2019000262 plan does not start with 'home' activity: other Person pid:2019000645-1 hid:2019000272 plan does not start with 'home' activity: work Person pid:2019000645-2 hid:2019000272 plan does not start with 'home' activity: work Person pid:2019000645-3 hid:2019000272 plan does not start with 'home' activity: work Person pid:2019000645-4 hid:2019000272 plan does not start with 'home' activity: work Person pid:2019000645-5 hid:2019000272 plan does not start with 'home' activity: work Person pid:2019000660-1 hid:2019000276 plan does not start with 'home' activity: escort Person pid:2019000660-2 hid:2019000276 plan does not start with 'home' activity: escort Person pid:2019000660-4 hid:2019000276 plan does not start with 'home' activity: escort Person pid:2019000660-7 hid:2019000276 plan does not start with 'home' activity: escort Person pid:2019000674-2 hid:2019000282 plan does not start with 'home' activity: visit Person pid:2019000674-3 hid:2019000282 plan does not start with 'home' activity: visit Person pid:2019000674-6 hid:2019000282 plan does not start with 'home' activity: visit Person pid:2019000673-3 hid:2019000282 plan does not start with 'home' activity: visit Person pid:2019000673-5 hid:2019000282 plan does not start with 'home' activity: visit Person pid:2019000673-6 hid:2019000282 plan does not start with 'home' activity: visit Person pid:2019000674-7 hid:2019000282 plan does not start with 'home' activity: visit Person pid:2019000673-7 hid:2019000282 plan does not start with 'home' activity: visit Person pid:2019000679-1 hid:2019000284 plan does not start with 'home' activity: work Person pid:2019000709-4 hid:2019000293 plan does not start with 'home' activity: visit Person pid:2019000710-2 hid:2019000293 plan does not start with 'home' activity: visit Person pid:2019000732-3 hid:2019000301 plan does not start with 'home' activity: work Person pid:2019000731-1 hid:2019000301 plan does not start with 'home' activity: work Person pid:2019000731-2 hid:2019000301 plan does not start with 'home' activity: work Person pid:2019000731-3 hid:2019000301 plan does not start with 'home' activity: work Person pid:2019000731-4 hid:2019000301 plan does not start with 'home' activity: work Person pid:2019000734-4 hid:2019000301 plan does not start with 'home' activity: education Person pid:2019000731-5 hid:2019000301 plan does not start with 'home' activity: other Person pid:2019000731-6 hid:2019000301 plan does not start with 'home' activity: work Person pid:2019000739-2 hid:2019000303 plan does not start with 'home' activity: visit Person pid:2019000738-7 hid:2019000303 plan does not start with 'home' activity: visit Person pid:2019000742-1 hid:2019000305 plan does not start with 'home' activity: work Person pid:2019000742-4 hid:2019000305 plan does not start with 'home' activity: work Person pid:2019000742-5 hid:2019000305 plan does not start with 'home' activity: work Person pid:2019000742-6 hid:2019000305 plan does not start with 'home' activity: work Person pid:2019000751-3 hid:2019000310 plan does not start with 'home' activity: visit Person pid:2019000760-5 hid:2019000315 plan does not start with 'home' activity: other Person pid:2019000773-4 hid:2019000319 plan does not start with 'home' activity: visit Person pid:2019000773-5 hid:2019000319 plan does not start with 'home' activity: visit Person pid:2019000774-5 hid:2019000319 plan does not start with 'home' activity: visit Person pid:2019000780-7 hid:2019000322 plan does not start with 'home' activity: shop Person pid:2019000791-2 hid:2019000327 plan does not start with 'home' activity: visit Person pid:2019000794-7 hid:2019000328 plan does not start with 'home' activity: other Person pid:2019000793-7 hid:2019000328 plan does not start with 'home' activity: visit Person pid:2019000829-4 hid:2019000340 plan does not start with 'home' activity: visit Person pid:2019000835-2 hid:2019000342 plan does not start with 'home' activity: visit Person pid:2019000837-2 hid:2019000342 plan does not start with 'home' activity: visit Person pid:2019000836-3 hid:2019000342 plan does not start with 'home' activity: visit Person pid:2019000838-3 hid:2019000343 plan does not start with 'home' activity: shop Person pid:2019000844-6 hid:2019000345 plan does not start with 'home' activity: other Person pid:2019000852-5 hid:2019000349 plan does not start with 'home' activity: visit Person pid:2019000853-2 hid:2019000349 plan does not start with 'home' activity: visit Person pid:2019000854-5 hid:2019000350 plan does not start with 'home' activity: other Person pid:2019000857-4 hid:2019000351 plan does not start with 'home' activity: work Person pid:2019000888-4 hid:2019000364 plan does not start with 'home' activity: work Person pid:2019000889-2 hid:2019000365 plan does not start with 'home' activity: work Person pid:2019000891-5 hid:2019000366 plan does not start with 'home' activity: work Person pid:2019000891-6 hid:2019000366 plan does not start with 'home' activity: work Person pid:2019000895-1 hid:2019000368 plan does not start with 'home' activity: work Person pid:2019000895-2 hid:2019000368 plan does not start with 'home' activity: work Person pid:2019000895-4 hid:2019000368 plan does not start with 'home' activity: work Person pid:2019000895-5 hid:2019000368 plan does not start with 'home' activity: work Person pid:2019000895-6 hid:2019000368 plan does not start with 'home' activity: work Person pid:2019000895-7 hid:2019000368 plan does not start with 'home' activity: work Person pid:2019000919-4 hid:2019000377 plan does not start with 'home' activity: work Person pid:2019000925-3 hid:2019000379 plan does not start with 'home' activity: visit Person pid:2019000932-7 hid:2019000383 plan does not start with 'home' activity: visit Person pid:2019000934-1 hid:2019000384 plan does not start with 'home' activity: visit Person pid:2019000933-7 hid:2019000384 plan does not start with 'home' activity: visit Person pid:2019000943-3 hid:2019000388 plan does not start with 'home' activity: work Person pid:2019000943-7 hid:2019000388 plan does not start with 'home' activity: work Person pid:2019000959-2 hid:2019000394 plan does not start with 'home' activity: visit Person pid:2019000960-2 hid:2019000394 plan does not start with 'home' activity: visit Person pid:2019000963-2 hid:2019000396 plan does not start with 'home' activity: visit Person pid:2019000964-1 hid:2019000396 plan does not start with 'home' activity: visit Person pid:2019000964-2 hid:2019000396 plan does not start with 'home' activity: visit Person pid:2019000964-4 hid:2019000396 plan does not start with 'home' activity: education Person pid:2019000964-6 hid:2019000396 plan does not start with 'home' activity: visit Person pid:2019000964-7 hid:2019000396 plan does not start with 'home' activity: education Person pid:2019000993-1 hid:2019000409 plan does not start with 'home' activity: work Person pid:2019000993-2 hid:2019000409 plan does not start with 'home' activity: work Person pid:2019000993-3 hid:2019000409 plan does not start with 'home' activity: work Person pid:2019000993-7 hid:2019000409 plan does not start with 'home' activity: work Person pid:2019000996-5 hid:2019000410 plan does not start with 'home' activity: work Person pid:2019001003-1 hid:2019000414 plan does not start with 'home' activity: escort Person pid:2019001003-2 hid:2019000414 plan does not start with 'home' activity: escort Person pid:2019001003-3 hid:2019000414 plan does not start with 'home' activity: escort Person pid:2019001004-3 hid:2019000414 plan does not start with 'home' activity: work Person pid:2019001015-6 hid:2019000417 plan does not start with 'home' activity: other Person pid:2019001030-6 hid:2019000427 plan does not start with 'home' activity: other Person pid:2019001034-7 hid:2019000428 plan does not start with 'home' activity: visit Person pid:2019001044-2 hid:2019000431 plan does not start with 'home' activity: visit Person pid:2019001045-2 hid:2019000431 plan does not start with 'home' activity: escort Person pid:2019001044-6 hid:2019000431 plan does not start with 'home' activity: visit Person pid:2019001067-2 hid:2019000438 plan does not start with 'home' activity: education Person pid:2019001074-1 hid:2019000442 plan does not start with 'home' activity: work Person pid:2019001075-4 hid:2019000442 plan does not start with 'home' activity: visit Person pid:2019001075-5 hid:2019000442 plan does not start with 'home' activity: visit Person pid:2019001078-4 hid:2019000445 plan does not start with 'home' activity: work Person pid:2019001078-5 hid:2019000445 plan does not start with 'home' activity: work Person pid:2019001082-2 hid:2019000446 plan does not start with 'home' activity: shop Person pid:2019001081-5 hid:2019000446 plan does not start with 'home' activity: work Person pid:2019001088-1 hid:2019000450 plan does not start with 'home' activity: visit Person pid:2019001093-1 hid:2019000452 plan does not start with 'home' activity: visit Person pid:2019001092-4 hid:2019000452 plan does not start with 'home' activity: visit Person pid:2019001110-3 hid:2019000463 plan does not start with 'home' activity: visit Person pid:2019001112-4 hid:2019000463 plan does not start with 'home' activity: visit Person pid:2019001111-4 hid:2019000463 plan does not start with 'home' activity: visit Person pid:2019001130-4 hid:2019000471 plan does not start with 'home' activity: visit Person pid:2019001131-1 hid:2019000472 plan does not start with 'home' activity: visit Person pid:2019001131-3 hid:2019000472 plan does not start with 'home' activity: visit Person pid:2019001132-3 hid:2019000472 plan does not start with 'home' activity: visit Person pid:2019001131-4 hid:2019000472 plan does not start with 'home' activity: work Person pid:2019001132-5 hid:2019000472 plan does not start with 'home' activity: visit Person pid:2019001136-1 hid:2019000473 plan does not start with 'home' activity: visit Person pid:2019001136-3 hid:2019000473 plan does not start with 'home' activity: visit Person pid:2019001138-1 hid:2019000475 plan does not start with 'home' activity: visit Person pid:2019001138-3 hid:2019000475 plan does not start with 'home' activity: visit Person pid:2019001138-6 hid:2019000475 plan does not start with 'home' activity: visit Person pid:2019001144-2 hid:2019000477 plan does not start with 'home' activity: visit Person pid:2019001143-6 hid:2019000477 plan does not start with 'home' activity: visit Person pid:2019001149-1 hid:2019000480 plan does not start with 'home' activity: visit Person pid:2019001149-2 hid:2019000480 plan does not start with 'home' activity: visit Person pid:2019001161-7 hid:2019000486 plan does not start with 'home' activity: visit Person pid:2019001162-7 hid:2019000486 plan does not start with 'home' activity: visit Person pid:2019001172-3 hid:2019000492 plan does not start with 'home' activity: visit Person pid:2019001173-6 hid:2019000492 plan does not start with 'home' activity: visit Person pid:2019001181-7 hid:2019000496 plan does not start with 'home' activity: visit Person pid:2019001183-2 hid:2019000497 plan does not start with 'home' activity: visit Person pid:2019001183-3 hid:2019000497 plan does not start with 'home' activity: visit Person pid:2019001183-5 hid:2019000497 plan does not start with 'home' activity: visit Person pid:2019001183-7 hid:2019000497 plan does not start with 'home' activity: visit Person pid:2019001191-4 hid:2019000500 plan does not start with 'home' activity: visit Person pid:2019001193-4 hid:2019000502 plan does not start with 'home' activity: visit Person pid:2019001197-1 hid:2019000502 plan does not start with 'home' activity: visit Person pid:2019001200-7 hid:2019000503 plan does not start with 'home' activity: visit Person pid:2019001208-5 hid:2019000505 plan does not start with 'home' activity: escort Person pid:2019001239-1 hid:2019000512 plan does not start with 'home' activity: work Person pid:2019001239-2 hid:2019000512 plan does not start with 'home' activity: work Person pid:2019001235-4 hid:2019000512 plan does not start with 'home' activity: work Person pid:2019001239-5 hid:2019000512 plan does not start with 'home' activity: work Person pid:2019001239-6 hid:2019000512 plan does not start with 'home' activity: work Person pid:2019001240-3 hid:2019000512 plan does not start with 'home' activity: work Person pid:2019001240-4 hid:2019000512 plan does not start with 'home' activity: work Person pid:2019001240-5 hid:2019000512 plan does not start with 'home' activity: work Person pid:2019001240-6 hid:2019000512 plan does not start with 'home' activity: work Person pid:2019001241-5 hid:2019000512 plan does not start with 'home' activity: work Person pid:2019001267-6 hid:2019000519 plan does not start with 'home' activity: work Person pid:2019001286-3 hid:2019000522 plan does not start with 'home' activity: visit Person pid:2019001287-6 hid:2019000522 plan does not start with 'home' activity: visit Person pid:2019001293-7 hid:2019000525 plan does not start with 'home' activity: visit Person pid:2019001292-4 hid:2019000525 plan does not start with 'home' activity: visit Person pid:2019001298-2 hid:2019000527 plan does not start with 'home' activity: visit Person pid:2019001298-3 hid:2019000527 plan does not start with 'home' activity: visit Person pid:2019001306-2 hid:2019000533 plan does not start with 'home' activity: work Person pid:2019001306-3 hid:2019000533 plan does not start with 'home' activity: work Person pid:2019001306-7 hid:2019000533 plan does not start with 'home' activity: work Person pid:2019001315-2 hid:2019000537 plan does not start with 'home' activity: other Person pid:2019001343-1 hid:2019000548 plan does not start with 'home' activity: work Person pid:2019001343-2 hid:2019000548 plan does not start with 'home' activity: work Person pid:2019001343-3 hid:2019000548 plan does not start with 'home' activity: work Person pid:2019001343-4 hid:2019000548 plan does not start with 'home' activity: work Person pid:2019001343-5 hid:2019000548 plan does not start with 'home' activity: work Person pid:2019001348-4 hid:2019000550 plan does not start with 'home' activity: work Person pid:2019001361-2 hid:2019000556 plan does not start with 'home' activity: work Person pid:2019001360-2 hid:2019000556 plan does not start with 'home' activity: other Person pid:2019001362-3 hid:2019000557 plan does not start with 'home' activity: visit Person pid:2019001363-6 hid:2019000557 plan does not start with 'home' activity: visit Person pid:2019001375-5 hid:2019000562 plan does not start with 'home' activity: visit Person pid:2019001376-6 hid:2019000562 plan does not start with 'home' activity: other Person pid:2019001384-4 hid:2019000565 plan does not start with 'home' activity: visit Person pid:2019001385-4 hid:2019000565 plan does not start with 'home' activity: visit Person pid:2019001396-1 hid:2019000569 plan does not start with 'home' activity: work Person pid:2019001396-5 hid:2019000569 plan does not start with 'home' activity: work Person pid:2019001396-6 hid:2019000569 plan does not start with 'home' activity: work Person pid:2019001398-1 hid:2019000570 plan does not start with 'home' activity: work Person pid:2019001398-2 hid:2019000570 plan does not start with 'home' activity: work Person pid:2019001398-4 hid:2019000570 plan does not start with 'home' activity: work Person pid:2019001398-5 hid:2019000570 plan does not start with 'home' activity: work Person pid:2019001398-6 hid:2019000570 plan does not start with 'home' activity: work Person pid:2019001404-3 hid:2019000572 plan does not start with 'home' activity: visit Person pid:2019001415-1 hid:2019000577 plan does not start with 'home' activity: shop Person pid:2019001422-1 hid:2019000581 plan does not start with 'home' activity: work Person pid:2019001422-7 hid:2019000581 plan does not start with 'home' activity: work Person pid:2019001447-1 hid:2019000590 plan does not start with 'home' activity: work Person pid:2019001449-1 hid:2019000591 plan does not start with 'home' activity: work Person pid:2019001449-2 hid:2019000591 plan does not start with 'home' activity: work Person pid:2019001449-3 hid:2019000591 plan does not start with 'home' activity: work Person pid:2019001449-4 hid:2019000591 plan does not start with 'home' activity: work Person pid:2019001449-5 hid:2019000591 plan does not start with 'home' activity: work Person pid:2019001449-6 hid:2019000591 plan does not start with 'home' activity: work Person pid:2019001455-1 hid:2019000594 plan does not start with 'home' activity: work Person pid:2019001455-2 hid:2019000594 plan does not start with 'home' activity: work Person pid:2019001455-3 hid:2019000594 plan does not start with 'home' activity: work Person pid:2019001456-1 hid:2019000594 plan does not start with 'home' activity: work Person pid:2019001456-2 hid:2019000594 plan does not start with 'home' activity: work Person pid:2019001457-1 hid:2019000594 plan does not start with 'home' activity: work Person pid:2019001457-2 hid:2019000594 plan does not start with 'home' activity: work Person pid:2019001455-4 hid:2019000594 plan does not start with 'home' activity: work Person pid:2019001455-5 hid:2019000594 plan does not start with 'home' activity: work Person pid:2019001456-3 hid:2019000594 plan does not start with 'home' activity: work Person pid:2019001456-4 hid:2019000594 plan does not start with 'home' activity: work Person pid:2019001457-3 hid:2019000594 plan does not start with 'home' activity: work Person pid:2019001456-5 hid:2019000594 plan does not start with 'home' activity: work Person pid:2019001456-6 hid:2019000594 plan does not start with 'home' activity: work Person pid:2019001457-4 hid:2019000594 plan does not start with 'home' activity: work Person pid:2019001457-5 hid:2019000594 plan does not start with 'home' activity: work Person pid:2019001455-6 hid:2019000594 plan does not start with 'home' activity: work Person pid:2019001457-7 hid:2019000594 plan does not start with 'home' activity: work Person pid:2019001469-1 hid:2019000598 plan does not start with 'home' activity: work Person pid:2019001469-3 hid:2019000598 plan does not start with 'home' activity: work Person pid:2019001469-6 hid:2019000598 plan does not start with 'home' activity: work Person pid:2019001477-2 hid:2019000602 plan does not start with 'home' activity: work Person pid:2019001491-1 hid:2019000610 plan does not start with 'home' activity: work Person pid:2019001491-2 hid:2019000610 plan does not start with 'home' activity: work Person pid:2019001491-3 hid:2019000610 plan does not start with 'home' activity: work Person pid:2019001504-3 hid:2019000617 plan does not start with 'home' activity: work Person pid:2019001511-2 hid:2019000619 plan does not start with 'home' activity: visit Person pid:2019001509-4 hid:2019000619 plan does not start with 'home' activity: visit Person pid:2019001510-3 hid:2019000619 plan does not start with 'home' activity: visit Person pid:2019001510-4 hid:2019000619 plan does not start with 'home' activity: visit Person pid:2019001511-3 hid:2019000619 plan does not start with 'home' activity: visit Person pid:2019001509-6 hid:2019000619 plan does not start with 'home' activity: visit Person pid:2019001529-1 hid:2019000626 plan does not start with 'home' activity: work Person pid:2019001529-5 hid:2019000626 plan does not start with 'home' activity: work Person pid:2019001543-3 hid:2019000631 plan does not start with 'home' activity: work Person pid:2019001560-3 hid:2019000638 plan does not start with 'home' activity: work Person pid:2019001560-4 hid:2019000638 plan does not start with 'home' activity: work Person pid:2019001579-1 hid:2019000646 plan does not start with 'home' activity: education Person pid:2019001576-3 hid:2019000646 plan does not start with 'home' activity: escort Person pid:2019001578-5 hid:2019000646 plan does not start with 'home' activity: education Person pid:2019001597-3 hid:2019000655 plan does not start with 'home' activity: work Person pid:2019001596-2 hid:2019000655 plan does not start with 'home' activity: work Person pid:2019001596-7 hid:2019000655 plan does not start with 'home' activity: work Person pid:2019001597-7 hid:2019000655 plan does not start with 'home' activity: work Person pid:2019001604-3 hid:2019000659 plan does not start with 'home' activity: escort Person pid:2019001605-7 hid:2019000659 plan does not start with 'home' activity: escort Person pid:2019001609-2 hid:2019000661 plan does not start with 'home' activity: visit Person pid:2019001608-7 hid:2019000661 plan does not start with 'home' activity: visit Person pid:2019001609-6 hid:2019000661 plan does not start with 'home' activity: visit Person pid:2019001609-7 hid:2019000661 plan does not start with 'home' activity: visit Person pid:2019001612-1 hid:2019000663 plan does not start with 'home' activity: visit Person pid:2019001629-3 hid:2019000670 plan does not start with 'home' activity: visit Person pid:2019001630-3 hid:2019000671 plan does not start with 'home' activity: visit Person pid:2019001644-4 hid:2019000675 plan does not start with 'home' activity: work Person pid:2019001644-6 hid:2019000675 plan does not start with 'home' activity: work Person pid:2019001647-1 hid:2019000677 plan does not start with 'home' activity: work Person pid:2019001647-2 hid:2019000677 plan does not start with 'home' activity: work Person pid:2019001647-3 hid:2019000677 plan does not start with 'home' activity: work Person pid:2019001647-4 hid:2019000677 plan does not start with 'home' activity: work Person pid:2019001647-6 hid:2019000677 plan does not start with 'home' activity: work Person pid:2019001663-2 hid:2019000685 plan does not start with 'home' activity: medical Person pid:2019001666-4 hid:2019000687 plan does not start with 'home' activity: visit Person pid:2019001687-2 hid:2019000695 plan does not start with 'home' activity: work Person pid:2019001687-3 hid:2019000695 plan does not start with 'home' activity: work Person pid:2019001687-4 hid:2019000695 plan does not start with 'home' activity: work Person pid:2019001689-1 hid:2019000695 plan does not start with 'home' activity: visit Person pid:2019001701-2 hid:2019000700 plan does not start with 'home' activity: visit Person pid:2019001720-4 hid:2019000711 plan does not start with 'home' activity: visit Person pid:2019001733-1 hid:2019000717 plan does not start with 'home' activity: other Person pid:2019001733-4 hid:2019000717 plan does not start with 'home' activity: work Person pid:2019001733-7 hid:2019000717 plan does not start with 'home' activity: work Person pid:2019001757-4 hid:2019000730 plan does not start with 'home' activity: shop Person pid:2019001763-2 hid:2019000733 plan does not start with 'home' activity: work Person pid:2019001762-6 hid:2019000733 plan does not start with 'home' activity: other Person pid:2019001765-2 hid:2019000734 plan does not start with 'home' activity: escort Person pid:2019001765-4 hid:2019000734 plan does not start with 'home' activity: escort Person pid:2019001764-4 hid:2019000734 plan does not start with 'home' activity: escort Person pid:2019001764-5 hid:2019000734 plan does not start with 'home' activity: escort Person pid:2019001772-2 hid:2019000737 plan does not start with 'home' activity: work Person pid:2019001772-3 hid:2019000737 plan does not start with 'home' activity: work Person pid:2019001775-2 hid:2019000737 plan does not start with 'home' activity: visit Person pid:2019001775-3 hid:2019000737 plan does not start with 'home' activity: visit Person pid:2019001772-4 hid:2019000737 plan does not start with 'home' activity: work Person pid:2019001772-6 hid:2019000737 plan does not start with 'home' activity: work Person pid:2019001775-4 hid:2019000737 plan does not start with 'home' activity: visit Person pid:2019001772-7 hid:2019000737 plan does not start with 'home' activity: work Person pid:2019001775-5 hid:2019000737 plan does not start with 'home' activity: visit Person pid:2019001775-6 hid:2019000737 plan does not start with 'home' activity: visit Person pid:2019001780-2 hid:2019000741 plan does not start with 'home' activity: other Person pid:2019001803-1 hid:2019000752 plan does not start with 'home' activity: visit Person pid:2019001817-1 hid:2019000760 plan does not start with 'home' activity: visit Person pid:2019001817-3 hid:2019000760 plan does not start with 'home' activity: visit Person pid:2019001821-2 hid:2019000762 plan does not start with 'home' activity: work Person pid:2019001827-2 hid:2019000765 plan does not start with 'home' activity: visit Person pid:2019001829-3 hid:2019000765 plan does not start with 'home' activity: education Person pid:2019001828-1 hid:2019000765 plan does not start with 'home' activity: education Person pid:2019001840-1 hid:2019000769 plan does not start with 'home' activity: escort Person pid:2019001835-7 hid:2019000769 plan does not start with 'home' activity: escort Person pid:2019001841-7 hid:2019000769 plan does not start with 'home' activity: escort Person pid:2019001859-2 hid:2019000777 plan does not start with 'home' activity: visit Person pid:2019001859-4 hid:2019000777 plan does not start with 'home' activity: visit Person pid:2019001916-2 hid:2019000804 plan does not start with 'home' activity: visit Person pid:2019001919-3 hid:2019000805 plan does not start with 'home' activity: other Person pid:2019001919-4 hid:2019000805 plan does not start with 'home' activity: other Person pid:2019001918-4 hid:2019000805 plan does not start with 'home' activity: other Person pid:2019001918-5 hid:2019000805 plan does not start with 'home' activity: other Person pid:2019001919-5 hid:2019000805 plan does not start with 'home' activity: other Person pid:2019001918-6 hid:2019000805 plan does not start with 'home' activity: other Person pid:2019001942-1 hid:2019000816 plan does not start with 'home' activity: visit Person pid:2019001942-2 hid:2019000816 plan does not start with 'home' activity: other Person pid:2019001942-3 hid:2019000816 plan does not start with 'home' activity: visit Person pid:2019001942-5 hid:2019000816 plan does not start with 'home' activity: visit Person pid:2019001942-7 hid:2019000816 plan does not start with 'home' activity: visit Person pid:2019001947-3 hid:2019000819 plan does not start with 'home' activity: work Person pid:2019001953-1 hid:2019000821 plan does not start with 'home' activity: visit Person pid:2019001968-1 hid:2019000827 plan does not start with 'home' activity: work Person pid:2019001971-2 hid:2019000829 plan does not start with 'home' activity: visit Person pid:2019001971-6 hid:2019000829 plan does not start with 'home' activity: visit Person pid:2019001976-1 hid:2019000831 plan does not start with 'home' activity: education Person pid:2019001999-5 hid:2019000843 plan does not start with 'home' activity: visit Person pid:2019001999-6 hid:2019000843 plan does not start with 'home' activity: visit Person pid:2019002009-1 hid:2019000846 plan does not start with 'home' activity: work Person pid:2019002009-2 hid:2019000846 plan does not start with 'home' activity: work Person pid:2019002009-4 hid:2019000846 plan does not start with 'home' activity: work Person pid:2019002030-1 hid:2019000856 plan does not start with 'home' activity: visit Person pid:2019002031-3 hid:2019000856 plan does not start with 'home' activity: visit Person pid:2019002028-6 hid:2019000856 plan does not start with 'home' activity: work Person pid:2019002042-1 hid:2019000861 plan does not start with 'home' activity: work Person pid:2019002042-2 hid:2019000861 plan does not start with 'home' activity: work Person pid:2019002042-4 hid:2019000861 plan does not start with 'home' activity: work Person pid:2019002042-5 hid:2019000861 plan does not start with 'home' activity: work Person pid:2019002042-7 hid:2019000861 plan does not start with 'home' activity: work Person pid:2019002086-2 hid:2019000879 plan does not start with 'home' activity: other Person pid:2019002088-2 hid:2019000880 plan does not start with 'home' activity: visit Person pid:2019002097-6 hid:2019000883 plan does not start with 'home' activity: education Person pid:2019002103-3 hid:2019000886 plan does not start with 'home' activity: shop Person pid:2019002110-2 hid:2019000890 plan does not start with 'home' activity: work Person pid:2019002110-3 hid:2019000890 plan does not start with 'home' activity: work Person pid:2019002110-4 hid:2019000890 plan does not start with 'home' activity: work Person pid:2019002110-6 hid:2019000890 plan does not start with 'home' activity: work Person pid:2019002121-4 hid:2019000893 plan does not start with 'home' activity: escort Person pid:2019002122-3 hid:2019000894 plan does not start with 'home' activity: visit Person pid:2019002122-7 hid:2019000894 plan does not start with 'home' activity: visit Person pid:2019002132-5 hid:2019000896 plan does not start with 'home' activity: work Person pid:2019002154-1 hid:2019000907 plan does not start with 'home' activity: visit Person pid:2019002182-6 hid:2019000919 plan does not start with 'home' activity: visit Person pid:2019002186-3 hid:2019000920 plan does not start with 'home' activity: education Person pid:2019002200-4 hid:2019000927 plan does not start with 'home' activity: other Person pid:2019002206-1 hid:2019000931 plan does not start with 'home' activity: other Person pid:2019002207-7 hid:2019000931 plan does not start with 'home' activity: other Person pid:2019002209-4 hid:2019000933 plan does not start with 'home' activity: visit Person pid:2019002209-5 hid:2019000933 plan does not start with 'home' activity: visit Person pid:2019002222-6 hid:2019000939 plan does not start with 'home' activity: other Person pid:2019002223-1 hid:2019000940 plan does not start with 'home' activity: visit Person pid:2019002225-4 hid:2019000940 plan does not start with 'home' activity: education Person pid:2019002224-4 hid:2019000940 plan does not start with 'home' activity: education Person pid:2019002226-5 hid:2019000940 plan does not start with 'home' activity: education Person pid:2019002228-1 hid:2019000941 plan does not start with 'home' activity: visit Person pid:2019002227-3 hid:2019000941 plan does not start with 'home' activity: work Person pid:2019002229-3 hid:2019000941 plan does not start with 'home' activity: visit Person pid:2019002227-4 hid:2019000941 plan does not start with 'home' activity: work Person pid:2019002234-4 hid:2019000943 plan does not start with 'home' activity: other Person pid:2019002236-4 hid:2019000943 plan does not start with 'home' activity: other Person pid:2019002276-1 hid:2019000954 plan does not start with 'home' activity: visit Person pid:2019002275-2 hid:2019000954 plan does not start with 'home' activity: visit Person pid:2019002284-6 hid:2019000956 plan does not start with 'home' activity: visit Person pid:2019002284-7 hid:2019000956 plan does not start with 'home' activity: visit Person pid:2019002292-1 hid:2019000959 plan does not start with 'home' activity: visit Person pid:2019002305-1 hid:2019000965 plan does not start with 'home' activity: escort Person pid:2019002333-5 hid:2019000974 plan does not start with 'home' activity: visit Person pid:2019002339-2 hid:2019000977 plan does not start with 'home' activity: escort Person pid:2019002352-6 hid:2019000985 plan does not start with 'home' activity: work Person pid:2019002375-1 hid:2019000992 plan does not start with 'home' activity: visit Person pid:2019002376-1 hid:2019000992 plan does not start with 'home' activity: visit Person pid:2019002376-2 hid:2019000992 plan does not start with 'home' activity: visit Person pid:2019002375-2 hid:2019000992 plan does not start with 'home' activity: visit Person pid:2019002375-3 hid:2019000992 plan does not start with 'home' activity: visit Person pid:2019002375-4 hid:2019000992 plan does not start with 'home' activity: visit Person pid:2019002376-3 hid:2019000992 plan does not start with 'home' activity: visit Person pid:2019002375-5 hid:2019000992 plan does not start with 'home' activity: visit Person pid:2019002376-4 hid:2019000992 plan does not start with 'home' activity: visit Person pid:2019002375-6 hid:2019000992 plan does not start with 'home' activity: visit Person pid:2019002375-7 hid:2019000992 plan does not start with 'home' activity: visit Person pid:2019002376-5 hid:2019000992 plan does not start with 'home' activity: visit Person pid:2019002376-7 hid:2019000992 plan does not start with 'home' activity: visit Person pid:2019002392-4 hid:2019001000 plan does not start with 'home' activity: other Person pid:2019002400-4 hid:2019001002 plan does not start with 'home' activity: visit Person pid:2019002400-6 hid:2019001002 plan does not start with 'home' activity: visit Person pid:2019002413-3 hid:2019001007 plan does not start with 'home' activity: visit Person pid:2019002414-2 hid:2019001007 plan does not start with 'home' activity: visit Person pid:2019002420-1 hid:2019001010 plan does not start with 'home' activity: work Person pid:2019002420-2 hid:2019001010 plan does not start with 'home' activity: work Person pid:2019002420-5 hid:2019001010 plan does not start with 'home' activity: work Person pid:2019002420-6 hid:2019001010 plan does not start with 'home' activity: work Person pid:2019002419-3 hid:2019001010 plan does not start with 'home' activity: work Person pid:2019002421-5 hid:2019001011 plan does not start with 'home' activity: medical Person pid:2019002431-1 hid:2019001014 plan does not start with 'home' activity: work Person pid:2019002441-2 hid:2019001017 plan does not start with 'home' activity: visit Person pid:2019002441-3 hid:2019001017 plan does not start with 'home' activity: work Person pid:2019002455-2 hid:2019001020 plan does not start with 'home' activity: medical Person pid:2019002476-1 hid:2019001029 plan does not start with 'home' activity: work Person pid:2019002476-2 hid:2019001029 plan does not start with 'home' activity: work Person pid:2019002476-3 hid:2019001029 plan does not start with 'home' activity: work Person pid:2019002476-4 hid:2019001029 plan does not start with 'home' activity: work Person pid:2019002476-6 hid:2019001029 plan does not start with 'home' activity: work Person pid:2019002483-7 hid:2019001031 plan does not start with 'home' activity: visit Person pid:2019002492-3 hid:2019001037 plan does not start with 'home' activity: work Person pid:2019002495-5 hid:2019001038 plan does not start with 'home' activity: work Person pid:2019002498-3 hid:2019001040 plan does not start with 'home' activity: work Person pid:2019002510-1 hid:2019001045 plan does not start with 'home' activity: other Person pid:2019002518-1 hid:2019001048 plan does not start with 'home' activity: visit Person pid:2019002518-3 hid:2019001048 plan does not start with 'home' activity: visit Person pid:2019002519-2 hid:2019001048 plan does not start with 'home' activity: visit Person pid:2019002517-2 hid:2019001048 plan does not start with 'home' activity: work Person pid:2019002517-3 hid:2019001048 plan does not start with 'home' activity: work Person pid:2019002517-5 hid:2019001048 plan does not start with 'home' activity: work Person pid:2019002519-5 hid:2019001048 plan does not start with 'home' activity: visit Person pid:2019002557-3 hid:2019001061 plan does not start with 'home' activity: escort Person pid:2019002557-6 hid:2019001061 plan does not start with 'home' activity: visit Person pid:2019002559-6 hid:2019001062 plan does not start with 'home' activity: visit Person pid:2019002562-1 hid:2019001063 plan does not start with 'home' activity: education Person pid:2019002561-5 hid:2019001063 plan does not start with 'home' activity: visit Person pid:2019002563-2 hid:2019001063 plan does not start with 'home' activity: visit Person pid:2019002563-3 hid:2019001063 plan does not start with 'home' activity: education Person pid:2019002562-4 hid:2019001063 plan does not start with 'home' activity: visit Person pid:2019002564-5 hid:2019001064 plan does not start with 'home' activity: visit Person pid:2019002564-7 hid:2019001064 plan does not start with 'home' activity: visit Person pid:2019002566-1 hid:2019001066 plan does not start with 'home' activity: work Person pid:2019002566-3 hid:2019001066 plan does not start with 'home' activity: work Person pid:2019002566-4 hid:2019001066 plan does not start with 'home' activity: work Person pid:2019002577-4 hid:2019001070 plan does not start with 'home' activity: visit Person pid:2019002582-3 hid:2019001071 plan does not start with 'home' activity: education Person pid:2019002581-4 hid:2019001071 plan does not start with 'home' activity: education Person pid:2019002586-1 hid:2019001073 plan does not start with 'home' activity: visit Person pid:2019002586-5 hid:2019001073 plan does not start with 'home' activity: visit Person pid:2019002586-7 hid:2019001073 plan does not start with 'home' activity: visit Person pid:2019002587-3 hid:2019001074 plan does not start with 'home' activity: work Person pid:2019002595-1 hid:2019001077 plan does not start with 'home' activity: work Person pid:2019002598-1 hid:2019001079 plan does not start with 'home' activity: visit Person pid:2019002598-4 hid:2019001079 plan does not start with 'home' activity: visit Person pid:2019002600-4 hid:2019001081 plan does not start with 'home' activity: work Person pid:2019002600-5 hid:2019001081 plan does not start with 'home' activity: work Person pid:2019002600-6 hid:2019001081 plan does not start with 'home' activity: work Person pid:2019002600-7 hid:2019001081 plan does not start with 'home' activity: work Person pid:2019002601-3 hid:2019001081 plan does not start with 'home' activity: visit Person pid:2019002601-4 hid:2019001081 plan does not start with 'home' activity: visit Person pid:2019002601-5 hid:2019001081 plan does not start with 'home' activity: visit Person pid:2019002601-6 hid:2019001081 plan does not start with 'home' activity: visit Person pid:2019002625-1 hid:2019001094 plan does not start with 'home' activity: work Person pid:2019002628-3 hid:2019001094 plan does not start with 'home' activity: other Person pid:2019002651-3 hid:2019001105 plan does not start with 'home' activity: other Person pid:2019002651-4 hid:2019001105 plan does not start with 'home' activity: other Person pid:2019002651-5 hid:2019001105 plan does not start with 'home' activity: other Person pid:2019002651-6 hid:2019001105 plan does not start with 'home' activity: work Person pid:2019002651-7 hid:2019001105 plan does not start with 'home' activity: other Person pid:2019002656-2 hid:2019001107 plan does not start with 'home' activity: visit Person pid:2019002656-4 hid:2019001107 plan does not start with 'home' activity: visit Person pid:2019002656-6 hid:2019001107 plan does not start with 'home' activity: visit Person pid:2019002656-7 hid:2019001107 plan does not start with 'home' activity: visit Person pid:2019002657-2 hid:2019001108 plan does not start with 'home' activity: work Person pid:2019002661-1 hid:2019001110 plan does not start with 'home' activity: visit Person pid:2019002661-2 hid:2019001110 plan does not start with 'home' activity: visit Person pid:2019002660-3 hid:2019001110 plan does not start with 'home' activity: visit Person pid:2019002660-4 hid:2019001110 plan does not start with 'home' activity: visit Person pid:2019002660-7 hid:2019001110 plan does not start with 'home' activity: visit Person pid:2019002661-7 hid:2019001110 plan does not start with 'home' activity: visit Person pid:2019002667-4 hid:2019001114 plan does not start with 'home' activity: visit Person pid:2019002669-1 hid:2019001115 plan does not start with 'home' activity: escort Person pid:2019002673-4 hid:2019001115 plan does not start with 'home' activity: escort Person pid:2019002716-1 hid:2019001132 plan does not start with 'home' activity: visit Person pid:2019002714-1 hid:2019001132 plan does not start with 'home' activity: visit Person pid:2019002715-4 hid:2019001132 plan does not start with 'home' activity: visit Person pid:2019002716-6 hid:2019001132 plan does not start with 'home' activity: visit Person pid:2019002715-6 hid:2019001132 plan does not start with 'home' activity: visit Person pid:2019002718-3 hid:2019001133 plan does not start with 'home' activity: visit Person pid:2019002717-4 hid:2019001133 plan does not start with 'home' activity: visit Person pid:2019002722-5 hid:2019001134 plan does not start with 'home' activity: education Person pid:2019002725-1 hid:2019001136 plan does not start with 'home' activity: shop Person pid:2019002726-1 hid:2019001137 plan does not start with 'home' activity: visit Person pid:2019002726-5 hid:2019001137 plan does not start with 'home' activity: visit Person pid:2019002727-2 hid:2019001138 plan does not start with 'home' activity: visit Person pid:2019002729-5 hid:2019001138 plan does not start with 'home' activity: visit Person pid:2019002731-2 hid:2019001139 plan does not start with 'home' activity: work Person pid:2019002733-2 hid:2019001140 plan does not start with 'home' activity: other Person pid:2019002738-2 hid:2019001140 plan does not start with 'home' activity: work Person pid:2019002732-3 hid:2019001140 plan does not start with 'home' activity: other Person pid:2019002734-3 hid:2019001140 plan does not start with 'home' activity: visit Person pid:2019002736-6 hid:2019001140 plan does not start with 'home' activity: other Person pid:2019002743-1 hid:2019001141 plan does not start with 'home' activity: visit Person pid:2019002739-4 hid:2019001141 plan does not start with 'home' activity: other Person pid:2019002740-6 hid:2019001141 plan does not start with 'home' activity: visit Person pid:2019002744-4 hid:2019001142 plan does not start with 'home' activity: other Person pid:2019002789-6 hid:2019001165 plan does not start with 'home' activity: other Person pid:2019002790-5 hid:2019001165 plan does not start with 'home' activity: visit Person pid:2019002808-3 hid:2019001176 plan does not start with 'home' activity: work Person pid:2019002807-5 hid:2019001176 plan does not start with 'home' activity: visit Person pid:2019002829-3 hid:2019001182 plan does not start with 'home' activity: visit Person pid:2019002848-2 hid:2019001190 plan does not start with 'home' activity: visit Person pid:2019002847-4 hid:2019001190 plan does not start with 'home' activity: visit Person pid:2019002848-6 hid:2019001190 plan does not start with 'home' activity: visit Person pid:2019002847-6 hid:2019001190 plan does not start with 'home' activity: visit Person pid:2019002846-5 hid:2019001190 plan does not start with 'home' activity: visit Person pid:2019002856-7 hid:2019001194 plan does not start with 'home' activity: other Person pid:2019002867-1 hid:2019001200 plan does not start with 'home' activity: work Person pid:2019002867-2 hid:2019001200 plan does not start with 'home' activity: work Person pid:2019002867-4 hid:2019001200 plan does not start with 'home' activity: work Person pid:2019002867-6 hid:2019001200 plan does not start with 'home' activity: work Person pid:2019002885-1 hid:2019001205 plan does not start with 'home' activity: medical Person pid:2019002886-1 hid:2019001206 plan does not start with 'home' activity: work Person pid:2019002886-2 hid:2019001206 plan does not start with 'home' activity: work Person pid:2019002886-4 hid:2019001206 plan does not start with 'home' activity: work Person pid:2019002893-4 hid:2019001209 plan does not start with 'home' activity: visit Person pid:2019002898-1 hid:2019001211 plan does not start with 'home' activity: education Person pid:2019002899-2 hid:2019001211 plan does not start with 'home' activity: education Person pid:2019002908-1 hid:2019001214 plan does not start with 'home' activity: work Person pid:2019002923-5 hid:2019001219 plan does not start with 'home' activity: visit Person pid:2019002942-2 hid:2019001231 plan does not start with 'home' activity: visit Person pid:2019002942-3 hid:2019001231 plan does not start with 'home' activity: visit Person pid:2019002942-7 hid:2019001231 plan does not start with 'home' activity: visit Person pid:2019002953-5 hid:2019001236 plan does not start with 'home' activity: visit Person pid:2019002957-1 hid:2019001238 plan does not start with 'home' activity: education Person pid:2019002968-7 hid:2019001243 plan does not start with 'home' activity: escort Person pid:2019002970-7 hid:2019001243 plan does not start with 'home' activity: visit Person pid:2019002977-1 hid:2019001247 plan does not start with 'home' activity: visit Person pid:2019002980-1 hid:2019001249 plan does not start with 'home' activity: visit Person pid:2019002981-2 hid:2019001249 plan does not start with 'home' activity: visit Person pid:2019002998-1 hid:2019001257 plan does not start with 'home' activity: other Person pid:2019003000-7 hid:2019001257 plan does not start with 'home' activity: visit Person pid:2019003011-2 hid:2019001260 plan does not start with 'home' activity: education Person pid:2019003011-4 hid:2019001260 plan does not start with 'home' activity: other Person pid:2019003016-1 hid:2019001263 plan does not start with 'home' activity: visit Person pid:2019003017-4 hid:2019001263 plan does not start with 'home' activity: visit Person pid:2019003016-6 hid:2019001263 plan does not start with 'home' activity: visit Person pid:2019003017-6 hid:2019001263 plan does not start with 'home' activity: visit Person pid:2019003016-7 hid:2019001263 plan does not start with 'home' activity: visit Person pid:2019003017-7 hid:2019001263 plan does not start with 'home' activity: visit Person pid:2019003022-4 hid:2019001267 plan does not start with 'home' activity: escort Person pid:2019003022-6 hid:2019001267 plan does not start with 'home' activity: escort Person pid:2019003024-2 hid:2019001267 plan does not start with 'home' activity: visit Person pid:2019003028-4 hid:2019001269 plan does not start with 'home' activity: visit Person pid:2019003038-1 hid:2019001274 plan does not start with 'home' activity: other Person pid:2019003038-3 hid:2019001274 plan does not start with 'home' activity: other Person pid:2019003038-5 hid:2019001274 plan does not start with 'home' activity: shop Person pid:2019003037-7 hid:2019001274 plan does not start with 'home' activity: other Person pid:2019003061-1 hid:2019001283 plan does not start with 'home' activity: visit Person pid:2019003061-4 hid:2019001283 plan does not start with 'home' activity: visit Person pid:2019003061-5 hid:2019001283 plan does not start with 'home' activity: other Person pid:2019003066-6 hid:2019001286 plan does not start with 'home' activity: visit Person pid:2019003080-5 hid:2019001292 plan does not start with 'home' activity: visit Person pid:2019003103-2 hid:2019001306 plan does not start with 'home' activity: visit Person pid:2019003103-3 hid:2019001306 plan does not start with 'home' activity: visit Person pid:2019003104-3 hid:2019001306 plan does not start with 'home' activity: visit Person pid:2019003103-5 hid:2019001306 plan does not start with 'home' activity: visit Person pid:2019003104-5 hid:2019001306 plan does not start with 'home' activity: visit Person pid:2019003105-1 hid:2019001307 plan does not start with 'home' activity: work Person pid:2019003105-3 hid:2019001307 plan does not start with 'home' activity: work Person pid:2019003105-5 hid:2019001307 plan does not start with 'home' activity: work Person pid:2019003106-7 hid:2019001307 plan does not start with 'home' activity: work Person pid:2019003125-6 hid:2019001313 plan does not start with 'home' activity: visit Person pid:2019003159-7 hid:2019001330 plan does not start with 'home' activity: shop Person pid:2019003161-3 hid:2019001332 plan does not start with 'home' activity: other Person pid:2019003162-3 hid:2019001332 plan does not start with 'home' activity: other Person pid:2019003175-1 hid:2019001336 plan does not start with 'home' activity: work Person pid:2019003175-2 hid:2019001336 plan does not start with 'home' activity: work Person pid:2019003179-2 hid:2019001336 plan does not start with 'home' activity: escort Person pid:2019003175-3 hid:2019001336 plan does not start with 'home' activity: work Person pid:2019003175-4 hid:2019001336 plan does not start with 'home' activity: work Person pid:2019003175-5 hid:2019001336 plan does not start with 'home' activity: work Person pid:2019003182-1 hid:2019001337 plan does not start with 'home' activity: education Person pid:2019003195-1 hid:2019001344 plan does not start with 'home' activity: visit Person pid:2019003195-3 hid:2019001344 plan does not start with 'home' activity: visit Person pid:2019003195-5 hid:2019001344 plan does not start with 'home' activity: visit Person pid:2019003201-1 hid:2019001348 plan does not start with 'home' activity: work Person pid:2019003201-2 hid:2019001348 plan does not start with 'home' activity: work Person pid:2019003201-4 hid:2019001348 plan does not start with 'home' activity: work Person pid:2019003201-5 hid:2019001348 plan does not start with 'home' activity: work Person pid:2019003201-7 hid:2019001348 plan does not start with 'home' activity: work Person pid:2019003207-3 hid:2019001350 plan does not start with 'home' activity: work Person pid:2019003207-5 hid:2019001350 plan does not start with 'home' activity: work Person pid:2019003227-1 hid:2019001360 plan does not start with 'home' activity: visit Person pid:2019003227-3 hid:2019001360 plan does not start with 'home' activity: visit Person pid:2019003229-4 hid:2019001362 plan does not start with 'home' activity: shop Person pid:2019003233-6 hid:2019001363 plan does not start with 'home' activity: visit Person pid:2019003232-6 hid:2019001363 plan does not start with 'home' activity: other Person pid:2019003261-6 hid:2019001377 plan does not start with 'home' activity: escort Person pid:2019003292-1 hid:2019001390 plan does not start with 'home' activity: work Person pid:2019003294-5 hid:2019001391 plan does not start with 'home' activity: work Person pid:2019003297-1 hid:2019001393 plan does not start with 'home' activity: visit Person pid:2019003301-3 hid:2019001395 plan does not start with 'home' activity: visit Person pid:2019003325-3 hid:2019001403 plan does not start with 'home' activity: visit Person pid:2019003325-4 hid:2019001403 plan does not start with 'home' activity: visit Person pid:2019003340-1 hid:2019001407 plan does not start with 'home' activity: education Person pid:2019003410-5 hid:2019001435 plan does not start with 'home' activity: other Person pid:2019003423-1 hid:2019001443 plan does not start with 'home' activity: work Person pid:2019003424-2 hid:2019001443 plan does not start with 'home' activity: escort Person pid:2019003426-1 hid:2019001443 plan does not start with 'home' activity: education Person pid:2019003428-1 hid:2019001443 plan does not start with 'home' activity: medical Person pid:2019003426-3 hid:2019001443 plan does not start with 'home' activity: visit Person pid:2019003425-4 hid:2019001443 plan does not start with 'home' activity: other Person pid:2019003439-2 hid:2019001447 plan does not start with 'home' activity: visit Person pid:2019003438-2 hid:2019001447 plan does not start with 'home' activity: work Person pid:2019003439-7 hid:2019001447 plan does not start with 'home' activity: visit Person pid:2019003452-2 hid:2019001453 plan does not start with 'home' activity: visit Person pid:2019003452-4 hid:2019001453 plan does not start with 'home' activity: visit Person pid:2019003452-5 hid:2019001453 plan does not start with 'home' activity: visit Person pid:2019003453-4 hid:2019001453 plan does not start with 'home' activity: visit Person pid:2019003454-1 hid:2019001454 plan does not start with 'home' activity: shop Person pid:2019003457-1 hid:2019001455 plan does not start with 'home' activity: visit Person pid:2019003460-5 hid:2019001457 plan does not start with 'home' activity: visit Person pid:2019003461-4 hid:2019001457 plan does not start with 'home' activity: visit Person pid:2019003461-7 hid:2019001457 plan does not start with 'home' activity: visit Person pid:2019003502-2 hid:2019001476 plan does not start with 'home' activity: work Person pid:2019003522-6 hid:2019001486 plan does not start with 'home' activity: work Person pid:2019003525-4 hid:2019001486 plan does not start with 'home' activity: other Person pid:2019003526-2 hid:2019001487 plan does not start with 'home' activity: other Person pid:2019003528-2 hid:2019001488 plan does not start with 'home' activity: other Person pid:2019003528-3 hid:2019001488 plan does not start with 'home' activity: work Person pid:2019003528-4 hid:2019001488 plan does not start with 'home' activity: work Person pid:2019003546-1 hid:2019001496 plan does not start with 'home' activity: work Person pid:2019003546-5 hid:2019001496 plan does not start with 'home' activity: shop Person pid:2019003547-1 hid:2019001496 plan does not start with 'home' activity: work Person pid:2019003547-2 hid:2019001496 plan does not start with 'home' activity: shop Person pid:2019003548-5 hid:2019001496 plan does not start with 'home' activity: escort Person pid:2019003549-4 hid:2019001496 plan does not start with 'home' activity: escort Person pid:2019003547-5 hid:2019001496 plan does not start with 'home' activity: shop Person pid:2019003551-5 hid:2019001497 plan does not start with 'home' activity: visit Person pid:2019003551-6 hid:2019001497 plan does not start with 'home' activity: other Person pid:2019003552-1 hid:2019001498 plan does not start with 'home' activity: work Person pid:2019003557-3 hid:2019001499 plan does not start with 'home' activity: medical Person pid:2019003566-1 hid:2019001504 plan does not start with 'home' activity: work Person pid:2019003572-4 hid:2019001509 plan does not start with 'home' activity: visit Person pid:2019003574-3 hid:2019001510 plan does not start with 'home' activity: other Person pid:2019003573-3 hid:2019001510 plan does not start with 'home' activity: other Person pid:2019003576-4 hid:2019001511 plan does not start with 'home' activity: work Person pid:2019003580-1 hid:2019001512 plan does not start with 'home' activity: visit Person pid:2019003585-3 hid:2019001515 plan does not start with 'home' activity: work Person pid:2019003590-2 hid:2019001516 plan does not start with 'home' activity: other Person pid:2019003605-1 hid:2019001522 plan does not start with 'home' activity: work Person pid:2019003614-2 hid:2019001525 plan does not start with 'home' activity: work Person pid:2019003613-3 hid:2019001525 plan does not start with 'home' activity: work Person pid:2019003613-4 hid:2019001525 plan does not start with 'home' activity: work Person pid:2019003614-3 hid:2019001525 plan does not start with 'home' activity: work Person pid:2019003626-4 hid:2019001530 plan does not start with 'home' activity: visit Person pid:2019003638-2 hid:2019001535 plan does not start with 'home' activity: other Person pid:2019003637-3 hid:2019001535 plan does not start with 'home' activity: work Person pid:2019003639-1 hid:2019001535 plan does not start with 'home' activity: other Person pid:2019003641-4 hid:2019001536 plan does not start with 'home' activity: visit Person pid:2019003656-3 hid:2019001541 plan does not start with 'home' activity: work Person pid:2019003683-1 hid:2019001555 plan does not start with 'home' activity: work Person pid:2019003683-3 hid:2019001555 plan does not start with 'home' activity: work Person pid:2019003683-4 hid:2019001555 plan does not start with 'home' activity: work Person pid:2019003684-5 hid:2019001555 plan does not start with 'home' activity: work Person pid:2019003690-3 hid:2019001557 plan does not start with 'home' activity: other Person pid:2019003694-5 hid:2019001559 plan does not start with 'home' activity: work Person pid:2019003702-1 hid:2019001563 plan does not start with 'home' activity: visit Person pid:2019003706-5 hid:2019001565 plan does not start with 'home' activity: other Person pid:2019003715-2 hid:2019001570 plan does not start with 'home' activity: other Person pid:2019003718-1 hid:2019001572 plan does not start with 'home' activity: visit Person pid:2019003719-3 hid:2019001572 plan does not start with 'home' activity: visit Person pid:2019003719-4 hid:2019001572 plan does not start with 'home' activity: visit Person pid:2019003718-5 hid:2019001572 plan does not start with 'home' activity: visit Person pid:2019003722-1 hid:2019001573 plan does not start with 'home' activity: education Person pid:2019003723-2 hid:2019001573 plan does not start with 'home' activity: other Person pid:2019003723-3 hid:2019001573 plan does not start with 'home' activity: visit Person pid:2019003723-5 hid:2019001573 plan does not start with 'home' activity: visit Person pid:2019003722-2 hid:2019001573 plan does not start with 'home' activity: visit Person pid:2019003722-3 hid:2019001573 plan does not start with 'home' activity: education Person pid:2019003723-6 hid:2019001573 plan does not start with 'home' activity: visit Person pid:2019003723-7 hid:2019001573 plan does not start with 'home' activity: other Person pid:2019003722-5 hid:2019001573 plan does not start with 'home' activity: education Person pid:2019003722-6 hid:2019001573 plan does not start with 'home' activity: education Person pid:2019003722-7 hid:2019001573 plan does not start with 'home' activity: education Person pid:2019003731-2 hid:2019001578 plan does not start with 'home' activity: work Person pid:2019003759-2 hid:2019001591 plan does not start with 'home' activity: visit Person pid:2019003758-4 hid:2019001591 plan does not start with 'home' activity: visit Person pid:2019003763-3 hid:2019001593 plan does not start with 'home' activity: visit Person pid:2019003764-4 hid:2019001593 plan does not start with 'home' activity: visit Person pid:2019003769-7 hid:2019001595 plan does not start with 'home' activity: other Person pid:2019003772-1 hid:2019001596 plan does not start with 'home' activity: visit Person pid:2019003772-3 hid:2019001596 plan does not start with 'home' activity: visit Person pid:2019003772-6 hid:2019001596 plan does not start with 'home' activity: visit Person pid:2019003781-1 hid:2019001601 plan does not start with 'home' activity: work Person pid:2019003781-2 hid:2019001601 plan does not start with 'home' activity: work Person pid:2019003781-3 hid:2019001601 plan does not start with 'home' activity: work Person pid:2019003781-4 hid:2019001601 plan does not start with 'home' activity: work Person pid:2019003781-7 hid:2019001601 plan does not start with 'home' activity: visit Person pid:2019003794-1 hid:2019001608 plan does not start with 'home' activity: work Person pid:2019003798-3 hid:2019001609 plan does not start with 'home' activity: visit Person pid:2019003806-1 hid:2019001611 plan does not start with 'home' activity: visit Person pid:2019003807-1 hid:2019001611 plan does not start with 'home' activity: visit Person pid:2019003806-3 hid:2019001611 plan does not start with 'home' activity: visit Person pid:2019003807-3 hid:2019001611 plan does not start with 'home' activity: visit Person pid:2019003819-1 hid:2019001618 plan does not start with 'home' activity: work Person pid:2019003819-2 hid:2019001618 plan does not start with 'home' activity: work Person pid:2019003822-2 hid:2019001619 plan does not start with 'home' activity: visit Person pid:2019003822-3 hid:2019001619 plan does not start with 'home' activity: visit Person pid:2019003822-6 hid:2019001619 plan does not start with 'home' activity: visit Person pid:2019003829-3 hid:2019001622 plan does not start with 'home' activity: work Person pid:2019003829-4 hid:2019001622 plan does not start with 'home' activity: work Person pid:2019003834-2 hid:2019001623 plan does not start with 'home' activity: other Person pid:2019003837-2 hid:2019001626 plan does not start with 'home' activity: work Person pid:2019003837-3 hid:2019001626 plan does not start with 'home' activity: work Person pid:2019003837-4 hid:2019001626 plan does not start with 'home' activity: work Person pid:2019003837-5 hid:2019001626 plan does not start with 'home' activity: work Person pid:2019003839-4 hid:2019001626 plan does not start with 'home' activity: other Person pid:2019003837-7 hid:2019001626 plan does not start with 'home' activity: other Person pid:2019003843-1 hid:2019001627 plan does not start with 'home' activity: education Person pid:2019003845-1 hid:2019001628 plan does not start with 'home' activity: escort Person pid:2019003845-2 hid:2019001628 plan does not start with 'home' activity: escort Person pid:2019003845-4 hid:2019001628 plan does not start with 'home' activity: escort Person pid:2019003852-5 hid:2019001631 plan does not start with 'home' activity: visit Person pid:2019003867-6 hid:2019001637 plan does not start with 'home' activity: visit Person pid:2019003867-7 hid:2019001637 plan does not start with 'home' activity: visit Person pid:2019003881-1 hid:2019001643 plan does not start with 'home' activity: shop Person pid:2019003884-1 hid:2019001645 plan does not start with 'home' activity: visit Person pid:2019003892-3 hid:2019001649 plan does not start with 'home' activity: other Person pid:2019003946-1 hid:2019001669 plan does not start with 'home' activity: visit Person pid:2019003945-3 hid:2019001669 plan does not start with 'home' activity: visit Person pid:2019003963-1 hid:2019001676 plan does not start with 'home' activity: work Person pid:2019003963-4 hid:2019001676 plan does not start with 'home' activity: work Person pid:2019003970-2 hid:2019001679 plan does not start with 'home' activity: visit Person pid:2019003969-3 hid:2019001679 plan does not start with 'home' activity: work Person pid:2019003969-6 hid:2019001679 plan does not start with 'home' activity: work Person pid:2019003970-5 hid:2019001679 plan does not start with 'home' activity: visit Person pid:2019003978-2 hid:2019001683 plan does not start with 'home' activity: other Person pid:2019003976-4 hid:2019001683 plan does not start with 'home' activity: work Person pid:2019003977-3 hid:2019001683 plan does not start with 'home' activity: work Person pid:2019003976-5 hid:2019001683 plan does not start with 'home' activity: work Person pid:2019003976-6 hid:2019001683 plan does not start with 'home' activity: work Person pid:2019003976-7 hid:2019001683 plan does not start with 'home' activity: work Person pid:2019003982-1 hid:2019001685 plan does not start with 'home' activity: visit Person pid:2019003982-4 hid:2019001685 plan does not start with 'home' activity: visit Person pid:2019003982-5 hid:2019001685 plan does not start with 'home' activity: visit Person pid:2019004006-3 hid:2019001696 plan does not start with 'home' activity: visit Person pid:2019004011-4 hid:2019001698 plan does not start with 'home' activity: visit Person pid:2019004012-5 hid:2019001698 plan does not start with 'home' activity: visit Person pid:2019004017-2 hid:2019001702 plan does not start with 'home' activity: other Person pid:2019004033-1 hid:2019001708 plan does not start with 'home' activity: visit Person pid:2019004031-4 hid:2019001708 plan does not start with 'home' activity: visit Person pid:2019004032-5 hid:2019001708 plan does not start with 'home' activity: visit Person pid:2019004046-3 hid:2019001713 plan does not start with 'home' activity: work Person pid:2019004046-5 hid:2019001713 plan does not start with 'home' activity: work Person pid:2019004046-6 hid:2019001713 plan does not start with 'home' activity: work Person pid:2019004072-4 hid:2019001723 plan does not start with 'home' activity: education Person pid:2019004087-1 hid:2019001727 plan does not start with 'home' activity: visit Person pid:2019004087-2 hid:2019001727 plan does not start with 'home' activity: visit Person pid:2019004107-4 hid:2019001735 plan does not start with 'home' activity: education Person pid:2019004107-5 hid:2019001735 plan does not start with 'home' activity: education Person pid:2019004107-6 hid:2019001735 plan does not start with 'home' activity: visit Person pid:2019004107-7 hid:2019001735 plan does not start with 'home' activity: visit Person pid:2019004138-6 hid:2019001749 plan does not start with 'home' activity: escort Person pid:2019004189-2 hid:2019001771 plan does not start with 'home' activity: other Person pid:2019004198-2 hid:2019001777 plan does not start with 'home' activity: visit Person pid:2019004199-5 hid:2019001777 plan does not start with 'home' activity: visit Person pid:2019004215-2 hid:2019001785 plan does not start with 'home' activity: work Person pid:2019004215-3 hid:2019001785 plan does not start with 'home' activity: work Person pid:2019004215-4 hid:2019001785 plan does not start with 'home' activity: work Person pid:2019004215-5 hid:2019001785 plan does not start with 'home' activity: work Person pid:2019004215-6 hid:2019001785 plan does not start with 'home' activity: work Person pid:2019004221-2 hid:2019001787 plan does not start with 'home' activity: visit Person pid:2019004222-4 hid:2019001787 plan does not start with 'home' activity: visit Person pid:2019004229-1 hid:2019001790 plan does not start with 'home' activity: work Person pid:2019004229-2 hid:2019001790 plan does not start with 'home' activity: work Person pid:2019004229-5 hid:2019001790 plan does not start with 'home' activity: work Person pid:2019004251-4 hid:2019001800 plan does not start with 'home' activity: visit Person pid:2019004251-5 hid:2019001800 plan does not start with 'home' activity: visit Person pid:2019004261-3 hid:2019001806 plan does not start with 'home' activity: work Person pid:2019004261-4 hid:2019001806 plan does not start with 'home' activity: work Person pid:2019004261-5 hid:2019001806 plan does not start with 'home' activity: work Person pid:2019004261-7 hid:2019001806 plan does not start with 'home' activity: work Person pid:2019004279-6 hid:2019001810 plan does not start with 'home' activity: education Person pid:2019004277-5 hid:2019001810 plan does not start with 'home' activity: visit Person pid:2019004281-1 hid:2019001811 plan does not start with 'home' activity: visit Person pid:2019004281-7 hid:2019001811 plan does not start with 'home' activity: visit Person pid:2019004289-3 hid:2019001814 plan does not start with 'home' activity: visit Person pid:2019004296-1 hid:2019001818 plan does not start with 'home' activity: visit Person pid:2019004296-5 hid:2019001818 plan does not start with 'home' activity: visit Person pid:2019004308-3 hid:2019001823 plan does not start with 'home' activity: work Person pid:2019004308-7 hid:2019001823 plan does not start with 'home' activity: work Person pid:2019004310-1 hid:2019001824 plan does not start with 'home' activity: visit Person pid:2019004311-1 hid:2019001824 plan does not start with 'home' activity: visit Person pid:2019004310-2 hid:2019001824 plan does not start with 'home' activity: visit Person pid:2019004311-2 hid:2019001824 plan does not start with 'home' activity: visit Person pid:2019004311-3 hid:2019001824 plan does not start with 'home' activity: visit Person pid:2019004310-3 hid:2019001824 plan does not start with 'home' activity: visit Person pid:2019004310-4 hid:2019001824 plan does not start with 'home' activity: visit Person pid:2019004311-5 hid:2019001824 plan does not start with 'home' activity: visit Person pid:2019004318-5 hid:2019001827 plan does not start with 'home' activity: other Person pid:2019004322-1 hid:2019001828 plan does not start with 'home' activity: other Person pid:2019004321-2 hid:2019001828 plan does not start with 'home' activity: education Person pid:2019004322-2 hid:2019001828 plan does not start with 'home' activity: visit Person pid:2019004322-3 hid:2019001828 plan does not start with 'home' activity: education Person pid:2019004321-3 hid:2019001828 plan does not start with 'home' activity: visit Person pid:2019004320-4 hid:2019001828 plan does not start with 'home' activity: escort Person pid:2019004321-4 hid:2019001828 plan does not start with 'home' activity: education Person pid:2019004330-7 hid:2019001832 plan does not start with 'home' activity: visit Person pid:2019004329-7 hid:2019001832 plan does not start with 'home' activity: work Person pid:2019004336-1 hid:2019001835 plan does not start with 'home' activity: work Person pid:2019004336-2 hid:2019001835 plan does not start with 'home' activity: work Person pid:2019004336-3 hid:2019001835 plan does not start with 'home' activity: work Person pid:2019004336-4 hid:2019001835 plan does not start with 'home' activity: work Person pid:2019004341-1 hid:2019001837 plan does not start with 'home' activity: work Person pid:2019004341-6 hid:2019001837 plan does not start with 'home' activity: work Person pid:2019004343-7 hid:2019001839 plan does not start with 'home' activity: other Person pid:2019004346-1 hid:2019001841 plan does not start with 'home' activity: other Person pid:2019004359-3 hid:2019001845 plan does not start with 'home' activity: work Person pid:2019004374-2 hid:2019001850 plan does not start with 'home' activity: visit Person pid:2019004374-6 hid:2019001850 plan does not start with 'home' activity: visit Person pid:2019004384-2 hid:2019001855 plan does not start with 'home' activity: work Person pid:2019004390-1 hid:2019001857 plan does not start with 'home' activity: visit Person pid:2019004389-5 hid:2019001857 plan does not start with 'home' activity: visit Person pid:2019004400-1 hid:2019001862 plan does not start with 'home' activity: other Person pid:2019004400-2 hid:2019001862 plan does not start with 'home' activity: education Person pid:2019004400-3 hid:2019001862 plan does not start with 'home' activity: education Person pid:2019004400-4 hid:2019001862 plan does not start with 'home' activity: other Person pid:2019004428-1 hid:2019001877 plan does not start with 'home' activity: visit Person pid:2019004428-7 hid:2019001877 plan does not start with 'home' activity: visit Person pid:2019004433-7 hid:2019001880 plan does not start with 'home' activity: visit Person pid:2019004434-4 hid:2019001880 plan does not start with 'home' activity: visit Person pid:2019004437-2 hid:2019001881 plan does not start with 'home' activity: work Person pid:2019004451-1 hid:2019001883 plan does not start with 'home' activity: visit Person pid:2019004451-5 hid:2019001883 plan does not start with 'home' activity: visit Person pid:2019004452-2 hid:2019001883 plan does not start with 'home' activity: work Person pid:2019004451-6 hid:2019001883 plan does not start with 'home' activity: visit Person pid:2019004451-7 hid:2019001883 plan does not start with 'home' activity: visit Person pid:2019004456-5 hid:2019001884 plan does not start with 'home' activity: education Person pid:2019004471-3 hid:2019001890 plan does not start with 'home' activity: other Person pid:2019004477-1 hid:2019001893 plan does not start with 'home' activity: work Person pid:2019004477-2 hid:2019001893 plan does not start with 'home' activity: work Person pid:2019004477-3 hid:2019001893 plan does not start with 'home' activity: work Person pid:2019004477-4 hid:2019001893 plan does not start with 'home' activity: work Person pid:2019004486-1 hid:2019001896 plan does not start with 'home' activity: visit Person pid:2019004487-2 hid:2019001897 plan does not start with 'home' activity: work Person pid:2019004487-3 hid:2019001897 plan does not start with 'home' activity: work Person pid:2019004493-4 hid:2019001900 plan does not start with 'home' activity: visit Person pid:2019004508-1 hid:2019001905 plan does not start with 'home' activity: other Person pid:2019004507-6 hid:2019001905 plan does not start with 'home' activity: other Person pid:2019004524-2 hid:2019001912 plan does not start with 'home' activity: education Person pid:2019004525-6 hid:2019001912 plan does not start with 'home' activity: escort Person pid:2019004535-4 hid:2019001916 plan does not start with 'home' activity: visit Person pid:2019004535-5 hid:2019001916 plan does not start with 'home' activity: visit Person pid:2019004542-1 hid:2019001918 plan does not start with 'home' activity: visit Person pid:2019004543-3 hid:2019001919 plan does not start with 'home' activity: visit Person pid:2019004544-2 hid:2019001920 plan does not start with 'home' activity: visit Person pid:2019004552-1 hid:2019001923 plan does not start with 'home' activity: escort Person pid:2019004558-4 hid:2019001925 plan does not start with 'home' activity: work Person pid:2019004563-3 hid:2019001926 plan does not start with 'home' activity: visit Person pid:2019004565-1 hid:2019001928 plan does not start with 'home' activity: escort Person pid:2019004565-2 hid:2019001928 plan does not start with 'home' activity: escort Person pid:2019004565-5 hid:2019001928 plan does not start with 'home' activity: escort Person pid:2019004568-1 hid:2019001928 plan does not start with 'home' activity: education Person pid:2019004565-6 hid:2019001928 plan does not start with 'home' activity: escort Person pid:2019004577-1 hid:2019001933 plan does not start with 'home' activity: visit Person pid:2019004577-2 hid:2019001933 plan does not start with 'home' activity: education Person pid:2019004581-1 hid:2019001935 plan does not start with 'home' activity: other Person pid:2019004580-3 hid:2019001935 plan does not start with 'home' activity: other Person pid:2019004585-1 hid:2019001937 plan does not start with 'home' activity: work Person pid:2019004597-2 hid:2019001941 plan does not start with 'home' activity: work Person pid:2019004597-5 hid:2019001941 plan does not start with 'home' activity: work Person pid:2019004595-5 hid:2019001941 plan does not start with 'home' activity: other Person pid:2019004617-4 hid:2019001949 plan does not start with 'home' activity: visit Person pid:2019004617-5 hid:2019001949 plan does not start with 'home' activity: visit Person pid:2019004631-4 hid:2019001956 plan does not start with 'home' activity: visit Person pid:2019004631-5 hid:2019001956 plan does not start with 'home' activity: visit Person pid:2019004631-6 hid:2019001956 plan does not start with 'home' activity: visit Person pid:2019004638-5 hid:2019001960 plan does not start with 'home' activity: visit Person pid:2019004639-4 hid:2019001961 plan does not start with 'home' activity: work Person pid:2019004653-1 hid:2019001967 plan does not start with 'home' activity: visit Person pid:2019004653-4 hid:2019001967 plan does not start with 'home' activity: visit Person pid:2019004653-5 hid:2019001967 plan does not start with 'home' activity: visit Person pid:2019004659-1 hid:2019001970 plan does not start with 'home' activity: visit Person pid:2019004659-2 hid:2019001970 plan does not start with 'home' activity: visit Person pid:2019004659-4 hid:2019001970 plan does not start with 'home' activity: visit Person pid:2019004675-1 hid:2019001975 plan does not start with 'home' activity: visit Person pid:2019004673-4 hid:2019001975 plan does not start with 'home' activity: visit Person pid:2019004676-3 hid:2019001975 plan does not start with 'home' activity: visit Person pid:2019004674-4 hid:2019001975 plan does not start with 'home' activity: visit Person pid:2019004679-5 hid:2019001977 plan does not start with 'home' activity: work Person pid:2019004679-7 hid:2019001977 plan does not start with 'home' activity: visit Person pid:2019004687-4 hid:2019001979 plan does not start with 'home' activity: work Person pid:2019004688-3 hid:2019001979 plan does not start with 'home' activity: escort Person pid:2019004701-6 hid:2019001984 plan does not start with 'home' activity: other Person pid:2019004702-2 hid:2019001985 plan does not start with 'home' activity: escort Person pid:2019004702-4 hid:2019001985 plan does not start with 'home' activity: work Person pid:2019004702-5 hid:2019001985 plan does not start with 'home' activity: work Person pid:2019004704-3 hid:2019001986 plan does not start with 'home' activity: visit Person pid:2019004706-6 hid:2019001986 plan does not start with 'home' activity: visit Person pid:2019004703-6 hid:2019001986 plan does not start with 'home' activity: visit Person pid:2019004705-7 hid:2019001986 plan does not start with 'home' activity: visit Person pid:2019004712-1 hid:2019001989 plan does not start with 'home' activity: work Person pid:2019004712-2 hid:2019001989 plan does not start with 'home' activity: work Person pid:2019004712-3 hid:2019001989 plan does not start with 'home' activity: work Person pid:2019004735-2 hid:2019001997 plan does not start with 'home' activity: visit Person pid:2019004741-2 hid:2019002000 plan does not start with 'home' activity: escort Person pid:2019004741-4 hid:2019002000 plan does not start with 'home' activity: escort Person pid:2019004747-3 hid:2019002002 plan does not start with 'home' activity: shop Person pid:2019004763-5 hid:2019002008 plan does not start with 'home' activity: visit Person pid:2019004762-5 hid:2019002008 plan does not start with 'home' activity: visit Person pid:2019004763-6 hid:2019002008 plan does not start with 'home' activity: visit Person pid:2019004762-7 hid:2019002008 plan does not start with 'home' activity: visit Person pid:2019004764-1 hid:2019002009 plan does not start with 'home' activity: visit Person pid:2019004764-2 hid:2019002009 plan does not start with 'home' activity: visit Person pid:2019004765-5 hid:2019002009 plan does not start with 'home' activity: visit Person pid:2019004766-6 hid:2019002009 plan does not start with 'home' activity: visit Person pid:2019004764-7 hid:2019002009 plan does not start with 'home' activity: work Person pid:2019004765-7 hid:2019002009 plan does not start with 'home' activity: visit Person pid:2019004766-7 hid:2019002009 plan does not start with 'home' activity: visit Person pid:2019004767-5 hid:2019002009 plan does not start with 'home' activity: visit Person pid:2019004767-7 hid:2019002009 plan does not start with 'home' activity: visit Person pid:2019004771-7 hid:2019002010 plan does not start with 'home' activity: visit Person pid:2019004783-2 hid:2019002015 plan does not start with 'home' activity: education Person pid:2019004795-5 hid:2019002019 plan does not start with 'home' activity: visit Person pid:2019004802-1 hid:2019002025 plan does not start with 'home' activity: other Person pid:2019004802-2 hid:2019002025 plan does not start with 'home' activity: work Person pid:2019004812-1 hid:2019002030 plan does not start with 'home' activity: work Person pid:2019004841-1 hid:2019002042 plan does not start with 'home' activity: visit Person pid:2019004841-5 hid:2019002042 plan does not start with 'home' activity: visit Person pid:2019004842-6 hid:2019002043 plan does not start with 'home' activity: work Person pid:2019004853-1 hid:2019002046 plan does not start with 'home' activity: work Person pid:2019004851-2 hid:2019002046 plan does not start with 'home' activity: visit Person pid:2019004851-3 hid:2019002046 plan does not start with 'home' activity: visit Person pid:2019004851-4 hid:2019002046 plan does not start with 'home' activity: visit Person pid:2019004872-1 hid:2019002054 plan does not start with 'home' activity: work Person pid:2019004872-4 hid:2019002054 plan does not start with 'home' activity: work Person pid:2019004874-1 hid:2019002055 plan does not start with 'home' activity: work Person pid:2019004876-3 hid:2019002055 plan does not start with 'home' activity: visit Person pid:2019004874-4 hid:2019002055 plan does not start with 'home' activity: visit Person pid:2019004876-4 hid:2019002055 plan does not start with 'home' activity: visit Person pid:2019004892-3 hid:2019002062 plan does not start with 'home' activity: visit Person pid:2019004899-2 hid:2019002065 plan does not start with 'home' activity: work Person pid:2019004899-3 hid:2019002065 plan does not start with 'home' activity: work Person pid:2019004902-3 hid:2019002066 plan does not start with 'home' activity: work Person pid:2019004902-5 hid:2019002066 plan does not start with 'home' activity: work Person pid:2019004902-6 hid:2019002066 plan does not start with 'home' activity: work Person pid:2019004915-4 hid:2019002070 plan does not start with 'home' activity: other Person pid:2019004919-3 hid:2019002072 plan does not start with 'home' activity: visit Person pid:2019004921-1 hid:2019002072 plan does not start with 'home' activity: visit Person pid:2019004921-2 hid:2019002072 plan does not start with 'home' activity: visit Person pid:2019004917-1 hid:2019002072 plan does not start with 'home' activity: work Person pid:2019004921-4 hid:2019002072 plan does not start with 'home' activity: visit Person pid:2019004919-7 hid:2019002072 plan does not start with 'home' activity: visit Person pid:2019004921-6 hid:2019002072 plan does not start with 'home' activity: visit Person pid:2019004921-7 hid:2019002072 plan does not start with 'home' activity: visit Person pid:2019004929-3 hid:2019002076 plan does not start with 'home' activity: other Person pid:2019004932-1 hid:2019002077 plan does not start with 'home' activity: other Person pid:2019004931-3 hid:2019002077 plan does not start with 'home' activity: other Person pid:2019004942-6 hid:2019002081 plan does not start with 'home' activity: visit Person pid:2019004943-1 hid:2019002082 plan does not start with 'home' activity: visit Person pid:2019004951-7 hid:2019002087 plan does not start with 'home' activity: visit Person pid:2019004955-1 hid:2019002090 plan does not start with 'home' activity: visit Person pid:2019004956-1 hid:2019002090 plan does not start with 'home' activity: visit Person pid:2019004968-3 hid:2019002096 plan does not start with 'home' activity: visit Person pid:2019004979-2 hid:2019002101 plan does not start with 'home' activity: work Person pid:2019004979-4 hid:2019002101 plan does not start with 'home' activity: work Person pid:2019004979-6 hid:2019002101 plan does not start with 'home' activity: work Person pid:2019004987-3 hid:2019002103 plan does not start with 'home' activity: visit Person pid:2019005014-3 hid:2019002117 plan does not start with 'home' activity: other Person pid:2019005015-3 hid:2019002117 plan does not start with 'home' activity: other Person pid:2019005016-5 hid:2019002117 plan does not start with 'home' activity: visit Person pid:2019005017-4 hid:2019002118 plan does not start with 'home' activity: work Person pid:2019005031-6 hid:2019002122 plan does not start with 'home' activity: shop Person pid:2019005037-1 hid:2019002124 plan does not start with 'home' activity: visit Person pid:2019005038-1 hid:2019002124 plan does not start with 'home' activity: visit Person pid:2019005039-1 hid:2019002124 plan does not start with 'home' activity: visit Person pid:2019005036-2 hid:2019002124 plan does not start with 'home' activity: visit Person pid:2019005034-2 hid:2019002124 plan does not start with 'home' activity: other Person pid:2019005035-6 hid:2019002124 plan does not start with 'home' activity: other Person pid:2019005046-3 hid:2019002126 plan does not start with 'home' activity: work Person pid:2019005046-6 hid:2019002126 plan does not start with 'home' activity: work Person pid:2019005064-1 hid:2019002132 plan does not start with 'home' activity: visit Person pid:2019005060-2 hid:2019002132 plan does not start with 'home' activity: work Person pid:2019005062-4 hid:2019002132 plan does not start with 'home' activity: visit Person pid:2019005063-4 hid:2019002132 plan does not start with 'home' activity: work Person pid:2019005075-4 hid:2019002135 plan does not start with 'home' activity: visit Person pid:2019005091-1 hid:2019002143 plan does not start with 'home' activity: visit Person pid:2019005091-3 hid:2019002143 plan does not start with 'home' activity: visit Person pid:2019005091-6 hid:2019002143 plan does not start with 'home' activity: visit Person pid:2019005092-1 hid:2019002144 plan does not start with 'home' activity: work Person pid:2019005092-2 hid:2019002144 plan does not start with 'home' activity: work Person pid:2019005092-4 hid:2019002144 plan does not start with 'home' activity: work Person pid:2019005108-4 hid:2019002153 plan does not start with 'home' activity: visit Person pid:2019005108-5 hid:2019002153 plan does not start with 'home' activity: visit Person pid:2019005108-6 hid:2019002153 plan does not start with 'home' activity: visit Person pid:2019005108-7 hid:2019002153 plan does not start with 'home' activity: visit Person pid:2019005109-3 hid:2019002154 plan does not start with 'home' activity: visit Person pid:2019005109-7 hid:2019002154 plan does not start with 'home' activity: visit Person pid:2019005117-4 hid:2019002157 plan does not start with 'home' activity: visit Person pid:2019005118-4 hid:2019002158 plan does not start with 'home' activity: other Person pid:2019005133-7 hid:2019002165 plan does not start with 'home' activity: visit Person pid:2019005132-6 hid:2019002165 plan does not start with 'home' activity: work Person pid:2019005142-3 hid:2019002170 plan does not start with 'home' activity: visit Person pid:2019005149-3 hid:2019002173 plan does not start with 'home' activity: other Person pid:2019005157-2 hid:2019002177 plan does not start with 'home' activity: shop Person pid:2019005162-1 hid:2019002180 plan does not start with 'home' activity: visit Person pid:2019005163-1 hid:2019002180 plan does not start with 'home' activity: education Person pid:2019005163-2 hid:2019002180 plan does not start with 'home' activity: visit Person pid:2019005163-5 hid:2019002180 plan does not start with 'home' activity: visit Person pid:2019005162-4 hid:2019002180 plan does not start with 'home' activity: visit Person pid:2019005166-4 hid:2019002183 plan does not start with 'home' activity: visit Person pid:2019005186-2 hid:2019002192 plan does not start with 'home' activity: work Person pid:2019005186-3 hid:2019002192 plan does not start with 'home' activity: work Person pid:2019005188-2 hid:2019002193 plan does not start with 'home' activity: work Person pid:2019005188-4 hid:2019002193 plan does not start with 'home' activity: work Person pid:2019005188-5 hid:2019002193 plan does not start with 'home' activity: work Person pid:2019005188-6 hid:2019002193 plan does not start with 'home' activity: work Person pid:2019005192-7 hid:2019002195 plan does not start with 'home' activity: other Person pid:2019005200-6 hid:2019002200 plan does not start with 'home' activity: shop Person pid:2019005203-1 hid:2019002202 plan does not start with 'home' activity: visit Person pid:2019005204-4 hid:2019002202 plan does not start with 'home' activity: visit Person pid:2019005204-5 hid:2019002202 plan does not start with 'home' activity: visit Person pid:2019005207-3 hid:2019002204 plan does not start with 'home' activity: work Person pid:2019005207-6 hid:2019002204 plan does not start with 'home' activity: work Person pid:2019005231-2 hid:2019002215 plan does not start with 'home' activity: education Person pid:2019005230-4 hid:2019002215 plan does not start with 'home' activity: work Person pid:2019005229-7 hid:2019002215 plan does not start with 'home' activity: visit Person pid:2019005244-2 hid:2019002223 plan does not start with 'home' activity: other Person pid:2019005247-1 hid:2019002223 plan does not start with 'home' activity: other Person pid:2019005246-2 hid:2019002223 plan does not start with 'home' activity: visit Person pid:2019005245-7 hid:2019002223 plan does not start with 'home' activity: other Person pid:2019005246-5 hid:2019002223 plan does not start with 'home' activity: other Person pid:2019005248-1 hid:2019002224 plan does not start with 'home' activity: visit Person pid:2019005249-1 hid:2019002224 plan does not start with 'home' activity: visit Person pid:2019005248-3 hid:2019002224 plan does not start with 'home' activity: visit Person pid:2019005249-3 hid:2019002224 plan does not start with 'home' activity: visit Person pid:2019005253-1 hid:2019002225 plan does not start with 'home' activity: visit Person pid:2019005254-1 hid:2019002225 plan does not start with 'home' activity: visit Person pid:2019005257-3 hid:2019002227 plan does not start with 'home' activity: visit Person pid:2019005271-1 hid:2019002232 plan does not start with 'home' activity: visit Person pid:2019005271-6 hid:2019002232 plan does not start with 'home' activity: visit Person pid:2019005275-1 hid:2019002234 plan does not start with 'home' activity: work Person pid:2019005276-1 hid:2019002234 plan does not start with 'home' activity: work Person pid:2019005276-2 hid:2019002234 plan does not start with 'home' activity: work Person pid:2019005276-3 hid:2019002234 plan does not start with 'home' activity: work Person pid:2019005275-4 hid:2019002234 plan does not start with 'home' activity: work Person pid:2019005275-5 hid:2019002234 plan does not start with 'home' activity: work Person pid:2019005275-6 hid:2019002234 plan does not start with 'home' activity: work Person pid:2019005276-6 hid:2019002234 plan does not start with 'home' activity: work Person pid:2019005278-1 hid:2019002236 plan does not start with 'home' activity: work Person pid:2019005278-2 hid:2019002236 plan does not start with 'home' activity: work Person pid:2019005278-4 hid:2019002236 plan does not start with 'home' activity: work Person pid:2019005283-1 hid:2019002240 plan does not start with 'home' activity: work Person pid:2019005283-2 hid:2019002240 plan does not start with 'home' activity: work Person pid:2019005283-3 hid:2019002240 plan does not start with 'home' activity: work Person pid:2019005283-4 hid:2019002240 plan does not start with 'home' activity: work Person pid:2019005283-5 hid:2019002240 plan does not start with 'home' activity: work Person pid:2019005284-5 hid:2019002240 plan does not start with 'home' activity: visit Person pid:2019005283-6 hid:2019002240 plan does not start with 'home' activity: work Person pid:2019005283-7 hid:2019002240 plan does not start with 'home' activity: work Person pid:2019005285-5 hid:2019002240 plan does not start with 'home' activity: visit Person pid:2019005333-3 hid:2019002260 plan does not start with 'home' activity: visit Person pid:2019005335-7 hid:2019002261 plan does not start with 'home' activity: visit Person pid:2019005336-2 hid:2019002261 plan does not start with 'home' activity: visit Person pid:2019005337-2 hid:2019002261 plan does not start with 'home' activity: visit Person pid:2019005337-6 hid:2019002261 plan does not start with 'home' activity: visit Person pid:2019005351-2 hid:2019002267 plan does not start with 'home' activity: escort Person pid:2019005353-1 hid:2019002267 plan does not start with 'home' activity: other Person pid:2019005359-1 hid:2019002269 plan does not start with 'home' activity: work Person pid:2019005368-1 hid:2019002275 plan does not start with 'home' activity: escort Person pid:2019005368-2 hid:2019002275 plan does not start with 'home' activity: escort Person pid:2019005371-3 hid:2019002275 plan does not start with 'home' activity: escort Person pid:2019005371-5 hid:2019002275 plan does not start with 'home' activity: escort Person pid:2019005375-2 hid:2019002277 plan does not start with 'home' activity: visit Person pid:2019005395-1 hid:2019002284 plan does not start with 'home' activity: other Person pid:2019005412-4 hid:2019002294 plan does not start with 'home' activity: visit Person pid:2019005410-3 hid:2019002294 plan does not start with 'home' activity: visit Person pid:2019005416-4 hid:2019002295 plan does not start with 'home' activity: other Person pid:2019005420-4 hid:2019002296 plan does not start with 'home' activity: visit Person pid:2019005419-1 hid:2019002296 plan does not start with 'home' activity: education Person pid:2019005420-6 hid:2019002296 plan does not start with 'home' activity: visit Person pid:2019005424-3 hid:2019002298 plan does not start with 'home' activity: work Person pid:2019005424-4 hid:2019002298 plan does not start with 'home' activity: work Person pid:2019005425-3 hid:2019002298 plan does not start with 'home' activity: education Person pid:2019005443-1 hid:2019002305 plan does not start with 'home' activity: other Person pid:2019005443-2 hid:2019002305 plan does not start with 'home' activity: visit Person pid:2019005442-5 hid:2019002305 plan does not start with 'home' activity: visit Person pid:2019005442-6 hid:2019002305 plan does not start with 'home' activity: other Person pid:2019005456-2 hid:2019002310 plan does not start with 'home' activity: work Person pid:2019005456-3 hid:2019002310 plan does not start with 'home' activity: work Person pid:2019005456-4 hid:2019002310 plan does not start with 'home' activity: work Person pid:2019005456-5 hid:2019002310 plan does not start with 'home' activity: work Person pid:2019005477-3 hid:2019002318 plan does not start with 'home' activity: other Person pid:2019005477-4 hid:2019002318 plan does not start with 'home' activity: shop Person pid:2019005483-3 hid:2019002320 plan does not start with 'home' activity: work Person pid:2019005510-4 hid:2019002332 plan does not start with 'home' activity: other Person pid:2019005520-2 hid:2019002335 plan does not start with 'home' activity: visit Person pid:2019005521-4 hid:2019002335 plan does not start with 'home' activity: visit Person pid:2019005523-3 hid:2019002336 plan does not start with 'home' activity: visit Person pid:2019005524-2 hid:2019002337 plan does not start with 'home' activity: shop Person pid:2019005525-3 hid:2019002337 plan does not start with 'home' activity: visit Person pid:2019005535-4 hid:2019002341 plan does not start with 'home' activity: shop Person pid:2019005540-4 hid:2019002343 plan does not start with 'home' activity: visit Person pid:2019005547-2 hid:2019002346 plan does not start with 'home' activity: escort Person pid:2019005561-4 hid:2019002351 plan does not start with 'home' activity: other Person pid:2019005587-4 hid:2019002364 plan does not start with 'home' activity: work Person pid:2019005607-1 hid:2019002373 plan does not start with 'home' activity: visit Person pid:2019005608-5 hid:2019002373 plan does not start with 'home' activity: education Person pid:2019005613-3 hid:2019002375 plan does not start with 'home' activity: visit Person pid:2019005620-3 hid:2019002377 plan does not start with 'home' activity: visit Person pid:2019005618-5 hid:2019002377 plan does not start with 'home' activity: work Person pid:2019005638-1 hid:2019002386 plan does not start with 'home' activity: visit Person pid:2019005638-3 hid:2019002386 plan does not start with 'home' activity: work Person pid:2019005635-1 hid:2019002386 plan does not start with 'home' activity: work Person pid:2019005635-2 hid:2019002386 plan does not start with 'home' activity: work Person pid:2019005635-3 hid:2019002386 plan does not start with 'home' activity: work Person pid:2019005635-4 hid:2019002386 plan does not start with 'home' activity: work Person pid:2019005639-3 hid:2019002386 plan does not start with 'home' activity: visit Person pid:2019005638-6 hid:2019002386 plan does not start with 'home' activity: visit Person pid:2019005635-7 hid:2019002386 plan does not start with 'home' activity: work Person pid:2019005639-4 hid:2019002386 plan does not start with 'home' activity: visit Person pid:2019005643-1 hid:2019002388 plan does not start with 'home' activity: work Person pid:2019005643-4 hid:2019002388 plan does not start with 'home' activity: work Person pid:2019005643-5 hid:2019002388 plan does not start with 'home' activity: work Person pid:2019005652-2 hid:2019002392 plan does not start with 'home' activity: work Person pid:2019005671-4 hid:2019002399 plan does not start with 'home' activity: visit Person pid:2019005672-2 hid:2019002399 plan does not start with 'home' activity: visit Person pid:2019005677-2 hid:2019002402 plan does not start with 'home' activity: other Person pid:2019005678-5 hid:2019002402 plan does not start with 'home' activity: other Person pid:2019005694-2 hid:2019002409 plan does not start with 'home' activity: visit Person pid:2019005694-4 hid:2019002409 plan does not start with 'home' activity: visit Person pid:2019005695-5 hid:2019002409 plan does not start with 'home' activity: visit Person pid:2019005699-4 hid:2019002410 plan does not start with 'home' activity: other Person pid:2019005706-1 hid:2019002412 plan does not start with 'home' activity: visit Person pid:2019005706-3 hid:2019002412 plan does not start with 'home' activity: visit Person pid:2019005707-4 hid:2019002412 plan does not start with 'home' activity: visit Person pid:2019005707-7 hid:2019002412 plan does not start with 'home' activity: visit Person pid:2019005710-2 hid:2019002413 plan does not start with 'home' activity: education Person pid:2019005710-3 hid:2019002413 plan does not start with 'home' activity: visit Person pid:2019005710-4 hid:2019002413 plan does not start with 'home' activity: visit Person pid:2019005714-5 hid:2019002416 plan does not start with 'home' activity: work Person pid:2019005717-2 hid:2019002417 plan does not start with 'home' activity: visit Person pid:2019005718-2 hid:2019002417 plan does not start with 'home' activity: visit Person pid:2019005724-5 hid:2019002420 plan does not start with 'home' activity: visit Person pid:2019005764-3 hid:2019002438 plan does not start with 'home' activity: visit Person pid:2019005771-1 hid:2019002440 plan does not start with 'home' activity: other Person pid:2019005769-1 hid:2019002440 plan does not start with 'home' activity: visit Person pid:2019005768-6 hid:2019002440 plan does not start with 'home' activity: visit Person pid:2019005774-1 hid:2019002442 plan does not start with 'home' activity: visit Person pid:2019005774-2 hid:2019002442 plan does not start with 'home' activity: visit Person pid:2019005774-4 hid:2019002442 plan does not start with 'home' activity: visit Person pid:2019005776-5 hid:2019002444 plan does not start with 'home' activity: other Person pid:2019005778-6 hid:2019002444 plan does not start with 'home' activity: education Person pid:2019005777-4 hid:2019002444 plan does not start with 'home' activity: other Person pid:2019005786-1 hid:2019002447 plan does not start with 'home' activity: work Person pid:2019005786-2 hid:2019002447 plan does not start with 'home' activity: work Person pid:2019005786-3 hid:2019002447 plan does not start with 'home' activity: work Person pid:2019005787-1 hid:2019002447 plan does not start with 'home' activity: work Person pid:2019005787-2 hid:2019002447 plan does not start with 'home' activity: visit Person pid:2019005787-3 hid:2019002447 plan does not start with 'home' activity: work Person pid:2019005786-5 hid:2019002447 plan does not start with 'home' activity: work Person pid:2019005788-4 hid:2019002447 plan does not start with 'home' activity: visit Person pid:2019005788-6 hid:2019002447 plan does not start with 'home' activity: work Person pid:2019005787-4 hid:2019002447 plan does not start with 'home' activity: work Person pid:2019005786-6 hid:2019002447 plan does not start with 'home' activity: work Person pid:2019005787-6 hid:2019002447 plan does not start with 'home' activity: work Person pid:2019005787-7 hid:2019002447 plan does not start with 'home' activity: work Person pid:2019005808-1 hid:2019002456 plan does not start with 'home' activity: work Person pid:2019005808-2 hid:2019002456 plan does not start with 'home' activity: work Person pid:2019005808-3 hid:2019002456 plan does not start with 'home' activity: work Person pid:2019005808-6 hid:2019002456 plan does not start with 'home' activity: work Person pid:2019005808-7 hid:2019002456 plan does not start with 'home' activity: work Person pid:2019005828-5 hid:2019002466 plan does not start with 'home' activity: other Person pid:2019005843-1 hid:2019002473 plan does not start with 'home' activity: visit Person pid:2019005843-5 hid:2019002473 plan does not start with 'home' activity: visit Person pid:2019005869-2 hid:2019002483 plan does not start with 'home' activity: shop Person pid:2019005869-4 hid:2019002483 plan does not start with 'home' activity: other Person pid:2019005868-3 hid:2019002483 plan does not start with 'home' activity: other Person pid:2019005891-4 hid:2019002494 plan does not start with 'home' activity: shop Person pid:2019005893-4 hid:2019002495 plan does not start with 'home' activity: other Person pid:2019005892-3 hid:2019002495 plan does not start with 'home' activity: other Person pid:2019005900-1 hid:2019002500 plan does not start with 'home' activity: other Person pid:2019005899-3 hid:2019002500 plan does not start with 'home' activity: other Person pid:2019005901-5 hid:2019002500 plan does not start with 'home' activity: other Person pid:2019005902-5 hid:2019002500 plan does not start with 'home' activity: other Person pid:2019005904-6 hid:2019002501 plan does not start with 'home' activity: work Person pid:2019005906-5 hid:2019002502 plan does not start with 'home' activity: visit Person pid:2019005910-3 hid:2019002503 plan does not start with 'home' activity: visit Person pid:2019005913-7 hid:2019002505 plan does not start with 'home' activity: other Person pid:2019005918-3 hid:2019002507 plan does not start with 'home' activity: visit Person pid:2019005918-5 hid:2019002507 plan does not start with 'home' activity: visit Person pid:2019005916-6 hid:2019002507 plan does not start with 'home' activity: work Person pid:2019005919-7 hid:2019002507 plan does not start with 'home' activity: visit Person pid:2019005928-5 hid:2019002510 plan does not start with 'home' activity: escort Person pid:2019005934-2 hid:2019002511 plan does not start with 'home' activity: visit Person pid:2019005933-2 hid:2019002511 plan does not start with 'home' activity: visit Person pid:2019005949-3 hid:2019002519 plan does not start with 'home' activity: work Person pid:2019005949-7 hid:2019002519 plan does not start with 'home' activity: work Person pid:2019005956-1 hid:2019002521 plan does not start with 'home' activity: work Person pid:2019005956-4 hid:2019002521 plan does not start with 'home' activity: work Person pid:2019005956-7 hid:2019002521 plan does not start with 'home' activity: work Person pid:2019005977-3 hid:2019002530 plan does not start with 'home' activity: visit Person pid:2019005980-5 hid:2019002531 plan does not start with 'home' activity: visit Person pid:2019006007-2 hid:2019002545 plan does not start with 'home' activity: other Person pid:2019006007-4 hid:2019002545 plan does not start with 'home' activity: education Person pid:2019006016-2 hid:2019002549 plan does not start with 'home' activity: other Person pid:2019006017-3 hid:2019002549 plan does not start with 'home' activity: other Person pid:2019006018-4 hid:2019002549 plan does not start with 'home' activity: other Person pid:2019006042-1 hid:2019002559 plan does not start with 'home' activity: other Person pid:2019006047-2 hid:2019002561 plan does not start with 'home' activity: education Person pid:2019006047-5 hid:2019002561 plan does not start with 'home' activity: education Person pid:2019006057-2 hid:2019002564 plan does not start with 'home' activity: visit Person pid:2019006057-5 hid:2019002564 plan does not start with 'home' activity: visit Person pid:2019006060-4 hid:2019002566 plan does not start with 'home' activity: other Person pid:2019006064-3 hid:2019002569 plan does not start with 'home' activity: visit Person pid:2019006064-4 hid:2019002569 plan does not start with 'home' activity: visit Person pid:2019006067-2 hid:2019002570 plan does not start with 'home' activity: education Person pid:2019006067-6 hid:2019002570 plan does not start with 'home' activity: education Person pid:2019006080-1 hid:2019002575 plan does not start with 'home' activity: education Person pid:2019006080-5 hid:2019002575 plan does not start with 'home' activity: education Person pid:2019006092-3 hid:2019002580 plan does not start with 'home' activity: visit Person pid:2019006109-2 hid:2019002587 plan does not start with 'home' activity: visit Person pid:2019006109-4 hid:2019002587 plan does not start with 'home' activity: visit Person pid:2019006109-5 hid:2019002587 plan does not start with 'home' activity: visit Person pid:2019006109-6 hid:2019002587 plan does not start with 'home' activity: visit Person pid:2019006110-5 hid:2019002588 plan does not start with 'home' activity: visit Person pid:2019006143-6 hid:2019002604 plan does not start with 'home' activity: escort Person pid:2019006147-1 hid:2019002605 plan does not start with 'home' activity: shop Person pid:2019006146-3 hid:2019002605 plan does not start with 'home' activity: visit Person pid:2019006146-6 hid:2019002605 plan does not start with 'home' activity: shop Person pid:2019006147-5 hid:2019002605 plan does not start with 'home' activity: visit Person pid:2019006164-2 hid:2019002615 plan does not start with 'home' activity: shop Person pid:2019006166-3 hid:2019002617 plan does not start with 'home' activity: escort Person pid:2019006172-1 hid:2019002619 plan does not start with 'home' activity: work Person pid:2019006172-2 hid:2019002619 plan does not start with 'home' activity: work Person pid:2019006172-5 hid:2019002619 plan does not start with 'home' activity: work Person pid:2019006172-6 hid:2019002619 plan does not start with 'home' activity: work Person pid:2019006175-6 hid:2019002621 plan does not start with 'home' activity: visit Person pid:2019006192-3 hid:2019002630 plan does not start with 'home' activity: work Person pid:2019006192-4 hid:2019002630 plan does not start with 'home' activity: work Person pid:2019006192-7 hid:2019002630 plan does not start with 'home' activity: work Person pid:2019006226-2 hid:2019002642 plan does not start with 'home' activity: work Person pid:2019006226-3 hid:2019002642 plan does not start with 'home' activity: work Person pid:2019006231-4 hid:2019002643 plan does not start with 'home' activity: visit Person pid:2019006232-2 hid:2019002643 plan does not start with 'home' activity: visit Person pid:2019006232-4 hid:2019002643 plan does not start with 'home' activity: work Person pid:2019006238-3 hid:2019002645 plan does not start with 'home' activity: other Person pid:2019006243-1 hid:2019002646 plan does not start with 'home' activity: visit Person pid:2019006241-3 hid:2019002646 plan does not start with 'home' activity: shop Person pid:2019006244-5 hid:2019002646 plan does not start with 'home' activity: visit Person pid:2019006245-5 hid:2019002647 plan does not start with 'home' activity: visit Person pid:2019006245-7 hid:2019002647 plan does not start with 'home' activity: other Person pid:2019006267-2 hid:2019002658 plan does not start with 'home' activity: visit Person pid:2019006269-2 hid:2019002658 plan does not start with 'home' activity: visit Person pid:2019006270-4 hid:2019002658 plan does not start with 'home' activity: visit Person pid:2019006268-3 hid:2019002658 plan does not start with 'home' activity: visit Person pid:2019006272-2 hid:2019002660 plan does not start with 'home' activity: visit Person pid:2019006272-6 hid:2019002660 plan does not start with 'home' activity: visit Person pid:2019006288-6 hid:2019002666 plan does not start with 'home' activity: other Person pid:2019006288-7 hid:2019002666 plan does not start with 'home' activity: other Person pid:2019006289-2 hid:2019002667 plan does not start with 'home' activity: work Person pid:2019006289-6 hid:2019002667 plan does not start with 'home' activity: work Person pid:2019006300-3 hid:2019002670 plan does not start with 'home' activity: visit Person pid:2019006299-3 hid:2019002670 plan does not start with 'home' activity: visit Person pid:2019006316-1 hid:2019002676 plan does not start with 'home' activity: other Person pid:2019006320-3 hid:2019002678 plan does not start with 'home' activity: visit Person pid:2019006321-4 hid:2019002678 plan does not start with 'home' activity: visit Person pid:2019006319-4 hid:2019002678 plan does not start with 'home' activity: visit Person pid:2019006329-1 hid:2019002685 plan does not start with 'home' activity: visit Person pid:2019006329-7 hid:2019002685 plan does not start with 'home' activity: visit Person pid:2019006335-2 hid:2019002687 plan does not start with 'home' activity: visit Person pid:2019006332-3 hid:2019002687 plan does not start with 'home' activity: other Person pid:2019006332-4 hid:2019002687 plan does not start with 'home' activity: visit Person pid:2019006344-1 hid:2019002691 plan does not start with 'home' activity: work Person pid:2019006345-1 hid:2019002691 plan does not start with 'home' activity: visit Person pid:2019006345-2 hid:2019002691 plan does not start with 'home' activity: other Person pid:2019006346-1 hid:2019002691 plan does not start with 'home' activity: other Person pid:2019006343-2 hid:2019002691 plan does not start with 'home' activity: work Person pid:2019006343-4 hid:2019002691 plan does not start with 'home' activity: work Person pid:2019006345-5 hid:2019002691 plan does not start with 'home' activity: other Person pid:2019006373-3 hid:2019002701 plan does not start with 'home' activity: education Person pid:2019006376-4 hid:2019002703 plan does not start with 'home' activity: work Person pid:2019006375-7 hid:2019002703 plan does not start with 'home' activity: other Person pid:2019006389-4 hid:2019002711 plan does not start with 'home' activity: work Person pid:2019006389-5 hid:2019002711 plan does not start with 'home' activity: work Person pid:2019006390-3 hid:2019002712 plan does not start with 'home' activity: work Person pid:2019006390-4 hid:2019002712 plan does not start with 'home' activity: work Person pid:2019006411-6 hid:2019002720 plan does not start with 'home' activity: visit Person pid:2019006421-3 hid:2019002722 plan does not start with 'home' activity: visit Person pid:2019006421-4 hid:2019002722 plan does not start with 'home' activity: visit Person pid:2019006454-6 hid:2019002732 plan does not start with 'home' activity: visit Person pid:2019006499-5 hid:2019002750 plan does not start with 'home' activity: visit Person pid:2019006505-3 hid:2019002752 plan does not start with 'home' activity: visit Person pid:2019006506-1 hid:2019002752 plan does not start with 'home' activity: other Person pid:2019006505-6 hid:2019002752 plan does not start with 'home' activity: visit Person pid:2019006523-1 hid:2019002758 plan does not start with 'home' activity: visit Person pid:2019006533-2 hid:2019002763 plan does not start with 'home' activity: visit Person pid:2019006533-4 hid:2019002763 plan does not start with 'home' activity: visit Person pid:2019006535-2 hid:2019002764 plan does not start with 'home' activity: work Person pid:2019006541-1 hid:2019002767 plan does not start with 'home' activity: other Person pid:2019006549-6 hid:2019002772 plan does not start with 'home' activity: visit Person pid:2019006551-3 hid:2019002773 plan does not start with 'home' activity: other Person pid:2019006566-2 hid:2019002779 plan does not start with 'home' activity: visit Person pid:2019006563-6 hid:2019002779 plan does not start with 'home' activity: visit Person pid:2019006564-3 hid:2019002779 plan does not start with 'home' activity: visit Person pid:2019006565-6 hid:2019002779 plan does not start with 'home' activity: visit Person pid:2019006602-1 hid:2019002792 plan does not start with 'home' activity: work Person pid:2019006602-2 hid:2019002792 plan does not start with 'home' activity: work Person pid:2019006603-1 hid:2019002792 plan does not start with 'home' activity: work Person pid:2019006603-3 hid:2019002792 plan does not start with 'home' activity: work Person pid:2019006604-1 hid:2019002792 plan does not start with 'home' activity: work Person pid:2019006604-2 hid:2019002792 plan does not start with 'home' activity: work Person pid:2019006603-4 hid:2019002792 plan does not start with 'home' activity: work Person pid:2019006603-5 hid:2019002792 plan does not start with 'home' activity: work Person pid:2019006604-3 hid:2019002792 plan does not start with 'home' activity: work Person pid:2019006602-4 hid:2019002792 plan does not start with 'home' activity: work Person pid:2019006602-5 hid:2019002792 plan does not start with 'home' activity: work Person pid:2019006604-4 hid:2019002792 plan does not start with 'home' activity: work Person pid:2019006604-5 hid:2019002792 plan does not start with 'home' activity: work Person pid:2019006602-6 hid:2019002792 plan does not start with 'home' activity: work Person pid:2019006603-6 hid:2019002792 plan does not start with 'home' activity: work Person pid:2019006607-3 hid:2019002794 plan does not start with 'home' activity: visit Person pid:2019006608-3 hid:2019002794 plan does not start with 'home' activity: visit Person pid:2019006608-4 hid:2019002794 plan does not start with 'home' activity: visit Person pid:2019006607-7 hid:2019002794 plan does not start with 'home' activity: visit Person pid:2019006608-6 hid:2019002794 plan does not start with 'home' activity: visit Person pid:2019006627-6 hid:2019002803 plan does not start with 'home' activity: other Person pid:2019006636-5 hid:2019002806 plan does not start with 'home' activity: other Person pid:2019006645-1 hid:2019002811 plan does not start with 'home' activity: visit Person pid:2019006645-5 hid:2019002811 plan does not start with 'home' activity: visit Person pid:2019006646-1 hid:2019002811 plan does not start with 'home' activity: visit Person pid:2019006646-4 hid:2019002811 plan does not start with 'home' activity: visit Person pid:2019006648-6 hid:2019002812 plan does not start with 'home' activity: other Person pid:2019006665-2 hid:2019002817 plan does not start with 'home' activity: work Person pid:2019006665-6 hid:2019002817 plan does not start with 'home' activity: work Person pid:2019006675-4 hid:2019002821 plan does not start with 'home' activity: other Person pid:2019006676-5 hid:2019002821 plan does not start with 'home' activity: other Person pid:2019006682-1 hid:2019002824 plan does not start with 'home' activity: visit Person pid:2019006683-2 hid:2019002824 plan does not start with 'home' activity: visit Person pid:2019006683-3 hid:2019002824 plan does not start with 'home' activity: visit Person pid:2019006683-6 hid:2019002824 plan does not start with 'home' activity: visit Person pid:2019006683-7 hid:2019002824 plan does not start with 'home' activity: visit Person pid:2019006682-5 hid:2019002824 plan does not start with 'home' activity: visit Person pid:2019006682-6 hid:2019002824 plan does not start with 'home' activity: visit Person pid:2019006681-6 hid:2019002824 plan does not start with 'home' activity: other Person pid:2019006686-2 hid:2019002826 plan does not start with 'home' activity: visit Person pid:2019006692-1 hid:2019002829 plan does not start with 'home' activity: work Person pid:2019006699-5 hid:2019002832 plan does not start with 'home' activity: other Person pid:2019006706-2 hid:2019002836 plan does not start with 'home' activity: other Person pid:2019006736-3 hid:2019002847 plan does not start with 'home' activity: escort Person pid:2019006735-2 hid:2019002847 plan does not start with 'home' activity: escort Person pid:2019006768-4 hid:2019002859 plan does not start with 'home' activity: work Person pid:2019006771-1 hid:2019002860 plan does not start with 'home' activity: visit Person pid:2019006771-7 hid:2019002860 plan does not start with 'home' activity: visit Person pid:2019006788-2 hid:2019002869 plan does not start with 'home' activity: visit Person pid:2019006786-6 hid:2019002869 plan does not start with 'home' activity: work Person pid:2019006789-5 hid:2019002870 plan does not start with 'home' activity: visit Person pid:2019006818-5 hid:2019002882 plan does not start with 'home' activity: shop Person pid:2019006823-4 hid:2019002884 plan does not start with 'home' activity: visit Person pid:2019006824-5 hid:2019002884 plan does not start with 'home' activity: visit Person pid:2019006848-2 hid:2019002894 plan does not start with 'home' activity: other Person pid:2019006859-5 hid:2019002898 plan does not start with 'home' activity: work Person pid:2019006859-6 hid:2019002898 plan does not start with 'home' activity: work Person pid:2019006859-7 hid:2019002898 plan does not start with 'home' activity: work Person pid:2019006860-1 hid:2019002899 plan does not start with 'home' activity: other Person pid:2019006871-1 hid:2019002905 plan does not start with 'home' activity: work Person pid:2019006871-2 hid:2019002905 plan does not start with 'home' activity: work Person pid:2019006871-4 hid:2019002905 plan does not start with 'home' activity: visit Person pid:2019006876-3 hid:2019002907 plan does not start with 'home' activity: other Person pid:2019006875-2 hid:2019002907 plan does not start with 'home' activity: other Person pid:2019006873-5 hid:2019002907 plan does not start with 'home' activity: other Person pid:2019006899-1 hid:2019002915 plan does not start with 'home' activity: other Person pid:2019006911-6 hid:2019002919 plan does not start with 'home' activity: work Person pid:2019006915-3 hid:2019002920 plan does not start with 'home' activity: other Person pid:2019006928-2 hid:2019002926 plan does not start with 'home' activity: work Person pid:2019006928-3 hid:2019002926 plan does not start with 'home' activity: work Person pid:2019006928-6 hid:2019002926 plan does not start with 'home' activity: work Person pid:2019006933-4 hid:2019002927 plan does not start with 'home' activity: work Person pid:2019006933-6 hid:2019002927 plan does not start with 'home' activity: work Person pid:2019006973-2 hid:2019002947 plan does not start with 'home' activity: work Person pid:2019006976-1 hid:2019002947 plan does not start with 'home' activity: work Person pid:2019006976-3 hid:2019002947 plan does not start with 'home' activity: work Person pid:2019006975-3 hid:2019002947 plan does not start with 'home' activity: work Person pid:2019006975-6 hid:2019002947 plan does not start with 'home' activity: work Person pid:2019006981-1 hid:2019002949 plan does not start with 'home' activity: education Person pid:2019006981-2 hid:2019002949 plan does not start with 'home' activity: education Person pid:2019006981-5 hid:2019002949 plan does not start with 'home' activity: education Person pid:2019006984-1 hid:2019002950 plan does not start with 'home' activity: work Person pid:2019006984-3 hid:2019002950 plan does not start with 'home' activity: work Person pid:2019006984-4 hid:2019002950 plan does not start with 'home' activity: work Person pid:2019006984-5 hid:2019002950 plan does not start with 'home' activity: work Person pid:2019006989-1 hid:2019002952 plan does not start with 'home' activity: visit Person pid:2019006990-4 hid:2019002952 plan does not start with 'home' activity: visit Person pid:2019007000-1 hid:2019002955 plan does not start with 'home' activity: visit Person pid:2019007035-4 hid:2019002971 plan does not start with 'home' activity: education Person pid:2019007039-1 hid:2019002973 plan does not start with 'home' activity: work Person pid:2019007039-2 hid:2019002973 plan does not start with 'home' activity: other Person pid:2019007040-4 hid:2019002973 plan does not start with 'home' activity: other Person pid:2019007062-3 hid:2019002982 plan does not start with 'home' activity: visit Person pid:2019007063-3 hid:2019002982 plan does not start with 'home' activity: visit Person pid:2019007059-6 hid:2019002982 plan does not start with 'home' activity: visit Person pid:2019007069-3 hid:2019002985 plan does not start with 'home' activity: visit Person pid:2019007069-4 hid:2019002985 plan does not start with 'home' activity: visit Person pid:2019007070-3 hid:2019002985 plan does not start with 'home' activity: other Person pid:2019007075-2 hid:2019002987 plan does not start with 'home' activity: visit Person pid:2019007076-1 hid:2019002987 plan does not start with 'home' activity: visit Person pid:2019007074-3 hid:2019002987 plan does not start with 'home' activity: visit Person pid:2019007076-2 hid:2019002987 plan does not start with 'home' activity: visit Person pid:2019007076-3 hid:2019002987 plan does not start with 'home' activity: visit Person pid:2019007074-4 hid:2019002987 plan does not start with 'home' activity: visit Person pid:2019007075-5 hid:2019002987 plan does not start with 'home' activity: visit Person pid:2019007076-5 hid:2019002987 plan does not start with 'home' activity: visit Person pid:2019007075-6 hid:2019002987 plan does not start with 'home' activity: visit Person pid:2019007075-7 hid:2019002987 plan does not start with 'home' activity: visit Person pid:2019007086-1 hid:2019002992 plan does not start with 'home' activity: other Person pid:2019007089-5 hid:2019002993 plan does not start with 'home' activity: education Person pid:2019007089-6 hid:2019002993 plan does not start with 'home' activity: education Person pid:2019007095-3 hid:2019002996 plan does not start with 'home' activity: visit Person pid:2019007103-2 hid:2019002999 plan does not start with 'home' activity: other Person pid:2019007102-7 hid:2019002999 plan does not start with 'home' activity: work Person pid:2019007105-4 hid:2019003000 plan does not start with 'home' activity: work Person pid:2019007125-3 hid:2019003008 plan does not start with 'home' activity: education Person pid:2019007126-4 hid:2019003008 plan does not start with 'home' activity: education Person pid:2019007125-4 hid:2019003008 plan does not start with 'home' activity: education Person pid:2019007126-5 hid:2019003008 plan does not start with 'home' activity: education Person pid:2019007127-1 hid:2019003009 plan does not start with 'home' activity: escort Person pid:2019007129-2 hid:2019003009 plan does not start with 'home' activity: other Person pid:2019007140-1 hid:2019003013 plan does not start with 'home' activity: visit Person pid:2019007140-2 hid:2019003013 plan does not start with 'home' activity: visit Person pid:2019007141-1 hid:2019003013 plan does not start with 'home' activity: other Person pid:2019007141-2 hid:2019003013 plan does not start with 'home' activity: visit Person pid:2019007140-3 hid:2019003013 plan does not start with 'home' activity: visit Person pid:2019007140-4 hid:2019003013 plan does not start with 'home' activity: visit Person pid:2019007141-3 hid:2019003013 plan does not start with 'home' activity: visit Person pid:2019007140-5 hid:2019003013 plan does not start with 'home' activity: other Person pid:2019007141-5 hid:2019003013 plan does not start with 'home' activity: visit Person pid:2019007140-6 hid:2019003013 plan does not start with 'home' activity: visit Person pid:2019007141-7 hid:2019003013 plan does not start with 'home' activity: visit Person pid:2019007148-2 hid:2019003017 plan does not start with 'home' activity: escort Person pid:2019007149-3 hid:2019003017 plan does not start with 'home' activity: escort Person pid:2019007148-4 hid:2019003017 plan does not start with 'home' activity: escort Person pid:2019007149-4 hid:2019003017 plan does not start with 'home' activity: escort Person pid:2019007150-2 hid:2019003017 plan does not start with 'home' activity: education Person pid:2019007150-7 hid:2019003017 plan does not start with 'home' activity: education Person pid:2019007151-1 hid:2019003018 plan does not start with 'home' activity: shop Person pid:2019007156-3 hid:2019003021 plan does not start with 'home' activity: work Person pid:2019007156-4 hid:2019003021 plan does not start with 'home' activity: work Person pid:2019007156-6 hid:2019003021 plan does not start with 'home' activity: work Person pid:2019007167-5 hid:2019003025 plan does not start with 'home' activity: visit Person pid:2019007168-5 hid:2019003025 plan does not start with 'home' activity: visit Person pid:2019007169-3 hid:2019003026 plan does not start with 'home' activity: work Person pid:2019007173-4 hid:2019003027 plan does not start with 'home' activity: visit Person pid:2019007179-2 hid:2019003030 plan does not start with 'home' activity: other Person pid:2019007180-6 hid:2019003031 plan does not start with 'home' activity: visit Person pid:2019007182-1 hid:2019003032 plan does not start with 'home' activity: other Person pid:2019007182-6 hid:2019003032 plan does not start with 'home' activity: visit Person pid:2019007184-3 hid:2019003033 plan does not start with 'home' activity: visit Person pid:2019007203-4 hid:2019003040 plan does not start with 'home' activity: visit Person pid:2019007214-3 hid:2019003045 plan does not start with 'home' activity: work Person pid:2019007218-5 hid:2019003048 plan does not start with 'home' activity: work Person pid:2019007225-4 hid:2019003052 plan does not start with 'home' activity: other Person pid:2019007237-3 hid:2019003057 plan does not start with 'home' activity: escort Person pid:2019007248-1 hid:2019003061 plan does not start with 'home' activity: work Person pid:2019007249-4 hid:2019003061 plan does not start with 'home' activity: visit Person pid:2019007250-1 hid:2019003062 plan does not start with 'home' activity: visit Person pid:2019007250-2 hid:2019003062 plan does not start with 'home' activity: visit Person pid:2019007266-2 hid:2019003068 plan does not start with 'home' activity: visit Person pid:2019007268-2 hid:2019003068 plan does not start with 'home' activity: visit Person pid:2019007266-3 hid:2019003068 plan does not start with 'home' activity: visit Person pid:2019007268-4 hid:2019003068 plan does not start with 'home' activity: visit Person pid:2019007267-4 hid:2019003068 plan does not start with 'home' activity: visit Person pid:2019007267-5 hid:2019003068 plan does not start with 'home' activity: visit Person pid:2019007273-6 hid:2019003070 plan does not start with 'home' activity: visit Person pid:2019007274-7 hid:2019003070 plan does not start with 'home' activity: visit Person pid:2019007289-1 hid:2019003077 plan does not start with 'home' activity: medical Person pid:2019007309-2 hid:2019003084 plan does not start with 'home' activity: work Person pid:2019007312-1 hid:2019003085 plan does not start with 'home' activity: work Person pid:2019007312-3 hid:2019003085 plan does not start with 'home' activity: work Person pid:2019007312-6 hid:2019003085 plan does not start with 'home' activity: visit Person pid:2019007312-7 hid:2019003085 plan does not start with 'home' activity: work Person pid:2019007317-1 hid:2019003086 plan does not start with 'home' activity: education Person pid:2019007334-6 hid:2019003092 plan does not start with 'home' activity: escort Person pid:2019007335-4 hid:2019003092 plan does not start with 'home' activity: other Person pid:2019007339-1 hid:2019003093 plan does not start with 'home' activity: other Person pid:2019007360-1 hid:2019003100 plan does not start with 'home' activity: visit Person pid:2019007390-1 hid:2019003111 plan does not start with 'home' activity: escort Person pid:2019007388-3 hid:2019003111 plan does not start with 'home' activity: visit Person pid:2019007390-2 hid:2019003111 plan does not start with 'home' activity: visit Person pid:2019007390-5 hid:2019003111 plan does not start with 'home' activity: visit Person pid:2019007388-7 hid:2019003111 plan does not start with 'home' activity: visit Person pid:2019007389-7 hid:2019003111 plan does not start with 'home' activity: visit Person pid:2019007405-2 hid:2019003115 plan does not start with 'home' activity: visit Person pid:2019007407-1 hid:2019003116 plan does not start with 'home' activity: work Person pid:2019007407-3 hid:2019003116 plan does not start with 'home' activity: work Person pid:2019007424-5 hid:2019003124 plan does not start with 'home' activity: work Person pid:2019007441-1 hid:2019003131 plan does not start with 'home' activity: visit Person pid:2019007441-5 hid:2019003131 plan does not start with 'home' activity: work Person pid:2019007447-1 hid:2019003133 plan does not start with 'home' activity: education Person pid:2019007448-3 hid:2019003133 plan does not start with 'home' activity: education Person pid:2019007474-2 hid:2019003145 plan does not start with 'home' activity: education Person pid:2019007472-4 hid:2019003145 plan does not start with 'home' activity: escort Person pid:2019007475-2 hid:2019003145 plan does not start with 'home' activity: escort Person pid:2019007475-3 hid:2019003145 plan does not start with 'home' activity: visit Person pid:2019007472-6 hid:2019003145 plan does not start with 'home' activity: other Person pid:2019007513-1 hid:2019003164 plan does not start with 'home' activity: other Person pid:2019007528-6 hid:2019003171 plan does not start with 'home' activity: visit Person pid:2019007531-1 hid:2019003173 plan does not start with 'home' activity: work Person pid:2019007531-5 hid:2019003173 plan does not start with 'home' activity: work Person pid:2019007531-6 hid:2019003173 plan does not start with 'home' activity: work Person pid:2019007532-5 hid:2019003173 plan does not start with 'home' activity: visit Person pid:2019007533-5 hid:2019003173 plan does not start with 'home' activity: work Person pid:2019007534-1 hid:2019003174 plan does not start with 'home' activity: visit Person pid:2019007539-5 hid:2019003177 plan does not start with 'home' activity: visit Person pid:2019007540-7 hid:2019003177 plan does not start with 'home' activity: visit Person pid:2019007557-5 hid:2019003185 plan does not start with 'home' activity: other Person pid:2019007558-6 hid:2019003185 plan does not start with 'home' activity: other Person pid:2019007562-4 hid:2019003187 plan does not start with 'home' activity: visit Person pid:2019007566-4 hid:2019003189 plan does not start with 'home' activity: visit Person pid:2019007571-3 hid:2019003191 plan does not start with 'home' activity: other Person pid:2019007575-2 hid:2019003192 plan does not start with 'home' activity: visit Person pid:2019007575-3 hid:2019003192 plan does not start with 'home' activity: visit Person pid:2019007576-2 hid:2019003192 plan does not start with 'home' activity: visit Person pid:2019007576-3 hid:2019003192 plan does not start with 'home' activity: visit Person pid:2019007574-6 hid:2019003192 plan does not start with 'home' activity: visit Person pid:2019007575-5 hid:2019003192 plan does not start with 'home' activity: visit Person pid:2019007575-6 hid:2019003192 plan does not start with 'home' activity: visit Person pid:2019007574-7 hid:2019003192 plan does not start with 'home' activity: work Person pid:2019007575-7 hid:2019003192 plan does not start with 'home' activity: visit Person pid:2019007576-6 hid:2019003192 plan does not start with 'home' activity: visit Person pid:2019007576-7 hid:2019003192 plan does not start with 'home' activity: visit Person pid:2019007598-2 hid:2019003204 plan does not start with 'home' activity: escort Person pid:2019007596-4 hid:2019003204 plan does not start with 'home' activity: shop Person pid:2019007597-2 hid:2019003204 plan does not start with 'home' activity: shop Person pid:2019007602-5 hid:2019003206 plan does not start with 'home' activity: visit Person pid:2019007620-2 hid:2019003215 plan does not start with 'home' activity: visit Person pid:2019007620-6 hid:2019003215 plan does not start with 'home' activity: work Person pid:2019007631-3 hid:2019003220 plan does not start with 'home' activity: other Person pid:2019007634-1 hid:2019003221 plan does not start with 'home' activity: visit Person pid:2019007645-3 hid:2019003226 plan does not start with 'home' activity: visit Person pid:2019007645-5 hid:2019003226 plan does not start with 'home' activity: other Person pid:2019007641-5 hid:2019003226 plan does not start with 'home' activity: work Person pid:2019007643-5 hid:2019003226 plan does not start with 'home' activity: other Person pid:2019007650-1 hid:2019003228 plan does not start with 'home' activity: visit Person pid:2019007654-1 hid:2019003229 plan does not start with 'home' activity: visit Person pid:2019007653-5 hid:2019003229 plan does not start with 'home' activity: visit Person pid:2019007653-6 hid:2019003229 plan does not start with 'home' activity: education Person pid:2019007667-4 hid:2019003234 plan does not start with 'home' activity: visit Person pid:2019007667-5 hid:2019003234 plan does not start with 'home' activity: visit Person pid:2019007668-4 hid:2019003234 plan does not start with 'home' activity: visit Person pid:2019007668-5 hid:2019003234 plan does not start with 'home' activity: visit Person pid:2019007668-6 hid:2019003234 plan does not start with 'home' activity: visit Person pid:2019007675-7 hid:2019003237 plan does not start with 'home' activity: visit Person pid:2019007679-2 hid:2019003239 plan does not start with 'home' activity: work Person pid:2019007679-5 hid:2019003239 plan does not start with 'home' activity: work Person pid:2019007679-6 hid:2019003239 plan does not start with 'home' activity: work Person pid:2019007679-7 hid:2019003239 plan does not start with 'home' activity: work Person pid:2019007683-2 hid:2019003240 plan does not start with 'home' activity: work Person pid:2019007683-7 hid:2019003240 plan does not start with 'home' activity: work Person pid:2019007692-2 hid:2019003246 plan does not start with 'home' activity: other Person pid:2019007693-4 hid:2019003247 plan does not start with 'home' activity: other Person pid:2019007709-1 hid:2019003253 plan does not start with 'home' activity: visit Person pid:2019007710-6 hid:2019003253 plan does not start with 'home' activity: visit Person pid:2019007713-1 hid:2019003254 plan does not start with 'home' activity: visit Person pid:2019007713-2 hid:2019003254 plan does not start with 'home' activity: other Person pid:2019007713-5 hid:2019003254 plan does not start with 'home' activity: visit Person pid:2019007731-1 hid:2019003262 plan does not start with 'home' activity: other Person pid:2019007733-1 hid:2019003262 plan does not start with 'home' activity: other Person pid:2019007733-2 hid:2019003262 plan does not start with 'home' activity: education Person pid:2019007734-2 hid:2019003262 plan does not start with 'home' activity: escort Person pid:2019007733-3 hid:2019003262 plan does not start with 'home' activity: other Person pid:2019007732-3 hid:2019003262 plan does not start with 'home' activity: other Person pid:2019007734-4 hid:2019003262 plan does not start with 'home' activity: education Person pid:2019007743-7 hid:2019003265 plan does not start with 'home' activity: other Person pid:2019007750-2 hid:2019003268 plan does not start with 'home' activity: visit Person pid:2019007751-3 hid:2019003268 plan does not start with 'home' activity: visit Person pid:2019007756-5 hid:2019003270 plan does not start with 'home' activity: education Person pid:2019007757-7 hid:2019003270 plan does not start with 'home' activity: education Person pid:2019007758-7 hid:2019003270 plan does not start with 'home' activity: other Person pid:2019007776-3 hid:2019003279 plan does not start with 'home' activity: other Person pid:2019007784-1 hid:2019003283 plan does not start with 'home' activity: visit Person pid:2019007785-1 hid:2019003283 plan does not start with 'home' activity: visit Person pid:2019007785-3 hid:2019003283 plan does not start with 'home' activity: visit Person pid:2019007784-2 hid:2019003283 plan does not start with 'home' activity: visit Person pid:2019007784-3 hid:2019003283 plan does not start with 'home' activity: visit Person pid:2019007785-4 hid:2019003283 plan does not start with 'home' activity: visit Person pid:2019007785-5 hid:2019003283 plan does not start with 'home' activity: visit Person pid:2019007785-6 hid:2019003283 plan does not start with 'home' activity: visit Person pid:2019007784-4 hid:2019003283 plan does not start with 'home' activity: visit Person pid:2019007784-5 hid:2019003283 plan does not start with 'home' activity: visit Person pid:2019007784-6 hid:2019003283 plan does not start with 'home' activity: visit Person pid:2019007788-5 hid:2019003285 plan does not start with 'home' activity: visit Person pid:2019007789-5 hid:2019003285 plan does not start with 'home' activity: visit Person pid:2019007804-1 hid:2019003293 plan does not start with 'home' activity: work Person pid:2019007823-2 hid:2019003302 plan does not start with 'home' activity: visit Person pid:2019007823-3 hid:2019003302 plan does not start with 'home' activity: visit Person pid:2019007822-2 hid:2019003302 plan does not start with 'home' activity: visit Person pid:2019007824-2 hid:2019003302 plan does not start with 'home' activity: visit Person pid:2019007824-4 hid:2019003302 plan does not start with 'home' activity: visit Person pid:2019007822-5 hid:2019003302 plan does not start with 'home' activity: visit Person pid:2019007827-1 hid:2019003303 plan does not start with 'home' activity: visit Person pid:2019007825-1 hid:2019003303 plan does not start with 'home' activity: visit Person pid:2019007827-3 hid:2019003303 plan does not start with 'home' activity: visit Person pid:2019007825-5 hid:2019003303 plan does not start with 'home' activity: visit Person pid:2019007826-3 hid:2019003303 plan does not start with 'home' activity: visit Person pid:2019007826-6 hid:2019003303 plan does not start with 'home' activity: visit Person pid:2019007829-3 hid:2019003304 plan does not start with 'home' activity: escort Person pid:2019007829-7 hid:2019003304 plan does not start with 'home' activity: other Person pid:2019007833-3 hid:2019003305 plan does not start with 'home' activity: visit Person pid:2019007834-5 hid:2019003305 plan does not start with 'home' activity: work Person pid:2019007833-7 hid:2019003305 plan does not start with 'home' activity: visit Person pid:2019007842-1 hid:2019003309 plan does not start with 'home' activity: shop Person pid:2019007859-1 hid:2019003319 plan does not start with 'home' activity: work Person pid:2019007859-2 hid:2019003319 plan does not start with 'home' activity: visit Person pid:2019007862-2 hid:2019003321 plan does not start with 'home' activity: work Person pid:2019007862-6 hid:2019003321 plan does not start with 'home' activity: work Person pid:2019007867-4 hid:2019003324 plan does not start with 'home' activity: work Person pid:2019007902-1 hid:2019003340 plan does not start with 'home' activity: work Person pid:2019007927-2 hid:2019003352 plan does not start with 'home' activity: visit Person pid:2019007927-3 hid:2019003352 plan does not start with 'home' activity: visit Person pid:2019007927-7 hid:2019003352 plan does not start with 'home' activity: visit Person pid:2019007931-2 hid:2019003353 plan does not start with 'home' activity: visit Person pid:2019007931-3 hid:2019003353 plan does not start with 'home' activity: other Person pid:2019007936-1 hid:2019003355 plan does not start with 'home' activity: visit Person pid:2019007936-2 hid:2019003355 plan does not start with 'home' activity: visit Person pid:2019007936-3 hid:2019003355 plan does not start with 'home' activity: visit Person pid:2019007942-1 hid:2019003359 plan does not start with 'home' activity: visit Person pid:2019007942-2 hid:2019003359 plan does not start with 'home' activity: visit Person pid:2019007943-2 hid:2019003359 plan does not start with 'home' activity: visit Person pid:2019007943-3 hid:2019003359 plan does not start with 'home' activity: visit Person pid:2019007944-2 hid:2019003359 plan does not start with 'home' activity: visit Person pid:2019007944-3 hid:2019003359 plan does not start with 'home' activity: visit Person pid:2019007944-5 hid:2019003359 plan does not start with 'home' activity: other Person pid:2019007943-5 hid:2019003359 plan does not start with 'home' activity: other Person pid:2019007942-7 hid:2019003359 plan does not start with 'home' activity: other Person pid:2019007958-2 hid:2019003364 plan does not start with 'home' activity: work Person pid:2019007958-4 hid:2019003364 plan does not start with 'home' activity: work Person pid:2019007958-5 hid:2019003364 plan does not start with 'home' activity: visit Person pid:2019007977-2 hid:2019003373 plan does not start with 'home' activity: other Person pid:2019007979-1 hid:2019003373 plan does not start with 'home' activity: other Person pid:2019007977-4 hid:2019003373 plan does not start with 'home' activity: escort Person pid:2019007979-3 hid:2019003373 plan does not start with 'home' activity: escort Person pid:2019007986-2 hid:2019003376 plan does not start with 'home' activity: visit Person pid:2019007999-1 hid:2019003382 plan does not start with 'home' activity: work Person pid:2019007999-3 hid:2019003382 plan does not start with 'home' activity: work Person pid:2019007999-4 hid:2019003382 plan does not start with 'home' activity: work Person pid:2019008013-3 hid:2019003391 plan does not start with 'home' activity: visit Person pid:2019008024-3 hid:2019003395 plan does not start with 'home' activity: visit Person pid:2019008023-3 hid:2019003395 plan does not start with 'home' activity: visit Person pid:2019008021-6 hid:2019003395 plan does not start with 'home' activity: visit Person pid:2019008024-5 hid:2019003395 plan does not start with 'home' activity: visit Person pid:2019008031-4 hid:2019003399 plan does not start with 'home' activity: visit Person pid:2019008035-4 hid:2019003400 plan does not start with 'home' activity: visit Person pid:2019008037-2 hid:2019003401 plan does not start with 'home' activity: other Person pid:2019008036-6 hid:2019003401 plan does not start with 'home' activity: other Person pid:2019008038-6 hid:2019003401 plan does not start with 'home' activity: other Person pid:2019008048-3 hid:2019003404 plan does not start with 'home' activity: other Person pid:2019008055-2 hid:2019003406 plan does not start with 'home' activity: visit Person pid:2019008054-3 hid:2019003406 plan does not start with 'home' activity: visit Person pid:2019008062-5 hid:2019003408 plan does not start with 'home' activity: visit Person pid:2019008063-2 hid:2019003408 plan does not start with 'home' activity: visit Person pid:2019008067-2 hid:2019003410 plan does not start with 'home' activity: escort Person pid:2019008067-4 hid:2019003410 plan does not start with 'home' activity: other Person pid:2019008070-1 hid:2019003411 plan does not start with 'home' activity: work Person pid:2019008070-2 hid:2019003411 plan does not start with 'home' activity: work Person pid:2019008070-3 hid:2019003411 plan does not start with 'home' activity: work Person pid:2019008070-4 hid:2019003411 plan does not start with 'home' activity: work Person pid:2019008070-5 hid:2019003411 plan does not start with 'home' activity: work Person pid:2019008077-1 hid:2019003414 plan does not start with 'home' activity: work Person pid:2019008092-3 hid:2019003420 plan does not start with 'home' activity: visit Person pid:2019008096-5 hid:2019003422 plan does not start with 'home' activity: other Person pid:2019008109-1 hid:2019003429 plan does not start with 'home' activity: visit Person pid:2019008114-2 hid:2019003431 plan does not start with 'home' activity: visit Person pid:2019008118-1 hid:2019003434 plan does not start with 'home' activity: work Person pid:2019008132-1 hid:2019003440 plan does not start with 'home' activity: work Person pid:2019008133-2 hid:2019003440 plan does not start with 'home' activity: work Person pid:2019008133-3 hid:2019003440 plan does not start with 'home' activity: work Person pid:2019008132-3 hid:2019003440 plan does not start with 'home' activity: work Person pid:2019008132-6 hid:2019003440 plan does not start with 'home' activity: work Person pid:2019008133-4 hid:2019003440 plan does not start with 'home' activity: work Person pid:2019008132-7 hid:2019003440 plan does not start with 'home' activity: work Person pid:2019008133-6 hid:2019003440 plan does not start with 'home' activity: work Person pid:2019008133-7 hid:2019003440 plan does not start with 'home' activity: work Person pid:2019008138-1 hid:2019003441 plan does not start with 'home' activity: other Person pid:2019008145-3 hid:2019003444 plan does not start with 'home' activity: work Person pid:2019008145-4 hid:2019003444 plan does not start with 'home' activity: work Person pid:2019008147-4 hid:2019003445 plan does not start with 'home' activity: visit Person pid:2019008146-6 hid:2019003445 plan does not start with 'home' activity: visit Person pid:2019008148-2 hid:2019003446 plan does not start with 'home' activity: visit Person pid:2019008148-3 hid:2019003446 plan does not start with 'home' activity: visit Person pid:2019008149-2 hid:2019003446 plan does not start with 'home' activity: visit Person pid:2019008148-5 hid:2019003446 plan does not start with 'home' activity: visit Person pid:2019008148-6 hid:2019003446 plan does not start with 'home' activity: visit Person pid:2019008149-6 hid:2019003446 plan does not start with 'home' activity: visit Person pid:2019008153-2 hid:2019003448 plan does not start with 'home' activity: visit Person pid:2019008153-3 hid:2019003448 plan does not start with 'home' activity: work Person pid:2019008153-5 hid:2019003448 plan does not start with 'home' activity: visit Person pid:2019008153-6 hid:2019003448 plan does not start with 'home' activity: work Person pid:2019008153-7 hid:2019003448 plan does not start with 'home' activity: visit Person pid:2019008165-6 hid:2019003453 plan does not start with 'home' activity: visit Person pid:2019008165-7 hid:2019003453 plan does not start with 'home' activity: visit Person pid:2019008167-3 hid:2019003454 plan does not start with 'home' activity: work Person pid:2019008168-2 hid:2019003454 plan does not start with 'home' activity: visit Person pid:2019008169-2 hid:2019003454 plan does not start with 'home' activity: visit Person pid:2019008170-1 hid:2019003455 plan does not start with 'home' activity: visit Person pid:2019008179-3 hid:2019003459 plan does not start with 'home' activity: other Person pid:2019008201-2 hid:2019003468 plan does not start with 'home' activity: work Person pid:2019008201-4 hid:2019003468 plan does not start with 'home' activity: work Person pid:2019008201-5 hid:2019003468 plan does not start with 'home' activity: work Person pid:2019008206-2 hid:2019003470 plan does not start with 'home' activity: visit Person pid:2019008217-2 hid:2019003475 plan does not start with 'home' activity: escort Person pid:2019008240-2 hid:2019003485 plan does not start with 'home' activity: work Person pid:2019008240-4 hid:2019003485 plan does not start with 'home' activity: work Person pid:2019008240-5 hid:2019003485 plan does not start with 'home' activity: work Person pid:2019008240-6 hid:2019003485 plan does not start with 'home' activity: work Person pid:2019008248-2 hid:2019003489 plan does not start with 'home' activity: visit Person pid:2019008248-6 hid:2019003489 plan does not start with 'home' activity: visit Person pid:2019008254-5 hid:2019003490 plan does not start with 'home' activity: visit Person pid:2019008252-6 hid:2019003490 plan does not start with 'home' activity: other Person pid:2019008254-7 hid:2019003490 plan does not start with 'home' activity: visit Person pid:2019008256-5 hid:2019003492 plan does not start with 'home' activity: work Person pid:2019008260-3 hid:2019003493 plan does not start with 'home' activity: other Person pid:2019008258-3 hid:2019003493 plan does not start with 'home' activity: work Person pid:2019008258-4 hid:2019003493 plan does not start with 'home' activity: work Person pid:2019008260-5 hid:2019003493 plan does not start with 'home' activity: other Person pid:2019008258-6 hid:2019003493 plan does not start with 'home' activity: work Person pid:2019008258-7 hid:2019003493 plan does not start with 'home' activity: work Person pid:2019008261-1 hid:2019003494 plan does not start with 'home' activity: visit Person pid:2019008262-3 hid:2019003494 plan does not start with 'home' activity: visit Person pid:2019008261-5 hid:2019003494 plan does not start with 'home' activity: visit Person pid:2019008265-2 hid:2019003495 plan does not start with 'home' activity: visit Person pid:2019008288-2 hid:2019003503 plan does not start with 'home' activity: work Person pid:2019008288-3 hid:2019003503 plan does not start with 'home' activity: work Person pid:2019008291-4 hid:2019003504 plan does not start with 'home' activity: visit Person pid:2019008294-2 hid:2019003505 plan does not start with 'home' activity: other Person pid:2019008293-7 hid:2019003505 plan does not start with 'home' activity: work Person pid:2019008318-4 hid:2019003516 plan does not start with 'home' activity: visit Person pid:2019008327-1 hid:2019003519 plan does not start with 'home' activity: visit Person pid:2019008342-1 hid:2019003526 plan does not start with 'home' activity: visit Person pid:2019008348-4 hid:2019003529 plan does not start with 'home' activity: visit Person pid:2019008353-2 hid:2019003532 plan does not start with 'home' activity: visit Person pid:2019008390-2 hid:2019003552 plan does not start with 'home' activity: shop Person pid:2019008407-3 hid:2019003562 plan does not start with 'home' activity: work Person pid:2019008407-4 hid:2019003562 plan does not start with 'home' activity: work Person pid:2019008407-5 hid:2019003562 plan does not start with 'home' activity: work Person pid:2019008424-2 hid:2019003572 plan does not start with 'home' activity: work Person pid:2019008424-3 hid:2019003572 plan does not start with 'home' activity: work Person pid:2019008444-1 hid:2019003580 plan does not start with 'home' activity: visit Person pid:2019008443-1 hid:2019003580 plan does not start with 'home' activity: visit Person pid:2019008446-2 hid:2019003580 plan does not start with 'home' activity: visit Person pid:2019008442-2 hid:2019003580 plan does not start with 'home' activity: visit Person pid:2019008445-5 hid:2019003580 plan does not start with 'home' activity: visit Person pid:2019008500-1 hid:2019003604 plan does not start with 'home' activity: visit Person pid:2019008512-4 hid:2019003610 plan does not start with 'home' activity: visit Person pid:2019008526-2 hid:2019003614 plan does not start with 'home' activity: visit Person pid:2019008527-1 hid:2019003614 plan does not start with 'home' activity: visit Person pid:2019008548-7 hid:2019003623 plan does not start with 'home' activity: other Person pid:2019008550-1 hid:2019003625 plan does not start with 'home' activity: visit Person pid:2019008550-7 hid:2019003625 plan does not start with 'home' activity: visit Person pid:2019008562-5 hid:2019003632 plan does not start with 'home' activity: work Person pid:2019008573-1 hid:2019003637 plan does not start with 'home' activity: work Person pid:2019008574-5 hid:2019003637 plan does not start with 'home' activity: visit Person pid:2019008584-1 hid:2019003641 plan does not start with 'home' activity: visit Person pid:2019008599-1 hid:2019003649 plan does not start with 'home' activity: work Person pid:2019008601-1 hid:2019003649 plan does not start with 'home' activity: visit Person pid:2019008601-2 hid:2019003649 plan does not start with 'home' activity: visit Person pid:2019008601-5 hid:2019003649 plan does not start with 'home' activity: visit Person pid:2019008602-5 hid:2019003649 plan does not start with 'home' activity: escort Person pid:2019008601-7 hid:2019003649 plan does not start with 'home' activity: visit Person pid:2019008618-2 hid:2019003657 plan does not start with 'home' activity: visit Person pid:2019008626-1 hid:2019003660 plan does not start with 'home' activity: other Person pid:2019008637-3 hid:2019003665 plan does not start with 'home' activity: visit Person pid:2019008637-4 hid:2019003665 plan does not start with 'home' activity: visit Person pid:2019008697-4 hid:2019003687 plan does not start with 'home' activity: other Person pid:2019008696-3 hid:2019003687 plan does not start with 'home' activity: work Person pid:2019008696-4 hid:2019003687 plan does not start with 'home' activity: work Person pid:2019008713-2 hid:2019003693 plan does not start with 'home' activity: visit Person pid:2019008712-5 hid:2019003693 plan does not start with 'home' activity: visit Person pid:2019008714-5 hid:2019003693 plan does not start with 'home' activity: visit Person pid:2019008715-4 hid:2019003693 plan does not start with 'home' activity: visit Person pid:2019008718-4 hid:2019003695 plan does not start with 'home' activity: work Person pid:2019008721-3 hid:2019003695 plan does not start with 'home' activity: visit Person pid:2019008734-3 hid:2019003701 plan does not start with 'home' activity: visit Person pid:2019008734-4 hid:2019003701 plan does not start with 'home' activity: visit Person pid:2019008743-2 hid:2019003706 plan does not start with 'home' activity: visit Person pid:2019008744-1 hid:2019003706 plan does not start with 'home' activity: other Person pid:2019008744-2 hid:2019003706 plan does not start with 'home' activity: work Person pid:2019008743-3 hid:2019003706 plan does not start with 'home' activity: visit Person pid:2019008744-4 hid:2019003706 plan does not start with 'home' activity: work Person pid:2019008744-7 hid:2019003706 plan does not start with 'home' activity: work Person pid:2019008745-6 hid:2019003707 plan does not start with 'home' activity: visit Person pid:2019008748-3 hid:2019003709 plan does not start with 'home' activity: visit Person pid:2019008748-4 hid:2019003709 plan does not start with 'home' activity: visit Person pid:2019008780-4 hid:2019003723 plan does not start with 'home' activity: visit Person pid:2019008780-5 hid:2019003723 plan does not start with 'home' activity: other Person pid:2019008779-5 hid:2019003723 plan does not start with 'home' activity: work Person pid:2019008796-1 hid:2019003731 plan does not start with 'home' activity: visit Person pid:2019008796-2 hid:2019003731 plan does not start with 'home' activity: visit Person pid:2019008796-3 hid:2019003731 plan does not start with 'home' activity: visit Person pid:2019008796-5 hid:2019003731 plan does not start with 'home' activity: visit Person pid:2019008803-7 hid:2019003734 plan does not start with 'home' activity: visit Person pid:2019008806-3 hid:2019003736 plan does not start with 'home' activity: work Person pid:2019008823-4 hid:2019003743 plan does not start with 'home' activity: visit Person pid:2019008824-4 hid:2019003743 plan does not start with 'home' activity: visit Person pid:2019008825-4 hid:2019003743 plan does not start with 'home' activity: visit Person pid:2019008834-3 hid:2019003747 plan does not start with 'home' activity: visit Person pid:2019008834-4 hid:2019003747 plan does not start with 'home' activity: visit Person pid:2019008835-4 hid:2019003747 plan does not start with 'home' activity: visit Person pid:2019008835-5 hid:2019003747 plan does not start with 'home' activity: visit Person pid:2019008870-1 hid:2019003762 plan does not start with 'home' activity: other Person pid:2019008870-2 hid:2019003762 plan does not start with 'home' activity: other Person pid:2019008870-3 hid:2019003762 plan does not start with 'home' activity: other Person pid:2019008875-5 hid:2019003764 plan does not start with 'home' activity: visit Person pid:2019008882-2 hid:2019003769 plan does not start with 'home' activity: work Person pid:2019008882-4 hid:2019003769 plan does not start with 'home' activity: work Person pid:2019008882-5 hid:2019003769 plan does not start with 'home' activity: work Person pid:2019008882-6 hid:2019003769 plan does not start with 'home' activity: work Person pid:2019008890-1 hid:2019003772 plan does not start with 'home' activity: other Person pid:2019008890-2 hid:2019003772 plan does not start with 'home' activity: visit Person pid:2019008890-3 hid:2019003772 plan does not start with 'home' activity: visit Person pid:2019008890-5 hid:2019003772 plan does not start with 'home' activity: visit Person pid:2019008890-6 hid:2019003772 plan does not start with 'home' activity: work Person pid:2019008890-7 hid:2019003772 plan does not start with 'home' activity: visit Person pid:2019008888-4 hid:2019003772 plan does not start with 'home' activity: medical Person pid:2019008897-1 hid:2019003776 plan does not start with 'home' activity: work Person pid:2019008906-4 hid:2019003779 plan does not start with 'home' activity: other Person pid:2019008908-1 hid:2019003781 plan does not start with 'home' activity: visit Person pid:2019008916-4 hid:2019003787 plan does not start with 'home' activity: shop Person pid:2019008916-5 hid:2019003787 plan does not start with 'home' activity: shop Person pid:2019008925-6 hid:2019003792 plan does not start with 'home' activity: work Person pid:2019008928-5 hid:2019003792 plan does not start with 'home' activity: visit Person pid:2019008927-1 hid:2019003792 plan does not start with 'home' activity: visit Person pid:2019008933-3 hid:2019003793 plan does not start with 'home' activity: work Person pid:2019008955-2 hid:2019003803 plan does not start with 'home' activity: other Person pid:2019008955-6 hid:2019003803 plan does not start with 'home' activity: visit Person pid:2019008958-2 hid:2019003804 plan does not start with 'home' activity: visit Person pid:2019008957-5 hid:2019003804 plan does not start with 'home' activity: visit Person pid:2019008981-5 hid:2019003815 plan does not start with 'home' activity: visit Person pid:2019009003-5 hid:2019003826 plan does not start with 'home' activity: visit Person pid:2019009002-7 hid:2019003826 plan does not start with 'home' activity: visit Person pid:2019009005-3 hid:2019003828 plan does not start with 'home' activity: work Person pid:2019009005-5 hid:2019003828 plan does not start with 'home' activity: work Person pid:2019009011-1 hid:2019003829 plan does not start with 'home' activity: work Person pid:2019009012-1 hid:2019003829 plan does not start with 'home' activity: visit Person pid:2019009012-2 hid:2019003829 plan does not start with 'home' activity: visit Person pid:2019009011-2 hid:2019003829 plan does not start with 'home' activity: visit Person pid:2019009012-3 hid:2019003829 plan does not start with 'home' activity: visit Person pid:2019009012-4 hid:2019003829 plan does not start with 'home' activity: visit Person pid:2019009011-3 hid:2019003829 plan does not start with 'home' activity: work Person pid:2019009011-4 hid:2019003829 plan does not start with 'home' activity: work Person pid:2019009033-5 hid:2019003837 plan does not start with 'home' activity: visit Person pid:2019009035-4 hid:2019003837 plan does not start with 'home' activity: escort Person pid:2019009032-4 hid:2019003837 plan does not start with 'home' activity: escort Person pid:2019009032-5 hid:2019003837 plan does not start with 'home' activity: visit Person pid:2019009048-2 hid:2019003841 plan does not start with 'home' activity: other Person pid:2019009050-1 hid:2019003841 plan does not start with 'home' activity: visit Person pid:2019009051-1 hid:2019003841 plan does not start with 'home' activity: visit Person pid:2019009050-3 hid:2019003841 plan does not start with 'home' activity: visit Person pid:2019009051-2 hid:2019003841 plan does not start with 'home' activity: visit Person pid:2019009052-1 hid:2019003842 plan does not start with 'home' activity: visit Person pid:2019009052-2 hid:2019003842 plan does not start with 'home' activity: visit Person pid:2019009052-3 hid:2019003842 plan does not start with 'home' activity: visit Person pid:2019009052-4 hid:2019003842 plan does not start with 'home' activity: visit Person pid:2019009052-5 hid:2019003842 plan does not start with 'home' activity: visit Person pid:2019009052-6 hid:2019003842 plan does not start with 'home' activity: visit Person pid:2019009052-7 hid:2019003842 plan does not start with 'home' activity: visit Person pid:2019009059-2 hid:2019003844 plan does not start with 'home' activity: visit Person pid:2019009066-3 hid:2019003846 plan does not start with 'home' activity: visit Person pid:2019009078-4 hid:2019003852 plan does not start with 'home' activity: other Person pid:2019009078-5 hid:2019003852 plan does not start with 'home' activity: visit Person pid:2019009077-6 hid:2019003852 plan does not start with 'home' activity: other Person pid:2019009077-7 hid:2019003852 plan does not start with 'home' activity: visit Person pid:2019009091-4 hid:2019003857 plan does not start with 'home' activity: visit Person pid:2019009093-3 hid:2019003857 plan does not start with 'home' activity: visit Person pid:2019009092-4 hid:2019003857 plan does not start with 'home' activity: visit Person pid:2019009106-3 hid:2019003864 plan does not start with 'home' activity: visit Person pid:2019009105-7 hid:2019003864 plan does not start with 'home' activity: visit Person pid:2019009109-4 hid:2019003866 plan does not start with 'home' activity: escort Person pid:2019009109-5 hid:2019003866 plan does not start with 'home' activity: escort Person pid:2019009109-6 hid:2019003866 plan does not start with 'home' activity: escort Person pid:2019009109-7 hid:2019003866 plan does not start with 'home' activity: escort Person pid:2019009123-1 hid:2019003871 plan does not start with 'home' activity: visit Person pid:2019009130-7 hid:2019003874 plan does not start with 'home' activity: visit Person pid:2019009146-2 hid:2019003880 plan does not start with 'home' activity: visit Person pid:2019009187-1 hid:2019003897 plan does not start with 'home' activity: visit Person pid:2019009186-6 hid:2019003897 plan does not start with 'home' activity: visit Person pid:2019009186-7 hid:2019003897 plan does not start with 'home' activity: visit Person pid:2019009199-7 hid:2019003902 plan does not start with 'home' activity: visit Person pid:2019009201-2 hid:2019003903 plan does not start with 'home' activity: other Person pid:2019009208-2 hid:2019003907 plan does not start with 'home' activity: visit Person pid:2019009219-4 hid:2019003911 plan does not start with 'home' activity: visit Person pid:2019009219-5 hid:2019003911 plan does not start with 'home' activity: visit Person pid:2019009224-1 hid:2019003914 plan does not start with 'home' activity: other Person pid:2019009244-4 hid:2019003921 plan does not start with 'home' activity: work Person pid:2019009246-1 hid:2019003922 plan does not start with 'home' activity: work Person pid:2019009246-2 hid:2019003922 plan does not start with 'home' activity: work Person pid:2019009245-4 hid:2019003922 plan does not start with 'home' activity: work Person pid:2019009245-5 hid:2019003922 plan does not start with 'home' activity: work Person pid:2019009246-5 hid:2019003922 plan does not start with 'home' activity: work Person pid:2019009246-6 hid:2019003922 plan does not start with 'home' activity: work Person pid:2019009260-1 hid:2019003928 plan does not start with 'home' activity: other Person pid:2019009261-1 hid:2019003928 plan does not start with 'home' activity: other Person pid:2019009259-7 hid:2019003928 plan does not start with 'home' activity: other Person pid:2019009262-1 hid:2019003929 plan does not start with 'home' activity: work Person pid:2019009263-5 hid:2019003929 plan does not start with 'home' activity: escort Person pid:2019009264-7 hid:2019003930 plan does not start with 'home' activity: visit Person pid:2019009267-4 hid:2019003932 plan does not start with 'home' activity: other Person pid:2019009268-6 hid:2019003932 plan does not start with 'home' activity: visit Person pid:2019009270-6 hid:2019003933 plan does not start with 'home' activity: work Person pid:2019009270-7 hid:2019003933 plan does not start with 'home' activity: escort Person pid:2019009273-5 hid:2019003934 plan does not start with 'home' activity: other Person pid:2019009274-6 hid:2019003934 plan does not start with 'home' activity: other Person pid:2019009275-4 hid:2019003935 plan does not start with 'home' activity: other Person pid:2019009281-2 hid:2019003938 plan does not start with 'home' activity: work Person pid:2019009283-1 hid:2019003938 plan does not start with 'home' activity: shop Person pid:2019009281-4 hid:2019003938 plan does not start with 'home' activity: work Person pid:2019009289-3 hid:2019003940 plan does not start with 'home' activity: other Person pid:2019009295-4 hid:2019003942 plan does not start with 'home' activity: visit Person pid:2019009294-5 hid:2019003942 plan does not start with 'home' activity: visit Person pid:2019009311-3 hid:2019003951 plan does not start with 'home' activity: work Person pid:2019009319-4 hid:2019003954 plan does not start with 'home' activity: visit Person pid:2019009319-5 hid:2019003954 plan does not start with 'home' activity: visit Person pid:2019009330-3 hid:2019003958 plan does not start with 'home' activity: visit Person pid:2019009336-6 hid:2019003962 plan does not start with 'home' activity: work Person pid:2019009343-2 hid:2019003965 plan does not start with 'home' activity: escort Person pid:2019009345-1 hid:2019003966 plan does not start with 'home' activity: visit Person pid:2019009345-2 hid:2019003966 plan does not start with 'home' activity: visit Person pid:2019009345-3 hid:2019003966 plan does not start with 'home' activity: visit Person pid:2019009345-4 hid:2019003966 plan does not start with 'home' activity: visit Person pid:2019009350-3 hid:2019003968 plan does not start with 'home' activity: other Person pid:2019009349-5 hid:2019003968 plan does not start with 'home' activity: other Person pid:2019009353-2 hid:2019003970 plan does not start with 'home' activity: visit Person pid:2019009356-4 hid:2019003971 plan does not start with 'home' activity: visit Person pid:2019009360-3 hid:2019003974 plan does not start with 'home' activity: visit Person pid:2019009364-5 hid:2019003975 plan does not start with 'home' activity: visit Person pid:2019009363-4 hid:2019003975 plan does not start with 'home' activity: other Person pid:2019009387-3 hid:2019003985 plan does not start with 'home' activity: visit Person pid:2019009387-6 hid:2019003985 plan does not start with 'home' activity: visit Person pid:2019009397-6 hid:2019003989 plan does not start with 'home' activity: shop Person pid:2019009412-4 hid:2019003995 plan does not start with 'home' activity: visit Person pid:2019009423-1 hid:2019003999 plan does not start with 'home' activity: work Person pid:2019009425-3 hid:2019003999 plan does not start with 'home' activity: visit Person pid:2019009423-2 hid:2019003999 plan does not start with 'home' activity: visit Person pid:2019009423-3 hid:2019003999 plan does not start with 'home' activity: work Person pid:2019009426-1 hid:2019003999 plan does not start with 'home' activity: visit Person pid:2019009426-3 hid:2019003999 plan does not start with 'home' activity: visit Person pid:2019009424-3 hid:2019003999 plan does not start with 'home' activity: visit Person pid:2019009423-5 hid:2019003999 plan does not start with 'home' activity: visit Person pid:2019009424-5 hid:2019003999 plan does not start with 'home' activity: visit Person pid:2019009422-3 hid:2019003999 plan does not start with 'home' activity: visit Person pid:2019009423-6 hid:2019003999 plan does not start with 'home' activity: work Person pid:2019009422-5 hid:2019003999 plan does not start with 'home' activity: visit Person pid:2019009423-7 hid:2019003999 plan does not start with 'home' activity: work Person pid:2019009425-5 hid:2019003999 plan does not start with 'home' activity: visit Person pid:2019009487-3 hid:2019004027 plan does not start with 'home' activity: visit Person pid:2019009487-5 hid:2019004027 plan does not start with 'home' activity: visit Person pid:2019009486-4 hid:2019004027 plan does not start with 'home' activity: visit Person pid:2019009486-5 hid:2019004027 plan does not start with 'home' activity: visit Person pid:2019009499-3 hid:2019004030 plan does not start with 'home' activity: visit Person pid:2019009500-2 hid:2019004030 plan does not start with 'home' activity: visit Person pid:2019009499-4 hid:2019004030 plan does not start with 'home' activity: visit Person pid:2019009500-4 hid:2019004030 plan does not start with 'home' activity: visit Person pid:2019009499-5 hid:2019004030 plan does not start with 'home' activity: visit Person pid:2019009500-5 hid:2019004030 plan does not start with 'home' activity: visit Person pid:2019009514-2 hid:2019004036 plan does not start with 'home' activity: visit Person pid:2019009514-3 hid:2019004036 plan does not start with 'home' activity: visit Person pid:2019009514-5 hid:2019004036 plan does not start with 'home' activity: visit Person pid:2019009519-2 hid:2019004039 plan does not start with 'home' activity: visit Person pid:2019009520-6 hid:2019004040 plan does not start with 'home' activity: work Person pid:2019009524-3 hid:2019004042 plan does not start with 'home' activity: medical Person pid:2019009529-2 hid:2019004044 plan does not start with 'home' activity: other Person pid:2019009529-3 hid:2019004044 plan does not start with 'home' activity: work Person pid:2019009529-4 hid:2019004044 plan does not start with 'home' activity: work Person pid:2019009529-5 hid:2019004044 plan does not start with 'home' activity: work Person pid:2019009545-1 hid:2019004054 plan does not start with 'home' activity: work Person pid:2019009550-1 hid:2019004056 plan does not start with 'home' activity: visit Person pid:2019009550-2 hid:2019004056 plan does not start with 'home' activity: visit Person pid:2019009550-5 hid:2019004056 plan does not start with 'home' activity: visit Person pid:2019009552-4 hid:2019004057 plan does not start with 'home' activity: shop Person pid:2019009553-6 hid:2019004057 plan does not start with 'home' activity: shop Person pid:2019009551-6 hid:2019004057 plan does not start with 'home' activity: shop Person pid:2019009558-2 hid:2019004060 plan does not start with 'home' activity: work Person pid:2019009580-4 hid:2019004077 plan does not start with 'home' activity: visit Person pid:2019009593-3 hid:2019004081 plan does not start with 'home' activity: escort Person pid:2019009591-2 hid:2019004081 plan does not start with 'home' activity: escort Person pid:2019009596-1 hid:2019004083 plan does not start with 'home' activity: other Person pid:2019009599-5 hid:2019004085 plan does not start with 'home' activity: other Person pid:2019009623-4 hid:2019004101 plan does not start with 'home' activity: visit Person pid:2019009624-6 hid:2019004101 plan does not start with 'home' activity: visit Person pid:2019009632-6 hid:2019004105 plan does not start with 'home' activity: visit Person pid:2019009647-5 hid:2019004111 plan does not start with 'home' activity: medical Person pid:2019009646-5 hid:2019004111 plan does not start with 'home' activity: escort Person pid:2019009655-1 hid:2019004115 plan does not start with 'home' activity: work Person pid:2019009655-2 hid:2019004115 plan does not start with 'home' activity: work Person pid:2019009655-3 hid:2019004115 plan does not start with 'home' activity: work Person pid:2019009655-4 hid:2019004115 plan does not start with 'home' activity: work Person pid:2019009655-6 hid:2019004115 plan does not start with 'home' activity: work Person pid:2019009688-4 hid:2019004128 plan does not start with 'home' activity: education Person pid:2019009693-4 hid:2019004130 plan does not start with 'home' activity: visit Person pid:2019009694-4 hid:2019004130 plan does not start with 'home' activity: visit Person pid:2019009712-1 hid:2019004140 plan does not start with 'home' activity: shop Person pid:2019009718-3 hid:2019004142 plan does not start with 'home' activity: visit Person pid:2019009745-2 hid:2019004154 plan does not start with 'home' activity: work Person pid:2019009745-3 hid:2019004154 plan does not start with 'home' activity: work Person pid:2019009745-4 hid:2019004154 plan does not start with 'home' activity: work Person pid:2019009745-5 hid:2019004154 plan does not start with 'home' activity: work Person pid:2019009745-6 hid:2019004154 plan does not start with 'home' activity: work Person pid:2019009745-7 hid:2019004154 plan does not start with 'home' activity: work Person pid:2019009772-1 hid:2019004161 plan does not start with 'home' activity: visit Person pid:2019009774-2 hid:2019004162 plan does not start with 'home' activity: visit Person pid:2019009774-3 hid:2019004162 plan does not start with 'home' activity: visit Person pid:2019009774-5 hid:2019004162 plan does not start with 'home' activity: visit Person pid:2019009788-2 hid:2019004168 plan does not start with 'home' activity: visit Person pid:2019009796-7 hid:2019004172 plan does not start with 'home' activity: work Person pid:2019009804-5 hid:2019004177 plan does not start with 'home' activity: work Person pid:2019009806-1 hid:2019004178 plan does not start with 'home' activity: shop Person pid:2019009824-1 hid:2019004185 plan does not start with 'home' activity: visit Person pid:2019009824-2 hid:2019004185 plan does not start with 'home' activity: visit Person pid:2019009824-3 hid:2019004185 plan does not start with 'home' activity: visit Person pid:2019009824-4 hid:2019004185 plan does not start with 'home' activity: visit Person pid:2019009828-3 hid:2019004187 plan does not start with 'home' activity: work Person pid:2019009836-4 hid:2019004191 plan does not start with 'home' activity: visit Person pid:2019009847-3 hid:2019004198 plan does not start with 'home' activity: visit Person pid:2019009847-5 hid:2019004198 plan does not start with 'home' activity: education Person pid:2019009849-4 hid:2019004199 plan does not start with 'home' activity: other Person pid:2019009868-3 hid:2019004210 plan does not start with 'home' activity: shop Person pid:2019009874-2 hid:2019004212 plan does not start with 'home' activity: work Person pid:2019009874-3 hid:2019004212 plan does not start with 'home' activity: work Person pid:2019009874-4 hid:2019004212 plan does not start with 'home' activity: visit Person pid:2019009874-5 hid:2019004212 plan does not start with 'home' activity: visit Person pid:2019009872-6 hid:2019004212 plan does not start with 'home' activity: work Person pid:2019009889-1 hid:2019004220 plan does not start with 'home' activity: escort Person pid:2019009889-2 hid:2019004220 plan does not start with 'home' activity: escort Person pid:2019009892-3 hid:2019004220 plan does not start with 'home' activity: education Person pid:2019009914-1 hid:2019004233 plan does not start with 'home' activity: visit Person pid:2019009921-1 hid:2019004236 plan does not start with 'home' activity: shop Person pid:2019009945-1 hid:2019004245 plan does not start with 'home' activity: visit Person pid:2019009951-4 hid:2019004246 plan does not start with 'home' activity: visit Person pid:2019009950-3 hid:2019004246 plan does not start with 'home' activity: education Person pid:2019009974-4 hid:2019004256 plan does not start with 'home' activity: visit Person pid:2019009990-3 hid:2019004263 plan does not start with 'home' activity: shop Person pid:2019009996-4 hid:2019004266 plan does not start with 'home' activity: visit Person pid:2019009997-5 hid:2019004266 plan does not start with 'home' activity: visit Person pid:2019010005-4 hid:2019004273 plan does not start with 'home' activity: visit Person pid:2019010006-7 hid:2019004273 plan does not start with 'home' activity: visit Person pid:2019010015-1 hid:2019004276 plan does not start with 'home' activity: other Person pid:2019010019-1 hid:2019004277 plan does not start with 'home' activity: visit Person pid:2019010021-4 hid:2019004277 plan does not start with 'home' activity: visit Person pid:2019010020-6 hid:2019004277 plan does not start with 'home' activity: visit Person pid:2019010029-4 hid:2019004281 plan does not start with 'home' activity: visit Person pid:2019010046-2 hid:2019004288 plan does not start with 'home' activity: work Person pid:2019010046-3 hid:2019004288 plan does not start with 'home' activity: work Person pid:2019010043-3 hid:2019004288 plan does not start with 'home' activity: visit Person pid:2019010046-4 hid:2019004288 plan does not start with 'home' activity: work Person pid:2019010059-2 hid:2019004293 plan does not start with 'home' activity: visit Person pid:2019010062-1 hid:2019004294 plan does not start with 'home' activity: visit Person pid:2019010061-5 hid:2019004294 plan does not start with 'home' activity: visit Person pid:2019010061-6 hid:2019004294 plan does not start with 'home' activity: other Person pid:2019010086-5 hid:2019004302 plan does not start with 'home' activity: visit Person pid:2019010091-5 hid:2019004305 plan does not start with 'home' activity: other Person pid:2019010090-3 hid:2019004305 plan does not start with 'home' activity: other Person pid:2019010096-5 hid:2019004308 plan does not start with 'home' activity: other Person pid:2019010097-6 hid:2019004308 plan does not start with 'home' activity: other Person pid:2019010100-7 hid:2019004309 plan does not start with 'home' activity: visit Person pid:2019010101-7 hid:2019004309 plan does not start with 'home' activity: education Person pid:2019010126-4 hid:2019004320 plan does not start with 'home' activity: work Person pid:2019010126-6 hid:2019004320 plan does not start with 'home' activity: work Person pid:2019010126-7 hid:2019004320 plan does not start with 'home' activity: visit Person pid:2019010133-3 hid:2019004324 plan does not start with 'home' activity: other Person pid:2019010134-6 hid:2019004324 plan does not start with 'home' activity: other Person pid:2019010148-3 hid:2019004332 plan does not start with 'home' activity: work Person pid:2019010148-5 hid:2019004332 plan does not start with 'home' activity: work Person pid:2019010148-7 hid:2019004332 plan does not start with 'home' activity: work Person pid:2019010152-1 hid:2019004334 plan does not start with 'home' activity: work Person pid:2019010159-1 hid:2019004337 plan does not start with 'home' activity: visit Person pid:2019010161-1 hid:2019004337 plan does not start with 'home' activity: visit Person pid:2019010160-3 hid:2019004337 plan does not start with 'home' activity: visit Person pid:2019010164-1 hid:2019004338 plan does not start with 'home' activity: medical Person pid:2019010162-7 hid:2019004338 plan does not start with 'home' activity: medical Person pid:2019010202-2 hid:2019004359 plan does not start with 'home' activity: work Person pid:2019010202-4 hid:2019004359 plan does not start with 'home' activity: work Person pid:2019010202-6 hid:2019004359 plan does not start with 'home' activity: work Person pid:2019010227-2 hid:2019004370 plan does not start with 'home' activity: work Person pid:2019010227-4 hid:2019004370 plan does not start with 'home' activity: work Person pid:2019010258-2 hid:2019004384 plan does not start with 'home' activity: work Person pid:2019010258-3 hid:2019004384 plan does not start with 'home' activity: work Person pid:2019010259-4 hid:2019004384 plan does not start with 'home' activity: visit Person pid:2019010259-5 hid:2019004384 plan does not start with 'home' activity: visit Person pid:2019010281-2 hid:2019004391 plan does not start with 'home' activity: visit Person pid:2019010282-3 hid:2019004392 plan does not start with 'home' activity: visit Person pid:2019010282-7 hid:2019004392 plan does not start with 'home' activity: work Person pid:2019010292-3 hid:2019004395 plan does not start with 'home' activity: shop Person pid:2019010297-1 hid:2019004398 plan does not start with 'home' activity: visit Person pid:2019010298-4 hid:2019004398 plan does not start with 'home' activity: visit Person pid:2019010302-5 hid:2019004399 plan does not start with 'home' activity: other Person pid:2019010301-3 hid:2019004399 plan does not start with 'home' activity: other Person pid:2019010305-2 hid:2019004400 plan does not start with 'home' activity: education Person pid:2019010306-2 hid:2019004400 plan does not start with 'home' activity: education Person pid:2019010303-4 hid:2019004400 plan does not start with 'home' activity: work Person pid:2019010304-4 hid:2019004400 plan does not start with 'home' activity: escort Person pid:2019010305-4 hid:2019004400 plan does not start with 'home' activity: education Person pid:2019010305-6 hid:2019004400 plan does not start with 'home' activity: education Person pid:2019010306-4 hid:2019004400 plan does not start with 'home' activity: education Person pid:2019010306-5 hid:2019004400 plan does not start with 'home' activity: education Person pid:2019010308-2 hid:2019004401 plan does not start with 'home' activity: shop Person pid:2019010308-3 hid:2019004401 plan does not start with 'home' activity: escort Person pid:2019010309-4 hid:2019004401 plan does not start with 'home' activity: escort Person pid:2019010312-2 hid:2019004401 plan does not start with 'home' activity: shop Person pid:2019010324-5 hid:2019004405 plan does not start with 'home' activity: visit Person pid:2019010331-2 hid:2019004409 plan does not start with 'home' activity: visit Person pid:2019010334-6 hid:2019004412 plan does not start with 'home' activity: other Person pid:2019010347-1 hid:2019004418 plan does not start with 'home' activity: visit Person pid:2019010347-4 hid:2019004418 plan does not start with 'home' activity: visit Person pid:2019010347-7 hid:2019004418 plan does not start with 'home' activity: visit Person pid:2019010351-3 hid:2019004420 plan does not start with 'home' activity: escort Person pid:2019010357-4 hid:2019004423 plan does not start with 'home' activity: work Person pid:2019010380-5 hid:2019004432 plan does not start with 'home' activity: other Person pid:2019010385-2 hid:2019004434 plan does not start with 'home' activity: other Person pid:2019010407-1 hid:2019004445 plan does not start with 'home' activity: other Person pid:2019010406-7 hid:2019004445 plan does not start with 'home' activity: visit Person pid:2019010416-2 hid:2019004450 plan does not start with 'home' activity: visit Person pid:2019010416-3 hid:2019004450 plan does not start with 'home' activity: visit Person pid:2019010416-4 hid:2019004450 plan does not start with 'home' activity: other Person pid:2019010416-5 hid:2019004450 plan does not start with 'home' activity: other Person pid:2019010416-7 hid:2019004450 plan does not start with 'home' activity: visit Person pid:2019010418-5 hid:2019004451 plan does not start with 'home' activity: visit Person pid:2019010442-1 hid:2019004465 plan does not start with 'home' activity: visit Person pid:2019010442-2 hid:2019004465 plan does not start with 'home' activity: visit Person pid:2019010442-4 hid:2019004465 plan does not start with 'home' activity: visit Person pid:2019010442-5 hid:2019004465 plan does not start with 'home' activity: visit Person pid:2019010445-2 hid:2019004467 plan does not start with 'home' activity: work Person pid:2019010452-1 hid:2019004470 plan does not start with 'home' activity: medical Person pid:2019010468-2 hid:2019004477 plan does not start with 'home' activity: visit Person pid:2019010469-1 hid:2019004478 plan does not start with 'home' activity: work Person pid:2019010469-2 hid:2019004478 plan does not start with 'home' activity: work Person pid:2019010469-4 hid:2019004478 plan does not start with 'home' activity: work Person pid:2019010473-3 hid:2019004480 plan does not start with 'home' activity: other Person pid:2019010472-3 hid:2019004480 plan does not start with 'home' activity: other Person pid:2019010475-3 hid:2019004482 plan does not start with 'home' activity: visit Person pid:2019010475-4 hid:2019004482 plan does not start with 'home' activity: visit Person pid:2019010486-4 hid:2019004486 plan does not start with 'home' activity: education Person pid:2019010503-2 hid:2019004492 plan does not start with 'home' activity: work Person pid:2019010507-1 hid:2019004493 plan does not start with 'home' activity: work Person pid:2019010507-2 hid:2019004493 plan does not start with 'home' activity: work Person pid:2019010507-3 hid:2019004493 plan does not start with 'home' activity: work Person pid:2019010507-4 hid:2019004493 plan does not start with 'home' activity: work Person pid:2019010507-7 hid:2019004493 plan does not start with 'home' activity: work Person pid:2019010508-2 hid:2019004494 plan does not start with 'home' activity: escort Person pid:2019010508-5 hid:2019004494 plan does not start with 'home' activity: escort Person pid:2019010508-6 hid:2019004494 plan does not start with 'home' activity: escort Person pid:2019010508-7 hid:2019004494 plan does not start with 'home' activity: escort Person pid:2019010532-2 hid:2019004503 plan does not start with 'home' activity: work Person pid:2019010541-7 hid:2019004507 plan does not start with 'home' activity: work Person pid:2019010543-6 hid:2019004508 plan does not start with 'home' activity: work Person pid:2019010556-4 hid:2019004513 plan does not start with 'home' activity: other Person pid:2019010555-4 hid:2019004513 plan does not start with 'home' activity: other Person pid:2019010563-1 hid:2019004516 plan does not start with 'home' activity: work Person pid:2019010569-6 hid:2019004518 plan does not start with 'home' activity: visit Person pid:2019010575-2 hid:2019004522 plan does not start with 'home' activity: visit Person pid:2019010575-4 hid:2019004522 plan does not start with 'home' activity: other Person pid:2019010585-3 hid:2019004527 plan does not start with 'home' activity: other Person pid:2019010605-1 hid:2019004534 plan does not start with 'home' activity: visit Person pid:2019010605-4 hid:2019004534 plan does not start with 'home' activity: visit Person pid:2019010604-6 hid:2019004534 plan does not start with 'home' activity: visit Person pid:2019010625-4 hid:2019004543 plan does not start with 'home' activity: visit Person pid:2019010625-5 hid:2019004543 plan does not start with 'home' activity: visit Person pid:2019010625-7 hid:2019004543 plan does not start with 'home' activity: visit Person pid:2019010633-6 hid:2019004547 plan does not start with 'home' activity: work Person pid:2019010642-6 hid:2019004553 plan does not start with 'home' activity: visit Person pid:2019010643-3 hid:2019004554 plan does not start with 'home' activity: escort Person pid:2019010643-4 hid:2019004554 plan does not start with 'home' activity: other Person pid:2019010686-1 hid:2019004570 plan does not start with 'home' activity: education Person pid:2019010685-2 hid:2019004570 plan does not start with 'home' activity: education Person pid:2019010685-3 hid:2019004570 plan does not start with 'home' activity: education Person pid:2019010686-2 hid:2019004570 plan does not start with 'home' activity: education Person pid:2019010686-4 hid:2019004570 plan does not start with 'home' activity: education Person pid:2019010685-4 hid:2019004570 plan does not start with 'home' activity: education Person pid:2019010685-5 hid:2019004570 plan does not start with 'home' activity: education Person pid:2019010686-5 hid:2019004570 plan does not start with 'home' activity: education Person pid:2019010687-4 hid:2019004571 plan does not start with 'home' activity: work Person pid:2019010701-6 hid:2019004576 plan does not start with 'home' activity: visit Person pid:2019010700-7 hid:2019004576 plan does not start with 'home' activity: visit Person pid:2019010708-7 hid:2019004579 plan does not start with 'home' activity: work Person pid:2019010713-5 hid:2019004581 plan does not start with 'home' activity: visit Person pid:2019010712-3 hid:2019004581 plan does not start with 'home' activity: visit Person pid:2019010714-6 hid:2019004581 plan does not start with 'home' activity: visit Person pid:2019010719-1 hid:2019004584 plan does not start with 'home' activity: visit Person pid:2019010731-1 hid:2019004589 plan does not start with 'home' activity: other Person pid:2019010732-3 hid:2019004589 plan does not start with 'home' activity: other Person pid:2019010737-1 hid:2019004591 plan does not start with 'home' activity: medical Person pid:2019010738-5 hid:2019004591 plan does not start with 'home' activity: escort Person pid:2019010771-3 hid:2019004604 plan does not start with 'home' activity: visit Person pid:2019010780-1 hid:2019004608 plan does not start with 'home' activity: work Person pid:2019010780-2 hid:2019004608 plan does not start with 'home' activity: work Person pid:2019010780-3 hid:2019004608 plan does not start with 'home' activity: work Person pid:2019010780-4 hid:2019004608 plan does not start with 'home' activity: visit Person pid:2019010780-6 hid:2019004608 plan does not start with 'home' activity: visit Person pid:2019010788-4 hid:2019004611 plan does not start with 'home' activity: work Person pid:2019010798-5 hid:2019004617 plan does not start with 'home' activity: work Person pid:2019010802-6 hid:2019004619 plan does not start with 'home' activity: work Person pid:2019010808-3 hid:2019004621 plan does not start with 'home' activity: visit Person pid:2019010836-4 hid:2019004633 plan does not start with 'home' activity: other Person pid:2019010857-4 hid:2019004644 plan does not start with 'home' activity: other Person pid:2019010856-5 hid:2019004644 plan does not start with 'home' activity: other Person pid:2019010861-1 hid:2019004647 plan does not start with 'home' activity: visit Person pid:2019010869-4 hid:2019004651 plan does not start with 'home' activity: visit Person pid:2019010870-7 hid:2019004651 plan does not start with 'home' activity: other Person pid:2019010872-2 hid:2019004652 plan does not start with 'home' activity: visit Person pid:2019010871-7 hid:2019004652 plan does not start with 'home' activity: visit Person pid:2019010872-6 hid:2019004652 plan does not start with 'home' activity: education Person pid:2019010873-5 hid:2019004652 plan does not start with 'home' activity: visit Person pid:2019010877-3 hid:2019004655 plan does not start with 'home' activity: shop Person pid:2019010885-5 hid:2019004659 plan does not start with 'home' activity: visit Person pid:2019010883-5 hid:2019004659 plan does not start with 'home' activity: other Person pid:2019010888-6 hid:2019004661 plan does not start with 'home' activity: work Person pid:2019010890-1 hid:2019004662 plan does not start with 'home' activity: visit Person pid:2019010890-3 hid:2019004662 plan does not start with 'home' activity: visit Person pid:2019010892-2 hid:2019004663 plan does not start with 'home' activity: visit Person pid:2019010893-1 hid:2019004663 plan does not start with 'home' activity: visit Person pid:2019010892-7 hid:2019004663 plan does not start with 'home' activity: visit Person pid:2019010893-7 hid:2019004663 plan does not start with 'home' activity: visit Person pid:2019010900-3 hid:2019004666 plan does not start with 'home' activity: visit Person pid:2019010899-3 hid:2019004666 plan does not start with 'home' activity: visit Person pid:2019010901-3 hid:2019004666 plan does not start with 'home' activity: visit Person pid:2019010909-6 hid:2019004670 plan does not start with 'home' activity: visit Person pid:2019010914-1 hid:2019004672 plan does not start with 'home' activity: work Person pid:2019010914-3 hid:2019004672 plan does not start with 'home' activity: work Person pid:2019010914-4 hid:2019004672 plan does not start with 'home' activity: work Person pid:2019010920-1 hid:2019004675 plan does not start with 'home' activity: other Person pid:2019010921-6 hid:2019004675 plan does not start with 'home' activity: other Person pid:2019010927-5 hid:2019004677 plan does not start with 'home' activity: other Person pid:2019010952-4 hid:2019004687 plan does not start with 'home' activity: visit Person pid:2019010952-6 hid:2019004687 plan does not start with 'home' activity: visit Person pid:2019010960-1 hid:2019004691 plan does not start with 'home' activity: work Person pid:2019010960-5 hid:2019004691 plan does not start with 'home' activity: work Person pid:2019010969-2 hid:2019004696 plan does not start with 'home' activity: other Person pid:2019010977-4 hid:2019004700 plan does not start with 'home' activity: education Person pid:2019010991-1 hid:2019004705 plan does not start with 'home' activity: work Person pid:2019010991-2 hid:2019004705 plan does not start with 'home' activity: work Person pid:2019010991-3 hid:2019004705 plan does not start with 'home' activity: work Person pid:2019010992-1 hid:2019004706 plan does not start with 'home' activity: visit Person pid:2019010993-3 hid:2019004706 plan does not start with 'home' activity: visit Person pid:2019010992-4 hid:2019004706 plan does not start with 'home' activity: visit Person pid:2019010993-5 hid:2019004706 plan does not start with 'home' activity: visit Person pid:2019010998-1 hid:2019004709 plan does not start with 'home' activity: visit Person pid:2019010998-5 hid:2019004709 plan does not start with 'home' activity: visit Person pid:2019010999-4 hid:2019004709 plan does not start with 'home' activity: visit Person pid:2019010999-6 hid:2019004709 plan does not start with 'home' activity: visit Person pid:2019011015-5 hid:2019004719 plan does not start with 'home' activity: visit Person pid:2019011016-2 hid:2019004719 plan does not start with 'home' activity: visit Person pid:2019011029-2 hid:2019004725 plan does not start with 'home' activity: work Person pid:2019011043-1 hid:2019004729 plan does not start with 'home' activity: work Person pid:2019011043-2 hid:2019004729 plan does not start with 'home' activity: work Person pid:2019011043-3 hid:2019004729 plan does not start with 'home' activity: work Person pid:2019011049-2 hid:2019004731 plan does not start with 'home' activity: shop Person pid:2019011049-3 hid:2019004731 plan does not start with 'home' activity: work Person pid:2019011049-5 hid:2019004731 plan does not start with 'home' activity: work Person pid:2019011049-7 hid:2019004731 plan does not start with 'home' activity: shop Person pid:2019011059-7 hid:2019004733 plan does not start with 'home' activity: other Person pid:2019011061-1 hid:2019004734 plan does not start with 'home' activity: education Person pid:2019011061-3 hid:2019004734 plan does not start with 'home' activity: visit Person pid:2019011080-5 hid:2019004742 plan does not start with 'home' activity: other Person pid:2019011087-6 hid:2019004744 plan does not start with 'home' activity: visit Person pid:2019011112-5 hid:2019004753 plan does not start with 'home' activity: visit Person pid:2019011115-1 hid:2019004754 plan does not start with 'home' activity: visit Person pid:2019011114-7 hid:2019004754 plan does not start with 'home' activity: visit Person pid:2019011140-2 hid:2019004767 plan does not start with 'home' activity: visit Person pid:2019011141-3 hid:2019004767 plan does not start with 'home' activity: visit Person pid:2019011141-5 hid:2019004767 plan does not start with 'home' activity: visit Person pid:2019011140-3 hid:2019004767 plan does not start with 'home' activity: visit Person pid:2019011140-5 hid:2019004767 plan does not start with 'home' activity: visit Person pid:2019011154-4 hid:2019004773 plan does not start with 'home' activity: escort Person pid:2019011159-1 hid:2019004775 plan does not start with 'home' activity: work Person pid:2019011159-2 hid:2019004775 plan does not start with 'home' activity: work Person pid:2019011159-3 hid:2019004775 plan does not start with 'home' activity: work Person pid:2019011159-4 hid:2019004775 plan does not start with 'home' activity: work Person pid:2019011159-7 hid:2019004775 plan does not start with 'home' activity: work Person pid:2019011165-1 hid:2019004778 plan does not start with 'home' activity: work Person pid:2019011165-6 hid:2019004778 plan does not start with 'home' activity: work Person pid:2019011177-1 hid:2019004784 plan does not start with 'home' activity: work Person pid:2019011177-2 hid:2019004784 plan does not start with 'home' activity: work Person pid:2019011177-3 hid:2019004784 plan does not start with 'home' activity: work Person pid:2019011177-6 hid:2019004784 plan does not start with 'home' activity: work Person pid:2019011177-7 hid:2019004784 plan does not start with 'home' activity: work Person pid:2019011199-1 hid:2019004791 plan does not start with 'home' activity: work Person pid:2019011199-2 hid:2019004791 plan does not start with 'home' activity: work Person pid:2019011199-5 hid:2019004791 plan does not start with 'home' activity: work Person pid:2019011200-4 hid:2019004791 plan does not start with 'home' activity: work Person pid:2019011200-5 hid:2019004791 plan does not start with 'home' activity: work Person pid:2019011202-1 hid:2019004791 plan does not start with 'home' activity: visit Person pid:2019011203-3 hid:2019004792 plan does not start with 'home' activity: shop Person pid:2019011204-6 hid:2019004792 plan does not start with 'home' activity: shop Person pid:2019011217-6 hid:2019004799 plan does not start with 'home' activity: other Person pid:2019011241-3 hid:2019004809 plan does not start with 'home' activity: work Person pid:2019011242-1 hid:2019004809 plan does not start with 'home' activity: work Person pid:2019011241-4 hid:2019004809 plan does not start with 'home' activity: work Person pid:2019011241-5 hid:2019004809 plan does not start with 'home' activity: work Person pid:2019011242-6 hid:2019004809 plan does not start with 'home' activity: work Person pid:2019011271-6 hid:2019004819 plan does not start with 'home' activity: other Person pid:2019011272-7 hid:2019004819 plan does not start with 'home' activity: other Person pid:2019011275-3 hid:2019004820 plan does not start with 'home' activity: other Person pid:2019011293-5 hid:2019004827 plan does not start with 'home' activity: education Person pid:2019011292-1 hid:2019004827 plan does not start with 'home' activity: work Person pid:2019011308-2 hid:2019004834 plan does not start with 'home' activity: work Person pid:2019011307-4 hid:2019004834 plan does not start with 'home' activity: visit Person pid:2019011307-5 hid:2019004834 plan does not start with 'home' activity: work Person pid:2019011311-2 hid:2019004835 plan does not start with 'home' activity: visit Person pid:2019011312-3 hid:2019004835 plan does not start with 'home' activity: visit Person pid:2019011310-3 hid:2019004835 plan does not start with 'home' activity: visit Person pid:2019011317-3 hid:2019004838 plan does not start with 'home' activity: shop Person pid:2019011317-5 hid:2019004838 plan does not start with 'home' activity: shop Person pid:2019011325-3 hid:2019004840 plan does not start with 'home' activity: education Person pid:2019011327-3 hid:2019004842 plan does not start with 'home' activity: other Person pid:2019011327-5 hid:2019004842 plan does not start with 'home' activity: shop Person pid:2019011331-6 hid:2019004844 plan does not start with 'home' activity: visit Person pid:2019011336-6 hid:2019004844 plan does not start with 'home' activity: visit Person pid:2019011371-1 hid:2019004863 plan does not start with 'home' activity: work Person pid:2019011371-2 hid:2019004863 plan does not start with 'home' activity: work Person pid:2019011371-4 hid:2019004863 plan does not start with 'home' activity: work Person pid:2019011373-1 hid:2019004864 plan does not start with 'home' activity: visit Person pid:2019011378-2 hid:2019004867 plan does not start with 'home' activity: work Person pid:2019011378-3 hid:2019004867 plan does not start with 'home' activity: work Person pid:2019011378-4 hid:2019004867 plan does not start with 'home' activity: work Person pid:2019011378-5 hid:2019004867 plan does not start with 'home' activity: work Person pid:2019011378-6 hid:2019004867 plan does not start with 'home' activity: work Person pid:2019011383-4 hid:2019004869 plan does not start with 'home' activity: visit Person pid:2019011383-5 hid:2019004869 plan does not start with 'home' activity: visit Person pid:2019011383-7 hid:2019004869 plan does not start with 'home' activity: visit Person pid:2019011387-1 hid:2019004871 plan does not start with 'home' activity: escort Person pid:2019011387-2 hid:2019004871 plan does not start with 'home' activity: escort Person pid:2019011387-4 hid:2019004871 plan does not start with 'home' activity: escort Person pid:2019011387-7 hid:2019004871 plan does not start with 'home' activity: escort Person pid:2019011392-5 hid:2019004873 plan does not start with 'home' activity: visit Person pid:2019011406-1 hid:2019004876 plan does not start with 'home' activity: work Person pid:2019011406-2 hid:2019004876 plan does not start with 'home' activity: visit Person pid:2019011406-3 hid:2019004876 plan does not start with 'home' activity: work Person pid:2019011406-6 hid:2019004876 plan does not start with 'home' activity: visit Person pid:2019011406-7 hid:2019004876 plan does not start with 'home' activity: work Person pid:2019011410-3 hid:2019004878 plan does not start with 'home' activity: visit Person pid:2019011410-4 hid:2019004878 plan does not start with 'home' activity: visit Person pid:2019011411-2 hid:2019004878 plan does not start with 'home' activity: visit Person pid:2019011411-3 hid:2019004878 plan does not start with 'home' activity: visit Person pid:2019011420-3 hid:2019004882 plan does not start with 'home' activity: work Person pid:2019011424-1 hid:2019004883 plan does not start with 'home' activity: visit Person pid:2019011424-2 hid:2019004883 plan does not start with 'home' activity: work Person pid:2019011424-3 hid:2019004883 plan does not start with 'home' activity: visit Person pid:2019011424-4 hid:2019004883 plan does not start with 'home' activity: visit Person pid:2019011424-5 hid:2019004883 plan does not start with 'home' activity: work Person pid:2019011425-6 hid:2019004883 plan does not start with 'home' activity: visit Person pid:2019011427-3 hid:2019004883 plan does not start with 'home' activity: visit Person pid:2019011424-6 hid:2019004883 plan does not start with 'home' activity: work Person pid:2019011436-2 hid:2019004890 plan does not start with 'home' activity: visit Person pid:2019011439-2 hid:2019004890 plan does not start with 'home' activity: visit Person pid:2019011436-5 hid:2019004890 plan does not start with 'home' activity: escort Person pid:2019011438-6 hid:2019004890 plan does not start with 'home' activity: visit Person pid:2019011438-7 hid:2019004890 plan does not start with 'home' activity: visit Person pid:2019011442-5 hid:2019004891 plan does not start with 'home' activity: visit Person pid:2019011451-1 hid:2019004894 plan does not start with 'home' activity: visit Person pid:2019011451-3 hid:2019004894 plan does not start with 'home' activity: work Person pid:2019011452-3 hid:2019004894 plan does not start with 'home' activity: work Person pid:2019011451-6 hid:2019004894 plan does not start with 'home' activity: work Person pid:2019011474-1 hid:2019004903 plan does not start with 'home' activity: education Person pid:2019011474-2 hid:2019004903 plan does not start with 'home' activity: other Person pid:2019011479-2 hid:2019004904 plan does not start with 'home' activity: visit Person pid:2019011487-1 hid:2019004907 plan does not start with 'home' activity: work Person pid:2019011490-2 hid:2019004908 plan does not start with 'home' activity: visit Person pid:2019011489-4 hid:2019004908 plan does not start with 'home' activity: visit Person pid:2019011490-4 hid:2019004908 plan does not start with 'home' activity: visit Person pid:2019011488-4 hid:2019004908 plan does not start with 'home' activity: other Person pid:2019011492-3 hid:2019004908 plan does not start with 'home' activity: visit Person pid:2019011492-5 hid:2019004908 plan does not start with 'home' activity: visit Person pid:2019011489-5 hid:2019004908 plan does not start with 'home' activity: visit Person pid:2019011490-5 hid:2019004908 plan does not start with 'home' activity: education Person pid:2019011494-6 hid:2019004909 plan does not start with 'home' activity: other Person pid:2019011495-1 hid:2019004910 plan does not start with 'home' activity: visit Person pid:2019011495-4 hid:2019004910 plan does not start with 'home' activity: visit Person pid:2019011495-5 hid:2019004910 plan does not start with 'home' activity: visit Person pid:2019011508-5 hid:2019004915 plan does not start with 'home' activity: other Person pid:2019011506-5 hid:2019004915 plan does not start with 'home' activity: work Person pid:2019011512-1 hid:2019004917 plan does not start with 'home' activity: education Person pid:2019011564-1 hid:2019004937 plan does not start with 'home' activity: visit Person pid:2019011565-2 hid:2019004938 plan does not start with 'home' activity: escort Person pid:2019011566-3 hid:2019004938 plan does not start with 'home' activity: escort Person pid:2019011570-1 hid:2019004939 plan does not start with 'home' activity: work Person pid:2019011574-3 hid:2019004940 plan does not start with 'home' activity: visit Person pid:2019011574-6 hid:2019004940 plan does not start with 'home' activity: visit Person pid:2019011574-7 hid:2019004940 plan does not start with 'home' activity: visit Person pid:2019011576-6 hid:2019004941 plan does not start with 'home' activity: visit Person pid:2019011579-2 hid:2019004943 plan does not start with 'home' activity: work Person pid:2019011579-3 hid:2019004943 plan does not start with 'home' activity: work Person pid:2019011579-4 hid:2019004943 plan does not start with 'home' activity: work Person pid:2019011579-6 hid:2019004943 plan does not start with 'home' activity: work Person pid:2019011581-4 hid:2019004945 plan does not start with 'home' activity: work Person pid:2019011581-5 hid:2019004945 plan does not start with 'home' activity: work Person pid:2019011586-3 hid:2019004949 plan does not start with 'home' activity: work Person pid:2019011586-4 hid:2019004949 plan does not start with 'home' activity: work Person pid:2019011608-1 hid:2019004960 plan does not start with 'home' activity: visit Person pid:2019011606-2 hid:2019004960 plan does not start with 'home' activity: visit Person pid:2019011608-2 hid:2019004960 plan does not start with 'home' activity: education Person pid:2019011607-4 hid:2019004960 plan does not start with 'home' activity: visit Person pid:2019011615-2 hid:2019004963 plan does not start with 'home' activity: medical Person pid:2019011631-6 hid:2019004970 plan does not start with 'home' activity: work Person pid:2019011638-4 hid:2019004972 plan does not start with 'home' activity: work Person pid:2019011637-4 hid:2019004972 plan does not start with 'home' activity: work Person pid:2019011638-6 hid:2019004972 plan does not start with 'home' activity: work Person pid:2019011662-2 hid:2019004980 plan does not start with 'home' activity: visit Person pid:2019011661-4 hid:2019004980 plan does not start with 'home' activity: visit Person pid:2019011667-1 hid:2019004982 plan does not start with 'home' activity: work Person pid:2019011674-1 hid:2019004985 plan does not start with 'home' activity: visit Person pid:2019011685-1 hid:2019004990 plan does not start with 'home' activity: visit Person pid:2019011696-2 hid:2019004994 plan does not start with 'home' activity: other Person pid:2019011711-2 hid:2019005000 plan does not start with 'home' activity: education Person pid:2019011712-3 hid:2019005001 plan does not start with 'home' activity: work Person pid:2019011732-4 hid:2019005011 plan does not start with 'home' activity: other Person pid:2019011731-6 hid:2019005011 plan does not start with 'home' activity: other Person pid:2019011734-6 hid:2019005012 plan does not start with 'home' activity: work Person pid:2019011734-7 hid:2019005012 plan does not start with 'home' activity: work Person pid:2019011736-4 hid:2019005013 plan does not start with 'home' activity: work Person pid:2019011736-5 hid:2019005013 plan does not start with 'home' activity: visit Person pid:2019011740-3 hid:2019005014 plan does not start with 'home' activity: other Person pid:2019011748-1 hid:2019005018 plan does not start with 'home' activity: visit Person pid:2019011748-4 hid:2019005018 plan does not start with 'home' activity: visit Person pid:2019011750-1 hid:2019005019 plan does not start with 'home' activity: other Person pid:2019011750-4 hid:2019005019 plan does not start with 'home' activity: visit Person pid:2019011755-2 hid:2019005022 plan does not start with 'home' activity: escort Person pid:2019011758-5 hid:2019005022 plan does not start with 'home' activity: work Person pid:2019011760-1 hid:2019005024 plan does not start with 'home' activity: escort Person pid:2019011783-1 hid:2019005035 plan does not start with 'home' activity: visit Person pid:2019011790-3 hid:2019005039 plan does not start with 'home' activity: work Person pid:2019011789-5 hid:2019005039 plan does not start with 'home' activity: work Person pid:2019011792-1 hid:2019005040 plan does not start with 'home' activity: work Person pid:2019011792-5 hid:2019005040 plan does not start with 'home' activity: work Person pid:2019011811-6 hid:2019005048 plan does not start with 'home' activity: visit Person pid:2019011811-7 hid:2019005048 plan does not start with 'home' activity: visit Person pid:2019011815-1 hid:2019005049 plan does not start with 'home' activity: other Person pid:2019011815-3 hid:2019005049 plan does not start with 'home' activity: other Person pid:2019011815-4 hid:2019005049 plan does not start with 'home' activity: visit Person pid:2019011820-4 hid:2019005052 plan does not start with 'home' activity: work Person pid:2019011821-6 hid:2019005052 plan does not start with 'home' activity: education Person pid:2019011820-5 hid:2019005052 plan does not start with 'home' activity: work Person pid:2019011820-6 hid:2019005052 plan does not start with 'home' activity: work Person pid:2019011824-1 hid:2019005055 plan does not start with 'home' activity: work Person pid:2019011824-4 hid:2019005055 plan does not start with 'home' activity: work Person pid:2019011824-5 hid:2019005055 plan does not start with 'home' activity: work Person pid:2019011824-6 hid:2019005055 plan does not start with 'home' activity: other Person pid:2019011844-4 hid:2019005062 plan does not start with 'home' activity: visit Person pid:2019011848-2 hid:2019005064 plan does not start with 'home' activity: work Person pid:2019011848-3 hid:2019005064 plan does not start with 'home' activity: work Person pid:2019011861-6 hid:2019005071 plan does not start with 'home' activity: other Person pid:2019011863-1 hid:2019005072 plan does not start with 'home' activity: visit Person pid:2019011863-2 hid:2019005072 plan does not start with 'home' activity: visit Person pid:2019011863-3 hid:2019005072 plan does not start with 'home' activity: visit Person pid:2019011863-4 hid:2019005072 plan does not start with 'home' activity: other Person pid:2019011862-6 hid:2019005072 plan does not start with 'home' activity: visit Person pid:2019011863-5 hid:2019005072 plan does not start with 'home' activity: visit Person pid:2019011921-5 hid:2019005096 plan does not start with 'home' activity: other Person pid:2019011923-6 hid:2019005097 plan does not start with 'home' activity: work Person pid:2019011926-2 hid:2019005099 plan does not start with 'home' activity: work Person pid:2019011926-3 hid:2019005099 plan does not start with 'home' activity: work Person pid:2019011926-4 hid:2019005099 plan does not start with 'home' activity: work Person pid:2019011926-5 hid:2019005099 plan does not start with 'home' activity: work Person pid:2019011930-1 hid:2019005102 plan does not start with 'home' activity: work Person pid:2019011930-2 hid:2019005102 plan does not start with 'home' activity: work Person pid:2019011930-3 hid:2019005102 plan does not start with 'home' activity: work Person pid:2019011930-4 hid:2019005102 plan does not start with 'home' activity: work Person pid:2019011963-4 hid:2019005113 plan does not start with 'home' activity: work Person pid:2019011963-6 hid:2019005113 plan does not start with 'home' activity: work Person pid:2019011963-7 hid:2019005113 plan does not start with 'home' activity: work Person pid:2019011986-2 hid:2019005123 plan does not start with 'home' activity: work Person pid:2019012008-5 hid:2019005132 plan does not start with 'home' activity: other Person pid:2019012013-4 hid:2019005135 plan does not start with 'home' activity: visit Person pid:2019012012-7 hid:2019005135 plan does not start with 'home' activity: visit Person pid:2019012019-7 hid:2019005138 plan does not start with 'home' activity: visit Person pid:2019012023-1 hid:2019005141 plan does not start with 'home' activity: work Person pid:2019012023-5 hid:2019005141 plan does not start with 'home' activity: work Person pid:2019012029-1 hid:2019005142 plan does not start with 'home' activity: other Person pid:2019012033-1 hid:2019005145 plan does not start with 'home' activity: visit Person pid:2019012033-2 hid:2019005145 plan does not start with 'home' activity: visit Person pid:2019012033-3 hid:2019005145 plan does not start with 'home' activity: visit Person pid:2019012033-4 hid:2019005145 plan does not start with 'home' activity: visit Person pid:2019012034-3 hid:2019005146 plan does not start with 'home' activity: work Person pid:2019012039-7 hid:2019005148 plan does not start with 'home' activity: visit Person pid:2019012044-5 hid:2019005151 plan does not start with 'home' activity: visit Person pid:2019012045-4 hid:2019005152 plan does not start with 'home' activity: work Person pid:2019012050-2 hid:2019005154 plan does not start with 'home' activity: visit Person pid:2019012050-3 hid:2019005154 plan does not start with 'home' activity: visit Person pid:2019012051-6 hid:2019005154 plan does not start with 'home' activity: other Person pid:2019012075-3 hid:2019005162 plan does not start with 'home' activity: visit Person pid:2019012079-1 hid:2019005164 plan does not start with 'home' activity: other Person pid:2019012078-2 hid:2019005164 plan does not start with 'home' activity: work Person pid:2019012078-3 hid:2019005164 plan does not start with 'home' activity: work Person pid:2019012078-4 hid:2019005164 plan does not start with 'home' activity: work Person pid:2019012078-5 hid:2019005164 plan does not start with 'home' activity: work Person pid:2019012078-7 hid:2019005164 plan does not start with 'home' activity: work Person pid:2019012079-5 hid:2019005164 plan does not start with 'home' activity: visit Person pid:2019012090-5 hid:2019005171 plan does not start with 'home' activity: other Person pid:2019012095-1 hid:2019005173 plan does not start with 'home' activity: other Person pid:2019012094-5 hid:2019005173 plan does not start with 'home' activity: other Person pid:2019012118-5 hid:2019005183 plan does not start with 'home' activity: visit Person pid:2019012137-4 hid:2019005190 plan does not start with 'home' activity: shop Person pid:2019012140-5 hid:2019005190 plan does not start with 'home' activity: escort Person pid:2019012139-7 hid:2019005190 plan does not start with 'home' activity: escort Person pid:2019012152-2 hid:2019005194 plan does not start with 'home' activity: visit Person pid:2019012151-2 hid:2019005194 plan does not start with 'home' activity: visit Person pid:2019012151-3 hid:2019005194 plan does not start with 'home' activity: visit Person pid:2019012149-6 hid:2019005194 plan does not start with 'home' activity: visit Person pid:2019012151-6 hid:2019005194 plan does not start with 'home' activity: visit Person pid:2019012158-1 hid:2019005197 plan does not start with 'home' activity: education Person pid:2019012158-3 hid:2019005197 plan does not start with 'home' activity: education Person pid:2019012183-4 hid:2019005209 plan does not start with 'home' activity: visit Person pid:2019012183-6 hid:2019005209 plan does not start with 'home' activity: visit Person pid:2019012193-5 hid:2019005214 plan does not start with 'home' activity: work Person pid:2019012193-6 hid:2019005214 plan does not start with 'home' activity: work Person pid:2019012199-2 hid:2019005215 plan does not start with 'home' activity: work Person pid:2019012199-3 hid:2019005215 plan does not start with 'home' activity: work Person pid:2019012214-1 hid:2019005220 plan does not start with 'home' activity: education Person pid:2019012214-3 hid:2019005220 plan does not start with 'home' activity: visit Person pid:2019012213-3 hid:2019005220 plan does not start with 'home' activity: visit Person pid:2019012213-4 hid:2019005220 plan does not start with 'home' activity: education Person pid:2019012212-3 hid:2019005220 plan does not start with 'home' activity: visit Person pid:2019012223-4 hid:2019005224 plan does not start with 'home' activity: other Person pid:2019012224-2 hid:2019005224 plan does not start with 'home' activity: escort Person pid:2019012225-4 hid:2019005224 plan does not start with 'home' activity: visit Person pid:2019012226-4 hid:2019005224 plan does not start with 'home' activity: visit Person pid:2019012225-6 hid:2019005224 plan does not start with 'home' activity: visit Person pid:2019012229-4 hid:2019005225 plan does not start with 'home' activity: visit Person pid:2019012230-4 hid:2019005225 plan does not start with 'home' activity: visit Person pid:2019012232-3 hid:2019005226 plan does not start with 'home' activity: shop Person pid:2019012234-2 hid:2019005227 plan does not start with 'home' activity: work Person pid:2019012254-3 hid:2019005235 plan does not start with 'home' activity: work Person pid:2019012254-4 hid:2019005235 plan does not start with 'home' activity: work Person pid:2019012254-5 hid:2019005235 plan does not start with 'home' activity: visit Person pid:2019012260-1 hid:2019005239 plan does not start with 'home' activity: visit Person pid:2019012260-5 hid:2019005239 plan does not start with 'home' activity: visit Person pid:2019012260-6 hid:2019005239 plan does not start with 'home' activity: visit Person pid:2019012260-7 hid:2019005239 plan does not start with 'home' activity: visit Person pid:2019012271-5 hid:2019005243 plan does not start with 'home' activity: other Person pid:2019012274-5 hid:2019005243 plan does not start with 'home' activity: other Person pid:2019012272-7 hid:2019005243 plan does not start with 'home' activity: other Person pid:2019012273-6 hid:2019005243 plan does not start with 'home' activity: other Person pid:2019012279-1 hid:2019005245 plan does not start with 'home' activity: visit Person pid:2019012280-2 hid:2019005245 plan does not start with 'home' activity: escort Person pid:2019012280-5 hid:2019005245 plan does not start with 'home' activity: escort Person pid:2019012280-7 hid:2019005245 plan does not start with 'home' activity: visit Person pid:2019012294-7 hid:2019005251 plan does not start with 'home' activity: visit Person pid:2019012295-6 hid:2019005251 plan does not start with 'home' activity: visit Person pid:2019012301-3 hid:2019005253 plan does not start with 'home' activity: visit Person pid:2019012320-2 hid:2019005258 plan does not start with 'home' activity: work Person pid:2019012320-3 hid:2019005258 plan does not start with 'home' activity: work Person pid:2019012322-2 hid:2019005259 plan does not start with 'home' activity: work Person pid:2019012322-4 hid:2019005259 plan does not start with 'home' activity: work Person pid:2019012336-2 hid:2019005265 plan does not start with 'home' activity: work Person pid:2019012349-3 hid:2019005271 plan does not start with 'home' activity: visit Person pid:2019012365-6 hid:2019005279 plan does not start with 'home' activity: work Person pid:2019012373-2 hid:2019005282 plan does not start with 'home' activity: other Person pid:2019012374-6 hid:2019005282 plan does not start with 'home' activity: visit Person pid:2019012380-2 hid:2019005285 plan does not start with 'home' activity: visit Person pid:2019012380-4 hid:2019005285 plan does not start with 'home' activity: visit Person pid:2019012392-1 hid:2019005292 plan does not start with 'home' activity: escort Person pid:2019012392-6 hid:2019005292 plan does not start with 'home' activity: escort Person pid:2019012397-5 hid:2019005293 plan does not start with 'home' activity: visit Person pid:2019012400-4 hid:2019005294 plan does not start with 'home' activity: visit Person pid:2019012403-2 hid:2019005295 plan does not start with 'home' activity: other Person pid:2019012409-1 hid:2019005297 plan does not start with 'home' activity: visit Person pid:2019012407-5 hid:2019005297 plan does not start with 'home' activity: other Person pid:2019012408-3 hid:2019005297 plan does not start with 'home' activity: other Person pid:2019012413-3 hid:2019005300 plan does not start with 'home' activity: visit Person pid:2019012419-3 hid:2019005302 plan does not start with 'home' activity: other Person pid:2019012420-6 hid:2019005302 plan does not start with 'home' activity: other Person pid:2019012423-1 hid:2019005303 plan does not start with 'home' activity: work Person pid:2019012429-5 hid:2019005307 plan does not start with 'home' activity: work Person pid:2019012431-1 hid:2019005308 plan does not start with 'home' activity: work Person pid:2019012431-2 hid:2019005308 plan does not start with 'home' activity: work Person pid:2019012431-3 hid:2019005308 plan does not start with 'home' activity: work Person pid:2019012431-4 hid:2019005308 plan does not start with 'home' activity: work Person pid:2019012431-5 hid:2019005308 plan does not start with 'home' activity: work Person pid:2019012435-1 hid:2019005311 plan does not start with 'home' activity: work Person pid:2019012435-2 hid:2019005311 plan does not start with 'home' activity: work Person pid:2019012435-3 hid:2019005311 plan does not start with 'home' activity: work Person pid:2019012435-4 hid:2019005311 plan does not start with 'home' activity: work Person pid:2019012435-5 hid:2019005311 plan does not start with 'home' activity: work Person pid:2019012435-6 hid:2019005311 plan does not start with 'home' activity: work Person pid:2019012435-7 hid:2019005311 plan does not start with 'home' activity: work Person pid:2019012441-4 hid:2019005313 plan does not start with 'home' activity: visit Person pid:2019012467-5 hid:2019005323 plan does not start with 'home' activity: work Person pid:2019012491-1 hid:2019005331 plan does not start with 'home' activity: work Person pid:2019012491-3 hid:2019005331 plan does not start with 'home' activity: work Person pid:2019012491-5 hid:2019005331 plan does not start with 'home' activity: work Person pid:2019012491-6 hid:2019005331 plan does not start with 'home' activity: work Person pid:2019012497-6 hid:2019005332 plan does not start with 'home' activity: work Person pid:2019012500-3 hid:2019005332 plan does not start with 'home' activity: visit Person pid:2019012501-2 hid:2019005333 plan does not start with 'home' activity: visit Person pid:2019012502-2 hid:2019005333 plan does not start with 'home' activity: visit Person pid:2019012516-1 hid:2019005339 plan does not start with 'home' activity: work Person pid:2019012516-3 hid:2019005339 plan does not start with 'home' activity: work Person pid:2019012516-4 hid:2019005339 plan does not start with 'home' activity: work Person pid:2019012555-4 hid:2019005351 plan does not start with 'home' activity: visit Person pid:2019012554-6 hid:2019005351 plan does not start with 'home' activity: work Person pid:2019012565-4 hid:2019005357 plan does not start with 'home' activity: visit Person pid:2019012567-2 hid:2019005357 plan does not start with 'home' activity: other Person pid:2019012567-4 hid:2019005357 plan does not start with 'home' activity: visit Person pid:2019012574-2 hid:2019005361 plan does not start with 'home' activity: visit Person pid:2019012578-5 hid:2019005362 plan does not start with 'home' activity: visit Person pid:2019012589-3 hid:2019005368 plan does not start with 'home' activity: work Person pid:2019012589-7 hid:2019005368 plan does not start with 'home' activity: work Person pid:2019012598-3 hid:2019005372 plan does not start with 'home' activity: work Person pid:2019012600-2 hid:2019005372 plan does not start with 'home' activity: work Person pid:2019012604-5 hid:2019005376 plan does not start with 'home' activity: work Person pid:2019012606-5 hid:2019005377 plan does not start with 'home' activity: work Person pid:2019012611-1 hid:2019005378 plan does not start with 'home' activity: other Person pid:2019012612-2 hid:2019005378 plan does not start with 'home' activity: other Person pid:2019012616-6 hid:2019005380 plan does not start with 'home' activity: other Person pid:2019012623-4 hid:2019005386 plan does not start with 'home' activity: escort Person pid:2019012631-1 hid:2019005387 plan does not start with 'home' activity: education Person pid:2019012627-1 hid:2019005387 plan does not start with 'home' activity: escort Person pid:2019012627-2 hid:2019005387 plan does not start with 'home' activity: escort Person pid:2019012629-3 hid:2019005387 plan does not start with 'home' activity: education Person pid:2019012629-4 hid:2019005387 plan does not start with 'home' activity: education Person pid:2019012629-6 hid:2019005387 plan does not start with 'home' activity: education Person pid:2019012631-5 hid:2019005387 plan does not start with 'home' activity: education Person pid:2019012640-2 hid:2019005389 plan does not start with 'home' activity: work Person pid:2019012640-3 hid:2019005389 plan does not start with 'home' activity: work Person pid:2019012640-4 hid:2019005389 plan does not start with 'home' activity: work Person pid:2019012640-5 hid:2019005389 plan does not start with 'home' activity: work Person pid:2019012635-6 hid:2019005389 plan does not start with 'home' activity: work Person pid:2019012648-4 hid:2019005392 plan does not start with 'home' activity: visit Person pid:2019012647-5 hid:2019005392 plan does not start with 'home' activity: other Person pid:2019012652-1 hid:2019005393 plan does not start with 'home' activity: visit Person pid:2019012663-1 hid:2019005396 plan does not start with 'home' activity: visit Person pid:2019012662-1 hid:2019005396 plan does not start with 'home' activity: visit Person pid:2019012699-2 hid:2019005409 plan does not start with 'home' activity: shop Person pid:2019012697-2 hid:2019005409 plan does not start with 'home' activity: visit Person pid:2019012696-5 hid:2019005409 plan does not start with 'home' activity: visit Person pid:2019012702-5 hid:2019005410 plan does not start with 'home' activity: visit Person pid:2019012702-6 hid:2019005410 plan does not start with 'home' activity: visit Person pid:2019012714-6 hid:2019005415 plan does not start with 'home' activity: other Person pid:2019012713-7 hid:2019005415 plan does not start with 'home' activity: other Person pid:2019012719-1 hid:2019005417 plan does not start with 'home' activity: visit Person pid:2019012719-3 hid:2019005417 plan does not start with 'home' activity: visit Person pid:2019012727-1 hid:2019005421 plan does not start with 'home' activity: visit Person pid:2019012734-3 hid:2019005424 plan does not start with 'home' activity: work Person pid:2019012734-4 hid:2019005424 plan does not start with 'home' activity: work Person pid:2019012734-5 hid:2019005424 plan does not start with 'home' activity: work Person pid:2019012742-5 hid:2019005427 plan does not start with 'home' activity: visit Person pid:2019012751-3 hid:2019005431 plan does not start with 'home' activity: visit Person pid:2019012751-7 hid:2019005431 plan does not start with 'home' activity: visit Person pid:2019012764-2 hid:2019005437 plan does not start with 'home' activity: visit Person pid:2019012774-6 hid:2019005441 plan does not start with 'home' activity: work Person pid:2019012775-4 hid:2019005442 plan does not start with 'home' activity: visit Person pid:2019012788-2 hid:2019005448 plan does not start with 'home' activity: work Person pid:2019012788-3 hid:2019005448 plan does not start with 'home' activity: work Person pid:2019012788-4 hid:2019005448 plan does not start with 'home' activity: work Person pid:2019012788-5 hid:2019005448 plan does not start with 'home' activity: work Person pid:2019012791-2 hid:2019005449 plan does not start with 'home' activity: visit Person pid:2019012789-6 hid:2019005449 plan does not start with 'home' activity: other Person pid:2019012795-3 hid:2019005450 plan does not start with 'home' activity: shop Person pid:2019012799-3 hid:2019005451 plan does not start with 'home' activity: visit Person pid:2019012797-6 hid:2019005451 plan does not start with 'home' activity: other Person pid:2019012798-6 hid:2019005451 plan does not start with 'home' activity: visit Person pid:2019012798-7 hid:2019005451 plan does not start with 'home' activity: visit Person pid:2019012799-7 hid:2019005451 plan does not start with 'home' activity: visit Person pid:2019012810-2 hid:2019005454 plan does not start with 'home' activity: visit Person pid:2019012810-5 hid:2019005454 plan does not start with 'home' activity: visit Person pid:2019012811-3 hid:2019005455 plan does not start with 'home' activity: shop Person pid:2019012814-2 hid:2019005457 plan does not start with 'home' activity: other Person pid:2019012815-1 hid:2019005458 plan does not start with 'home' activity: visit Person pid:2019012816-2 hid:2019005458 plan does not start with 'home' activity: visit Person pid:2019012815-4 hid:2019005458 plan does not start with 'home' activity: visit Person pid:2019012816-5 hid:2019005458 plan does not start with 'home' activity: visit Person pid:2019012815-6 hid:2019005458 plan does not start with 'home' activity: visit Person pid:2019012816-6 hid:2019005458 plan does not start with 'home' activity: visit Person pid:2019012834-7 hid:2019005465 plan does not start with 'home' activity: visit Person pid:2019012858-1 hid:2019005473 plan does not start with 'home' activity: work Person pid:2019012858-3 hid:2019005473 plan does not start with 'home' activity: work Person pid:2019012860-3 hid:2019005475 plan does not start with 'home' activity: work Person pid:2019012860-4 hid:2019005475 plan does not start with 'home' activity: work Person pid:2019012860-5 hid:2019005475 plan does not start with 'home' activity: work Person pid:2019012860-7 hid:2019005475 plan does not start with 'home' activity: work Person pid:2019012866-1 hid:2019005478 plan does not start with 'home' activity: work Person pid:2019012866-4 hid:2019005478 plan does not start with 'home' activity: work Person pid:2019012866-5 hid:2019005478 plan does not start with 'home' activity: work Person pid:2019012876-5 hid:2019005483 plan does not start with 'home' activity: shop Person pid:2019012877-6 hid:2019005483 plan does not start with 'home' activity: work Person pid:2019012893-3 hid:2019005489 plan does not start with 'home' activity: visit Person pid:2019012894-4 hid:2019005489 plan does not start with 'home' activity: visit Person pid:2019012892-7 hid:2019005489 plan does not start with 'home' activity: visit Person pid:2019012918-2 hid:2019005498 plan does not start with 'home' activity: work Person pid:2019012918-3 hid:2019005498 plan does not start with 'home' activity: work Person pid:2019012918-4 hid:2019005498 plan does not start with 'home' activity: work Person pid:2019012918-5 hid:2019005498 plan does not start with 'home' activity: work Person pid:2019012924-1 hid:2019005500 plan does not start with 'home' activity: escort Person pid:2019012922-3 hid:2019005500 plan does not start with 'home' activity: visit Person pid:2019012922-4 hid:2019005500 plan does not start with 'home' activity: visit Person pid:2019012925-6 hid:2019005501 plan does not start with 'home' activity: visit Person pid:2019012928-4 hid:2019005503 plan does not start with 'home' activity: work Person pid:2019012957-2 hid:2019005517 plan does not start with 'home' activity: visit Person pid:2019012957-5 hid:2019005517 plan does not start with 'home' activity: visit Person pid:2019012957-6 hid:2019005517 plan does not start with 'home' activity: visit Person pid:2019012990-6 hid:2019005529 plan does not start with 'home' activity: visit Person pid:2019013011-2 hid:2019005538 plan does not start with 'home' activity: work Person pid:2019013011-5 hid:2019005538 plan does not start with 'home' activity: work Person pid:2019013012-3 hid:2019005538 plan does not start with 'home' activity: education Person pid:2019013021-7 hid:2019005541 plan does not start with 'home' activity: work Person pid:2019013026-1 hid:2019005542 plan does not start with 'home' activity: visit Person pid:2019013036-3 hid:2019005545 plan does not start with 'home' activity: work Person pid:2019013036-6 hid:2019005545 plan does not start with 'home' activity: work Person pid:2019013044-4 hid:2019005548 plan does not start with 'home' activity: shop Person pid:2019013047-4 hid:2019005548 plan does not start with 'home' activity: escort Person pid:2019013060-2 hid:2019005552 plan does not start with 'home' activity: education Person pid:2019013068-1 hid:2019005555 plan does not start with 'home' activity: visit Person pid:2019013069-5 hid:2019005555 plan does not start with 'home' activity: visit Person pid:2019013070-6 hid:2019005555 plan does not start with 'home' activity: visit Person pid:2019013067-7 hid:2019005555 plan does not start with 'home' activity: visit Person pid:2019013075-6 hid:2019005558 plan does not start with 'home' activity: visit Person pid:2019013080-3 hid:2019005561 plan does not start with 'home' activity: work Person pid:2019013080-4 hid:2019005561 plan does not start with 'home' activity: work Person pid:2019013095-4 hid:2019005568 plan does not start with 'home' activity: education Person pid:2019013094-6 hid:2019005568 plan does not start with 'home' activity: other Person pid:2019013098-1 hid:2019005569 plan does not start with 'home' activity: visit Person pid:2019013103-1 hid:2019005571 plan does not start with 'home' activity: work Person pid:2019013111-1 hid:2019005573 plan does not start with 'home' activity: visit Person pid:2019013114-3 hid:2019005574 plan does not start with 'home' activity: visit Person pid:2019013113-7 hid:2019005574 plan does not start with 'home' activity: visit Person pid:2019013117-5 hid:2019005575 plan does not start with 'home' activity: other Person pid:2019013123-6 hid:2019005577 plan does not start with 'home' activity: other Person pid:2019013138-4 hid:2019005582 plan does not start with 'home' activity: visit Person pid:2019013140-1 hid:2019005583 plan does not start with 'home' activity: other Person pid:2019013151-5 hid:2019005587 plan does not start with 'home' activity: work Person pid:2019013155-3 hid:2019005590 plan does not start with 'home' activity: visit Person pid:2019013171-2 hid:2019005597 plan does not start with 'home' activity: work Person pid:2019013171-3 hid:2019005597 plan does not start with 'home' activity: work Person pid:2019013195-6 hid:2019005608 plan does not start with 'home' activity: other Person pid:2019013209-2 hid:2019005613 plan does not start with 'home' activity: education Person pid:2019013208-2 hid:2019005613 plan does not start with 'home' activity: education Person pid:2019013208-3 hid:2019005613 plan does not start with 'home' activity: education Person pid:2019013209-4 hid:2019005613 plan does not start with 'home' activity: education Person pid:2019013209-5 hid:2019005613 plan does not start with 'home' activity: education Person pid:2019013209-6 hid:2019005613 plan does not start with 'home' activity: education Person pid:2019013208-5 hid:2019005613 plan does not start with 'home' activity: education Person pid:2019013209-7 hid:2019005613 plan does not start with 'home' activity: education Person pid:2019013208-6 hid:2019005613 plan does not start with 'home' activity: education Person pid:2019013210-1 hid:2019005614 plan does not start with 'home' activity: work Person pid:2019013211-1 hid:2019005614 plan does not start with 'home' activity: other Person pid:2019013213-5 hid:2019005614 plan does not start with 'home' activity: visit Person pid:2019013215-1 hid:2019005615 plan does not start with 'home' activity: visit Person pid:2019013215-3 hid:2019005615 plan does not start with 'home' activity: visit Person pid:2019013214-4 hid:2019005615 plan does not start with 'home' activity: visit Person pid:2019013214-5 hid:2019005615 plan does not start with 'home' activity: visit Person pid:2019013226-2 hid:2019005620 plan does not start with 'home' activity: education Person pid:2019013226-5 hid:2019005620 plan does not start with 'home' activity: education Person pid:2019013225-4 hid:2019005620 plan does not start with 'home' activity: education Person pid:2019013225-5 hid:2019005620 plan does not start with 'home' activity: education Person pid:2019013237-6 hid:2019005625 plan does not start with 'home' activity: other Person pid:2019013255-2 hid:2019005635 plan does not start with 'home' activity: other Person pid:2019013279-1 hid:2019005645 plan does not start with 'home' activity: visit Person pid:2019013280-2 hid:2019005646 plan does not start with 'home' activity: other Person pid:2019013284-5 hid:2019005647 plan does not start with 'home' activity: visit Person pid:2019013284-6 hid:2019005647 plan does not start with 'home' activity: visit Person pid:2019013307-6 hid:2019005652 plan does not start with 'home' activity: other Person pid:2019013306-3 hid:2019005652 plan does not start with 'home' activity: visit Person pid:2019013375-1 hid:2019005681 plan does not start with 'home' activity: work Person pid:2019013379-2 hid:2019005682 plan does not start with 'home' activity: other Person pid:2019013385-1 hid:2019005684 plan does not start with 'home' activity: work Person pid:2019013384-1 hid:2019005684 plan does not start with 'home' activity: work Person pid:2019013384-4 hid:2019005684 plan does not start with 'home' activity: work Person pid:2019013384-7 hid:2019005684 plan does not start with 'home' activity: work Person pid:2019013395-5 hid:2019005688 plan does not start with 'home' activity: visit Person pid:2019013396-3 hid:2019005688 plan does not start with 'home' activity: visit Person pid:2019013396-6 hid:2019005688 plan does not start with 'home' activity: education Person pid:2019013396-7 hid:2019005688 plan does not start with 'home' activity: visit Person pid:2019013399-2 hid:2019005689 plan does not start with 'home' activity: visit Person pid:2019013399-5 hid:2019005689 plan does not start with 'home' activity: other Person pid:2019013402-2 hid:2019005689 plan does not start with 'home' activity: visit Person pid:2019013402-3 hid:2019005689 plan does not start with 'home' activity: visit Person pid:2019013406-1 hid:2019005690 plan does not start with 'home' activity: other Person pid:2019013406-2 hid:2019005690 plan does not start with 'home' activity: work Person pid:2019013406-3 hid:2019005690 plan does not start with 'home' activity: work Person pid:2019013406-4 hid:2019005690 plan does not start with 'home' activity: work Person pid:2019013406-6 hid:2019005690 plan does not start with 'home' activity: work Person pid:2019013406-7 hid:2019005690 plan does not start with 'home' activity: work Person pid:2019013414-1 hid:2019005693 plan does not start with 'home' activity: visit Person pid:2019013414-4 hid:2019005693 plan does not start with 'home' activity: visit Person pid:2019013413-4 hid:2019005693 plan does not start with 'home' activity: visit Person pid:2019013413-7 hid:2019005693 plan does not start with 'home' activity: visit Person pid:2019013420-5 hid:2019005697 plan does not start with 'home' activity: visit Person pid:2019013425-6 hid:2019005699 plan does not start with 'home' activity: visit Person pid:2019013429-1 hid:2019005701 plan does not start with 'home' activity: visit Person pid:2019013429-6 hid:2019005701 plan does not start with 'home' activity: visit Person pid:2019013427-5 hid:2019005701 plan does not start with 'home' activity: visit Person pid:2019013444-2 hid:2019005708 plan does not start with 'home' activity: work Person pid:2019013461-2 hid:2019005714 plan does not start with 'home' activity: visit Person pid:2019013461-4 hid:2019005714 plan does not start with 'home' activity: visit Person pid:2019013466-3 hid:2019005716 plan does not start with 'home' activity: work Person pid:2019013466-6 hid:2019005716 plan does not start with 'home' activity: work Person pid:2019013483-1 hid:2019005722 plan does not start with 'home' activity: work Person pid:2019013483-3 hid:2019005722 plan does not start with 'home' activity: work Person pid:2019013488-1 hid:2019005723 plan does not start with 'home' activity: visit Person pid:2019013488-2 hid:2019005723 plan does not start with 'home' activity: visit Person pid:2019013494-1 hid:2019005724 plan does not start with 'home' activity: education Person pid:2019013494-4 hid:2019005724 plan does not start with 'home' activity: education Person pid:2019013494-5 hid:2019005724 plan does not start with 'home' activity: education Person pid:2019013497-7 hid:2019005725 plan does not start with 'home' activity: visit Person pid:2019013501-2 hid:2019005727 plan does not start with 'home' activity: other Person pid:2019013501-3 hid:2019005727 plan does not start with 'home' activity: other Person pid:2019013501-4 hid:2019005727 plan does not start with 'home' activity: other Person pid:2019013505-1 hid:2019005730 plan does not start with 'home' activity: visit Person pid:2019013505-7 hid:2019005730 plan does not start with 'home' activity: visit Person pid:2019013513-4 hid:2019005734 plan does not start with 'home' activity: other Person pid:2019013525-2 hid:2019005742 plan does not start with 'home' activity: work Person pid:2019013525-3 hid:2019005742 plan does not start with 'home' activity: work Person pid:2019013525-4 hid:2019005742 plan does not start with 'home' activity: work Person pid:2019013525-5 hid:2019005742 plan does not start with 'home' activity: work Person pid:2019013527-4 hid:2019005743 plan does not start with 'home' activity: other Person pid:2019013531-1 hid:2019005744 plan does not start with 'home' activity: visit Person pid:2019013531-3 hid:2019005744 plan does not start with 'home' activity: visit Person pid:2019013535-5 hid:2019005746 plan does not start with 'home' activity: visit Person pid:2019013538-1 hid:2019005747 plan does not start with 'home' activity: work Person pid:2019013539-7 hid:2019005747 plan does not start with 'home' activity: other Person pid:2019013542-5 hid:2019005749 plan does not start with 'home' activity: work Person pid:2019013547-1 hid:2019005751 plan does not start with 'home' activity: work Person pid:2019013553-1 hid:2019005753 plan does not start with 'home' activity: work Person pid:2019013565-1 hid:2019005757 plan does not start with 'home' activity: other Person pid:2019013583-1 hid:2019005765 plan does not start with 'home' activity: work Person pid:2019013586-1 hid:2019005766 plan does not start with 'home' activity: work Person pid:2019013586-6 hid:2019005766 plan does not start with 'home' activity: work Person pid:2019013585-6 hid:2019005766 plan does not start with 'home' activity: other Person pid:2019013586-7 hid:2019005766 plan does not start with 'home' activity: work Person pid:2019013591-3 hid:2019005768 plan does not start with 'home' activity: work Person pid:2019013591-6 hid:2019005768 plan does not start with 'home' activity: work Person pid:2019013616-1 hid:2019005779 plan does not start with 'home' activity: work Person pid:2019013616-2 hid:2019005779 plan does not start with 'home' activity: work Person pid:2019013616-3 hid:2019005779 plan does not start with 'home' activity: work Person pid:2019013616-5 hid:2019005779 plan does not start with 'home' activity: work Person pid:2019013616-6 hid:2019005779 plan does not start with 'home' activity: work Person pid:2019013624-1 hid:2019005782 plan does not start with 'home' activity: other Person pid:2019013623-3 hid:2019005782 plan does not start with 'home' activity: work Person pid:2019013623-5 hid:2019005782 plan does not start with 'home' activity: work Person pid:2019013626-2 hid:2019005783 plan does not start with 'home' activity: work Person pid:2019013626-5 hid:2019005783 plan does not start with 'home' activity: work Person pid:2019013626-6 hid:2019005783 plan does not start with 'home' activity: work Person pid:2019013631-2 hid:2019005785 plan does not start with 'home' activity: medical Person pid:2019013634-1 hid:2019005786 plan does not start with 'home' activity: escort Person pid:2019013634-3 hid:2019005786 plan does not start with 'home' activity: escort Person pid:2019013634-4 hid:2019005786 plan does not start with 'home' activity: escort Person pid:2019013634-5 hid:2019005786 plan does not start with 'home' activity: escort Person pid:2019013657-1 hid:2019005795 plan does not start with 'home' activity: work Person pid:2019013657-2 hid:2019005795 plan does not start with 'home' activity: work Person pid:2019013657-4 hid:2019005795 plan does not start with 'home' activity: work Person pid:2019013657-5 hid:2019005795 plan does not start with 'home' activity: work Person pid:2019013660-1 hid:2019005796 plan does not start with 'home' activity: visit Person pid:2019013660-3 hid:2019005796 plan does not start with 'home' activity: visit Person pid:2019013660-5 hid:2019005796 plan does not start with 'home' activity: visit Person pid:2019013672-1 hid:2019005801 plan does not start with 'home' activity: other Person pid:2019013681-4 hid:2019005806 plan does not start with 'home' activity: escort Person pid:2019013684-5 hid:2019005807 plan does not start with 'home' activity: work Person pid:2019013685-2 hid:2019005807 plan does not start with 'home' activity: work Person pid:2019013685-3 hid:2019005807 plan does not start with 'home' activity: other Person pid:2019013685-4 hid:2019005807 plan does not start with 'home' activity: work Person pid:2019013687-2 hid:2019005809 plan does not start with 'home' activity: visit Person pid:2019013687-3 hid:2019005809 plan does not start with 'home' activity: visit Person pid:2019013696-6 hid:2019005815 plan does not start with 'home' activity: visit Person pid:2019013697-2 hid:2019005816 plan does not start with 'home' activity: other Person pid:2019013698-6 hid:2019005816 plan does not start with 'home' activity: other Person pid:2019013715-7 hid:2019005823 plan does not start with 'home' activity: other Person pid:2019013738-3 hid:2019005832 plan does not start with 'home' activity: other Person pid:2019013740-5 hid:2019005833 plan does not start with 'home' activity: visit Person pid:2019013740-6 hid:2019005833 plan does not start with 'home' activity: visit Person pid:2019013740-7 hid:2019005833 plan does not start with 'home' activity: visit Person pid:2019013756-4 hid:2019005840 plan does not start with 'home' activity: work Person pid:2019013755-4 hid:2019005840 plan does not start with 'home' activity: work Person pid:2019013755-6 hid:2019005840 plan does not start with 'home' activity: work Person pid:2019013775-1 hid:2019005848 plan does not start with 'home' activity: visit Person pid:2019013775-2 hid:2019005848 plan does not start with 'home' activity: visit Person pid:2019013775-5 hid:2019005848 plan does not start with 'home' activity: other Person pid:2019013784-1 hid:2019005851 plan does not start with 'home' activity: visit Person pid:2019013784-2 hid:2019005851 plan does not start with 'home' activity: visit Person pid:2019013784-3 hid:2019005851 plan does not start with 'home' activity: visit Person pid:2019013784-4 hid:2019005851 plan does not start with 'home' activity: visit Person pid:2019013799-3 hid:2019005854 plan does not start with 'home' activity: visit Person pid:2019013798-7 hid:2019005854 plan does not start with 'home' activity: visit Person pid:2019013800-2 hid:2019005855 plan does not start with 'home' activity: other Person pid:2019013802-4 hid:2019005855 plan does not start with 'home' activity: visit Person pid:2019013806-3 hid:2019005856 plan does not start with 'home' activity: education Person pid:2019013841-3 hid:2019005874 plan does not start with 'home' activity: visit Person pid:2019013843-7 hid:2019005874 plan does not start with 'home' activity: work Person pid:2019013860-6 hid:2019005881 plan does not start with 'home' activity: work Person pid:2019013867-1 hid:2019005885 plan does not start with 'home' activity: visit Person pid:2019013869-1 hid:2019005885 plan does not start with 'home' activity: visit Person pid:2019013866-3 hid:2019005885 plan does not start with 'home' activity: visit Person pid:2019013869-7 hid:2019005885 plan does not start with 'home' activity: escort Person pid:2019013868-7 hid:2019005885 plan does not start with 'home' activity: visit Person pid:2019013871-1 hid:2019005887 plan does not start with 'home' activity: other Person pid:2019013872-1 hid:2019005887 plan does not start with 'home' activity: other Person pid:2019013871-5 hid:2019005887 plan does not start with 'home' activity: work Person pid:2019013900-1 hid:2019005899 plan does not start with 'home' activity: other Person pid:2019013916-1 hid:2019005907 plan does not start with 'home' activity: visit Person pid:2019013929-1 hid:2019005911 plan does not start with 'home' activity: visit Person pid:2019013933-7 hid:2019005912 plan does not start with 'home' activity: education Person pid:2019013937-1 hid:2019005914 plan does not start with 'home' activity: work Person pid:2019013936-6 hid:2019005914 plan does not start with 'home' activity: work Person pid:2019013937-4 hid:2019005914 plan does not start with 'home' activity: work Person pid:2019013943-1 hid:2019005916 plan does not start with 'home' activity: education Person pid:2019013943-4 hid:2019005916 plan does not start with 'home' activity: education Person pid:2019013943-5 hid:2019005916 plan does not start with 'home' activity: education Person pid:2019013943-6 hid:2019005916 plan does not start with 'home' activity: education Person pid:2019013945-4 hid:2019005917 plan does not start with 'home' activity: work Person pid:2019013950-3 hid:2019005919 plan does not start with 'home' activity: escort Person pid:2019013956-5 hid:2019005922 plan does not start with 'home' activity: shop Person pid:2019013957-3 hid:2019005923 plan does not start with 'home' activity: other Person pid:2019013966-3 hid:2019005927 plan does not start with 'home' activity: visit Person pid:2019013966-4 hid:2019005927 plan does not start with 'home' activity: visit Person pid:2019013973-2 hid:2019005931 plan does not start with 'home' activity: work Person pid:2019014002-2 hid:2019005942 plan does not start with 'home' activity: shop Person pid:2019014012-5 hid:2019005946 plan does not start with 'home' activity: visit Person pid:2019014013-5 hid:2019005946 plan does not start with 'home' activity: visit Person pid:2019014013-7 hid:2019005946 plan does not start with 'home' activity: visit Person pid:2019014042-1 hid:2019005954 plan does not start with 'home' activity: work Person pid:2019014046-2 hid:2019005955 plan does not start with 'home' activity: medical Person pid:2019014046-4 hid:2019005955 plan does not start with 'home' activity: visit Person pid:2019014053-5 hid:2019005957 plan does not start with 'home' activity: visit Person pid:2019014073-4 hid:2019005963 plan does not start with 'home' activity: visit Person pid:2019014089-1 hid:2019005971 plan does not start with 'home' activity: work Person pid:2019014089-5 hid:2019005971 plan does not start with 'home' activity: work Person pid:2019014115-1 hid:2019005981 plan does not start with 'home' activity: work Person pid:2019014115-3 hid:2019005981 plan does not start with 'home' activity: work Person pid:2019014141-7 hid:2019005993 plan does not start with 'home' activity: other Person pid:2019014143-6 hid:2019005994 plan does not start with 'home' activity: shop Person pid:2019014154-6 hid:2019006000 plan does not start with 'home' activity: other Person pid:2019014160-1 hid:2019006002 plan does not start with 'home' activity: visit Person pid:2019014167-2 hid:2019006007 plan does not start with 'home' activity: visit Person pid:2019014168-4 hid:2019006007 plan does not start with 'home' activity: visit Person pid:2019014167-4 hid:2019006007 plan does not start with 'home' activity: visit Person pid:2019014168-6 hid:2019006007 plan does not start with 'home' activity: visit Person pid:2019014172-2 hid:2019006009 plan does not start with 'home' activity: work Person pid:2019014172-3 hid:2019006009 plan does not start with 'home' activity: work Person pid:2019014172-6 hid:2019006009 plan does not start with 'home' activity: work Person pid:2019014184-2 hid:2019006014 plan does not start with 'home' activity: work Person pid:2019014184-4 hid:2019006014 plan does not start with 'home' activity: work Person pid:2019014184-5 hid:2019006014 plan does not start with 'home' activity: work Person pid:2019014184-6 hid:2019006014 plan does not start with 'home' activity: work Person pid:2019014184-7 hid:2019006014 plan does not start with 'home' activity: work Person pid:2019014187-4 hid:2019006015 plan does not start with 'home' activity: work Person pid:2019014189-2 hid:2019006015 plan does not start with 'home' activity: education Person pid:2019014189-3 hid:2019006015 plan does not start with 'home' activity: education Person pid:2019014193-3 hid:2019006017 plan does not start with 'home' activity: work Person pid:2019014194-2 hid:2019006017 plan does not start with 'home' activity: visit Person pid:2019014193-5 hid:2019006017 plan does not start with 'home' activity: work Person pid:2019014194-3 hid:2019006017 plan does not start with 'home' activity: visit Person pid:2019014193-6 hid:2019006017 plan does not start with 'home' activity: visit Person pid:2019014193-7 hid:2019006017 plan does not start with 'home' activity: visit Person pid:2019014219-1 hid:2019006026 plan does not start with 'home' activity: visit Person pid:2019014219-6 hid:2019006026 plan does not start with 'home' activity: visit Person pid:2019014232-1 hid:2019006030 plan does not start with 'home' activity: visit Person pid:2019014238-1 hid:2019006032 plan does not start with 'home' activity: visit Person pid:2019014237-3 hid:2019006032 plan does not start with 'home' activity: education Person pid:2019014253-7 hid:2019006040 plan does not start with 'home' activity: other Person pid:2019014252-7 hid:2019006040 plan does not start with 'home' activity: other Person pid:2019014258-2 hid:2019006042 plan does not start with 'home' activity: visit Person pid:2019014261-5 hid:2019006043 plan does not start with 'home' activity: work Person pid:2019014262-7 hid:2019006043 plan does not start with 'home' activity: visit Person pid:2019014263-1 hid:2019006044 plan does not start with 'home' activity: shop Person pid:2019014289-1 hid:2019006050 plan does not start with 'home' activity: work Person pid:2019014289-2 hid:2019006050 plan does not start with 'home' activity: other Person pid:2019014302-1 hid:2019006054 plan does not start with 'home' activity: visit Person pid:2019014315-2 hid:2019006059 plan does not start with 'home' activity: visit Person pid:2019014315-3 hid:2019006059 plan does not start with 'home' activity: visit Person pid:2019014314-2 hid:2019006059 plan does not start with 'home' activity: work Person pid:2019014333-4 hid:2019006065 plan does not start with 'home' activity: visit Person pid:2019014346-1 hid:2019006070 plan does not start with 'home' activity: visit Person pid:2019014345-4 hid:2019006070 plan does not start with 'home' activity: visit Person pid:2019014348-2 hid:2019006071 plan does not start with 'home' activity: shop Person pid:2019014348-4 hid:2019006071 plan does not start with 'home' activity: shop Person pid:2019014348-6 hid:2019006071 plan does not start with 'home' activity: other Person pid:2019014347-2 hid:2019006071 plan does not start with 'home' activity: medical Person pid:2019014354-1 hid:2019006074 plan does not start with 'home' activity: visit Person pid:2019014354-7 hid:2019006074 plan does not start with 'home' activity: education Person pid:2019014355-5 hid:2019006075 plan does not start with 'home' activity: visit Person pid:2019014356-3 hid:2019006075 plan does not start with 'home' activity: visit Person pid:2019014361-1 hid:2019006078 plan does not start with 'home' activity: work Person pid:2019014361-2 hid:2019006078 plan does not start with 'home' activity: work Person pid:2019014361-4 hid:2019006078 plan does not start with 'home' activity: work Person pid:2019014361-5 hid:2019006078 plan does not start with 'home' activity: work Person pid:2019014376-1 hid:2019006085 plan does not start with 'home' activity: education Person pid:2019014377-1 hid:2019006085 plan does not start with 'home' activity: education Person pid:2019014377-5 hid:2019006085 plan does not start with 'home' activity: education Person pid:2019014377-6 hid:2019006085 plan does not start with 'home' activity: education Person pid:2019014375-4 hid:2019006085 plan does not start with 'home' activity: work Person pid:2019014375-5 hid:2019006085 plan does not start with 'home' activity: other Person pid:2019014387-4 hid:2019006090 plan does not start with 'home' activity: visit Person pid:2019014388-6 hid:2019006090 plan does not start with 'home' activity: visit Person pid:2019014390-1 hid:2019006091 plan does not start with 'home' activity: visit Person pid:2019014389-2 hid:2019006091 plan does not start with 'home' activity: visit Person pid:2019014409-2 hid:2019006098 plan does not start with 'home' activity: work Person pid:2019014410-5 hid:2019006098 plan does not start with 'home' activity: work Person pid:2019014416-6 hid:2019006100 plan does not start with 'home' activity: work Person pid:2019014426-1 hid:2019006105 plan does not start with 'home' activity: work Person pid:2019014426-3 hid:2019006105 plan does not start with 'home' activity: work Person pid:2019014426-4 hid:2019006105 plan does not start with 'home' activity: work Person pid:2019014426-5 hid:2019006105 plan does not start with 'home' activity: work Person pid:2019014435-3 hid:2019006110 plan does not start with 'home' activity: visit Person pid:2019014436-5 hid:2019006110 plan does not start with 'home' activity: visit Person pid:2019014449-7 hid:2019006116 plan does not start with 'home' activity: escort Person pid:2019014453-1 hid:2019006118 plan does not start with 'home' activity: other Person pid:2019014493-2 hid:2019006137 plan does not start with 'home' activity: work Person pid:2019014506-1 hid:2019006142 plan does not start with 'home' activity: visit Person pid:2019014506-3 hid:2019006142 plan does not start with 'home' activity: escort Person pid:2019014507-5 hid:2019006142 plan does not start with 'home' activity: visit Person pid:2019014507-6 hid:2019006142 plan does not start with 'home' activity: visit Person pid:2019014515-1 hid:2019006147 plan does not start with 'home' activity: other Person pid:2019014514-2 hid:2019006147 plan does not start with 'home' activity: other Person pid:2019014518-3 hid:2019006148 plan does not start with 'home' activity: work Person pid:2019014522-1 hid:2019006149 plan does not start with 'home' activity: visit Person pid:2019014521-3 hid:2019006149 plan does not start with 'home' activity: other Person pid:2019014520-6 hid:2019006149 plan does not start with 'home' activity: escort Person pid:2019014522-7 hid:2019006149 plan does not start with 'home' activity: visit Person pid:2019014533-2 hid:2019006153 plan does not start with 'home' activity: other Person pid:2019014553-2 hid:2019006163 plan does not start with 'home' activity: education Person pid:2019014550-3 hid:2019006163 plan does not start with 'home' activity: visit Person pid:2019014553-3 hid:2019006163 plan does not start with 'home' activity: visit Person pid:2019014551-4 hid:2019006163 plan does not start with 'home' activity: education Person pid:2019014570-1 hid:2019006170 plan does not start with 'home' activity: visit Person pid:2019014568-4 hid:2019006170 plan does not start with 'home' activity: escort Person pid:2019014569-6 hid:2019006170 plan does not start with 'home' activity: visit Person pid:2019014573-1 hid:2019006173 plan does not start with 'home' activity: visit Person pid:2019014573-6 hid:2019006173 plan does not start with 'home' activity: visit Person pid:2019014579-1 hid:2019006176 plan does not start with 'home' activity: work Person pid:2019014579-2 hid:2019006176 plan does not start with 'home' activity: work Person pid:2019014607-2 hid:2019006186 plan does not start with 'home' activity: visit Person pid:2019014607-3 hid:2019006186 plan does not start with 'home' activity: visit Person pid:2019014611-7 hid:2019006189 plan does not start with 'home' activity: visit Person pid:2019014612-7 hid:2019006189 plan does not start with 'home' activity: visit Person pid:2019014614-2 hid:2019006190 plan does not start with 'home' activity: visit Person pid:2019014615-1 hid:2019006190 plan does not start with 'home' activity: visit Person pid:2019014613-3 hid:2019006190 plan does not start with 'home' activity: visit Person pid:2019014613-4 hid:2019006190 plan does not start with 'home' activity: visit Person pid:2019014625-2 hid:2019006196 plan does not start with 'home' activity: other Person pid:2019014625-4 hid:2019006196 plan does not start with 'home' activity: other Person pid:2019014625-5 hid:2019006196 plan does not start with 'home' activity: other Person pid:2019014625-7 hid:2019006196 plan does not start with 'home' activity: other Person pid:2019014632-5 hid:2019006199 plan does not start with 'home' activity: visit Person pid:2019014631-5 hid:2019006199 plan does not start with 'home' activity: visit Person pid:2019014636-2 hid:2019006200 plan does not start with 'home' activity: visit Person pid:2019014636-3 hid:2019006200 plan does not start with 'home' activity: visit Person pid:2019014636-4 hid:2019006200 plan does not start with 'home' activity: visit Person pid:2019014659-2 hid:2019006209 plan does not start with 'home' activity: work Person pid:2019014662-2 hid:2019006210 plan does not start with 'home' activity: visit Person pid:2019014663-2 hid:2019006210 plan does not start with 'home' activity: visit Person pid:2019014663-6 hid:2019006210 plan does not start with 'home' activity: visit Person pid:2019014662-6 hid:2019006210 plan does not start with 'home' activity: visit Person pid:2019014666-5 hid:2019006212 plan does not start with 'home' activity: visit Person pid:2019014675-2 hid:2019006215 plan does not start with 'home' activity: visit Person pid:2019014675-6 hid:2019006215 plan does not start with 'home' activity: visit Person pid:2019014682-5 hid:2019006219 plan does not start with 'home' activity: visit Person pid:2019014681-5 hid:2019006219 plan does not start with 'home' activity: visit Person pid:2019014693-3 hid:2019006224 plan does not start with 'home' activity: other Person pid:2019014694-4 hid:2019006224 plan does not start with 'home' activity: visit Person pid:2019014694-6 hid:2019006224 plan does not start with 'home' activity: visit Person pid:2019014695-3 hid:2019006224 plan does not start with 'home' activity: other Person pid:2019014695-4 hid:2019006224 plan does not start with 'home' activity: other Person pid:2019014700-6 hid:2019006225 plan does not start with 'home' activity: other Person pid:2019014707-1 hid:2019006229 plan does not start with 'home' activity: work Person pid:2019014721-4 hid:2019006237 plan does not start with 'home' activity: shop Person pid:2019014729-3 hid:2019006242 plan does not start with 'home' activity: medical Person pid:2019014732-7 hid:2019006243 plan does not start with 'home' activity: work Person pid:2019014737-4 hid:2019006244 plan does not start with 'home' activity: visit Person pid:2019014743-2 hid:2019006248 plan does not start with 'home' activity: other Person pid:2019014742-1 hid:2019006248 plan does not start with 'home' activity: other Person pid:2019014752-1 hid:2019006253 plan does not start with 'home' activity: visit Person pid:2019014752-2 hid:2019006253 plan does not start with 'home' activity: visit Person pid:2019014775-1 hid:2019006263 plan does not start with 'home' activity: work Person pid:2019014779-1 hid:2019006265 plan does not start with 'home' activity: other Person pid:2019014781-1 hid:2019006265 plan does not start with 'home' activity: visit Person pid:2019014781-2 hid:2019006265 plan does not start with 'home' activity: visit Person pid:2019014778-4 hid:2019006265 plan does not start with 'home' activity: visit Person pid:2019014779-2 hid:2019006265 plan does not start with 'home' activity: visit Person pid:2019014778-5 hid:2019006265 plan does not start with 'home' activity: other Person pid:2019014779-3 hid:2019006265 plan does not start with 'home' activity: visit Person pid:2019014780-2 hid:2019006265 plan does not start with 'home' activity: visit Person pid:2019014781-3 hid:2019006265 plan does not start with 'home' activity: visit Person pid:2019014778-6 hid:2019006265 plan does not start with 'home' activity: visit Person pid:2019014778-7 hid:2019006265 plan does not start with 'home' activity: visit Person pid:2019014780-3 hid:2019006265 plan does not start with 'home' activity: visit Person pid:2019014781-5 hid:2019006265 plan does not start with 'home' activity: visit Person pid:2019014779-4 hid:2019006265 plan does not start with 'home' activity: visit Person pid:2019014780-6 hid:2019006265 plan does not start with 'home' activity: visit Person pid:2019014780-7 hid:2019006265 plan does not start with 'home' activity: visit Person pid:2019014783-5 hid:2019006266 plan does not start with 'home' activity: visit Person pid:2019014782-7 hid:2019006266 plan does not start with 'home' activity: visit Person pid:2019014787-1 hid:2019006268 plan does not start with 'home' activity: work Person pid:2019014787-2 hid:2019006268 plan does not start with 'home' activity: work Person pid:2019014788-3 hid:2019006268 plan does not start with 'home' activity: visit Person pid:2019014787-4 hid:2019006268 plan does not start with 'home' activity: work Person pid:2019014787-5 hid:2019006268 plan does not start with 'home' activity: work Person pid:2019014804-2 hid:2019006274 plan does not start with 'home' activity: other Person pid:2019014804-7 hid:2019006274 plan does not start with 'home' activity: other Person pid:2019014803-4 hid:2019006274 plan does not start with 'home' activity: other Person pid:2019014809-2 hid:2019006276 plan does not start with 'home' activity: visit Person pid:2019014827-3 hid:2019006283 plan does not start with 'home' activity: visit Person pid:2019014828-4 hid:2019006283 plan does not start with 'home' activity: visit Person pid:2019014838-6 hid:2019006288 plan does not start with 'home' activity: other Person pid:2019014839-4 hid:2019006288 plan does not start with 'home' activity: other Person pid:2019014861-4 hid:2019006297 plan does not start with 'home' activity: shop Person pid:2019014861-7 hid:2019006297 plan does not start with 'home' activity: visit Person pid:2019014874-6 hid:2019006301 plan does not start with 'home' activity: visit Person pid:2019014876-2 hid:2019006302 plan does not start with 'home' activity: work Person pid:2019014907-5 hid:2019006317 plan does not start with 'home' activity: other Person pid:2019014911-1 hid:2019006318 plan does not start with 'home' activity: visit Person pid:2019014911-2 hid:2019006318 plan does not start with 'home' activity: other Person pid:2019014910-4 hid:2019006318 plan does not start with 'home' activity: work Person pid:2019014910-6 hid:2019006318 plan does not start with 'home' activity: work Person pid:2019014912-1 hid:2019006319 plan does not start with 'home' activity: work Person pid:2019014920-3 hid:2019006323 plan does not start with 'home' activity: medical Person pid:2019014932-1 hid:2019006327 plan does not start with 'home' activity: visit Person pid:2019014932-2 hid:2019006327 plan does not start with 'home' activity: escort Person pid:2019014949-2 hid:2019006338 plan does not start with 'home' activity: work Person pid:2019014949-7 hid:2019006338 plan does not start with 'home' activity: work Person pid:2019014954-4 hid:2019006341 plan does not start with 'home' activity: visit Person pid:2019014961-2 hid:2019006343 plan does not start with 'home' activity: work Person pid:2019014961-3 hid:2019006343 plan does not start with 'home' activity: work Person pid:2019014961-6 hid:2019006343 plan does not start with 'home' activity: work Person pid:2019014967-1 hid:2019006345 plan does not start with 'home' activity: visit Person pid:2019014981-6 hid:2019006352 plan does not start with 'home' activity: shop Person pid:2019014987-2 hid:2019006356 plan does not start with 'home' activity: visit Person pid:2019014988-5 hid:2019006356 plan does not start with 'home' activity: visit Person pid:2019015001-1 hid:2019006362 plan does not start with 'home' activity: other Person pid:2019015001-4 hid:2019006362 plan does not start with 'home' activity: visit Person pid:2019015032-1 hid:2019006371 plan does not start with 'home' activity: visit Person pid:2019015034-2 hid:2019006371 plan does not start with 'home' activity: visit Person pid:2019015033-2 hid:2019006371 plan does not start with 'home' activity: visit Person pid:2019015041-6 hid:2019006375 plan does not start with 'home' activity: other Person pid:2019015041-7 hid:2019006375 plan does not start with 'home' activity: other Person pid:2019015046-5 hid:2019006378 plan does not start with 'home' activity: work Person pid:2019015046-7 hid:2019006378 plan does not start with 'home' activity: work Person pid:2019015055-3 hid:2019006381 plan does not start with 'home' activity: work Person pid:2019015074-2 hid:2019006388 plan does not start with 'home' activity: work Person pid:2019015073-4 hid:2019006388 plan does not start with 'home' activity: visit Person pid:2019015074-4 hid:2019006388 plan does not start with 'home' activity: visit Person pid:2019015074-5 hid:2019006388 plan does not start with 'home' activity: work Person pid:2019015088-4 hid:2019006394 plan does not start with 'home' activity: visit Person pid:2019015089-3 hid:2019006394 plan does not start with 'home' activity: visit Person pid:2019015088-5 hid:2019006394 plan does not start with 'home' activity: medical Person pid:2019015093-4 hid:2019006396 plan does not start with 'home' activity: other Person pid:2019015104-1 hid:2019006400 plan does not start with 'home' activity: education Person pid:2019015118-2 hid:2019006407 plan does not start with 'home' activity: shop Person pid:2019015120-4 hid:2019006408 plan does not start with 'home' activity: other Person pid:2019015122-3 hid:2019006409 plan does not start with 'home' activity: visit Person pid:2019015122-4 hid:2019006409 plan does not start with 'home' activity: visit Person pid:2019015122-5 hid:2019006409 plan does not start with 'home' activity: visit Person pid:2019015138-4 hid:2019006415 plan does not start with 'home' activity: visit Person pid:2019015139-4 hid:2019006415 plan does not start with 'home' activity: visit Person pid:2019015143-1 hid:2019006416 plan does not start with 'home' activity: visit Person pid:2019015145-1 hid:2019006416 plan does not start with 'home' activity: visit Person pid:2019015144-1 hid:2019006416 plan does not start with 'home' activity: visit Person pid:2019015146-2 hid:2019006416 plan does not start with 'home' activity: visit Person pid:2019015144-3 hid:2019006416 plan does not start with 'home' activity: visit Person pid:2019015144-4 hid:2019006416 plan does not start with 'home' activity: visit Person pid:2019015145-4 hid:2019006416 plan does not start with 'home' activity: visit Person pid:2019015146-3 hid:2019006416 plan does not start with 'home' activity: visit Person pid:2019015143-4 hid:2019006416 plan does not start with 'home' activity: visit Person pid:2019015147-2 hid:2019006417 plan does not start with 'home' activity: shop Person pid:2019015147-6 hid:2019006417 plan does not start with 'home' activity: shop Person pid:2019015157-1 hid:2019006422 plan does not start with 'home' activity: visit Person pid:2019015157-2 hid:2019006422 plan does not start with 'home' activity: education Person pid:2019015157-5 hid:2019006422 plan does not start with 'home' activity: visit Person pid:2019015160-4 hid:2019006424 plan does not start with 'home' activity: visit Person pid:2019015161-2 hid:2019006425 plan does not start with 'home' activity: other Person pid:2019015162-4 hid:2019006425 plan does not start with 'home' activity: other Person pid:2019015162-6 hid:2019006425 plan does not start with 'home' activity: visit Person pid:2019015170-2 hid:2019006431 plan does not start with 'home' activity: shop Person pid:2019015179-4 hid:2019006434 plan does not start with 'home' activity: visit Person pid:2019015178-4 hid:2019006434 plan does not start with 'home' activity: work Person pid:2019015184-2 hid:2019006436 plan does not start with 'home' activity: work Person pid:2019015183-3 hid:2019006436 plan does not start with 'home' activity: work Person pid:2019015197-2 hid:2019006442 plan does not start with 'home' activity: visit Person pid:2019015197-3 hid:2019006442 plan does not start with 'home' activity: visit Person pid:2019015222-2 hid:2019006453 plan does not start with 'home' activity: other Person pid:2019015223-3 hid:2019006453 plan does not start with 'home' activity: other Person pid:2019015226-4 hid:2019006455 plan does not start with 'home' activity: visit Person pid:2019015228-2 hid:2019006456 plan does not start with 'home' activity: medical Person pid:2019015241-4 hid:2019006461 plan does not start with 'home' activity: visit Person pid:2019015241-6 hid:2019006461 plan does not start with 'home' activity: medical Person pid:2019015248-1 hid:2019006464 plan does not start with 'home' activity: other Person pid:2019015247-3 hid:2019006464 plan does not start with 'home' activity: other Person pid:2019015265-1 hid:2019006473 plan does not start with 'home' activity: education Person pid:2019015266-4 hid:2019006473 plan does not start with 'home' activity: education Person pid:2019015271-7 hid:2019006476 plan does not start with 'home' activity: visit Person pid:2019015275-3 hid:2019006478 plan does not start with 'home' activity: visit Person pid:2019015280-3 hid:2019006480 plan does not start with 'home' activity: education Person pid:2019015280-5 hid:2019006480 plan does not start with 'home' activity: education Person pid:2019015281-3 hid:2019006480 plan does not start with 'home' activity: education Person pid:2019015282-3 hid:2019006480 plan does not start with 'home' activity: escort Person pid:2019015282-4 hid:2019006480 plan does not start with 'home' activity: escort Person pid:2019015278-2 hid:2019006480 plan does not start with 'home' activity: escort Person pid:2019015278-3 hid:2019006480 plan does not start with 'home' activity: escort Person pid:2019015278-4 hid:2019006480 plan does not start with 'home' activity: escort Person pid:2019015280-6 hid:2019006480 plan does not start with 'home' activity: education Person pid:2019015281-4 hid:2019006480 plan does not start with 'home' activity: education Person pid:2019015280-7 hid:2019006480 plan does not start with 'home' activity: education Person pid:2019015282-6 hid:2019006480 plan does not start with 'home' activity: escort Person pid:2019015278-7 hid:2019006480 plan does not start with 'home' activity: escort Person pid:2019015281-6 hid:2019006480 plan does not start with 'home' activity: education Person pid:2019015282-7 hid:2019006480 plan does not start with 'home' activity: escort Person pid:2019015281-7 hid:2019006480 plan does not start with 'home' activity: education Person pid:2019015287-1 hid:2019006484 plan does not start with 'home' activity: visit Person pid:2019015293-6 hid:2019006487 plan does not start with 'home' activity: visit Person pid:2019015296-7 hid:2019006489 plan does not start with 'home' activity: work Person pid:2019015314-2 hid:2019006496 plan does not start with 'home' activity: other Person pid:2019015314-3 hid:2019006496 plan does not start with 'home' activity: other Person pid:2019015313-5 hid:2019006496 plan does not start with 'home' activity: other Person pid:2019015313-6 hid:2019006496 plan does not start with 'home' activity: other Person pid:2019015319-3 hid:2019006498 plan does not start with 'home' activity: visit Person pid:2019015324-6 hid:2019006501 plan does not start with 'home' activity: work Person pid:2019015348-5 hid:2019006510 plan does not start with 'home' activity: work Person pid:2019015358-5 hid:2019006516 plan does not start with 'home' activity: work Person pid:2019015365-5 hid:2019006518 plan does not start with 'home' activity: other Person pid:2019015410-3 hid:2019006541 plan does not start with 'home' activity: work Person pid:2019015410-4 hid:2019006541 plan does not start with 'home' activity: work Person pid:2019015413-2 hid:2019006542 plan does not start with 'home' activity: visit Person pid:2019015414-4 hid:2019006542 plan does not start with 'home' activity: visit Person pid:2019015421-2 hid:2019006547 plan does not start with 'home' activity: work Person pid:2019015421-7 hid:2019006547 plan does not start with 'home' activity: work Person pid:2019015423-3 hid:2019006548 plan does not start with 'home' activity: visit Person pid:2019015435-7 hid:2019006552 plan does not start with 'home' activity: work Person pid:2019015439-2 hid:2019006553 plan does not start with 'home' activity: work Person pid:2019015439-5 hid:2019006553 plan does not start with 'home' activity: work Person pid:2019015466-2 hid:2019006563 plan does not start with 'home' activity: education Person pid:2019015478-1 hid:2019006567 plan does not start with 'home' activity: education Person pid:2019015477-3 hid:2019006567 plan does not start with 'home' activity: education Person pid:2019015481-4 hid:2019006568 plan does not start with 'home' activity: visit Person pid:2019015481-6 hid:2019006568 plan does not start with 'home' activity: visit Person pid:2019015488-1 hid:2019006572 plan does not start with 'home' activity: other Person pid:2019015513-3 hid:2019006585 plan does not start with 'home' activity: work Person pid:2019015513-4 hid:2019006585 plan does not start with 'home' activity: work Person pid:2019015540-1 hid:2019006595 plan does not start with 'home' activity: escort Person pid:2019015543-1 hid:2019006596 plan does not start with 'home' activity: visit Person pid:2019015544-2 hid:2019006596 plan does not start with 'home' activity: visit Person pid:2019015543-2 hid:2019006596 plan does not start with 'home' activity: visit Person pid:2019015545-7 hid:2019006596 plan does not start with 'home' activity: visit Person pid:2019015557-2 hid:2019006601 plan does not start with 'home' activity: visit Person pid:2019015558-1 hid:2019006601 plan does not start with 'home' activity: visit Person pid:2019015557-6 hid:2019006601 plan does not start with 'home' activity: visit Person pid:2019015558-6 hid:2019006601 plan does not start with 'home' activity: visit Person pid:2019015561-2 hid:2019006602 plan does not start with 'home' activity: work Person pid:2019015561-4 hid:2019006602 plan does not start with 'home' activity: work Person pid:2019015576-6 hid:2019006611 plan does not start with 'home' activity: work Person pid:2019015576-7 hid:2019006611 plan does not start with 'home' activity: work Person pid:2019015594-1 hid:2019006618 plan does not start with 'home' activity: shop Person pid:2019015594-2 hid:2019006618 plan does not start with 'home' activity: shop Person pid:2019015594-4 hid:2019006618 plan does not start with 'home' activity: shop Person pid:2019015594-6 hid:2019006618 plan does not start with 'home' activity: shop Person pid:2019015594-7 hid:2019006618 plan does not start with 'home' activity: shop Person pid:2019015598-5 hid:2019006619 plan does not start with 'home' activity: other Person pid:2019015596-5 hid:2019006619 plan does not start with 'home' activity: other Person pid:2019015597-5 hid:2019006619 plan does not start with 'home' activity: other Person pid:2019015599-7 hid:2019006620 plan does not start with 'home' activity: visit Person pid:2019015600-4 hid:2019006620 plan does not start with 'home' activity: visit Person pid:2019015601-5 hid:2019006620 plan does not start with 'home' activity: visit Person pid:2019015606-2 hid:2019006623 plan does not start with 'home' activity: visit Person pid:2019015613-4 hid:2019006625 plan does not start with 'home' activity: education Person pid:2019015613-7 hid:2019006625 plan does not start with 'home' activity: education Person pid:2019015619-1 hid:2019006627 plan does not start with 'home' activity: education Person pid:2019015625-2 hid:2019006629 plan does not start with 'home' activity: work Person pid:2019015625-3 hid:2019006629 plan does not start with 'home' activity: work Person pid:2019015625-5 hid:2019006629 plan does not start with 'home' activity: work Person pid:2019015625-6 hid:2019006629 plan does not start with 'home' activity: work Person pid:2019015625-7 hid:2019006629 plan does not start with 'home' activity: work Person pid:2019015626-2 hid:2019006630 plan does not start with 'home' activity: visit Person pid:2019015627-6 hid:2019006630 plan does not start with 'home' activity: visit Person pid:2019015644-6 hid:2019006636 plan does not start with 'home' activity: work Person pid:2019015644-7 hid:2019006636 plan does not start with 'home' activity: work Person pid:2019015660-1 hid:2019006644 plan does not start with 'home' activity: visit Person pid:2019015660-2 hid:2019006644 plan does not start with 'home' activity: visit Person pid:2019015661-1 hid:2019006645 plan does not start with 'home' activity: other Person pid:2019015671-4 hid:2019006649 plan does not start with 'home' activity: visit Person pid:2019015675-2 hid:2019006651 plan does not start with 'home' activity: work Person pid:2019015679-3 hid:2019006653 plan does not start with 'home' activity: work Person pid:2019015682-4 hid:2019006654 plan does not start with 'home' activity: shop Person pid:2019015694-2 hid:2019006660 plan does not start with 'home' activity: other Person pid:2019015701-2 hid:2019006664 plan does not start with 'home' activity: work Person pid:2019015707-6 hid:2019006666 plan does not start with 'home' activity: shop Person pid:2019015706-7 hid:2019006666 plan does not start with 'home' activity: shop Person pid:2019015711-1 hid:2019006668 plan does not start with 'home' activity: visit Person pid:2019015711-3 hid:2019006668 plan does not start with 'home' activity: visit Person pid:2019015711-4 hid:2019006668 plan does not start with 'home' activity: visit Person pid:2019015711-6 hid:2019006668 plan does not start with 'home' activity: visit Person pid:2019015711-7 hid:2019006668 plan does not start with 'home' activity: visit Person pid:2019015713-2 hid:2019006669 plan does not start with 'home' activity: other Person pid:2019015714-1 hid:2019006670 plan does not start with 'home' activity: work Person pid:2019015714-2 hid:2019006670 plan does not start with 'home' activity: work Person pid:2019015714-5 hid:2019006670 plan does not start with 'home' activity: work Person pid:2019015714-6 hid:2019006670 plan does not start with 'home' activity: work Person pid:2019015728-6 hid:2019006675 plan does not start with 'home' activity: other Person pid:2019015731-6 hid:2019006677 plan does not start with 'home' activity: other Person pid:2019015731-7 hid:2019006677 plan does not start with 'home' activity: other Person pid:2019015755-7 hid:2019006686 plan does not start with 'home' activity: visit Person pid:2019015763-2 hid:2019006690 plan does not start with 'home' activity: visit Person pid:2019015774-1 hid:2019006695 plan does not start with 'home' activity: work Person pid:2019015796-1 hid:2019006703 plan does not start with 'home' activity: work Person pid:2019015797-1 hid:2019006703 plan does not start with 'home' activity: education Person pid:2019015797-3 hid:2019006703 plan does not start with 'home' activity: education Person pid:2019015797-4 hid:2019006703 plan does not start with 'home' activity: education Person pid:2019015795-7 hid:2019006703 plan does not start with 'home' activity: work Person pid:2019015810-4 hid:2019006709 plan does not start with 'home' activity: shop Person pid:2019015826-1 hid:2019006715 plan does not start with 'home' activity: work Person pid:2019015829-2 hid:2019006717 plan does not start with 'home' activity: work Person pid:2019015829-3 hid:2019006717 plan does not start with 'home' activity: work Person pid:2019015829-4 hid:2019006717 plan does not start with 'home' activity: work Person pid:2019015829-5 hid:2019006717 plan does not start with 'home' activity: work Person pid:2019015829-6 hid:2019006717 plan does not start with 'home' activity: work Person pid:2019015832-1 hid:2019006719 plan does not start with 'home' activity: other Person pid:2019015838-3 hid:2019006723 plan does not start with 'home' activity: visit Person pid:2019015843-3 hid:2019006726 plan does not start with 'home' activity: work Person pid:2019015855-3 hid:2019006731 plan does not start with 'home' activity: other Person pid:2019015857-1 hid:2019006732 plan does not start with 'home' activity: work Person pid:2019015857-2 hid:2019006732 plan does not start with 'home' activity: work Person pid:2019015857-3 hid:2019006732 plan does not start with 'home' activity: work Person pid:2019015857-6 hid:2019006732 plan does not start with 'home' activity: work Person pid:2019015865-2 hid:2019006736 plan does not start with 'home' activity: visit Person pid:2019015865-3 hid:2019006736 plan does not start with 'home' activity: visit Person pid:2019015865-7 hid:2019006736 plan does not start with 'home' activity: visit Person pid:2019015867-1 hid:2019006737 plan does not start with 'home' activity: escort Person pid:2019015869-3 hid:2019006737 plan does not start with 'home' activity: other Person pid:2019015879-4 hid:2019006741 plan does not start with 'home' activity: work Person pid:2019015879-5 hid:2019006741 plan does not start with 'home' activity: work Person pid:2019015884-6 hid:2019006742 plan does not start with 'home' activity: other Person pid:2019015902-1 hid:2019006750 plan does not start with 'home' activity: other Person pid:2019015912-4 hid:2019006753 plan does not start with 'home' activity: visit Person pid:2019015918-1 hid:2019006755 plan does not start with 'home' activity: visit Person pid:2019015918-2 hid:2019006755 plan does not start with 'home' activity: visit Person pid:2019015918-3 hid:2019006755 plan does not start with 'home' activity: visit Person pid:2019015918-4 hid:2019006755 plan does not start with 'home' activity: visit Person pid:2019015918-5 hid:2019006755 plan does not start with 'home' activity: visit Person pid:2019015918-6 hid:2019006755 plan does not start with 'home' activity: visit Person pid:2019015918-7 hid:2019006755 plan does not start with 'home' activity: visit Person pid:2019015927-6 hid:2019006760 plan does not start with 'home' activity: visit Person pid:2019015949-3 hid:2019006770 plan does not start with 'home' activity: visit Person pid:2019015955-5 hid:2019006772 plan does not start with 'home' activity: work Person pid:2019015955-7 hid:2019006772 plan does not start with 'home' activity: work Person pid:2019015970-7 hid:2019006776 plan does not start with 'home' activity: other Person pid:2019015971-7 hid:2019006777 plan does not start with 'home' activity: shop Person pid:2019015974-1 hid:2019006779 plan does not start with 'home' activity: visit Person pid:2019015991-2 hid:2019006787 plan does not start with 'home' activity: visit Person pid:2019015990-1 hid:2019006787 plan does not start with 'home' activity: work Person pid:2019015992-2 hid:2019006787 plan does not start with 'home' activity: escort Person pid:2019015991-3 hid:2019006787 plan does not start with 'home' activity: visit Person pid:2019015992-4 hid:2019006787 plan does not start with 'home' activity: visit Person pid:2019015993-1 hid:2019006788 plan does not start with 'home' activity: work Person pid:2019016040-1 hid:2019006808 plan does not start with 'home' activity: visit Person pid:2019016040-4 hid:2019006808 plan does not start with 'home' activity: visit Person pid:2019016044-2 hid:2019006810 plan does not start with 'home' activity: work Person pid:2019016047-2 hid:2019006811 plan does not start with 'home' activity: escort Person pid:2019016048-3 hid:2019006811 plan does not start with 'home' activity: escort Person pid:2019016060-4 hid:2019006815 plan does not start with 'home' activity: medical Person pid:2019016061-4 hid:2019006816 plan does not start with 'home' activity: other Person pid:2019016062-5 hid:2019006816 plan does not start with 'home' activity: other Person pid:2019016078-6 hid:2019006822 plan does not start with 'home' activity: shop Person pid:2019016082-7 hid:2019006825 plan does not start with 'home' activity: work Person pid:2019016083-4 hid:2019006825 plan does not start with 'home' activity: visit
Raw size: {'num_households': 5980, 'num_people': 67893, 'num_activities': 264624, 'num_legs': 196731} PAM fix: {'num_households': 5980, 'num_people': 67893, 'num_activities': 264407, 'num_legs': 196514} home based size: {'num_households': 61651, 'num_people': 61651, 'num_activities': 243178, 'num_legs': 181527} Squash home size: {'num_households': 61651, 'num_people': 61651, 'num_activities': 241660, 'num_legs': 180009} squash work size: {'num_households': 61651, 'num_people': 61651, 'num_activities': 240353, 'num_legs': 178702} squash edu size: {'num_households': 61651, 'num_people': 61651, 'num_activities': 240328, 'num_legs': 178677} PAM 2nd fix: {'num_households': 61651, 'num_people': 61651, 'num_activities': 240328, 'num_legs': 178677}
InĀ [Ā ]:
Copied!
# 2019
# Raw size: {'num_households': 5980, 'num_people': 67893, 'num_activities': 264624, 'num_legs': 196731}
# PAM fix: {'num_households': 5980, 'num_people': 67893, 'num_activities': 264407, 'num_legs': 196514}
# home based size: {'num_households': 61651, 'num_people': 61651, 'num_activities': 243178, 'num_legs': 181527}
# Squash home size: {'num_households': 61651, 'num_people': 61651, 'num_activities': 241660, 'num_legs': 180009}
# squash work size: {'num_households': 61651, 'num_people': 61651, 'num_activities': 240353, 'num_legs': 178702}
# squash edu size: {'num_households': 61651, 'num_people': 61651, 'num_activities': 240328, 'num_legs': 178677}
# PAM 2nd fix: {'num_households': 61651, 'num_people': 61651, 'num_activities': 240328, 'num_legs': 178677}
# 2020
# Raw size: {'num_households': 2675, 'num_people': 25119, 'num_activities': 93189, 'num_legs': 68070}
# PAM fix: {'num_households': 2675, 'num_people': 25119, 'num_activities': 93159, 'num_legs': 68040}
# home based size: {'num_households': 23452, 'num_people': 23452, 'num_activities': 87870, 'num_legs': 64418}
# Squash home size: {'num_households': 23452, 'num_people': 23452, 'num_activities': 87532, 'num_legs': 64080}
# squash work size: {'num_households': 23452, 'num_people': 23452, 'num_activities': 87165, 'num_legs': 63713}
# squash edu size: {'num_households': 23452, 'num_people': 23452, 'num_activities': 87162, 'num_legs': 63710}
# PAM 2nd fix: {'num_households': 23452, 'num_people': 23452, 'num_activities': 87162, 'num_legs': 63710}
# 2023
# Raw size: {'num_households': 6130, 'num_people': 64366, 'num_activities': 250465, 'num_legs': 186099}
# PAM fix: {'num_households': 6130, 'num_people': 64366, 'num_activities': 250245, 'num_legs': 185879}
# home based size: {'num_households': 59265, 'num_people': 59265, 'num_activities': 233085, 'num_legs': 173820}
# Squash home size: {'num_households': 59265, 'num_people': 59265, 'num_activities': 231640, 'num_legs': 172375}
# squash work size: {'num_households': 59265, 'num_people': 59265, 'num_activities': 230784, 'num_legs': 171519}
# squash edu size: {'num_households': 59265, 'num_people': 59265, 'num_activities': 230757, 'num_legs': 171492}
# PAM 2nd fix: {'num_households': 59265, 'num_people': 59265, 'num_activities': 230757, 'num_legs': 171492}
# 2019
# Raw size: {'num_households': 5980, 'num_people': 67893, 'num_activities': 264624, 'num_legs': 196731}
# PAM fix: {'num_households': 5980, 'num_people': 67893, 'num_activities': 264407, 'num_legs': 196514}
# home based size: {'num_households': 61651, 'num_people': 61651, 'num_activities': 243178, 'num_legs': 181527}
# Squash home size: {'num_households': 61651, 'num_people': 61651, 'num_activities': 241660, 'num_legs': 180009}
# squash work size: {'num_households': 61651, 'num_people': 61651, 'num_activities': 240353, 'num_legs': 178702}
# squash edu size: {'num_households': 61651, 'num_people': 61651, 'num_activities': 240328, 'num_legs': 178677}
# PAM 2nd fix: {'num_households': 61651, 'num_people': 61651, 'num_activities': 240328, 'num_legs': 178677}
# 2020
# Raw size: {'num_households': 2675, 'num_people': 25119, 'num_activities': 93189, 'num_legs': 68070}
# PAM fix: {'num_households': 2675, 'num_people': 25119, 'num_activities': 93159, 'num_legs': 68040}
# home based size: {'num_households': 23452, 'num_people': 23452, 'num_activities': 87870, 'num_legs': 64418}
# Squash home size: {'num_households': 23452, 'num_people': 23452, 'num_activities': 87532, 'num_legs': 64080}
# squash work size: {'num_households': 23452, 'num_people': 23452, 'num_activities': 87165, 'num_legs': 63713}
# squash edu size: {'num_households': 23452, 'num_people': 23452, 'num_activities': 87162, 'num_legs': 63710}
# PAM 2nd fix: {'num_households': 23452, 'num_people': 23452, 'num_activities': 87162, 'num_legs': 63710}
# 2023
# Raw size: {'num_households': 6130, 'num_people': 64366, 'num_activities': 250465, 'num_legs': 186099}
# PAM fix: {'num_households': 6130, 'num_people': 64366, 'num_activities': 250245, 'num_legs': 185879}
# home based size: {'num_households': 59265, 'num_people': 59265, 'num_activities': 233085, 'num_legs': 173820}
# Squash home size: {'num_households': 59265, 'num_people': 59265, 'num_activities': 231640, 'num_legs': 172375}
# squash work size: {'num_households': 59265, 'num_people': 59265, 'num_activities': 230784, 'num_legs': 171519}
# squash edu size: {'num_households': 59265, 'num_people': 59265, 'num_activities': 230757, 'num_legs': 171492}
# PAM 2nd fix: {'num_households': 59265, 'num_people': 59265, 'num_activities': 230757, 'num_legs': 171492}
InĀ [31]:
Copied!
def dt_to_min(dt) -> int:
h, m, s = datetime_to_matsim_time(dt).split(":")
return (int(h) * 60) + int(m)
def pam_to_schedules(population: Population) -> pd.DataFrame:
"""write trace of population. Ignoring trips."""
record = []
for uid, (hid, pid, person) in enumerate(population.people()):
for i in range(0, len(person.plan) - 1, 2):
record.append(
[
uid,
hid,
person.plan[i].act,
dt_to_min(person.plan[i].start_time),
dt_to_min(person.plan[i + 1].end_time),
]
)
record.append(
[
uid,
hid,
person.plan[-1].act,
dt_to_min(person.plan[-1].start_time),
dt_to_min(person.plan[-1].end_time),
]
)
df = pd.DataFrame(record, columns=["pid", "hid", "act", "start", "end"])
df["duration"] = df.end - df.start
return df
schedules = pam_to_schedules(population=pam_population)
attributes = pd.DataFrame(
[
{**{"pid": pid}, **p.attributes}
for pid, (_, _, p) in enumerate(pam_population.people())
]
).drop(["iid", "year"], axis=1)
attributes.describe()
assert set(schedules.pid).issubset(set(attributes.pid))
schedules.to_csv(schedules_path, index=False)
attributes.to_csv(attributes_path, index=False)
schedules.describe()
def dt_to_min(dt) -> int:
h, m, s = datetime_to_matsim_time(dt).split(":")
return (int(h) * 60) + int(m)
def pam_to_schedules(population: Population) -> pd.DataFrame:
"""write trace of population. Ignoring trips."""
record = []
for uid, (hid, pid, person) in enumerate(population.people()):
for i in range(0, len(person.plan) - 1, 2):
record.append(
[
uid,
hid,
person.plan[i].act,
dt_to_min(person.plan[i].start_time),
dt_to_min(person.plan[i + 1].end_time),
]
)
record.append(
[
uid,
hid,
person.plan[-1].act,
dt_to_min(person.plan[-1].start_time),
dt_to_min(person.plan[-1].end_time),
]
)
df = pd.DataFrame(record, columns=["pid", "hid", "act", "start", "end"])
df["duration"] = df.end - df.start
return df
schedules = pam_to_schedules(population=pam_population)
attributes = pd.DataFrame(
[
{**{"pid": pid}, **p.attributes}
for pid, (_, _, p) in enumerate(pam_population.people())
]
).drop(["iid", "year"], axis=1)
attributes.describe()
assert set(schedules.pid).issubset(set(attributes.pid))
schedules.to_csv(schedules_path, index=False)
attributes.to_csv(attributes_path, index=False)
schedules.describe()
Out[31]:
pid | start | end | duration | |
---|---|---|---|---|
count | 240328.000000 | 240328.000000 | 240328.000000 | 240328.000000 |
mean | 30720.888898 | 616.978026 | 986.379178 | 369.401152 |
std | 17796.068453 | 419.017919 | 339.457546 | 269.001603 |
min | 0.000000 | 0.000000 | 15.000000 | 0.000000 |
25% | 15348.750000 | 0.000000 | 690.000000 | 110.000000 |
50% | 30521.500000 | 685.000000 | 960.000000 | 385.000000 |
75% | 46203.000000 | 960.000000 | 1440.000000 | 550.000000 |
max | 61650.000000 | 1440.000000 | 1440.000000 | 1440.000000 |
InĀ [32]:
Copied!
_ = times_distributions_plot(schedules, ys={})
_ = times_distributions_plot(schedules, ys={})
InĀ [33]:
Copied!
_ = joint_time_distributions_plot(schedules, ys={})
_ = joint_time_distributions_plot(schedules, ys={})
InĀ [34]:
Copied!
_ = sequence_prob_plot(schedules, ys={}, figsize=(8, 6))
_ = sequence_prob_plot(schedules, ys={}, figsize=(8, 6))