diff --git a/.DS_Store b/.DS_Store index b6fc79a..7a4031e 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/CABLAB_R_online.Rmd b/CABLAB_R_online.Rmd index 39dbbeb..31751e6 100644 --- a/CABLAB_R_online.Rmd +++ b/CABLAB_R_online.Rmd @@ -427,7 +427,7 @@ There will be no week 3 assignment :) # Week 4: Subsetting data -For the purposes of this week's workshop, let's read in the frightnight_practice CSV file +For the Week 4 workshop, let's read in the frightnight_practice CSV file ```{r} @@ -529,9 +529,9 @@ nrow(df_1001) What if, rather than subsetting based on one condition (i.e., rows that belong to participant 1001), we wanted to subset based on multiple conditions? -We can take advantage of OR (i.e., |) and AND (i.e., &) operators. +We can take advantage of OR ( **|** ) and AND ( **&** ) operators. -Below, we will be subsetting all rows where the assessment is based on the Infirmary or Asylum haunted house segments. +Below, we will be subsetting all rows where the assessment is based on the Infirmary **OR** Asylum haunted house segments. ```{r} df_multiple_conditions <- subset(df, Section == "Infirmary" | Section == "Asylum") @@ -539,18 +539,17 @@ df_multiple_conditions <- subset(df, Section == "Infirmary" | Section == "Asylum ``` -Here, we are telling R to subset all rows where Section is equal to Infirmary OR Asylum. As you can tell, leveraging the OR (|) or ANd (&) operators within the subset() function can be especially powerful. - +Here, we are telling R to subset all rows where Section is equal to Infirmary OR Asylum. As you can tell, leveraging the OR ( **|** ) and AND ( **&** ) operators within the subset() function can be especially powerful. Now that we've talked about subsetting rows, let's talk about subsetting columns. ## Subsetting columns! -As mentioned above, we can also subset columns! We can use the same 2 approaches (bracket notation and subset() function) to subset columns +As mentioned above, we can also subset columns! We can use the same 2 approaches (bracket notation and subset function) to subset columns Approach 1 will show how to subset specific columns that we care about using bracket notation. -Approach 2 will show how to subset specific columns using the same subset() function +Approach 2 will show how to subset specific columns using the subset() function. Let's subset the following columns: PID, Section, Stage, Recall @@ -570,11 +569,12 @@ df_sub <- subset(df, select=c(PID, Section, Stage, Recall)) ## Week 4 Exercise: Subsetting data -**1)** Create a new data frame called "df2" and subset the following columns from the df data frame: PID, Section, Stage, Fear.rating, and TOAccuracy. +**2)** Create a new data frame called "df2" and subset the following columns from the df data frame: PID, Section, Stage, Fear.rating, and TOAccuracy. + +**3)** Do this using bracket notation -**2)** Do this using bracket notation +**4)** Repeat this using the subset() function. -**3)** Repeating this using the subset() function. ```{r Week 4 Exercise, code="'\n\n\n\n'", results=F} @@ -599,9 +599,9 @@ df2 <- subset(df, select=c(PID, Section, Stage, Fear.rating, TOAccuracy)) ## Missing data -What if we wanted to see which rows had missing values (e.g., NA) or not? +What if we wanted to see which rows had missing values (e.g., NA) or not? What if, for whatever reason, some participants were not able to complete the temporal memory accuracy assessment for the haunted house events? -Let's use the is.na() function to determine which rows have missing values in the TOAccuracy column +We can use the is.na() function to determine which rows have missing values in the Temporal Accuracy (TOAccuracy) column ```{r} @@ -613,7 +613,10 @@ This will produce an array of TRUEs and FALSEs of the same length as the rows in But how can we create a data frame that does not have any missing data (i.e., rows that are blank or have an 'NA' in it)? -Here, we can use bracket notation to create a new data frame called "df_complete" that only includes data that is NOT missing in the TOAccuracy column in the df data frame. By putting an exclamation point in front of the is.na() function, this is our way of telling R that we want it to do the inverse of the is.na() function! +Here, we can use bracket notation to create a new data frame called "df_complete" that only includes data that is NOT missing in the TOAccuracy column in the df data frame. By putting an exclamation point in front of the is.na() function, this is our way of telling R that we want it to do the **inverse** of the is.na() function! + +This idea of putting an exclamation point before the is.na() is generalizable to many functions, not just is.na(). + ```{r} #is.na() function @@ -623,7 +626,7 @@ df_complete <- df[!is.na(df$TOAccuracy),] ``` -What if, instead of removing rows that have a missing value in ONE column, we wanted to remove any rows that have a missing value in ANY column? +What if, instead of removing rows that have a missing value in **ONE** column, we wanted to remove any rows that have a missing value in **ANY** column? Rather than using the is.na() function, I personally like to use the complete.cases() function for situations like this. @@ -641,11 +644,13 @@ Here, we are again using bracket notation to tell R, within the df data frame, r For this week's assignment, let's continue focusing on subsetting in R. -**1)** Create a new data frame and subset the following columns from the df data frame: PID, Section, Stage, Recall, TOAccuracy +**1)** Read in the frightnight_practice.csv dataset -**2)** Create a subset of the data that only contains TOAccuracy scores greater than .40 +**2)** Create a new data frame and subset the following columns from the df data frame: PID, Section, Stage, Recall, TOAccuracy -**3)** Remove any rows that have a missing value in any column +**3)** Create a subset of the data that only contains TOAccuracy scores greater than .40 + +**4)** Remove any rows that have a missing value in any column ```{r Week 4 Assignment, code="'\n\n\n\n'", results=F} @@ -655,6 +660,14 @@ For this week's assignment, let's continue focusing on subsetting in R. ```{r Week 4 Assignment - hidden, eval=T, include=F} +#1) Read in the frightnight_raw_assignment CSV file +Path <- "/Users/tuh20985/Desktop/CABLAB-R-Workshop-Series-main/datasets/" + +setwd(Path) #use the setwd() function to assign the "Path" object that we created earlier as the working directory + +df<- read.csv(file = "frightnight_practice.csv") #Load in the fright night raw csv file + + #Subset the following columns: PID, Section, Stage, Recall, TOAccuracy df_clean <- subset(df, select=c(PID, Section, Stage, Recall, TOAccuracy)) @@ -670,6 +683,22 @@ df_clean <- df_clean[complete.cases(df_clean), ] # Week 5: If Else statements +For the Week 5 workshop, let's read in the frightnight_practice CSV file + +```{r} + +# For Mac +Path <- "/Users/tuh20985/Desktop/CABLAB-R-Workshop-Series-main/datasets/" + +#set working directory +setwd(Path) #use the setwd() function to assign the "Path" object that we created earlier as the working directory + +df <- read.csv(file = "frightnight_practice.csv") #Load in the fright night practice csv file + + +``` + + ## If else statements Let's use an If Else statement to create a new column that represents whether a Section was a high threat or low threat section. @@ -693,6 +722,7 @@ The "|" operator means OR in R language. Using the "|" operator allows you to in df$Threat <- ifelse(df$Section == "Infirmary" | df$Section == "Asylum", "Low Threat", "High Threat") + ``` Here, if Section == "Infirmary" OR if Section == "Asylum", assign a "Low" value in the Threat column. Else, assign a "High" value. @@ -778,11 +808,13 @@ df_memory$MemoryStrength <-ifelse(df_memory$TOAccuracy >= .7, "High", df_memory$ ## Week 5 Assignment: If Else statements -**1)** Create a new data frame and subset the following columns from the df data frame: PID, Section, Stage, Recall, WordCount +**1)** Read in the frightnight_practice.csv file -**2)** We need to categorize Word Count during free recall in 3 groups: Long, Medium, or Short. +**2)** Create a new data frame and subset the following columns from the df data frame: PID, Section, Stage, Group, Recall, WordCount -**3)** Use the ifelse() function to create a new column called "RecallLength" that meets the following criteria: Word count less than or equal to 40 is "Short", word count in between 40 and 60 is "Medium", and word count greater than oe equal to 60 is "Long" +**3)** We need to categorize Word Count during free recall in 3 groups: Long, Medium, or Short. + +**4)** Use the ifelse() function to create a new column called "RecallLength" that meets the following criteria: Word count less than or equal to 40 is "Short", word count in between 40 and 60 is "Medium", and word count greater than oe equal to 60 is "Long" ```{r Week 5 Assignment, code="'\n\n\n\n'", results=F} @@ -792,8 +824,16 @@ df_memory$MemoryStrength <-ifelse(df_memory$TOAccuracy >= .7, "High", df_memory$ ```{r Week 5 Assignment - hidden, eval=T, include=F} -#Subset a data frame with the following columns: PID, Section, Stage, Condition, WordCount -df_recall <- subset(df, select=c(PID, Section, Stage, Condition, WordCount)) +#1) Read in the frightnight_raw_assignment CSV file +Path <- "/Users/tuh20985/Desktop/CABLAB-R-Workshop-Series-main/datasets/" + +setwd(Path) #use the setwd() function to assign the "Path" object that we created earlier as the working directory + +df<- read.csv(file = "frightnight_practice.csv") #Load in the fright night raw csv file + + +#Subset a data frame with the following columns: PID, Section, Stage, Group, Recall, WordCount +df_recall <- subset(df, select=c(PID, Section, Stage, Group, Recall, WordCount)) #word count less than or equal to 40 is "Short" @@ -814,6 +854,22 @@ df_recall$RecallLength <-ifelse(df_recall$WordCount >= 60, "Long", df_recall$Rec # Week 6: Intro to For Loops +For the Week 6 workshop, let's read in the frightnight_practice CSV file. Before we start working with actual data, we'll work with some general examples first. + +```{r} + +# For Mac +Path <- "/Users/tuh20985/Desktop/CABLAB-R-Workshop-Series-main/datasets/" + +#set working directory +setwd(Path) #use the setwd() function to assign the "Path" object that we created earlier as the working directory + +df <- read.csv(file = "frightnight_practice.csv") #Load in the fright night practice csv file + + +``` + + A for-loop is one of the main control-flow constructs of the R programming language. It is used to iterate over a collection of objects, such as a vector, a list, a matrix, or a dataframe, and apply the same set of operations on each item of a given data structure. Below, let's walk through the general structure of a for loop and run a quick example of a for loop that will loop through and print array of numbers @@ -1044,7 +1100,7 @@ For the purposes of understanding how to pivot data frames, we will be using a n Importantly, in order to do most of the analyses that we did earlier (e.g., bivariate linear regression, multiple linear regression, linear mixed effects regression), we need to have the data in **long** format. The pivot_longer() function from the tidyr package in R can be used to pivot a data frame from a wide format to a long format. -So let's walk through how to convert data from wide format to long format using the new CSV file. +So let's walk through how to convert data from wide format to long format using the new CSV file. Let's read in the frightnight_wide CSV file. ```{r pivot longer, eval=F, include=T} @@ -1171,7 +1227,7 @@ df_long <- df_wide_exercise %>% pivot_longer( ## Week 7 Assignment: Pivoting data from wide to long and long to wide -**1)** Read in the df_wide_assignment CSV file +**1)** Read in the frightnight_wide_assignment CSV file **2)** Use the pivot_longer function to convert the data from wide to long format @@ -1183,7 +1239,7 @@ df_long <- df_wide_exercise %>% pivot_longer( ``` -```{r Week 7 assignment - hidden, eval=F, include=F} +```{r Week 7 Assignment - hidden, eval=F, include=F} # For Mac Path <- "/Users/tuh20985/Desktop/CABLAB-R-Workshop-Series-main/datasets/" @@ -1216,16 +1272,32 @@ df_long <- df_wide_assignment %>% pivot_longer( # Week 8: Merging data frames +For the Week 8 workshop, let's read in the frightnight_practice CSV file. + +```{r} + +# For Mac +Path <- "/Users/tuh20985/Desktop/CABLAB-R-Workshop-Series-main/datasets/" + +#set working directory +setwd(Path) #use the setwd() function to assign the "Path" object that we created earlier as the working directory + +df <- read.csv(file = "frightnight_practice.csv") #Load in the fright night practice csv file + + +``` + + Learning how to merge multiple data frames is another integral part of data cleaning. -Let's create a data frame called "df_new" that has the following columns from the df data frame: "PID", "Section", "Stage", "Threat", "Group", "Condition", and "TOAccuracy" +Let's create a data frame called "df_new" that has the following columns from the df data frame: "PID", "Section", "Stage", "Group", "Condition", and "TOAccuracy" Next, let's subset and creating two new data frames from the df_new data frame: 1 data frame that only has assessments from the Immediate study visit, and a second data frame that has all the assessments from the 1 week Delay study visit. ```{r} -#Subset a data frame with the following columns: "PID", "Section", "Stage", "Threat", "Group", "Condition", and "TOAccuracy" -df_new <- subset(df, select=c("PID", "Section", "Stage", "Threat", "Group", "Condition", "TOAccuracy")) +#Subset a data frame with the following columns: "PID", "Section", "Stage", "Group", "Condition", and "TOAccuracy" +df_new <- subset(df, select=c("PID", "Section", "Stage", "Group", "Condition", "TOAccuracy")) #Create data frame that only has assessments from the Immediate study visit Immediate.df <- subset(df_new, Stage == "Immediate") @@ -1258,7 +1330,7 @@ data.merged <- merge(Immediate.df, Delay.df, by="PID") #Approach 2 -- CORRECT -data.merged <- merge(Immediate.df, Delay.df, by=c("PID", "Section", "Stage", "Threat", "Group", "Condition", "TOAccuracy", "MemoryStrength"), all.x=TRUE, all.y=TRUE) +data.merged <- merge(Immediate.df, Delay.df, by=c("PID", "Section", "Stage", "Group", "Condition", "TOAccuracy", "MemoryStrength"), all.x=TRUE, all.y=TRUE) ``` @@ -1288,8 +1360,8 @@ The main takeaway here is that R needs to understand which columns you wish to m ```{r Week 8 Exercise - hidden, eval=T, include=F} -#Subset a data frame with the following columns: "PID", "Section", "Stage", "Threat", "Group", "Condition", and "TOAccuracy" -df_new <- subset(df, select=c("PID", "Section", "Stage", "Threat", "Group", "Condition", "TOAccuracy")) +#Subset a data frame with the following columns: "PID", "Section", "Stage", "Group", "Condition", and "TOAccuracy" +df_new <- subset(df, select=c("PID", "Section", "Stage", "Group", "Condition", "TOAccuracy")) #Subset rows where the TOAccuracy score is less than .5 low.df <- subset(df_new, TOAccuracy < .5) @@ -1298,7 +1370,7 @@ low.df <- subset(df_new, TOAccuracy < .5) high.df <- subset(df_new, TOAccuracy > .5) #Merge the two data frames back together -merged_data <- merge(low.df, high.df, by=c("PID", "Section", "Stage", "Threat", "Group", "Condition", "TOAccuracy"), all.x=TRUE, all.y=TRUE) +merged_data <- merge(low.df, high.df, by=c("PID", "Section", "Stage", "Group", "Condition", "TOAccuracy"), all.x=TRUE, all.y=TRUE) ``` @@ -1307,13 +1379,15 @@ merged_data <- merge(low.df, high.df, by=c("PID", "Section", "Stage", "Threat", ## Week 8 Assignment: Merging data frames -**1)** Subset the following columns from the original df data frame: PID, Stage, Section, Recall. +**1)** Read in the frightnight_practice CSV file. + +**2)** Subset the following columns from the original df data frame: PID, Section, Stage, Group, Condition, TOAccuracy -**2)** Create two new data frames. One data frame will contain rows that reflect touring the Infirmary or Devil's Den haunted house sections. The other data frame will contain rows that reflect touring Asylumn or Ghostly Grounds haunted house sections. +**3)** Create two new data frames. One data frame will contain rows that reflect touring the Infirmary or Devil's Den haunted house sections. The other data frame will contain rows that reflect touring Asylumn or Ghostly Grounds haunted house sections. -**3)** Create a new column called fear_level in both data frames. If the Section is equal to Devil's Den, assign a value of "scary" to the new fear_level column, else, assign a value of "not scary". For the second data frame, if the Section is equal to Ghostly Grounds, assign a value of "scary" to the new fear_level column, else, assign a value of "not scary". +**4)** Create a new column called fear_level in both data frames. If the Section is equal to Devil's Den, assign a value of "scary" to the new fear_level column, else, assign a value of "not scary". For the second data frame, if the Section is equal to Ghostly Grounds, assign a value of "scary" to the new fear_level column, else, assign a value of "not scary". -**4)** Merge the two data frames back together and store it in a new data frame! +**5)** Merge the two data frames back together and store it in a new data frame! ```{r Week 8 Assignment, code="'\n\n\n\n'", results=F} @@ -1323,12 +1397,24 @@ merged_data <- merge(low.df, high.df, by=c("PID", "Section", "Stage", "Threat", ```{r Week 8 Assignment - hidden, eval=T, include=F} +#1) Read in the frightnight_raw_assignment CSV file +Path <- "/Users/tuh20985/Desktop/CABLAB-R-Workshop-Series-main/datasets/" + +setwd(Path) #use the setwd() function to assign the "Path" object that we created earlier as the working directory + +df<- read.csv(file = "frightnight_practice.csv") #Load in the fright night raw csv file + + +#Subset the following columns from the original df data frame: PID, Section, Stage, Group, Condition, and TOAccuracy +df_new <- subset(df, select=c("PID", "Section", "Stage", "Group", "Condition", "TOAccuracy")) + + #One data frame will contain rows that reflect touring the Infirmary or Devil's Den haunted house sections -ID.df <- subset(df, Section == "Infirmary" | Section == "DevilsDen") +ID.df <- subset(df_new, Section == "Infirmary" | Section == "DevilsDen") #The other data frame will contain rows that reflect touring Asylum or Ghostly Grounds haunted house sections. -DA.df <- subset(df, Section == "Asylum" | Section == "GhostlyGrounds") +DA.df <- subset(df_new, Section == "Asylum" | Section == "GhostlyGrounds") #Create fear.level column @@ -1337,7 +1423,7 @@ DA.df$fear.level <- ifelse(DA.df$Section == "GhostlyGrounds", "scary", "not scar #Merge data frames -data.merged <- merge(ID.df, DA.df, by=c("PID", "Section", "Stage", "Threat", "Group", "Condition", "Recall", "Time_HH", "Fear.rating", "TOAccuracy", "Analytic", "Authentic", "Clout", "Tone", "fear.level"), all.x=TRUE, all.y=TRUE) +data.merged <- merge(ID.df, DA.df, by=c("PID", "Section", "Stage", "Group", "fear.level", "Condition", "TOAccuracy"), all.x=TRUE, all.y=TRUE) @@ -1349,7 +1435,8 @@ data.merged <- merge(ID.df, DA.df, by=c("PID", "Section", "Stage", "Threat", "Gr # Week 9: Data cleaning -Up until now, we've learned a lot of isolated functions, but we haven't really 'cleaned up' any data in the traditional sense. This workshop will focus on cleaning up data and for that, we'll plan to use the frightnight_raw.csv file, so let's read it in! + +Up until now, we've learned a lot of isolated functions, but we haven't really 'cleaned up' any data in the traditional sense. This workshop will focus on cleaning up data and for that, we'll plan to use the **frightnight_raw.csv** file, so let's read it in! ```{r} @@ -1534,15 +1621,29 @@ df_assignment.comp <- subset(df_raw_assignment_long, select=c(PID, Section, Grou ![](R memes/psychology statistics.jpeg){width=80%} -Before we do that, it's super important to recognize the different data types that R uses. +Before we do that, let's read in the **frightnight_analyses** CSV file for the purposes of the Week 10 workshop! -Some of the common data types include: character, factor, numeric, integer. +```{r} + +# For Mac +Path <- "/Users/tuh20985/Desktop/CABLAB-R-Workshop-Series-main/datasets/" + +#set working directory +setwd(Path) #use the setwd() function to assign the "Path" object that we created earlier as the working directory + +df <- read.csv(file = "frightnight_analyses.csv") #Load in the fright night practice csv file + + +``` + + +It's super important to recognize the different data types that R uses. Some of the common data types include: character, factor, numeric, integer. We can use the str() function to help which columns are which data types across the entire data frame. We'll also learn how to convert columns into different data types ahead of our analyses. For example, the Section column represents 4 haunted house sections: Infirmary, Asylum, Devil's Den, and Ghostly Grounds. When reading in the fright night practice dataset into R, R will treat the Section column as a character column (because the column contains words). However, for the purposes of our analyses, the Section column represents more than just characters. It represents 4 categories that we think could lead to differences in a dependent variable (i.e., TOAccuracy). -The same logic would apply to other columns that R treats as characters, but we actually consider to represent different categories. These columns include: group, Threat, Condition, Time_HH. Let's convert those columns from character to factor. +The same logic would apply to other columns that R treats as characters, but we actually consider to represent different categories. These columns include: Group, Threat, Condition, Time_HH. Let's convert those columns from character to factor. We can also treat data types as numeric. Although R correctly treats the TOAccuracy, Authentic, Analytic, Clout, and Tone columns as numeric columns, let's use the as.numeric() function to make sure these columns are treated numerically just for the sake of practice. @@ -1598,11 +1699,11 @@ df_analyses <- df_analyses[complete.cases(df_analyses), ] ## T-Tests! -A T-Test can be used when both the predictor variable consists of two categorical options and the outcome or dependent variable is numeric in value. A T-Test tells you how significant the differences between these categories or groups are. In other words, it lets you know if the differences between the means of two groups could have observed by chance. We could imagine a situation where an evil teacher told half of the class before a test the right chapter to study from and told the other half of the class the wrong chapter to study from. The two categories or groups might be Right Chapter and Wrong Chapter and the outcome variable would be Test Score. Using a T-Test, we could determine whether studying from the right materials produces higher test scores. Within the context of our data, we could ask a question like whether participants assigned to an Experimental condition (e.g., Role-assigned) or Control condition (e.g., Control) demonstrate significant differences in temporal memory accuracy? +A T-Test can be used when both the predictor variable consists of two categorical options and the outcome or dependent variable is numeric in value. A T-Test tells you how significant the differences between these categories or groups are. In other words, it lets you know if the differences between the means of two groups could have observed by chance. We could imagine a situation where an evil teacher told half of the class before a test the right chapter to study from and told the other half of the class the wrong chapter to study from. The two categories or groups might be Right Chapter and Wrong Chapter and the outcome variable would be Test Score. Using a T-Test, we could determine whether studying from the right materials produces higher test scores. Within the context of our data, we could ask a question like whether participants assigned to an Experimental condition (e.g., goal-assigned) or Control condition (e.g., Control) demonstrate significant differences in temporal memory accuracy? -**QUESTION**: Do role-assigned and control participants differ significantly in their temporal memory accuracy? +**QUESTION**: Do goal-assigned and control participants differ significantly in their temporal memory accuracy? -**HYPOTHESIS**: "On average, role-assigned participants who were assigned to a specific goal while touring the haunted house segment will have better temporal memory accuracy compared to control participants" +**HYPOTHESIS**: "On average, goal-assigned participants who were assigned to a specific goal while touring the haunted house segment will have better temporal memory accuracy compared to control participants" **RELEVANT VARIABLES**: Dependent: TOAccuracy (numeric) Independent: Group (Factor) @@ -1611,7 +1712,7 @@ A T-Test can be used when both the predictor variable consists of two categorica ```{r t-tests} -model1 <- t.test(x = df_analyses$TOAccuracy[df_analyses$Group == "Role-assignment"], +model1 <- t.test(x = df_analyses$TOAccuracy[df_analyses$Group == "Goal-assigned"], y = df_analyses$TOAccuracy[df_analyses$Group == "Control"], paired = FALSE, alternative = "two.sided") @@ -1619,7 +1720,7 @@ model1 <- t.test(x = df_analyses$TOAccuracy[df_analyses$Group == "Role-assignmen ``` -Okay, so let's run the actual t-test. We'll need to use conditional statements again to specify our variables. What we are comparing here are the mean values of temporal memory accuracy for role-assigned and control participants. As such, we are going to specify we want to see temporal memory accuracy when Group == "Role-assignment" and when Group == "Control. We next have an argument which asks us whether this study is a within-subjects or a between-subjects design. This question is between-subjects, since each participant is either role-assigned or control for this study, so we mark that as FALSE. Lastly, R is asking us to define our alternative hypothesis, which is a little beyond the scope of this review, so you will have to take my word that “two.sided” is the right call. +Okay, so let's run the actual t-test. We'll need to use conditional statements again to specify our variables. What we are comparing here are the mean values of temporal memory accuracy for goal-assigned and control participants. As such, we are going to specify we want to see temporal memory accuracy when Group == "Goal-assigned" and when Group == "Control. We next have an argument which asks us whether this study is a within-subjects or a between-subjects design. This question is between-subjects, since each participant is either goal-assigned or control for this study, so we mark that as FALSE. Lastly, R is asking us to define our alternative hypothesis, which is a little beyond the scope of this review, so you will have to take my word that “two.sided” is the right call. Lastly, when we look at T-Tests, standard deviations are very important, but the t.test() function won’t automatically generate those. We are using the sd() function to capture the standard deviation of reaction action, and we’re adding the argument (na.rm) that tells R to ignore any row that has a value of N/A. @@ -1654,7 +1755,7 @@ An ANOVA, or Analysis of Variance, can be used when both the predictor variable Pay close attention to the formatting of the syntax here. It is the standard way in which we specify most statistical models in R, whether for regression, ANOVA, hierarchical modeling etc. -Due to the study design, the only time participants ever had a Role-assignment was in the last two segments (DevilsDen and GhostlyGrounds). As a result, for these analyses, we'll have to subset rows that reflect either Devils Den or Ghostly Grounds. +Due to the study design, the only time participants ever had a Goal-assigned was in the last two segments (DevilsDen and GhostlyGrounds). As a result, for these analyses, we'll have to subset rows that reflect either Devils Den or Ghostly Grounds. ```{r anova model} @@ -1740,15 +1841,23 @@ report(m1) ## Week 10 Assignment: Analyzing Data w/ Categorical Independent Variables -I’m curious whether differences in Group (Role-assignment versus Control) is associated with differences in how Authentically someone recalls their memory. +I’m curious whether differences in Group (Goal-assigned versus Control) is associated with differences in how Authentically someone recalls their memory. + +**1)** Read in the frightnight_analyses CSV file. -**1)** Run a t-test to test whether differences in Group (Role-assignment versus Control) is associated with differences in how Authentically someone recalls their memory. +**2)** Subset a new data frame with the following columns:: PID, Section, Stage, Threat, Group, Condition, Recall, Time_HH, Fear.rating, TOAccuracy, Analytic, Authentic, Clout, Tone -**2)** Store the t-test in a model called "model2" +**3** Subset rows that reflect assessments for Ghostly Grounds during the Delay study visit. -**3)** Print model 2 and try to interpret the output yourself. +**4** Remove rows with a missing value in ANY column -**4)** Run the report() function to try to see whether your interpretation matches. +**5)** Run a t-test to test whether differences in Group (Goal-assigned versus Control) is associated with differences in how Authentically someone recalls their memory. + +**6)** Store the t-test in a model called "model2" + +**7)** Print model 2 and try to interpret the output yourself. + +**8)** Run the report() function to try to see whether your interpretation matches. ```{r Week 10 Assignment, code="'\n\n\n\n'", results=F} @@ -1758,8 +1867,29 @@ I’m curious whether differences in Group (Role-assignment versus Control) is a ```{r Week 10 Assignment - hidden, eval=T, include=F} -#Run a t-test to test whether differences in Group (Role-assignment versus Control) is associated with differences in how Authentically someone recalls their memory. -model2 <- t.test(x = df_analyses$Authentic[df_analyses$Group == "Role-assignment"], +# For Mac +Path <- "/Users/tuh20985/Desktop/CABLAB-R-Workshop-Series-main/datasets/" + +#set working directory +setwd(Path) #use the setwd() function to assign the "Path" object that we created earlier as the working directory + +df <- read.csv(file = "frightnight_analyses.csv") #Load in the fright night practice csv file + +#Subset the following columns: PID, Section, Stage, Threat, Group, Condition, Recall, Time_HH, Fear.rating, TOAccuracy, Analytic, Authentic, Clout, Tone +df_analyses <- subset(df, select=c(PID, Section, Stage, Threat, Group, Condition, Recall, Time_HH, Fear.rating, TOAccuracy, Analytic, Authentic, Clout, Tone)) + +#Subset only the One-Week Delay +df_analyses <- subset(df_analyses, Stage == "Delay") + +#Subset only rows for Ghostly Grounds +df_analyses <- subset(df_analyses, Section == "GhostlyGrounds") + +#Let's also remove rows with NA in any column of data frame +df_analyses <- df_analyses[complete.cases(df_analyses), ] + + +#Run a t-test to test whether differences in Group (Goal-assigned versus Control) is associated with differences in how Authentically someone recalls their memory. +model2 <- t.test(x = df_analyses$Authentic[df_analyses$Group == "Goal-assigned"], y = df_analyses$Authentic[df_analyses$Group == "Control"], paired = FALSE, alternative = "two.sided") @@ -1782,6 +1912,43 @@ report(model2) We just finished covering analyses that use qualitative, categorical predictors. Next, we'll cover analyses that use quantitative, numeric predictors, probably most common of which is linear regression. Regression can come in many flavors, including bivariate linear regression, multivariate linear regression, and binary logistic regression. We won’t get too much into the theory, but we'll work through some useful tools and syntax to get you prepared to use R on your own. +For the Week 11 workshop, let's read in the **frightnight_analyses** CSV file! + +```{r} + +# For Mac +Path <- "/Users/tuh20985/Desktop/CABLAB-R-Workshop-Series-main/datasets/" + +#set working directory +setwd(Path) #use the setwd() function to assign the "Path" object that we created earlier as the working directory + +df <- read.csv(file = "frightnight_analyses.csv") #Load in the fright night practice csv file + + +``` + + +## Create data frame for analyses + +And just like we did last week, let's subset a data frame with the columns that we want to focus on for our Week 11 analyses. + +```{r} + +#Subset the following columns: PID, Section, Stage, Threat, Group, Condition, Recall, Time_HH, Fear.rating, TOAccuracy, Analytic, Authentic, Clout, Tone +df_analyses <- subset(df, select=c(PID, Section, Stage, Threat, Group, Condition, Recall, Time_HH, Fear.rating, TOAccuracy, Analytic, Authentic, Clout, Tone)) + +#Subset only the One-Week Delay +df_analyses <- subset(df_analyses, Stage == "Delay") + +#Subset only rows for Ghostly Grounds +df_analyses <- subset(df_analyses, Section == "GhostlyGrounds") + +#Let's also remove rows with NA in any column of data frame +df_analyses <- df_analyses[complete.cases(df_analyses), ] + + +``` + ## Bivariate Linear Regression A bivariate linear regression can be used when both the predictor variable (X) and outcome variable(Y) consist of continuous numeric values. A linear regression tells us how predictive of Y that X is. In other words, if we measured temperature and ice cream sales, we might find, using linear regression that as temperature increases, we could predict with decent accuracy that ice cream sales would increase as well, and we could predict how many ice cream sales we expect to see for any one value of temperature. Within the context of our data, we could ask a question like whether the accuracy of someone's memory (i.e., temporal memory accuracy) predicts how authentically the person would communicate their memory. @@ -1889,6 +2056,10 @@ For this analyses, we will use a different dataset that includes multiple measur **ANALYSIS**: Mixed effects regression +## Create data frame for analyses + +For this analysis, let's create a new data frame that subsets the following columns from the original df data frame: + ```{r} #Create a new dataframe that includes the following columns: PID, Section, Stage, Threat, Group, Condition, Recall, Time_HH, Fear.rating, TOAccuracy, Analytic, Authentic, Clout, Tone @@ -1897,6 +2068,14 @@ df_mixed <- subset(df, select=c(PID, Section, Stage, Threat, Group, Condition, R #Remove rows that have a missing value in any column df_mixed <- df_mixed[complete.cases(df_mixed), ] + +``` + + +Let's establish a baseline model includes our dependent variable (Temporal Memory Accuracy scores) and the random effect (1|PID). Let's also establish a testing model that includes our dependent variable (Temporal Memory Accuracy scores), a fixed effect (Threat), and the random effect (1|PID). In this way, by building two models that differ by one variable (Threat), we can use the anova() function to determine whether the effect of Threat on Temporal Memory Accuracy scores is significant. + +```{r} + #Baseline model: Dependent variable and random effect m1 <- lmer(TOAccuracy ~ (1|PID), data = df_mixed) @@ -1909,7 +2088,6 @@ anova(m1, m2) ``` -In this example, we established a baseline model that included our dependent variable (Temporal Memory Accuracy scores) and the random effect (1|PID). We also established a testing model that included our dependent variable (Temporal Memory Accuracy scores), a fixed effect (Threat), and the random effect (1|PID). In this way, by building two models that differ by one variable (Threat), we can use the anova() function to determine whether the effect of Threat on Temporal Memory Accuracy scores is significant. It also may be helpful to recognize that in this example, Threat is the fixed effect, whereas (1|PID) is a random effect that assumes different random intercepts for each subject. We also see that our hypothesis was correct! People demonstrated greater temporal memory accuracy for high-threat segments (Devil's Den, Ghostly Grounds) compared to low-threat segments (Infirmary, Asylum). @@ -1960,7 +2138,7 @@ In this case, TOAccuracy and Threat are our fixed effects, whereas (1|PID) is ou ```{r Week 11 Exercise - hidden, eval=T, include=F} #Conduct a multiple linear regression assessing whether Time of Haunted house and Temporal Memory Accuracy independently predicted differences in how Analytically someone recalled their memory and store the model in an object called m1. -m1 <- lm(Authentic ~ TOAccuracy + Time_HH, data = df_analyses) +m1 <- lm(Authentic ~ TOAccuracy + Time_HH, data = df_mixed) #Use the summary() function to print the model output and try to intepret the model yourself summary(m1) @@ -1978,7 +2156,7 @@ report(m1) ## Week 11 Assignment: Analyzing Data w/ Continuous Independent Variables -As part of the week 10 R assignment, let's explore a new research question. +As part of the Week 11 R assignment, let's explore a new research question. **QUESTION**: Does temporal memory accuracy OR threat interact predict differences in how negatively someone communicates their memory? @@ -1989,15 +2167,19 @@ As part of the week 10 R assignment, let's explore a new research question. **ANALYSIS**: Mixed effects regression -**1)** Create a new dataframe that includes the following columns: PID, Section, Stage, Threat, Group, Condition, Recall, Time_HH, Fear.rating, TOAccuracy, Analytic, Authentic, Clout, Tone +**1)** Read in the frightnight_analyses CSV file -**2)** Run a linear mixed effects model that assesses the relationship between Tone and Temporal Memory Accuracy and Threat. Make sure to include a random effect that accounts for individual differences. +**2)** Create a new dataframe that includes the following columns: PID, Section, Stage, Threat, Group, Condition, Recall, Time_HH, Fear.rating, TOAccuracy, Analytic, Authentic, Clout, Tone -**3)** Store the model in a data object called "m5" +**3)** Remove rows that have a missing value in any column -**4)** Print the summary of the model and try to interpret the model yourself +**4)** Run a linear mixed effects model that assesses the relationship between Tone and Temporal Memory Accuracy and Threat. Make sure to include a random effect that accounts for individual differences. -**5)** Use the report() function to print out an interpretation of the model and see if your interpretation matches +**5)** Store the model in a data object called "m5" + +**6)** Print the summary of the model and try to interpret the model yourself + +**7)** Use the report() function to print out an interpretation of the model and see if your interpretation matches ```{r Week 11 Assignment, code="'\n\n\n\n'", results=F} @@ -2007,14 +2189,24 @@ As part of the week 10 R assignment, let's explore a new research question. ```{r Week 11 Assignment - hidden, eval=T, include=F} + +# For Mac +Path <- "/Users/tuh20985/Desktop/CABLAB-R-Workshop-Series-main/datasets/" + +#set working directory +setwd(Path) #use the setwd() function to assign the "Path" object that we created earlier as the working directory + +df <- read.csv(file = "frightnight_analyses.csv") #Load in the fright night practice csv file + + #Create a new dataframe that includes the following columns: PID, Section, Stage, Threat, Group, Condition, Recall, Time_HH, Fear.rating, TOAccuracy, Analytic, Authentic, Clout, Tone -df_analyses <- subset(df, select=c(PID, Section, Stage, Threat, Group, Condition, Recall, Time_HH, Fear.rating, TOAccuracy, Analytic, Authentic, Clout, Tone)) +df_mixed <- subset(df, select=c(PID, Section, Stage, Threat, Group, Condition, Recall, Time_HH, Fear.rating, TOAccuracy, Analytic, Authentic, Clout, Tone)) #Remove rows that have a missing value in any column -df_analyses <- df_analyses[complete.cases(df_analyses), ] +df_mixed <- df_mixed[complete.cases(df_mixed), ] #Run a linear mixed effects model that assesses the relationship between Tone and Temporal Memory Accuracy and Threat. Make sure to include a random effect that accounts for individual differences. -m5 <- lmer(Tone ~ TOAccuracy + Threat + (1|PID), data = df_analyses) +m5 <- lmer(Tone ~ TOAccuracy + Threat + (1|PID), data = df_mixed) #Print the summary of the model and try to interpret the model yourself summary(m5) @@ -2028,7 +2220,23 @@ report(m5) # Week 12: Visualizing data: Intro to ggplot -For the purposes of this plotting workshop, let's create a new data frame. +For the Week 11 workshop, let's read in the frightnight_analyses CSV file! + +```{r} + +# For Mac +Path <- "/Users/tuh20985/Desktop/CABLAB-R-Workshop-Series-main/datasets/" + +#set working directory +setwd(Path) #use the setwd() function to assign the "Path" object that we created earlier as the working directory + +df <- read.csv(file = "frightnight_analyses.csv") #Load in the fright night practice csv file + + +``` + + +Before we start making any graphs, let's create a new data frame with the following columns from the original df dataframe: PID, Section, Stage, Threat, Group, Condition, Recall, Time_HH, Fear.rating, TOAccuracy, Analytic, Authentic, Clout, Tone ```{r} @@ -2044,11 +2252,13 @@ df_plot <- df_plot[complete.cases(df_plot), ] ## Visualizing data! Navigating ggplot2 -ggplot2 is a popular plotting package in R that makes it fairly easy to create complex plots from data in a data frame! +Next we'll start talking about how to make graphs in R! + +ggplot2 is a popular plotting package in R that makes it fairly easy to create complex plots from data in a data frame. ggplot2 refers to the name of the package itself, whereas we use the function ggplot() to generate the plots. We're going to start off with building a very simple plot, and then we will add in some more lines to organize a plot like you would for a manuscript/publication! -Let's revisit our t-test, where we were interested in whether there were differences in temporal memory accuracy between role-assigned and control participants. +Let's revisit our t-test, where we were interested in whether there were differences in Temporal Memory Accuracy between Goal-assigned and Control participants. ```{r} @@ -2057,9 +2267,11 @@ ggplot(data = df_plot, aes(x = Group, y = TOAccuracy)) + #Plot the variables we ``` -Here, we see that we're plotting how TOAccuracy varies according to Group (Control versus Role-assignment). geom_bar(stat = "identity") is a function within ggplot that is used in order to create bar plots. +Here, we see that we're plotting how TOAccuracy varies according to Group (Control versus Goal-assigned). + +geom_bar(stat = "identity") is a function within ggplot that is used in order to create bar plots. -Now that we know how to plot data, let's try and clean the plot up. +Now that we know how to plot data, let's try and clean the plot up. Next, we're going to apply three more arguments to ggplot that will add titles, axis labels, and legend labels. ```{r} @@ -2067,8 +2279,8 @@ Now that we know how to plot data, let's try and clean the plot up. ggplot(data = df_plot, aes(x = Group, y = TOAccuracy, fill = Group)) + #Using fill = Group allows us to color-code the plot according to Group geom_bar(stat="identity") + #Generate a bar plot labs(x = 'Experimental Group', y = 'Temporal Memory Accuracy', title = "Temporal Memory Accuracy by Group") + #Assign axis titles for the x- and y-axis - scale_x_discrete(labels = c("Control", "Role-assigned")) + #Change the x-axis labels - scale_fill_discrete("Experimental Group", labels = c("Control", "Role-assigned")) #Change the labels for the legend + scale_x_discrete(labels = c("Control", "goal-assigned")) + #Change the x-axis labels + scale_fill_discrete("Experimental Group", labels = c("Control", "goal-assigned")) #Change the labels for the legend ``` @@ -2084,8 +2296,8 @@ Let's apply the facet_wrap() function to visualize Temporal Memory Accuracy scor ggplot(data = df_plot, aes(x = Group, y = TOAccuracy, fill = Group)) + #Using fill = Group allows us to color-code the plot according to Group geom_bar(stat="identity") + #Generate a bar plot labs(x = 'Experimental Group', y = 'Temporal Memory Accuracy', title = "Temporal Memory Accuracy by Group") + #Define a plot title, an x-axis title, and a y-axis title - scale_x_discrete(labels = c("Control", "Role-assigned")) + #Change the x-axis labels - scale_fill_discrete("Experimental Group", labels = c("Control", "Role-assigned")) + #Change the labels for the legend + scale_x_discrete(labels = c("Control", "goal-assigned")) + #Change the x-axis labels + scale_fill_discrete("Experimental Group", labels = c("Control", "goal-assigned")) + #Change the labels for the legend facet_wrap(~Stage) #Split the graphs based on the Stage variable ``` @@ -2130,9 +2342,9 @@ Let's work on changing the background of the plot, the colors of the bars in the ggplot(data = df_plot, aes(x = Group, y = TOAccuracy, fill = Group)) + #Using fill = Group allows us to color-code the plot according to Group geom_bar(stat="identity") + #Generate a bar plot - scale_fill_manual(values = c("#E69F00", "#56B4E9"), name = "Experimental Group", labels = c("Control", "Role-assigned")) + #Customize the colors of the bars in the bar plot, add a legend title, and change the legend labels + scale_fill_manual(values = c("#E69F00", "#56B4E9"), name = "Experimental Group", labels = c("Control", "goal-assigned")) + #Customize the colors of the bars in the bar plot, add a legend title, and change the legend labels labs(x = 'Experimental Group', y = 'Temporal Memory Accuracy', title = "Temporal Memory Accuracy by Group") + #Assign axis titles for the x- and y-axis - scale_x_discrete(labels = c("Control", "Role-assigned")) + #Change the x-axis labels + scale_x_discrete(labels = c("Control", "goal-assigned")) + #Change the x-axis labels theme_classic() + ## We can use a theme customize the background of the plot. theme_classic makes the background white and removes gridlines theme( plot.title = element_text(size=15, face = "bold", color="red"), #customize plot title @@ -2160,12 +2372,12 @@ Okay, now that we've played around with customizing aesthetics in R, we're going ## Plotting the mean and standard deviation in R -So far, our y-axis has reflected an aggregate score for temporal memory accuracy between groups, rather than the average score between groups. For example, we're not necessarily interested in what the combined score is across Control and Role-assigned groups, but rather whether there are differences in average temporal memory accuracy scores. +So far, our y-axis has reflected an aggregate score for temporal memory accuracy between groups, rather than the average score between groups. For example, we're not necessarily interested in what the combined score is across Control and goal-assigned groups, but rather whether there are differences in average temporal memory accuracy scores. ```{r} #Research Question: On avearge, are there differences in Temporal Memory Accuracy by Group? -model1 <- t.test(x = df_plot$TOAccuracy[df_plot$Group == "Role-assignment"], +model1 <- t.test(x = df_plot$TOAccuracy[df_plot$Group == "Goal-assigned"], y = df_plot$TOAccuracy[df_plot$Group == "Control"], paired = FALSE, alternative = "two.sided") @@ -2182,7 +2394,7 @@ ggplot(data = df_plot, aes(x = Group, y = TOAccuracy, fill = Group)) + #Using fi ``` -By plotting averages in Temporal Memory Accuracy, this is the correct visualization of the t-test that we ran earlier assessing whether there were differences in average temporal memory accuracy between Role-assigned and Control participants. +By plotting averages in Temporal Memory Accuracy, this is the correct visualization of the t-test that we ran earlier assessing whether there were differences in average temporal memory accuracy between goal-assigned and Control participants. As the graph shows, this difference is not in large at all, and the t-test affirms that the difference is statistically not significant (p = .409). @@ -2359,25 +2571,31 @@ While we've only covered bar plots and violin plots in this section, there are t Let's create a violin plot that plots Temporal Memory Accuracy Scores by Condition! Let's customize this plot to meet the following criteria: -**1)** Plot Temporal Memory Accuracy Score by Condition +**1)** Read in the frightnight_analyses CSV file. + +**2)** Create a new data frame with the following columns from the original df dataframe: PID, Section, Stage, Threat, Group, Condition, TOAccuracy -**2)** Use the geom_violin() and geom_jiter() arguments to generate a violin plot +**3)** Remove rows that have a missing value in any column -**3)** Update the colors of each violin to reflect the following colors: "#555599", "#66BBBB", "#DD4444" +**3)** Plot Temporal Memory Accuracy Score by Condition -**4)** Change the title of the legend to "Experimental Condition" +**4)** Use the geom_violin() and geom_jiter() arguments to generate a violin plot -**5)** Change the legend labels to: "Baseline Condition", "Share Condition", "Test Condition" +**5)** Update the colors of each violin to reflect the following colors: "#555599", "#66BBBB", "#DD4444" -**6)** Apply the theme_minimal() background to the plot +**6)** Change the title of the legend to "Experimental Condition" -**7)** Change the plot title to "Temporal Memory Accuracy by Condition", the x-axis title to "Experimental Condition", and the y-axis title to "Temporal Memory Accuracy". +**7)** Change the legend labels to: "Baseline Condition", "Share Condition", "Test Condition" -**8)** Change the x-axis text labels to "1) Baseline", "2) Share", "3) Test" +**8)** Apply the theme_minimal() background to the plot -**9)** Change the plot title, x-axis title, y-axis title, x-axis text, y-axis text font size to 17 +**9)** Change the plot title to "Temporal Memory Accuracy by Condition", the x-axis title to "Experimental Condition", and the y-axis title to "Temporal Memory Accuracy". -**10)** Change the legend title and legend text font size to 15 +**10)** Change the x-axis text labels to "1) Baseline", "2) Share", "3) Test" + +**11)** Change the plot title, x-axis title, y-axis title, x-axis text, y-axis text font size to 17 + +**12)** Change the legend title and legend text font size to 15 ```{r Week 12 Assignment, code="'\n\n\n\n'", results=F} @@ -2387,6 +2605,22 @@ Let's create a violin plot that plots Temporal Memory Accuracy Scores by Conditi ```{r Week 12 Assignment - hidden, eval=T, include=F} +# For Mac +Path <- "/Users/tuh20985/Desktop/CABLAB-R-Workshop-Series-main/datasets/" + +#set working directory +setwd(Path) #use the setwd() function to assign the "Path" object that we created earlier as the working directory + +df <- read.csv(file = "frightnight_analyses.csv") #Load in the fright night practice csv file + + +#Create a new dataframe that includes the following columns: PID, Section, Stage, Threat, Group, Condition, TOAccuracy +df_plot <- subset(df, select=c(PID, Section, Stage, Threat, Group, Condition, TOAccuracy)) + +#Remove rows that have a missing value in any column +df_plot <- df_plot[complete.cases(df_plot), ] + + #Violin plot! ggplot(data = df_plot, aes(x = Condition, y = TOAccuracy, fill = Condition)) + #Using fill = Group allows us to color-code the plot according to Group geom_violin(trim=FALSE) + #Generate a bar plot diff --git a/datasets/frightnight_analyses.csv b/datasets/frightnight_analyses.csv new file mode 100644 index 0000000..4b6bf9f --- /dev/null +++ b/datasets/frightnight_analyses.csv @@ -0,0 +1,1082 @@ +,PID,Section,Stage,Group,Condition,Code,Time_HH,Fear.rating,Threat,Repeat,TOAccuracy,Recall,Segment,Analytic,Clout,Authentic,Tone,Drives,affiliation,achieve,power,Cognition,allnone,cogproc,insight,cause,discrep,tentat,certitude,differ,memory,Affect,tone_pos,tone_neg,emotion,emo_pos,emo_neg,emo_anx,emo_anger,emo_sad,swear,Social,socbehav,prosocial,polite,conflict,moral,comm,socrefs,family,friend,female,male,need,want,acquire,lack,fulfill,fatigue,reward,risk,curiosity,allure,Perception,attention,motion,space,visual,auditory,feeling,States,Motives,Narrativity_Overall,Narrativity_Staging,Narrativity_PlotProg,Narrativity_CogTension,Peak_Staging,Peak_PlotProg,Peak_CogTension,Valley_Staging,Valley_PlotProg,Valley_CogTension,Staging_1,Staging_2,Staging_3,Staging_4,Staging_5,PlotProg_1,PlotProg_2,PlotProg_3,PlotProg_4,PlotProg_5,CogTension_1,CogTension_2,CogTension_3,CogTension_4,CogTension_5,Event.Int,Place.Int,Time.Int,Perceptual.Int,Emo.Tho.Int,Event.Ext,Place.Ext,Time.Ext,Perceptual.Ext,Emo.Tho.Ext,Semantic,Repetition,Other,Internal,External,Total,Percent_Internal,ContextualScore,PerceptualBias,WordCount,Age +1,1001,Infirmary,Immediate,Control,Baseline,0,06:15pm,2,Low Threat,0,0.8,"Infirmary was very colorful. It started with an entry room with neon color murals. You were then given 3D glasses which made the neon murals on the walls pop out a lot. There were neon spiders on the walls, and at one spot neon spikes coming out of the wall. he neon and 3D glasses made there be different depth perception. At one point there was a bridge with the different colors that was difficult to walk across because some steps appeared higher and some lower.",1,89.52,40.06,91.21,20.23,0,0,0,0,9.3,0,9.3,1.16,3.49,0,0,0,3.49,0,2.33,1.16,1.16,0,0,0,0,0,0,0,2.33,0,0,0,0,0,0,2.33,0,0,0,1.16,0,0,0,0,0,0,0,0,0,2.33,24.42,0,3.49,16.28,4.65,0,0,0,2.33,-39.18,-23.46,-38.78,-55.32,3,5,5,1,3,1,0,68.42,100,5.26,5.26,91.67,25,0,75,100,0,0,0,0,100,1,2,0,8,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.727272727,86,27 +2,1001,Infirmary,Delay,Control,Baseline,0,06:15pm,2,Low Threat,1,0.8,Infirmary was very colorful. There were pictures painted on wood canvases and the walls had trippy looking murals. You were handing 3d glasses that really made the colors look cool. There were colorful spiders and spikes on the walls. There was a tunnel thing that you pass through. There was a shaky bride that was painted with the 3d colors. I believe there was a woman on a couch at one point and you ended with looking a film projector.,1,58.42,85.69,28.56,78.09,1.25,1.25,0,0,3.75,0,3.75,1.25,1.25,0,0,1.25,0,0,3.75,3.75,0,0,0,0,0,0,0,0,6.25,0,0,0,0,0,0,6.25,0,0,2.5,0,0,0,0,0,0,0,0,0,0,2.5,21.25,1.25,2.5,8.75,8.75,0,1.25,0,2.5,19.03,15.48,10.65,30.94,5,4,4,2,5,1,20,0,60,40,100,80,80,80,100,0,0,0,0,100,0,1,2,0,6,0,1,0,0,1,0,0,0,0,9,2,11,0.818181818,9,0.666666667,80,27 +3,1001,Asylum,Delay,Control,Baseline,0,06:15pm,2,Low Threat,0,0.5,Asylum had a woman that was on a couch in a room with a director chair. It was 1920s ish themed. There was a person talking on the phone. An actor slaps a movie directing thing at you at one point. i really dont remember too much about this one.,1,86.58,82.38,6.58,1,1.96,0,0,1.96,3.92,0,3.92,1.96,0,0,0,1.96,0,1.96,3.92,0,3.92,0,0,0,0,0,0,0,13.73,3.92,0,0,0,0,3.92,9.8,0,0,1.96,0,0,0,1.96,0,0,0,0,0,0,1.96,5.88,0,0,5.88,0,0,0,1.96,1.96,-7.36,61.2,-27.97,-55.32,3,5,5,5,2,1,87.88,66.67,100,66.67,0,24.24,0,0,0,100,0,0,0,0,100,1,1,0,3,0,0,0,0,0,0,0,0,1,5,1,6,0.833333333,5,0.6,51,27 +4,1001,DevilsDen,Delay,Control,Baseline,0,06:15pm,3,High Threat,0,0.4,The Devil's Den section was very jumpy (trying to scare you with loud nosies). There was one point we went outside and an actor with a chainsaw tried to scare. Near the beginning there was a woman behind some sort of welding table. Before entering there was a short black lady with hatchets swinging them wildly near people. At one point ( I believe after walking back inside from the outside area) there was a man in that dropped a heavy metal frame at you from above that made a loud sound when it hit above you. There was also an actor that came up behind people and would make snorting noises behind them. I believe most of the actors were dressed in Dickies jumpsuites. ,1,93.3,94.17,93.83,1.4,2.42,0.81,1.61,0,6.45,0,6.45,1.61,1.61,1.61,1.61,0,0,0,3.23,0,3.23,1.61,0,1.61,1.61,0,0,0,10.48,0,0,0,0,0,0,10.48,0,0,2.42,0.81,0,0,0,0,0,0,0,0,0,3.23,26.61,0,4.84,16.94,0,4.03,0.81,0,3.23,-6.22,-36.17,-12.36,29.87,2,4,5,1,2,1,0,100,100,66.67,8.33,50,0,0,100,57.29,0,0,96,96,100,6,1,0,8,0,0,0,0,0,0,0,0,0,15,0,15,1,15,0.533333333,124,27 +5,1001,GhostlyGrounds,Immediate,Control,Baseline,0,06:15pm,2,High Threat,0,0.8,"You started by entering through a school bus. From there you went through hard rubber flaps into the penitentiary. People were trying to scare you. There was dead corpse dolls, one of which had its head pop out at you. You go up stairs at one point, and on to a shaky/moving floor, then back down stairs. There was a guy behind bars trying to scare you downstairs.",1,94.33,99,95.6,1.92,2.9,0,2.9,0,4.35,0,4.35,0,0,2.9,0,0,1.45,0,2.9,0,2.9,2.9,0,2.9,2.9,0,0,0,11.59,1.45,0,0,0,1.45,0,10.14,0,0,0,1.45,0,0,0,0,0,0,0,0,0,5.8,26.09,0,8.7,17.39,0,0,1.45,0,5.8,NA,65.32,36.49,NA,1,3,1,2,1,1,100,0,0,100,65.38,0,50,100,0,11.54,50,50,50,50,50,4,3,0,4,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.363636364,69,27 +6,1001,GhostlyGrounds,Delay,Control,Baseline,0,06:15pm,2,High Threat,1,0.2,The Ghostly Grounds began by entering a school bus. The school had a strobe light and smoke inside. Inside the bus was an actor that was trying to scare you by banging on the bus hard. After the bus you walked through some rubber strips hanging in a doorway and into the building. In the building there were bodies hanging from the roof. At one point you go up a stair set. up stairs an actor would pop his head through a door and try to scare you. There was a moving floor that was quite uneven. There was a body with a head that would pop off at you. There were nets with actors behind them that would try to scare you. At the end you ended in the kaleidoscope hall. ,1,97.4,97.3,25.57,3.5,2.29,0,2.29,0,5.34,0,5.34,0,0,4.58,0.76,0,0,0,2.29,0,2.29,2.29,0,2.29,2.29,0,0,0,9.16,0,0,0,0,0,0,9.16,0,0,0,0.76,0,0,0,0,0,0,0,0,0,1.53,18.32,0,3.05,13.74,0.76,0.76,0.76,0,1.53,NA,55.65,20.32,NA,2,4,1,4,2,1,65.74,100,25,0,50,11.64,0,14.29,100,57.14,50,50,50,50,50,6,2,0,10,0,0,1,0,0,0,0,0,0,18,1,19,0.947368421,18,0.555555556,131,27 +7,1002,Infirmary,Delay,Control,Baseline,0,06:15pm,5,Low Threat,0,0.6,"This section had a lot of colors. We had to wear a 3d protective glass, that was annoying and kept slipping off my face. I remember going into a space that made me feel wobbly, one that was spinning. Lots of neon light and smoke. There was a dark passage with a bunch of obstacles with some green light we had to cross. The people who greeted us reminded me of Harley Quinn. There was paint splattered onto the walls. I dont think there was anyone who scared us like in the other houses. Just that there were a lot of situations that made me feel light headed. It was the first house we entered, after the introductions and rules section. Didnt seem very long. ",1,54.12,54.38,93.34,6.44,5.6,4.8,0,0.8,10.4,0,10.4,4,1.6,0,1.6,0,1.6,1.6,1.6,0,1.6,1.6,0,1.6,0.8,0.8,0,0,8,1.6,0,0.8,0.8,0,0.8,6.4,0,0,0,0,3.2,0,0,0,0,0,0,0.8,0,5.6,22.4,0,5.6,9.6,4,0.8,3.2,3.2,6.4,7.9,15.66,1.5,6.53,3,4,2,2,2,1,33.33,0,100,33.33,0,40,0,20,100,20,0,100,0,50,100,3,1,0,8,1,1,1,0,1,1,1,0,0,13,5,18,0.722222222,12,0.666666667,125,27 +8,1002,Asylum,Immediate,Control,Baseline,0,06:15pm,5,Low Threat,0,0.5,"This was the second tour. We entered after Infirmary. There was a lady in red who was being dramatic. The theme was around a Hollywood movie shoot. The man at the door told us we were the stars and not the lady in red. The man at the end was yelling at someone and telling them that the place was not haunted. There was a narration on some director, whose name I cant recollect.",1,63.05,94.28,55.76,7.88,5.41,4.05,0,1.35,6.76,0,6.76,1.35,0,1.35,1.35,0,4.05,1.35,1.35,0,1.35,0,0,0,0,0,0,0,21.62,6.76,0,2.7,0,0,4.05,17.57,0,0,2.7,2.7,0,0,0,0,0,0,0,0,0,2.7,14.86,0,1.35,9.46,2.7,1.35,0,0,2.7,-8.9,38.21,-9.59,-55.32,2,5,5,5,2,1,65,100,100,65,0,28.57,0,28.57,57.14,100,0,0,0,0,100,4,0,0,3,0,0,0,0,0,0,1,0,1,7,2,9,0.777777778,7,0.428571429,74,27 +9,1002,Asylum,Delay,Control,Baseline,0,06:15pm,5,Low Threat,1,0.25,"This was the second section we entered. The man who greeted us mentioned the lady in red and told us that we were ""the stars of the show"" but to not tell us. It was a Hollywood movie themed set. There was a narration ongoing about a director as we walked. I remember there were a bunch of characters throughout. A receptionist, a director. I think there was a typewriter. Then there was the lady in red who was lounging on a chaise and she left in a huff, it was all very dramatic. There was a man at the end who was talking on the phone who was arguing with the caller about not telling visitors that the set was haunted as it was bad for business. ",1,68.63,94.84,43.27,6.65,7.81,5.47,0,2.34,4.69,0.78,3.91,1.56,0,0,0,0,2.34,0.78,3.13,0.78,2.34,1.56,0,1.56,0,0.78,0,0,19.53,7.81,0,2.34,0.78,0,6.25,13.28,0,0,2.34,1.56,0,0,0,0,0,0,0,0,0,0,12.5,0,1.56,8.59,2.34,0,0,0,0,8.01,-31.15,1.58,53.59,5,4,3,1,5,1,0,43.1,86.21,55.17,100,65.38,41.35,41.35,100,0,0,50,100,0,0,2,0,0,12,1,0,0,0,0,0,1,0,0,15,1,16,0.9375,14,0.857142857,128,27 +10,1002,DevilsDen,Delay,Control,Baseline,0,06:15pm,5,High Threat,0,0.6,"There was a character at the beginning who was splitting groups up. She was bald and carried two knives. Very philosophical. As we entered there was a long walk to the main attraction. There were a bunch of people dressed as inmates who kept trying to scare us, and it worked. I remember a few weapons. Other than that I dont recollect much.",1,47.27,67.92,77.17,6.51,7.94,3.17,3.17,1.59,9.52,0,9.52,3.17,0,1.59,0,0,4.76,3.17,1.59,0,1.59,1.59,0,1.59,1.59,0,0,0,11.11,0,0,0,0,0,0,11.11,0,0,1.59,0,0,0,0,0,0,0,0,0,0,3.17,12.7,0,4.76,7.94,0,0,0,0,3.17,-7.69,47.27,-15.02,-55.32,3,2,5,2,3,1,75,0,100,29.17,29.17,75,100,0,58.33,85.42,0,0,0,0,100,3,0,0,4,1,0,0,0,0,1,0,0,1,8,2,10,0.8,7,0.571428571,63,27 +11,1002,GhostlyGrounds,Immediate,Control,Baseline,0,06:15pm,5,High Threat,0,0.6,"The Ghostly Grounds was the final section of the tour. Lots of strobing lights, dead bodies hanging from the ceiling. We entered through a bus. There were a bunch of stairs we had to climb. There were cages everywhere and people kept coming out of the cages.",1,98.09,85.5,92.58,20.23,6.52,4.35,2.17,0,2.17,2.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.35,0,0,0,0,0,0,4.35,0,0,0,0,4.35,0,0,0,0,0,0,0,0,4.35,21.74,0,6.52,17.39,2.17,0,0,4.35,4.35,NA,80.15,30.69,NA,1,4,1,4,2,1,100,62.5,62.5,0,62.5,22.5,0,75,100,50,50,50,50,50,50,1,1,0,5,0,0,0,0,0,0,1,0,0,7,1,8,0.875,7,0.714285714,46,27 +12,1002,GhostlyGrounds,Delay,Control,Baseline,0,06:15pm,5,High Threat,1,0.6,"This was the final section. I remember entering via a bus and that there was a man who was very scary in the bus. The bus was dark and there were a bunch of people sitting in the bus. One of these actors suddenly started getting up. Since it was dark and there was a strobing light effect I remember being super confused and scared. As we progressed into the house, there was a lady in front of our group who kept getting targeted and that was great for me because I was able to anticipate what was about to happen. There were a bunch of cages that had people who kept trying to escape. There were a lot of stairs and cages that kept shaking.",1,52.08,72.07,72.58,6.51,3.17,1.59,1.59,0,5.56,0,5.56,2.38,2.38,0.79,0.79,0,0,1.59,4.76,1.59,3.17,2.38,0,2.38,1.59,0,0,0,7.14,0.79,0,0.79,0,0,0,7.14,0,0,0.79,0.79,0,0,1.59,0,0,0,0,0.79,0,3.17,15.08,0,1.59,11.11,2.38,0,0,1.59,3.96,39.29,76.91,-5.31,46.26,2,4,3,4,2,5,86.54,100,50,0,0,53.85,0,33.33,100,33.33,32.05,33.33,100,33.33,0,2,1,0,9,4,0,0,0,0,1,1,1,0,16,3,19,0.842105263,12,0.75,126,27 +13,1003,Infirmary,Immediate,Control,Baseline,0,06:15pm,2,Low Threat,0,0.2,They had a lot of bright neon colors. We wore glasses to amplify the colors. At one point the bridge we crossed felt like it was three dimensional which made walking awkward. It was a bit frightening at times but I have difficulty remembering. Honestly the experience is a bit of a blur since I had a lot of anxiety throughout. They might have had clowns trying t frighten you .,1,79.45,72.87,24.32,1,4.29,2.86,1.43,0,14.29,0,14.29,2.86,2.86,1.43,1.43,1.43,2.86,1.43,8.57,1.43,7.14,4.29,0,4.29,4.29,0,0,0,7.14,0,0,0,0,0,0,7.14,0,0,0,0,0,0,0,0,0,0,0,0,0,4.29,11.43,0,2.86,1.43,5.71,0,1.43,0,4.29,44.47,46.42,15.52,71.46,4,3,4,2,1,1,66.67,0,0,100,33.33,0,0,100,0,66.67,0,50,50,100,0,2,1,0,4,1,0,0,0,0,1,0,0,2,8,3,11,0.727272727,7,0.571428571,70,30 +14,1003,Infirmary,Delay,Control,Baseline,0,06:15pm,2,Low Threat,1,1,"Infirmary was very colorful, we had to wear glasses for this one. at first there was a paint room....and then Im not sure. I think I saw a big insect, then maybe some clown like things. I really just dont remember anything. Anxiety just shuts my brain down, sorry.",1,7.03,1.98,92.35,20.23,2,2,0,0,14,0,14,4,0,0,8,2,2,2,4,2,2,2,0,2,2,0,0,0,4,2,2,0,0,0,0,2,0,0,0,0,4,0,0,0,0,0,0,0,0,4,10,0,0,6,4,0,0,4,4,40.54,80.41,32.78,8.43,1,4,3,4,1,1,100,100,50,0,50,0,0,33.33,100,0,0,0,100,50,100,1,1,0,3,0,0,0,0,0,0,0,0,3,5,3,8,0.625,5,0.6,50,30 +15,1003,Asylum,Delay,Control,Baseline,0,06:15pm,3,Low Threat,0,0.25,"So take thinrteen was the director or movie making section (I think). I remember that at the very beginning there was an actor talking on the phone something regarding a film, as to what else he said, I dont know. I really dont remember, everything is either gone or such a blur I can hardly even make any sense out of it. maybe some of my memories here are of other section, but I dont know. I think at some point we see a saw a girl? being cut up on a table. Im not sure if that was Asylum though.",1,16.49,1,98.64,20.23,1.96,0.98,0,0.98,26.47,0.98,25.49,6.86,1.96,0.98,8.82,0.98,8.82,2.94,0,0,0,0,0,0,0,0,0,0,8.82,3.92,0,0.98,0,0,2.94,4.9,0,0,0.98,0.98,0,0,1.96,0,0,0,0,0,0,7.84,10.78,0,0.98,5.88,2.94,0,0.98,1.96,7.84,25.78,-10.07,28.43,58.99,2,3,4,1,5,5,0,100,3.75,3.75,56.25,31.43,12.38,100,100,0,22.62,46.43,50,100,0,1,0,0,2,0,0,0,0,2,0,0,0,9,3,11,14,0.214285714,3,0.666666667,102,30 +16,1003,DevilsDen,Immediate,Control,Baseline,0,06:15pm,3,High Threat,0,0.6,"Devil's Den had characters with machines frightening individuals. One person crept ahead of me and pulled a saw in front of the other participant. I think there might have been characters on a table looking like they would go through surgery....but maybe that was a different one. Again, not much memory here (I actually feel a little light headedanxiety not fear). ",1,65.54,4.4,98.81,1.4,0,0,0,0,19.35,0,19.35,3.23,0,1.61,3.23,1.61,8.06,1.61,3.23,0,3.23,3.23,0,3.23,3.23,0,0,0,6.45,0,0,0,0,0,0,6.45,0,0,0,0,0,0,0,0,0,0,0,0,0,9.68,17.74,0,4.84,8.06,4.84,0,1.61,0,9.68,42.62,53.61,88.96,-14.69,2,3,5,5,1,1,65.71,100,37.14,37.14,0,0,54.55,100,100,60.61,0,30.77,0,66.67,100,2,0,0,4,0,0,0,0,0,1,0,0,2,6,3,9,0.666666667,6,0.666666667,62,30 +17,1003,DevilsDen,Delay,Control,Baseline,0,06:15pm,3,High Threat,1,1,"Machine shop is also blurry. I dont visually remember what happened, only the idea of it. Some guy with a chain saw was hiding in a corner when we went outside and he noticed I saw him and his intention to scare the participant ahead of me. With a shrug I moved aside and walked more slowly to give him space. Next thing, he runs past we and tries to scare the participant, but she seemed only mildly phased. Other than that, its all I remember.",1,33.73,67.32,87.35,9.15,3.49,2.33,1.16,0,12.79,1.16,11.63,5.81,1.16,0,2.33,0,3.49,2.33,3.49,1.16,2.33,2.33,0,2.33,2.33,0,0,0,13.95,1.16,0,0,0,0,0,12.79,0,0,1.16,6.98,0,0,0,0,0,0,0,1.16,0,1.16,16.28,1.16,6.98,3.49,4.65,0,0,0,2.32,-38.45,-3.81,-46.04,-65.5,3,5,5,4,3,4,17.78,80,100,0,40,85.19,33.33,0,33.33,100,70.83,25,25,0,100,8,0,0,1,0,0,0,0,0,0,0,0,4,9,4,13,0.692307692,9,0.111111111,86,30 +18,1003,GhostlyGrounds,Delay,Control,Baseline,0,06:15pm,4,High Threat,0,0.2,"It was very difficult to encode anything since I was very anxious. I think I only really remember the beginning. We entered through a bus, in which at the end there was the entrance to the building/""Ghostly Grounds"". At some point we had to go up some stairs and we could see people in cages? I think. I think this must have been the last section (I dont even remember if there were 3 or 4 sections :/). I dont know, I really dont remember anything else. I hardly remember anything at all.",1,11.71,3.08,99,1.4,3.23,3.23,0,0,25.81,1.08,24.73,8.6,1.08,3.23,6.45,4.3,4.3,4.3,3.23,0,3.23,2.15,0,2.15,1.08,0,0,0,3.23,0,0,0,0,0,0,3.23,0,0,0,0,2.15,0,0,0,0,0,0,0,0,4.3,11.83,0,2.15,9.68,1.08,0,0,2.15,4.3,-24.65,11.43,-25.56,-59.81,2,5,5,4,2,2,28,100,45.6,0,0,80.77,0,51.28,87.82,100,71.05,0,0,75,100,1,2,0,1,1,0,0,0,0,0,0,0,8,5,8,13,0.384615385,4,0.25,92,30 +19,1004,Infirmary,Delay,Control,Baseline,0,08:30pm,1,Low Threat,0,0.2,I remember Infirmary containing 3D glasses and seeing images pop off the walls. It was the most colorful section in the tour. I also recall seeing someone painting the walls. At the end we saw dancers on a box and returned the glasses.,1,92.38,67.32,96.19,56.53,2.33,2.33,0,0,6.98,0,6.98,4.65,0,0,2.33,0,0,4.65,2.33,2.33,0,0,0,0,0,0,0,0,6.98,0,0,0,0,0,0,6.98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.58,0,2.33,13.95,11.63,0,0,0,0,-4.3,-35.21,18.66,3.66,4,2,3,1,4,2,0,88.89,59.26,100,100,46.67,100,100,0,0,50,0,100,0,0,2,0,0,4,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.666666667,43,22 +20,1004,Asylum,Immediate,Control,Baseline,0,08:30pm,1,Low Threat,0,0.25,Remember seeing a snake and desk with paper. I also remember seeing dentist chair. Walked over a moving platform.,1,89.52,14.81,99,20.23,0,0,0,0,10.53,0,10.53,10.53,0,0,0,0,0,10.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.32,0,10.53,5.26,10.53,0,0,0,0,33.06,57.97,37.55,3.66,5,3,3,3,1,2,75,75,0,75,100,0,50,100,0,0,50,0,100,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,3,1,4,0.75,3,1,19,22 +21,1004,Asylum,Delay,Control,Baseline,0,08:30pm,1,Low Threat,1,0.75,"I recall seeing computers, and older props that seemed out dated. I do recall a room with a bed and a lady waking around the room. I remember seeing a man dressed as a detective looking at papers on a desk.",1,97.66,40.06,99,20.23,0,0,0,0,9.76,0,9.76,9.76,0,0,2.44,0,0,7.32,0,0,0,0,0,0,0,0,0,0,7.32,2.44,0,2.44,0,0,0,7.32,0,0,2.44,2.44,0,0,0,0,0,0,0,0,0,2.44,17.07,0,0,9.76,7.32,0,0,0,2.44,-26.66,-30.32,-31.4,-18.27,3,1,1,1,5,3,0,75,100,50,100,100,75,37.5,37.5,0,100,56.25,0,56.25,0,0,1,0,4,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.8,41,22 +22,1004,DevilsDen,Delay,Control,Baseline,0,08:30pm,2,High Threat,0,0.6,"I remember seeing cages, a desk, not sure if the Devil's Den included the dental equipment but I do recall seeing that. A man wielding a chainsaw.",1,75.62,1,92.16,20.23,0,0,0,0,22.22,0,22.22,7.41,0,0,11.11,0,11.11,7.41,0,0,0,0,0,0,0,0,0,0,3.7,0,0,0,0,0,0,3.7,0,0,0,3.7,0,0,0,0,0,0,0,0,0,0,7.41,0,0,0,7.41,0,0,0,0,36.61,36.32,27.28,46.24,5,4,3,4,5,5,41.67,41.67,50,0,100,27.78,55.56,33.33,100,0,83.33,83.33,100,100,0,0,0,0,3,0,0,0,0,0,0,0,0,2,3,2,5,0.6,3,1,27,22 +23,1004,GhostlyGrounds,Immediate,Control,Baseline,0,08:30pm,2,High Threat,0,0.8,Went through a bus at the beginning. Ended up going through a strobe light and seeing a false door with a hand popping up. Saw cages and robotic humanlike decoration. I remember going upstairs. At the end we went through a long hallway.,1,99,67.32,99,20.23,2.33,2.33,0,0,4.65,0,4.65,2.33,0,0,0,0,0,2.33,0,0,0,0,0,0,0,0,0,0,4.65,0,0,0,0,0,0,4.65,0,0,0,0,0,0,0,0,0,0,0,0,0,4.65,27.91,0,9.3,11.63,6.98,0,0,0,4.65,71.1,85.24,84.37,43.68,1,4,4,4,1,1,100,48.39,48.39,0,58.06,0,88.89,88.89,100,100,0,88.89,0,100,0,2,2,0,3,0,0,0,0,0,0,0,0,0,7,0,7,1,7,0.428571429,43,22 +24,1004,GhostlyGrounds,Delay,Control,Baseline,0,08:30pm,2,High Threat,1,0.4,"I remember entering in the bus, platform moving, cages, we went upstairs at a point and saw hanging props. I also recall a false door opening and someone attempting to grab individuals.",1,78.28,75.49,99,20.23,3.13,3.13,0,0,12.5,0,12.5,6.25,0,0,3.13,0,0,6.25,0,0,0,0,0,0,0,0,0,0,9.38,0,0,0,0,0,0,9.38,0,0,0,0,0,0,3.13,0,0,0,0,0,0,0,31.25,0,9.38,15.63,3.13,0,3.13,3.13,0,33.18,68.9,15.65,15,1,3,4,3,1,2,100,100,0,58.33,58.33,0,0,100,12.5,100,28.57,0,0,100,0,2,1,0,4,0,0,0,0,0,0,0,0,0,7,0,7,1,7,0.571428571,32,22 +25,1005,Infirmary,Immediate,Goal-assigned,Baseline,2,08:30pm,2,Low Threat,0,0.8,"A room with green lights and mist where you couldnt see under the mist and people were reaching their hands out, that went into an art room with lots of neon art on the walls and an artist. Then it went into a room with two pretty ladies dancing on tables, another woman gave us 3D glasses and we went in. There were giant spiders in the hallway, all still bright neon art on the walls. That led to a spinning area with polka dots. This went into another neon artsy kinda hallway but there were actors there this time. Then into a hallway that was like the spinning area, all dark with polka dot lights, and there was an actor that blended into the wall. That led out of there on the other side of the beginning room and the dancing ladies were dead(?) or turned off(?).",1,90.42,67.74,98.19,29.32,2.7,1.35,0,1.35,8.11,1.35,6.76,0,1.35,0.68,2.03,0,3.38,0,0.68,0.68,0,0,0,0,0,0,0,0,8.78,3.38,0,1.35,0,0,0,6.76,0,0,2.03,0,0,0,0,0,0,0,0,0,0,6.08,28.38,0,6.76,18.24,4.05,0,0,0,6.08,31.02,51.44,10.67,30.94,5,4,4,4,2,1,67.14,39.52,67.14,0,100,18.47,0,0,100,4.46,0,0,0,100,0,3,6,0,8,0,1,1,0,1,0,0,0,1,17,4,21,0.80952381,17,0.470588235,148,21 +26,1005,Infirmary,Delay,Goal-assigned,Baseline,2,08:30pm,2,Low Threat,1,0.8,"Entering Infirmary there was an area with smoke and a green light that you couldnt see underneath the smoke. Then it went into an artists room that was covered in paintings. Then it went into a room with dancing ladies on tables, and someone gave us 3D glasses. From there we went through some giant spiders and into a huge spinning tube thing that we had to walk through. The inside was filled with polka dots. From there we walked down another long hallway still with lots of colors on the walls and down which then turned into a hallway that had the same black space and polka dots on the walls like from the spinning tube. Out of there was a giant cobra snake statue. Walking past that was back to the dancing ladies on the other side.",1,93.66,76.53,99,20.23,2.88,2.88,0,0,4.32,0,4.32,0,0,0.72,0.72,0,2.88,0,0,0,0,0,0,0,0,0,0,0,8.63,3.6,0,1.44,0,0,0,6.47,0,0,1.44,0,1.44,0,0,0,0.72,0,0,0,0,5.76,29.5,0,8.63,17.27,3.6,0,0,2.16,5.76,NA,-30.39,-30.23,NA,4,1,1,1,5,1,0,0,66.67,100,77.78,100,47.06,73.53,20.59,0,50,50,50,50,50,3,6,0,8,0,0,0,0,0,0,0,0,0,17,0,17,1,17,0.470588235,139,21 +27,1005,Asylum,Delay,Goal-assigned,Baseline,2,08:30pm,2,Low Threat,0,0.5,We walked through what seemed to be news rooms where there was a single reporter at the desk and an overhead noise of phones ringing as well as the kind of stuff you hear on movie sets like quiet on set. There was another room with a fancy woman at a backstage mirror getting ready. Around her was I think a set for a dentist commercial or some kind of commercial where there was a camera pointed towards a chair and there was a creepy surgeon or health person selling the product. ,1,93.34,53.04,67.7,35.66,1.09,1.09,0,0,11.96,0,7.61,2.17,0,0,3.26,0,5.43,0,5.43,3.26,2.17,1.09,0,1.09,1.09,0,0,0,8.7,2.17,0,0,0,0,2.17,6.52,0,0,2.17,0,0,0,1.09,0,0,0,0,0,0,2.17,16.3,0,1.09,10.87,0,4.35,0,1.09,2.17,14.68,33.84,-19.2,29.41,3,4,4,4,2,3,57.89,89.47,100,0,66.67,73.47,0,3.06,100,22.45,31.58,63.16,0,100,0,0,2,0,6,0,0,0,0,0,0,0,0,2,8,2,10,0.8,8,0.75,92,21 +28,1005,DevilsDen,Delay,Goal-assigned,Share,2,08:30pm,4,High Threat,0,1,The Devil's Den had people holding hammers and tools and there were factory type machines all around. I dont remember much from the shop besides at the end there was a giant machine and we had to walk through it to continue. The staff was saying to sacrifice to the machine and the inside of the machine was horrific it was made of bodies and flesh. ,1,84.76,40.06,39.59,6.9,3.03,1.52,1.52,0,6.06,1.52,4.55,1.52,1.52,0,0,0,1.52,1.52,3.03,0,1.52,3.03,0,1.52,1.52,0,0,0,4.55,1.52,0,0,0,0,1.52,3.03,0,0,0,0,3.03,0,0,0,0,0,0,0,0,1.52,9.09,0,1.52,7.58,0,0,0,3.03,1.52,-3.16,-26.96,-13.45,30.94,2,3,2,1,4,1,0,100,40.85,100,60.56,66.07,25,100,0,50,0,100,0,0,0,2,0,0,6,1,0,0,0,0,0,0,0,1,9,1,10,0.9,8,0.75,66,21 +29,1005,GhostlyGrounds,Immediate,Goal-assigned,Test,2,08:30pm,4,High Threat,0,0.8,"Walked into a bus that was foggy and had dead body props and people props. This led to a little caged walkway where a man dragged something loudly along the gate. This went into an intro kinda room with an actor holding bones. It then went into another room with a lot of cages/prison cells with several different scary things inside. One of the last cages was a box that was shaking a lot. The prison cells went on for a while, with fake leaves or something hanging from most surfaces, and actors following/scaring us. That area ended when we went outside, where there was a man with a chainsaw who chased us down the ramp. We went back inside and went through more cells before going up a staircase. At the top of the staircase was devil. It was massive. Then we went down the stairs and it basically ended there.",1,90.39,82.18,96.22,1.37,5.19,3.25,0,1.95,4.55,0,4.55,0,0.65,0,2.6,0,1.95,0,3.25,0,3.25,1.3,0,1.3,1.3,0,0,0,7.14,0.65,0,0,0,0.65,0,6.49,0,0,0,1.3,0,0,0,0,0,0,0,0,0,1.3,21.43,0,7.14,13.64,0,0.65,0,0,1.3,-6.79,-15.28,2.57,-7.65,5,4,5,1,2,1,0,90,90,0,100,42.86,0,42.86,100,61.43,0,96.77,0,0,100,8,3,0,13,0,0,0,0,0,0,0,0,0,24,0,24,1,24,0.541666667,154,21 +30,1005,GhostlyGrounds,Delay,Goal-assigned,Test,2,08:30pm,4,High Threat,1,0.4,"To get to the Ghostly Grounds we walked through a bus that had actors and body parts in the seats. Exiting the bus, there was a short gated section to walk through into the building. There was a man outside the gates banging on the chains. Inside was an entrance room with another actor and then we were brought into an area with a lot of cages and prisons. There were actors in long black cloaks and scary masks. It then went into a freezer holding hanging bodies. From there it went to more prison bars and actors. That ended by going out to a stretch with a chainsaw man. The chainsaw man chases you down the ramp and then you reenter into another area. This area you climb the stairs and at the top is the devil. Then down the stairs is the end.",1,97.34,88.72,99,4.22,3.47,1.39,0.69,1.39,2.08,0,2.08,0,0,0,0,0,2.08,0,2.08,0,2.08,0.69,0,0.69,0.69,0,0,0,9.03,0.69,0,0,0,0,0,8.33,0,0,0,2.08,0,0,0.69,0,0,0,0,0,0,2.08,25.69,0,5.56,19.44,0.69,0.69,0,0.69,2.08,NA,28.98,-1.79,NA,2,5,1,3,4,1,66.67,100,0,100,9.52,18.67,56,18.67,0,100,50,50,50,50,50,4,7,0,9,0,0,0,0,0,0,0,0,0,20,0,20,1,20,0.45,144,21 +31,1006,Infirmary,Delay,Control,Baseline,0,06:15pm,4,Low Threat,0,0.6,"Glow in the dark lights, clown with a hatchet, person wearing all black and polka dots, paintings, 3d glasses, moving floor, bridge, ",1,98.87,66.75,20.79,20.23,0,0,0,0,4.55,4.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.55,0,0,0,0,0,0,4.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.82,0,4.55,9.09,18.18,0,0,0,0,NA,79.29,21.68,NA,1,3,1,3,1,1,100,100,0,0,0,0,0,100,0,0,50,50,50,50,50,0,1,0,7,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.875,22,19 +32,1006,Asylum,Immediate,Control,Baseline,0,06:15pm,1,Low Threat,0,0.5,"Entrance there was a man with a movie clicker thing, dentist with a drill and a head made of teeth, detective man, pretty lady with a makeup stand, receptionist twirling phone cord, ",1,98.55,94.84,15.38,20.23,3.13,0,0,3.13,6.25,0,6.25,0,3.13,0,3.13,0,0,0,0,0,0,0,0,0,0,0,0,0,15.63,6.25,0,3.13,0,0,3.13,12.5,0,0,3.13,6.25,0,0,0,0,0,0,0,0,0,3.13,12.5,0,3.13,9.38,0,0,0,0,3.13,NA,69.96,-38.91,NA,1,1,1,5,4,1,100,66.67,77.78,77.78,0,100,50,58.33,0,0,50,50,50,50,50,0,0,0,7,0,0,0,0,0,0,0,0,0,7,0,7,1,7,1,32,19 +33,1006,Asylum,Delay,Control,Baseline,0,06:15pm,1,Low Threat,1,0.25,"Guy shouting ""remember your lines"" with little movie clicker thing, lady with a red dress at a makeup table, receptionist on the phone, detective, dentist with head made of teeth, directors chair, ",1,99,99,1.63,20.23,6.25,0,0,6.25,6.25,0,6.25,3.13,3.13,0,0,0,0,3.13,0,0,0,0,0,0,0,0,0,0,21.88,9.38,0,3.13,0,0,6.25,15.63,0,0,3.13,3.13,0,0,0,0,0,0,0,0,0,0,9.38,0,0,3.13,3.13,3.13,0,0,0,-39.44,-28.05,-36.58,-53.71,4,1,1,1,3,2,0,40,53.33,100,6.67,100,100,0,0,0,100,0,0,0,0,0,1,0,7,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.875,32,19 +34,1006,DevilsDen,Delay,Control,Baseline,0,06:15pm,3,High Threat,0,1,"Short woman out front with an axe, man with a chainsaw, larger man with a chainsaw, clanging walkway, industrial machinery, shouting about vampires, ",1,99,95.64,4.38,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.39,4.35,0,0,0,0,4.35,13.04,0,0,4.35,8.7,0,0,0,0,0,0,0,0,0,4.35,13.04,0,0,8.7,0,4.35,0,0,4.35,NA,53.22,NA,NA,2,1,1,4,1,1,66.67,100,66.67,0,41.67,50,50,50,50,50,50,50,50,50,50,0,2,0,6,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.75,23,19 +35,1006,GhostlyGrounds,Immediate,Control,Baseline,0,06:15pm,3,High Threat,0,0.8,"Animatronics that look like the lizard people from doctor who, 2 men who looked like extras from Cats (2020), school bus that said Ghostly Grounds, flashing room with upside down bodies, shaking cage Electricity?, people missing limbs",1,97.04,84.23,1.17,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.11,2.78,0,0,0,0,2.78,8.33,0,0,0,2.78,0,0,0,0,0,0,0,0,0,13.89,13.89,2.78,0,5.56,8.33,0,0,0,13.89,NA,50.43,9.91,NA,4,2,1,2,4,1,87.5,0,50,100,0,43.75,100,50,0,0,50,50,50,50,50,0,1,0,5,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.833333333,36,19 +36,1006,GhostlyGrounds,Delay,Control,Baseline,0,06:15pm,3,High Threat,1,0.2,"Schoolbus that said Ghostly Grounds, flashing lights with mannequins in the seats, meat freezer with bodies hanging from the ceiling, medical experiments (electric box, guy with arm cut off), person jumping out of a cage, giant lizard animatronics, stairs, moving floor, ambulance, ",1,99,68.54,26.35,20.23,0,0,0,0,2.44,0,2.44,0,2.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.32,2.44,0,0,0,0,2.44,4.88,0,0,0,2.44,0,0,0,0,0,0,0,0,0,2.44,19.51,0,4.88,9.76,4.88,0,0,0,2.44,-3.83,15.83,-58.26,30.94,4,1,3,5,2,1,44.44,75,50,100,0,100,0,0,0,0,0,0,100,0,0,0,1,0,11,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.916666667,41,19 +37,1007,Infirmary,Immediate,Goal-assigned,Baseline,2,06:15pm,3,Low Threat,0,0.75,"Not as scary as other sections, Being first introduced to the bangs and sparks spooked me for a little at first, There werent as many actors or animatronics to scare me so I was more calm for this section than others, ",1,41.16,1,97.82,1,0,0,0,0,17.07,0,17.07,0,0,0,2.44,0,14.63,0,9.76,2.44,7.32,9.76,2.44,7.32,7.32,0,0,0,2.44,0,0,0,0,0,0,2.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.32,0,0,7.32,0,0,0,0,0,-14,14.64,-1.32,-55.32,2,4,5,4,2,1,38.89,100,100,0,50,33.33,0,0,100,50,0,0,0,0,100,0,0,0,2,2,0,0,0,0,1,0,0,0,4,1,5,0.8,2,1,41,19 +38,1007,Infirmary,Delay,Goal-assigned,Baseline,2,06:15pm,3,Low Threat,1,0.5,Neon colors and 3d glasses. Giant neon spider and animals on walls. ,1,73.36,40.06,3.81,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.67,0,0,8.33,8.33,0,0,0,0,NA,4.96,-14.28,NA,5,4,1,1,2,1,0,0,0,0,100,66.67,0,0,100,0,50,50,50,50,50,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,4,1,4,1,12,19 +39,1007,Asylum,Delay,Goal-assigned,Baseline,2,06:15pm,2,Low Threat,0,0.5,Woman doing makeup in front of the mirror. Newspapers scattered over desk and man in the room that appeared to be investigator. Papers put up about soap scandal,1,99,91.33,89.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.57,0,3.57,0,0,0,0,0,0,0,14.29,3.57,0,0,0,3.57,0,10.71,0,0,3.57,3.57,0,0,0,0,0,0,0,0,0,0,28.57,0,3.57,21.43,3.57,0,0,0,0,NA,50,5.53,NA,5,3,1,4,2,1,66.67,66.67,66.67,0,100,50,0,100,60,0,50,50,50,50,50,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,4,1,4,1,28,19 +40,1007,DevilsDen,Delay,Goal-assigned,Share,2,06:15pm,3,High Threat,0,0.75,Super loud sections. Man with teeth cover head. actor at forge with bones inside. ,1,99,97.11,24.32,98.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,7.14,0,0,0,0,0,0,0,0,14.29,0,0,0,0,0,0,14.29,0,0,0,7.14,0,0,0,0,0,0,0,0,0,0,21.43,0,0,14.29,0,7.14,0,0,0,NA,-16.82,NA,NA,4,1,1,1,1,1,0,50,0,100,75,50,50,50,50,50,50,50,50,50,50,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,4,1,4,1,14,19 +41,1007,GhostlyGrounds,Immediate,Goal-assigned,Test,2,06:15pm,4,High Threat,0,1,"Was one of the more scary sections, The flashing lights that makes the actors movements erratic was one of the things that affected me the most. The shaky/sliding floors and the long hallways with props that go off into the distance was great, The section felt longer and I wasnt sure when Id get out, The actors seemed more lively and to interact more with us, ",1,87.33,31.7,94.36,42.34,1.49,1.49,0,0,10.45,0,10.45,2.99,4.48,1.49,1.49,0,1.49,0,4.48,2.99,1.49,2.99,1.49,1.49,1.49,0,0,0,4.48,0,0,0,0,0,0,4.48,0,0,0,0,0,0,1.49,0,0,0,0,0,0,8.96,20.9,0,4.48,13.43,2.99,0,1.49,1.49,8.96,34.34,43.42,31.51,28.09,3,4,4,4,1,1,67.86,67.86,100,0,75,0,67.24,3.45,100,3.45,0,46.43,0,100,50,1,0,0,4,3,0,0,0,0,1,0,0,0,8,1,9,0.888888889,5,0.8,67,19 +42,1007,GhostlyGrounds,Delay,Goal-assigned,Test,2,06:15pm,4,High Threat,1,0.4,Bus entrance with flashing lights and bodies inside and an actor. Sliding floors and the meat hanging racks with swaying bodies. Huge ghosts hanging from sealing going off into long hallway,1,99,59.25,99,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.23,0,0,0,0,0,0,3.23,0,0,0,0,0,0,0,0,0,0,0,0,0,3.23,38.71,0,9.68,22.58,6.45,0,0,0,3.23,NA,-18.92,-7.02,NA,2,2,1,1,4,1,0,100,100,12.5,100,85.71,100,100,0,0,50,50,50,50,50,0,0,0,8,0,0,0,0,0,0,0,0,0,8,0,8,1,8,1,31,19 +43,1008,Infirmary,Immediate,Control,Baseline,0,08:30pm,3,Low Threat,0,0.6,"there was a lot of neon color mostly bright green. There were fake gogo dancers with pigtails and black Chelsea boots. It was the least scary besides the Ghostly Grounds because the Ghostly Grounds sucked. There was fake radioactive splatter on the wall. There was fake glow in the dark and hula hoops. everybody wore masks. most of clothing of actors was white to show off neon. wore 3D glasses. held tabbis hand the whole time like my life depended on it. threw away glasses in bin when man in black suit and white button down and plain white face paint w glasses told me to at the end +",1,90.75,45.59,40.7,1,0.93,0,0,0.93,4.67,0.93,3.74,0,1.87,0,1.87,0,0.93,0,5.61,0.93,4.67,0.93,0,0.93,0.93,0,0,0,8.41,3.74,0,0,0,2.8,0.93,3.74,0,0,0,0.93,0,0,0,0,0,0,0,0,0,2.8,22.43,0,1.87,10.28,10.28,0.93,0,0,2.8,-14.16,-29.4,-44.02,30.94,3,1,2,1,4,1,0,91.3,100,36.23,68.12,100,74.07,27.16,0,0,0,100,0,0,0,5,0,0,12,1,0,0,0,0,2,0,0,0,18,2,20,0.9,17,0.705882353,107,21 +44,1008,Infirmary,Delay,Control,Baseline,0,08:30pm,3,Low Threat,1,0.2,Girls with pigtails and dark hair at the end. Black boots that I asked them about where they got them and they didn’t answer because they weren’t allowed to respond. Neon splatters on the wall. Was handed 3D glasses halfway through by one of the more mildly dressed guys with white makeup. Spinning tube that you had to walk through. Neon everywhere. Toxic waste barrels and old large batteries along the walls. People hid behind doors because it was the first attraction we entered. Squeezing Tabbi’s hand like there was no tomorrow. Guy in black suit and white makeup with black glasses and dirty blond hair collecting 3D glasses at the very end right before the exit. He was polite and asked us to deposit our glasses right in one spot. ,1,71.27,84.45,40.49,12.29,3.05,2.29,0,0.76,7.63,1.53,6.11,0.76,3.05,0,0.76,0,1.53,0,2.29,0.76,1.53,0,0,0,0,0,0,0,14.5,4.58,0.76,0.76,0,0,3.05,9.92,0,0,0.76,2.29,1.53,0,1.53,0,0,0,0,0.76,0,3.82,16.79,0,3.05,7.63,5.34,0.76,0.76,3.06,4.58,-22.41,1.42,-35.26,-33.41,2,1,1,4,2,2,17.04,100,40,0,60,100,0,60.77,43.41,43.41,100,0,51.92,0,0,6,2,0,12,1,0,0,0,0,0,1,0,0,21,1,22,0.954545455,20,0.6,134,21 +45,1008,Asylum,Delay,Control,Baseline,0,08:30pm,4,Low Threat,0,0,Announcement about director being missing. Opera singer dressed in red with dark hair singing and I kind of sang back and she rudely did not do the call and response I was hoping for. Dark. Lots of people hiding in cages. Mesh wire cages. Rusty. Dirty looking. Doctor in bloody white scrubs and white makeup and teal scrub cap with a chainsaw apparatus thingy?? I really don’t remember anything else. ,1,52.56,6.16,11.24,1.98,1.43,0,0,1.43,12.86,0,12.86,1.43,1.43,1.43,5.71,1.43,2.86,1.43,8.57,2.86,5.71,2.86,1.43,1.43,0,1.43,0,1.43,7.14,4.29,0,0,1.43,0,2.86,2.86,0,0,1.43,0,0,1.43,0,0,0,0,0,1.43,0,4.29,18.57,0,0,5.71,10,2.86,0,1.43,5.72,25.35,55.6,27.11,-6.67,1,2,2,2,1,1,100,0,100,0,50,0,100,28.57,14.29,71.43,0,100,0,0,100,3,0,0,9,1,0,0,0,0,0,0,0,1,13,1,14,0.928571429,12,0.75,71,21 +46,1008,DevilsDen,Immediate,Control,Baseline,0,08:30pm,4,High Threat,0,0.4,This was the scariest section to me. lots of gears and grinding sounds. loud ouffs of air. vapor everywhere on ground. dead bodies and lots of torsos hanging from walls. mentions of cannibalism I think. wall of skin with some faces and body parts coming through and walk across a metal grate. There were sliding plates on the floor which made it suck to walk. entered outside area with woman holding long hammer thing with a bun and a red coat. held tabbis hand very hard. wall of black doorways. nobody popped thru those but there was a guy who touched me at the end ,1,91.92,20.47,91.58,4.95,0.95,0,0,0.95,6.67,1.9,4.76,0.95,0.95,0,0,0,2.86,0,1.9,0,1.9,0.95,0,0.95,0.95,0,0,0,3.81,0.95,0,0,0,0,0.95,2.86,0,0,0.95,0.95,0,0,0,0,0,0,0,0,0,0.95,22.86,0,4.76,13.33,1.9,1.9,1.9,0,0.95,-12.86,-11.67,-20.23,-6.67,4,5,2,1,4,1,0,0,0,100,0,50,33.33,50,0,100,0,100,0,0,100,4,2,0,14,2,0,0,0,0,0,0,0,1,22,1,23,0.956521739,20,0.7,105,21 +47,1008,DevilsDen,Delay,Control,Baseline,0,08:30pm,4,High Threat,1,0.6,"Gears. Lots of people with light makeup and fake blood and injuries on their faces. Butcher aprons. Sliding around on the floor due to those planks in the floor and that slid back and forth. Holding rabbis hand but not as tight as before. Probably the third scariest, from scariest to least scary was Asylum, Infirmary Devil's Den then the Ghostly Grounds. Lady with king axe and a high bun white ghastly makeup on face and a red jacket. Either blue or black pants. She was out front before we entered. Faces in the one wall as well as body parts. Specifically remember a torso (dismembered) high on the wall. ",1,90.72,40.06,74.91,1,2.73,0.91,0,1.82,8.18,1.82,6.36,0.91,0,0,1.82,0,4.55,0.91,5.45,0.91,4.55,2.73,0,2.73,2.73,0,0,0,5.45,1.82,0,0.91,0,0.91,0,4.55,0,0,1.82,0.91,0,0,0.91,0,0,0,0,0,0,6.36,19.09,0,2.73,10.91,4.55,0,0.91,0.91,6.36,31.16,48.53,30.35,14.59,5,2,5,4,1,1,50,50,25,0,100,0,100,0,75,0,0,50,50,50,100,2,0,0,17,0,0,0,0,0,0,4,0,1,19,5,24,0.791666667,19,0.894736842,110,21 +48,1008,GhostlyGrounds,Delay,Control,Baseline,0,08:30pm,2,High Threat,0,0.4,Slidey plates on the floor. Hall of neon lights I think they were blue and purple and cage entrances on either side multiple times. Stairs leading up to slidey plates on the floor. Meat? I don’t remember much this section sucked it was not even scary there were significantly less people and by that I mean actors and actresses so it was not scary. Guy w dreads touched my arm after I cursed and said don’t make me come after you or somebting,1,15.19,4.45,97.45,1,1.2,0,1.2,1.2,9.64,0,9.64,2.41,1.2,0,1.2,0,4.82,1.2,4.82,0,4.82,3.61,0,3.61,3.61,0,0,0,7.23,1.2,0,0,0,0,1.2,6.02,0,0,1.2,1.2,0,0,0,1.2,0,0,0,0,0,3.61,14.46,0,1.2,9.64,3.61,0,1.2,1.2,3.61,21.13,46.72,8.51,8.17,2,3,1,3,2,4,60,100,0,21.25,42.5,50,0,100,93.75,80.47,100,100,100,0,0,3,2,0,6,2,0,0,0,0,0,1,2,3,13,6,19,0.684210526,11,0.545454545,85,21 +49,1009,Infirmary,Immediate,Control,Baseline,0,06:15pm,2,Low Threat,0,0.6,"Infirmary was full of psychedelic colors, what you might expect from psychosis and an acid trip. The people in there werent scary but the colors were exciting and the paintings interesting to look at. It felt rather short and like it didnt have much to offer except the goggles that made things pop out at you. ",1,67.11,21.49,35.49,47.3,0,0,0,0,14.29,0,14.29,1.79,1.79,0,3.57,0,7.14,0,5.36,3.57,1.79,3.57,1.79,1.79,1.79,0,0,0,5.36,1.79,0,0,0,0,0,3.57,0,0,0,0,0,0,0,0,1.79,0,0,0,1.79,8.93,14.29,1.79,0,7.14,5.36,0,1.79,1.79,10.72,-2.33,8.63,6.56,-22.18,3,4,2,4,3,3,27.78,66.67,100,0,100,41.67,50,0,100,25,91.67,100,0,100,100,0,0,0,4,3,0,0,0,0,0,2,0,1,7,3,10,0.7,4,1,56,19 +50,1009,Infirmary,Delay,Control,Baseline,0,06:15pm,2,Low Threat,1,0.6,"Infirmary was like psychedelic colors. Reminds me of what I wish an acid trip would be like. There were bright neon colors all around the floors and similarly colored paintings. I remember a clown with a comically large paint brush in a room with all those paintings, there was someone else in there but I can’t remember. There were some dancers on boxes and I think around that area we got some glasses that made everything pop. Sometime after I walked into a tunnel with spinning walls. Towards the end of Infirmary I circled back to the area with those two people dancing in some boxes before moving into another section of the tour.",1,80.4,7.5,99,46.76,0.88,0.88,0,0,14.91,2.63,12.28,2.63,0.88,2.63,1.75,0,4.39,2.63,1.75,1.75,0,0,0,0,0,0,0,0,3.51,0.88,0,0,0,0,0,2.63,0,0,0,0,0,0.88,0.88,0,0,0,0,0,0,3.51,23.68,0,3.51,16.67,3.51,0,0,1.76,3.51,6.79,-18.74,-3.81,42.91,5,3,3,1,2,1,0,94.29,15.71,78.57,100,50,0,100,20,12.27,0,25,100,0,0,2,2,0,9,0,0,0,0,0,0,1,0,1,13,2,15,0.866666667,13,0.692307692,115,19 +51,1009,Asylum,Delay,Control,Baseline,0,06:15pm,1,Low Threat,0,0.5,"Asylum was drab and boring. The predominant colors were a dull green, white and black. I remember some tall black detective going in about finding someone, there was also an attractive lady somewhere in the walk. I remember a dentist obsessed with teeth and they had a had that had teeth all over it and I found that funny. Asylum was very drab.",1,35.28,49.21,81.58,1.63,0,0,0,0,12.31,1.54,10.77,7.69,0,0,3.08,0,0,3.08,9.23,3.08,6.15,3.08,1.54,1.54,0,0,0,0,6.15,1.54,0,1.54,0,0,0,6.15,0,0,1.54,0,0,0,3.08,0,0,1.54,0,0,0,4.62,20,1.54,3.08,7.69,7.69,0,0,4.62,4.62,34.93,18.84,46.04,39.91,3,5,2,5,1,1,50,50,100,100,0,0,0,75,75,100,0,100,100,0,50,0,0,0,8,1,0,0,0,0,2,0,1,0,9,3,12,0.75,8,1,65,19 +52,1009,DevilsDen,Delay,Control,Baseline,0,06:15pm,5,High Threat,0,0.8,"Loud sounds, brutish movements and people cloaked in red overalls. I remember a big man running around with a chainsaw, lots of hissing and the clang of metal on metal. I remember thinking the sound design of the place was very good. We had to enter the tour individually and there was a red mist around the entrance. From the start I was very wary of dark corners because of how dark they seemed. Severally people appeared from those corners, sometimes they would charge rapidly then run right past or suddenly stop. ",1,80.04,46.49,94.98,20.23,1.09,1.09,0,0,9.78,0,9.78,5.43,2.17,1.09,3.26,0,1.09,2.17,2.17,1.09,1.09,1.09,1.09,0,0,0,0,0,5.43,0,0,0,0,0,0,4.35,0,0,0,1.09,2.17,0,0,0,0,0,0,1.09,0,8.7,22.83,1.09,4.35,6.52,5.43,5.43,0,2.17,9.79,37.75,42.28,44.06,26.91,2,3,4,5,1,3,66.36,100,53.27,71.03,0,0,0,100,80.41,100,47.37,94.74,0,100,0,3,0,0,10,1,0,0,0,0,0,1,0,0,14,1,15,0.933333333,13,0.769230769,92,19 +53,1009,GhostlyGrounds,Immediate,Control,Baseline,0,06:15pm,4,High Threat,0,0.8,"The Ghostly Grounds was very heavy on dead bodies and animatronics. There were a lot of cages and robotics shaking very violently. At one point some character runs out from a cage, seemingly right through the bars and that made me jump. The human element to it made it especially fun an dscary. I can still hear the screeches and ",1,77.08,30.62,7.47,20.23,0,0,0,0,8.47,0,8.47,1.69,3.39,1.69,1.69,0,0,0,3.39,1.69,1.69,3.39,1.69,1.69,0,1.69,0,0,1.69,0,0,0,0,0,0,1.69,0,0,0,0,0,0,0,0,0,0,0,0,0,6.78,10.17,0,3.39,3.39,0,1.69,1.69,0,6.78,-6.71,-17.38,-33.71,30.94,3,5,3,1,3,1,0,33.33,100,0,6.06,89.8,22.45,0,89.8,100,0,0,100,0,0,1,0,0,7,2,0,0,0,0,0,0,0,0,10,0,10,1,8,0.875,59,19 +54,1009,GhostlyGrounds,Delay,Control,Baseline,0,06:15pm,4,High Threat,1,0.6,"The Ghostly Grounds was the last part of the tour. The Ghostly Grounds was a journey through some sort of mass burial area. It started with us walking into a bus with skeletons that had head wounds. I remember really being intrigued by the design of the skeletons and the lay out of the bus. Some time after we left the bus we walked through an area of cells containing robots in several grotesque and painful positions shaking and jerking violently. Here someone ran right through the cell and that really shook me because I thought all the cells were hard metal cages. There was also a box in a cage hat rattled and jerked towards the end of this section. Somewhere there were bodies hanging down from the ceiling as well and there was only one person in that section. There was a sliding floor section as well and that was unsettling just because of how unsafe it felt in an environment where you are already on your toes, trying to anticipate the next scare. There was also the the hall with the interesting portraits where there was a hole in the wall that someone popped their face out of. Very scary stuff ",1,78.97,68.93,92.96,4.64,1.98,1.49,0.5,0,8.42,0.5,7.92,1.98,1.49,0.5,2.97,0.99,0.5,0.5,4.95,1.49,3.47,2.48,0,2.48,1.49,0.5,0,0,4.46,0,0,0,0,0,0,4.46,0,0,0,0,0,0,0,0,0,0,0,0.99,0.99,2.48,21.29,0.5,3.47,16.34,0,0,1.49,0,4.46,43.81,72.58,33.97,24.88,1,4,3,3,2,2,100,100,0,27.15,81.46,21.22,0,89.12,100,78.25,32.52,0,100,66.67,33.33,2,5,0,13,10,0,0,0,0,0,1,0,0,30,1,31,0.967741935,20,0.65,202,19 +55,1010,Infirmary,Delay,Goal-assigned,Baseline,1,08:30pm,2,Low Threat,0,0.2,"Again I dont remember which section Infirmary was. I am going to guess that it is the one where we walked down a hallway that had strobes and dark chambers. This section was not very scary, but it was funny since my friend was attacked by a monster. He then jumped and yelled. While this was not scary it was a highlight of the time spent in the place. I think that the walk down the hallway was funny not really scary. ",1,14.55,1.87,98.7,3.01,2.44,1.22,0,1.22,14.63,2.44,12.2,3.66,1.22,0,3.66,2.44,6.1,1.22,7.32,2.44,4.88,6.1,2.44,3.66,3.66,0,0,0,4.88,2.44,0,0,1.22,0,1.22,2.44,0,0,0,1.22,0,0,0,0,0,0,0,0,0,6.1,14.63,0,3.66,8.54,1.22,1.22,0,0,6.1,-20.64,-9.34,-24.96,-27.62,5,1,3,1,5,2,0,0,35.85,35.85,100,100,57.33,68,45.33,0,94.12,0,100,0,50,3,0,0,0,4,0,1,0,1,2,0,0,1,7,5,12,0.583333333,3,0,82,18 +56,1010,Asylum,Immediate,Goal-assigned,Baseline,1,08:30pm,1,Low Threat,0,0.5,it was a Devil's Den where they had arching electricity behind glass. There was a man with a chain saw that tried to scare us. Once we entered there was a man with a fake brick that scared me. I there was high pressure air that scared me. they had a large box that we walked through and it shook violently. There was also moving plate at the bottom of our feet making it challenging to walk. There was a man that was on a railing that was just staring off into the distance. ,1,39.08,91.15,71.66,1,6.38,4.26,2.13,0,2.13,0,2.13,0,1.06,0,0,0,0,0,5.32,0,5.32,4.26,0,4.26,3.19,1.06,0,0,10.64,1.06,0,0,0,1.06,0,9.57,0,0,0,3.19,0,0,0,0,0,0,0,0,1.06,1.06,18.09,0,5.32,11.7,1.06,0,0,0,2.12,37.5,70.51,11.05,30.94,5,3,4,3,2,1,69.23,46.15,0,46.15,100,25,0,100,25,34.72,0,0,0,100,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,18 +57,1010,Asylum,Delay,Goal-assigned,Baseline,1,08:30pm,1,Low Threat,1,0.5,I dont remember that Asylum was. I am going to guess that it was the one with the women that were dancing on large platforms. We were also given goggles that made us see 3D objects with different light refractions that we are not used to. This made me feel woozy and disoriented. I this was the least scary part of the haunted house since I just felt off the whole time and couldnt loose myself to the moment.,1,26.1,11.66,54.55,2.86,3.75,3.75,0,0,17.5,2.5,15,5,5,1.25,1.25,0,3.75,1.25,2.5,0,2.5,1.25,0,1.25,1.25,0,0,0,6.25,1.25,0,0,0,0,0,5,0,0,1.25,0,0,0,1.25,0,0,2.5,0,0,0,6.25,7.5,0,1.25,0,2.5,0,3.75,3.75,6.25,-33.65,-6.85,-52.61,-41.51,5,1,1,1,4,3,0,33.33,0,33.33,100,100,25,25,0,0,100,50,0,100,100,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,18 +58,1010,DevilsDen,Immediate,Goal-assigned,Test,1,08:30pm,3,High Threat,0,0.4,"The Devil's Den had a man in the beginning that was trying to scare us with a chain saw. Then once we walked in there was a man with a fake brick that jumped at me. once we entered the shop there was arching electricity and high pressure air that was used to scare us. There was also noises of arching and rattling within machines. Many machines were broken and looked like they were about to fall apart. They also had sub panel that was made to look like it was falling part with was scary,",1,49.68,87.7,75.23,1,5.21,4.17,1.04,0,5.21,0,5.21,0,2.08,1.04,0,0,2.08,0,6.25,0,6.25,3.13,0,3.13,3.13,0,0,0,9.38,1.04,0,0,0,1.04,0,8.33,0,0,0,2.08,0,0,0,0,0,0,0,0,0,4.17,17.71,1.04,5.21,10.42,3.13,1.04,0,0,4.17,32.62,80.2,24.34,-6.67,1,3,3,3,1,1,100,64.52,0,43.01,0,0,29.41,100,5.88,76.47,0,0,100,0,100,4,1,0,11,1,0,0,0,0,0,0,0,0,17,0,17,1,16,0.6875,96,18 +59,1010,DevilsDen,Delay,Goal-assigned,Test,1,08:30pm,3,High Threat,1,0.8,When we entered the Machine shop there was a man with a brick who scared me. There was arcing electricity that scared me since I in the past I almost died from this. There was also high pressure air that was shot at us to simulate gunshots. There was a large box that we walked through that shook violently. There were many more machines that looked like they were falling apart or were about to explode. This made the place have an eerie feel to the section. ,1,31.31,60.57,97.26,1,3.45,3.45,0,0,6.9,0,6.9,1.15,2.3,0,2.3,0,2.3,0,5.75,0,5.75,4.6,0,4.6,3.45,1.15,0,0,6.9,0,0,0,0,0,0,6.9,0,0,0,1.15,0,0,0,0,0,0,0,0,0,5.75,19.54,0,4.6,12.64,1.15,1.15,1.15,0,5.75,19.64,49.65,-0.31,9.58,5,2,2,4,5,1,55.56,55.56,40,0,100,79.01,100,44.44,66.67,0,0,100,0,0,52.94,3,1,0,7,1,0,0,0,0,0,1,0,0,12,1,13,0.923076923,11,0.636363636,87,18 +60,1010,GhostlyGrounds,Delay,Goal-assigned,Share,1,08:30pm,2,High Threat,0,1,I dont remember which section the Ghostly Grounds was. I will guess that it is the section that had the school bus. This was scary since we walked through a bus that had dead bodys that looked like they were going to stand up at any second. I thought we were walking through the show the walking dead. It made me feel like zombies are real. I had to remind myself that this is fake and I should not worry.,1,19.62,8.15,90.41,1,2.53,2.53,0,0,16.46,0,16.46,5.06,2.53,1.27,2.53,1.27,2.53,2.53,3.8,0,3.8,2.53,0,2.53,2.53,0,0,0,5.06,1.27,0,0,0,1.27,0,3.8,0,0,0,0,2.53,0,0,0,0,0,0,0,0,5.06,12.66,0,3.8,5.06,2.53,0,1.27,2.53,5.06,-16.32,2.54,-43.06,-8.43,2,5,1,5,3,5,31.82,100,65.91,65.91,0,70.59,35.29,0,0,100,100,50,50,50,0,0,1,0,5,3,0,0,0,0,0,0,0,1,9,1,10,0.9,6,0.833333333,79,18 +61,1011,Infirmary,Delay,Goal-assigned,Baseline,1,07:30pm,2,Low Threat,0,0.4,"The two ladies dancing, the ""swamp"" area with the fog and the green light and all the hands coming out over the surface, the narrow tunnels and the constant banging, the spinning tunnel, having a hard time seeing because of the glasses, very narrow passages and people hiding in the corners",1,99,51.75,83.69,20.23,0,0,0,0,3.92,1.96,1.96,0,1.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.92,3.92,0,1.96,0,0,0,1.96,0,0,1.96,0,0,0,0,0,0,0,0,1.96,0,7.84,31.37,0,5.88,15.69,7.84,1.96,1.96,0,9.8,40.82,58.37,33.16,30.94,2,2,4,5,1,1,81.82,100,100,50,0,0,100,8.33,100,100,0,0,0,100,0,0,1,0,5,0,0,1,0,3,0,0,1,0,6,5,11,0.545454545,6,0.833333333,51,19 +62,1011,Asylum,Immediate,Goal-assigned,Baseline,1,07:30pm,1,Low Threat,0,0.75,"The box that looked like flesh, the lady next to the fire, the man swinging the crowbar, the man swinging the chainsaw, the man with the wrench, the cut trees in the outdoor area, the man snarling ",1,99,96.25,55.76,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.51,2.7,0,2.7,0,0,0,13.51,0,0,2.7,10.81,0,0,0,0,0,0,0,0,0,2.7,21.62,0,5.41,13.51,2.7,0,0,0,2.7,NA,-35.12,-58.26,NA,2,1,1,1,2,1,0,100,71.43,71.43,71.43,100,0,0,0,0,50,50,50,50,50,3,1,0,4,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.5,37,19 +63,1011,Asylum,Delay,Goal-assigned,Baseline,1,07:30pm,1,Low Threat,1,0,"The man with the typewriter, the man speaking on the phone, the woman in the bedroom, the man at the dentist chair",1,99,99,1,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.27,9.09,0,0,0,0,9.09,18.18,0,0,4.55,13.64,0,0,0,0,0,0,0,0,0,0,4.55,0,0,4.55,0,0,0,0,0,NA,79.29,NA,NA,1,1,1,3,1,1,100,100,0,0,0,50,50,50,50,50,50,50,50,50,50,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,4,1,4,1,22,19 +64,1011,DevilsDen,Delay,Goal-assigned,Test,1,07:30pm,3,High Threat,0,0.6,"The man with the chainsaw, the downed trees, the long hallway at the end, the woman by the oven, the man overhead above the door",1,99,94.01,35.01,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,12,0,0,4,8,0,0,0,0,0,0,0,0,0,4,12,0,0,12,0,0,0,0,4,NA,47.82,NA,NA,1,1,1,2,1,1,100,0,100,100,0,50,50,50,50,50,50,50,50,50,50,0,1,0,4,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.8,25,19 +65,1011,GhostlyGrounds,Immediate,Goal-assigned,Share,1,07:30pm,4,High Threat,0,0.8,"The swinging flesh models, the man screaming behind he bars, the man chasing you in the strobe light section, the rattling box, the man at the control desk, the rising and falling animatronic, the twitching back and forth animatronic, the ominous blue tube",1,99,96.76,53.52,3.38,2.33,0,0,2.33,2.33,0,2.33,0,2.33,0,0,0,0,0,2.33,0,2.33,2.33,0,2.33,2.33,0,0,0,11.63,0,0,0,0,0,0,11.63,0,0,0,9.3,0,0,0,0,0,0,0,0,0,4.65,25.58,0,9.3,11.63,4.65,2.33,0,0,4.65,NA,48.51,-18.23,NA,3,5,1,5,3,1,65.22,65.22,100,39.13,0,44.44,44.44,0,50,100,50,50,50,50,50,1,1,0,7,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.777777778,43,19 +66,1011,GhostlyGrounds,Delay,Goal-assigned,Share,1,07:30pm,4,High Threat,1,0.8,"The shaking box, the bus, the wax figures and the one actor on the bus, the moving animatronics, the room with the strobe lights and the actor who I had a hard time seeing, the hanging meat props, the control panel, the weird blue tube, the moving floor",1,99,64.67,26.04,20.23,2.08,0,0,2.08,8.33,4.17,4.17,2.08,2.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.25,0,0,0,0,0,0,6.25,0,0,0,0,0,0,0,0,0,0,0,0,2.08,2.08,18.75,0,4.17,6.25,6.25,0,2.08,0,4.16,NA,71.68,6.9,NA,1,3,1,5,2,1,100,100,43.75,62.5,0,25,0,100,0,0,50,50,50,50,50,0,3,0,8,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.727272727,48,19 +67,1012,Infirmary,Delay,Goal-assigned,Baseline,1,07:30pm,3,Low Threat,0,0.2,I actually think I remember nothing from this section. Except for the 3d glasses and the one room with neon painted spiders. I feel like there was also a section with mirrors and a moving floor however I am unsure. ,1,54.7,1,99,20.23,0,0,0,0,25,7.5,17.5,7.5,0,0,2.5,2.5,5,2.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,17.5,0,2.5,12.5,0,0,2.5,0,5,-39.1,-14.76,-48.83,-53.71,2,1,1,1,2,2,0,100,0,33.33,0,100,0,0,50,75,100,0,0,0,0,1,2,0,0,0,0,0,0,1,0,0,0,2,3,3,6,0.5,3,0,40,21 +68,1012,Asylum,Immediate,Goal-assigned,Baseline,1,07:30pm,2,Low Threat,0,0.25,there were multiple rooms filled with haunted move sets the actors used loud noises and lunging to scare the participants. I remember in particular a detective but not much else. it was one of the scarier attractions of the night. There was also someone with a chainsaw and that felt very real. ,1,70.09,20.31,97.38,1,0,0,0,0,17.31,0,17.31,3.85,1.92,0,1.92,1.92,7.69,1.92,7.69,0,7.69,3.85,0,3.85,3.85,0,0,0,7.69,0,0,0,0,0,0,7.69,0,0,0,0,0,0,0,0,1.92,0,0,0,0,3.85,19.23,0,3.85,9.62,0,3.85,1.92,1.92,3.85,1.84,-13.44,13.69,5.26,4,3,3,1,1,1,0,0,8.33,100,8.33,0,0,100,5.71,100,0,45.45,100,0,100,1,1,0,2,1,0,0,0,1,1,0,0,1,5,3,8,0.625,4,0.5,52,21 +69,1012,Asylum,Delay,Goal-assigned,Baseline,1,07:30pm,2,Low Threat,1,0.5,"During this section, it is way harder to remember stuff without being prompted. In the next section when I am given the names of events that happen I realize that I remember those things. Anyways, I do not remember much from the Asylum section except for the detective and the lady in red. I feel like somebody was also making loud noises to startle people using the thing that is used to indicate the start of a scene. ",1,68.71,11.43,97.66,8.44,0,0,0,0,17.72,0,17.72,6.33,5.06,0,1.27,0,3.8,3.8,2.53,0,1.27,1.27,0,0,0,0,0,0,5.06,1.27,0,1.27,0,0,0,5.06,0,0,1.27,0,0,0,1.27,0,0,0,0,0,0,6.33,13.92,1.27,0,7.59,1.27,2.53,1.27,1.27,6.33,54.28,55.73,30.92,76.18,5,2,2,2,5,5,90,0,90,30,100,47.37,100,73.68,47.37,0,50,100,100,100,0,1,0,0,2,0,0,0,0,0,0,1,0,3,3,4,7,0.428571429,3,0.666666667,79,21 +70,1012,DevilsDen,Immediate,Goal-assigned,Test,1,07:30pm,4,High Threat,0,0.6,I remember there being a lot of tools being carried by the actors. I remember one of them was wearing a uniform with the name Cameron on it. I remember being a lot of machines with dismembered limbs. I also remember there was someone waiting up top that attacked from above and made a loud noise. bleep bloop. ,1,84,40.06,92,1.05,1.72,0,0,1.72,10.34,0,10.34,6.9,1.72,0,1.72,0,0,6.9,3.45,0,3.45,0,0,0,0,0,0,0,8.62,1.72,0,0,1.72,0,0,6.9,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72,13.79,0,1.72,8.62,0,3.45,0,0,1.72,34.08,62.07,0.16,40.01,1,4,4,4,5,5,100,100,100,0,75,55.56,25,25,100,0,45.83,45.83,45.83,100,0,1,0,0,8,0,0,0,0,0,0,0,0,1,9,1,10,0.9,9,0.888888889,58,21 +71,1012,DevilsDen,Delay,Goal-assigned,Test,1,07:30pm,4,High Threat,1,0.6,"I remember being scared to go around corners, and I remember very vividly the section where the guy was standing up top and dropped the gate down. I also remember the part outside where there was a guy with a chainsaw. I also remember waiting in line and there was a big guy with a beard and a hammer who was yelling at every one. I also remember that there was a section with machines with body parts in them. I also remember someone lunging towards me with a crowbar. I was very concentrated in making sure I wouldnt get scared so I do not remember everything that happened. ",1,33.93,6.76,99,5.27,0,0,0,0,14.68,1.83,12.84,7.34,0,0.92,0.92,0,2.75,6.42,1.83,0,1.83,1.83,0,1.83,1.83,0,0,0,6.42,0.92,0,0,0,0,0.92,5.5,0,0,0,2.75,0,0,0.92,0,0,0,0,0,0,2.75,23.85,1.83,2.75,18.35,0.92,0.92,0,0.92,2.75,16.08,30.6,13.82,3.81,2,5,2,5,1,3,59.22,100,79.61,79.61,0,0,22.11,0,44.21,100,50,100,0,100,78.57,3,3,0,3,2,0,0,0,0,0,0,0,2,11,2,13,0.846153846,9,0.333333333,109,21 +72,1012,GhostlyGrounds,Delay,Goal-assigned,Share,1,07:30pm,5,High Threat,0,0.8,I remember walking in on the bus. I also remember walking through the section with strobe lights and bodies hanging from the ceiling. I also remember there was a section that was sort of cage like and there was someone inside but they could also get out and I didnt think that they could so when they jumped outside of the cage I was scared. I remember there was an employee following my group as we walked out and I kept turning around to make sure that they didnt run up on me from behind. ,1,25.46,14.81,99,9.95,1.05,1.05,0,0,14.74,0,14.74,5.26,0,2.11,3.16,0,3.16,4.21,1.05,0,1.05,1.05,0,1.05,1.05,0,0,0,8.42,0,0,0,0,0,0,8.42,0,0,0,0,0,0,1.05,0,0,0,0,0,0,4.21,24.21,2.11,6.32,14.74,1.05,0,0,1.05,4.21,38.43,75.11,46.72,-6.53,5,3,1,3,1,4,80,40,0,60,100,0,36.36,100,27.27,18.18,100,50,100,0,0,5,3,0,2,2,0,0,0,0,0,0,0,0,12,0,12,1,10,0.2,95,21 +73,1013,Infirmary,Immediate,Goal-assigned,Baseline,1,07:30pm,2,Low Threat,0,0.6,We had to wear these distortion goggles. Things were in neon colors. We has to walk though a blacked out tunnel than spun with neon paint. There was a scare actor wearing a neon afro. There was a big neon green pipe. The glasses we had to wear were white with black lettering on the side that said Halloween Nights. There was only two scare actors in that section. ,1,72.44,85.5,55.19,1.92,4.35,4.35,0,0,2.9,0,2.9,0,0,0,0,0,2.9,0,2.9,0,2.9,2.9,0,2.9,2.9,0,0,0,8.7,1.45,0,0,0,0,1.45,7.25,0,0,0,0,8.7,0,0,0,0,0,0,0,0,2.9,20.29,0,2.9,11.59,5.8,0,0,8.7,2.9,-10.44,-7.36,-54.9,30.94,2,1,2,5,3,1,23.53,100,49.02,100,0,100,20,0,20,67.69,0,100,0,0,0,1,1,0,10,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.833333333,69,19 +74,1013,Infirmary,Delay,Goal-assigned,Baseline,1,07:30pm,2,Low Threat,1,0.4,"This was the first section we went through. We were given white glasses that distorted our vision. The white glasses said Halloween Nights in black on the side. When we entered, we were met with an array of neon lights. I remember upon entrance to the first walkway, to the right, there was a window/mirror where I saw a scare actor in a colored afro scaring one of the other visitors and it was met with her scream. As we progressed, the walls were covered in neon colors and psychedelic patterns. It is also important to note that at the beginning of this section, there were two girls in red, white, and black outfits dancing on an elevated platform. Anyways, after the first walkway, we entered a tunnel that was blacked out and spinning with neon dots scattered throughout it. After this, there was one more walkway until it was over and I remember it being narrow. It was similar to the first walkway where the walls were bright and psychedelic. Right before we left, on the left near the entrance of the spinning tunnel that was next to where we exit, there was a large neon green pipe coming from the ground. I remember this being kinda disorienting but not very scary. Once we left, we walked past those dancing girls again and handed our glasses back to the guy working. More specifically, we put them in a black bucket. The person monitoring the collection of the glasses was in a dark suit with a hat and white makeup that made his face look emaciated. ",1,76.3,87.67,87.08,25.04,5.24,4.87,0.37,0,3.37,0,3.37,1.12,0.37,0,0.37,0,1.5,1.12,2.62,1.5,1.12,1.12,0,1.12,1.12,0,0,0,9.74,1.87,0,0,0,0,0.37,7.87,0,0,1.12,0.75,0,0,0.37,0,0,0.37,0,0,0,1.87,23.22,0.37,3.75,13.11,6.37,0.37,0,0.74,1.87,55.51,68.4,67.06,31.08,1,3,4,3,1,1,100,27.89,0,73.47,0,0,69.13,100,53.04,6.09,0,0,0.61,100,0.61,10,2,0,23,1,0,0,0,0,0,1,0,1,36,2,38,0.947368421,35,0.657142857,267,19 +75,1013,Asylum,Delay,Goal-assigned,Baseline,1,07:30pm,1,Low Threat,0,0.75,"The Asylum section of the tour was when we had to walk through a series of scenes. One of the first scenes was a woman in a red dress by a bed. I remember flashing lights and dark rooms. I want to say that there were hanging bodies that were dangling by chains. I remember in one of the later rooms, there was a big generatorlooking machine. It was not really scary, just more dark and walking through various scenes. I also think there was a man in a white lab coat. I remember it feeling short in duration, like no more than 3 minutes and it was not that scary. ",1,71.85,9.23,92.08,5.5,0.89,0.89,0,0,11.61,0.89,9.82,4.46,0,0.89,1.79,1.79,3.57,2.68,1.79,0,1.79,1.79,0,1.79,1.79,0,0,0,3.57,0.89,0,0,0,0,0.89,2.68,0,0,0.89,0.89,1.79,0.89,0.89,0,0,0,0,0,0,3.57,17.86,0,1.79,9.82,5.36,0,0.89,3.57,3.57,51.23,93.13,56.37,4.2,1,4,5,5,1,1,100,56.58,45.39,30.26,0,0,30.99,35.21,100,67.61,0,31.88,33.33,66.67,100,2,0,0,7,1,0,0,0,3,0,0,1,0,10,4,14,0.714285714,9,0.777777778,112,19 +76,1013,DevilsDen,Delay,Goal-assigned,Test,1,07:30pm,4,High Threat,0,0.4,"I remember Devil's Den being the scariest. I do not really remember the first half of the tour, but I want to say that we walked around this corner where I saw a painting that looked like someone screaming, but painted in what was supposed to be made to look like blood. I want to say we also had to walk up and down stairs toward the end. I also want to say that right before this, we had to walk through a forrest of cells with one of the first cells on the right being a fake prisoner coming out of a chamber thing. The next one on the left was a skeleton looking man in a suit on the ground with his torso all ripped apart. The last cell was a scare actor. It was on the left side. He was dressed in all black with a purple cape and he would walk around the cell making noises and screams. As we were walking around, he would reach out his hand where he had a glove on with sharp claws/nails. I remember that the woman before us was stopped because he reached his hand right in front of her face. ",1,84,71.39,40.17,2.95,2.96,2.46,0,0.49,10.34,0.99,9.36,1.48,1.48,3.45,1.48,0.99,1.97,1.48,2.46,0,2.46,0.99,0,0.99,0.99,0,0,0,10.84,1.97,0,0,0,0.49,1.48,8.87,0,0,0.99,4.43,1.97,1.48,0,0,0,0,0,0,0,3.94,17.73,0.49,3.94,10.84,2.96,1.48,0,3.45,3.94,-35.82,-26.46,-28.96,-52.03,3,5,1,1,3,3,0,46.15,100,25,17.12,97.01,82.09,0,69.4,100,100,75,0,0,51.25,7,4,0,13,1,0,0,0,0,0,0,0,1,25,1,26,0.961538462,24,0.541666667,203,19 +77,1013,GhostlyGrounds,Immediate,Goal-assigned,Share,1,07:30pm,5,High Threat,0,0.8,There was a guy with a chain saw. We walked past dangling bodies. There was a guy in a cell with long nail like things on his hands. We had to walk through this forest type of thing that had two bodies handing upon exit and a person below on the right hand side in a cape. We had to turn a corner with this strange painting depicting an abborition screaming. ,1,97.09,96.91,41.26,20.23,4.23,4.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.86,0,0,0,0,0,0,9.86,0,0,0,4.23,5.63,0,0,0,0,0,0,0,1.41,5.63,19.72,0,4.23,12.68,1.41,1.41,0,5.63,7.04,NA,-17.69,-21.65,NA,4,3,1,1,4,1,0,52.38,4.76,100,28.57,91.67,50,100,0,50,50,50,50,50,50,1,1,0,7,1,0,0,0,0,0,0,0,0,10,0,10,1,9,0.777777778,71,19 +78,1013,GhostlyGrounds,Delay,Goal-assigned,Share,1,07:30pm,5,High Threat,1,0.8,"I remember Ghostly Grounds being scary. I want to say that is the one where we had to enter through a bus. There was a worker monitoring our enterance and she was wearing a black cape with red underneath. The bus was short but it felt long. There was a fast flashing light that would completely blackout the bus every other second. There was mannequins dressed in scary costumes scattered on the bus seats meant to disguise scare actors that would jump out at you when you passed them. After leaving the bus, we entered the building where the next thing I remember is a blacked out hallway with people coming out and scaring us. They would blend in with dark corners. I also remember that there was a moving floorway at one point that we were unprepared for. In order to leave this part of the tour, we had to walk down one of the cellblocks where it was foggy and there were scare actors following us and making weird noises and jumping out at us. ",1,62.1,91.52,85.15,1.11,5.68,4.55,0,1.14,9.66,1.7,7.95,2.84,0.57,2.27,0,0.57,1.7,1.7,3.41,0,3.41,2.84,0,2.84,2.84,0,0,0,9.66,0.57,0,0,0,0,0.57,9.09,0,0,0.57,0,2.27,0.57,0,0,0,0,0,0,0.57,4.55,21.02,0,6.25,11.36,2.84,0.57,0.57,2.84,5.12,13.73,15.66,-51.5,77.03,3,1,2,2,2,5,38.89,0,100,100,50,100,0,0,38.3,76.6,48.61,100,100,100,0,4,2,1,11,2,3,0,0,2,0,1,0,0,20,6,26,0.769230769,18,0.611111111,176,19 +79,1014,Infirmary,Immediate,Goal-assigned,Baseline,1,07:30pm,3,Low Threat,0,0.4,"I remember bright colors, wearing 3D glasses, jump scares, walking through shaking tunnels, neon lights, dancers, music, upbeat, not so scary, narrow hallways, painted neon faces +",1,64.84,7.93,81.58,20.23,0,0,0,0,7.69,0,7.69,3.85,0,0,0,0,3.85,3.85,15.38,7.69,7.69,11.54,3.85,7.69,7.69,0,0,0,3.85,0,0,0,0,0,0,3.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.92,0,7.69,3.85,11.54,3.85,0,0,0,-22.59,-11.67,-2.39,-53.71,2,4,1,1,2,2,0,100,0,0,0,41.67,0,0,100,0,100,0,0,0,0,2,2,0,6,1,0,0,0,0,0,0,0,0,11,0,11,1,10,0.6,26,19 +80,1014,Infirmary,Delay,Goal-assigned,Baseline,1,07:30pm,3,Low Threat,1,0,"I remember bright neon lights, strobe lights, polka dots, a shaky tunnel, people dancing on the tables, an artist hiding in the corner and then pushing art canvas directly towards us, 3D glasses, narrow sides and walkways, jump scares after the first shaking tunnel, a spinning tunnel and almost lost balance ",1,93.97,63.27,83.69,4.72,1.96,1.96,0,0,3.92,0,3.92,1.96,0,0,1.96,0,0,1.96,5.88,1.96,3.92,1.96,0,1.96,1.96,0,0,0,5.88,1.96,0,0,0,0,0,3.92,0,0,0,0,0,0,0,0,0,0,0,1.96,0,1.96,23.53,0,9.8,5.88,7.84,0,0,0,3.92,-23.06,-22.68,7.22,-53.71,2,3,1,1,2,2,0,100,35.29,35.29,2.94,30.3,0,100,33.33,66.67,100,0,0,0,0,4,2,0,8,0,0,0,0,0,0,0,0,0,14,0,14,1,14,0.571428571,51,19 +81,1014,Asylum,Delay,Goal-assigned,Baseline,1,07:30pm,1,Low Threat,0,0.25,"I remember polka dots and it was brighter than the first tour we went on. It Was not too scary and I cant remember too much from it other than we were crowded while walking and it was noisy, no one really scared me",1,1,1,98.07,1,4.55,4.55,0,0,22.73,4.55,18.18,4.55,0,2.27,0,2.27,11.36,4.55,11.36,0,11.36,4.55,0,4.55,4.55,0,0,0,4.55,0,0,0,0,0,0,4.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.36,0,4.55,2.27,2.27,2.27,0,0,0,21.06,31.32,52.22,-20.36,2,4,1,5,1,2,50,100,50,50,0,0,0,50,100,81.25,100,0,50,50,0,1,0,0,4,1,0,0,0,0,0,0,0,1,6,1,7,0.857142857,5,0.8,44,19 +82,1014,DevilsDen,Immediate,Goal-assigned,Test,1,07:30pm,4,High Threat,0,0.2,"I remember loud noises, jump scares, large machines, tooth electric chair, teeth filled out head, crates shattering, long tunnel, flashing lights, many people talking to themselves and screaming at us, and narrow hallways",1,78.71,74.59,71.27,1,3.03,3.03,0,0,3.03,0,3.03,3.03,0,0,0,0,0,3.03,6.06,0,6.06,3.03,0,3.03,3.03,0,0,0,9.09,3.03,0,0,0,0,3.03,6.06,0,0,0,0,0,0,0,0,3.03,0,0,0,0,9.09,30.3,0,3.03,12.12,6.06,9.09,0,3.03,9.09,-27.41,-16.34,-12.18,-53.71,4,4,1,1,2,2,0,85.71,0,100,100,42.86,0,0,100,100,100,0,0,0,0,2,1,0,8,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.727272727,33,19 +83,1014,DevilsDen,Delay,Goal-assigned,Test,1,07:30pm,4,High Threat,1,0.4,"I remember the long tunnel at the end of that specific ""house"" and people jumping out to scare us, and the loud noises, the major slam of the crate near the beginning, also the chainsaw being flashed in our faces when we walked in. I remember people jumping out as I walked through the halls. I cant remember if I saw the tooth coated head in this Devil's Den or that Was another house ",1,80.1,14.33,99,1,4.05,4.05,0,0,9.46,0,9.46,4.05,0,1.35,2.7,0,5.41,4.05,4.05,0,4.05,1.35,0,1.35,1.35,0,0,0,4.05,0,0,0,0,0,0,4.05,0,0,0,0,0,0,0,0,0,0,0,0,0,6.76,21.62,0,6.76,9.46,2.7,2.7,0,0,6.76,12.3,19.54,22.87,-5.52,2,3,1,5,2,2,38.24,100,38.24,38.24,0,25,0,100,75,83.93,100,0,50,100,0,6,1,0,2,0,0,0,0,0,0,0,0,2,9,2,11,0.818181818,9,0.222222222,74,19 +84,1014,GhostlyGrounds,Delay,Goal-assigned,Share,1,07:30pm,5,High Threat,0,0.6,"Walking into the bus, being scared by the man on the seat, dark bus, the series of stair ways to get to the next room, people scaring me from gated and non gated ""cells"", a dead body prosthetic laying on the ground. I also remember little windows with fire and limbs hanging. We walked on a shaky floor and felt I was going to fall. ",1,98.49,40.06,97.78,1.63,1.54,1.54,0,0,3.08,0,3.08,3.08,0,0,0,0,0,1.54,3.08,0,3.08,3.08,0,3.08,3.08,0,0,0,3.08,0,0,0,0,0,0,3.08,0,0,0,1.54,0,0,1.54,0,0,0,0,0,0,3.08,20,0,7.69,12.31,1.54,0,1.54,1.54,3.08,37.73,87.28,11.51,14.4,1,5,4,3,2,1,100,75,0,25,25,25,0,50,75,100,0,0,0,100,50,2,2,0,8,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.666666667,65,19 +85,1015,Infirmary,Delay,Control,Baseline,0,07:30pm,2,Low Threat,0,0.25,Infirmary started where they gave you 3d glasses that you had to wear and everything was neon and bright there was 3d spiders everywhere on the wall you walked down this one hall and a clown with a hammer came was trying to scare you and there were other people trying to scare you I remember that you had to walk through this narrow hallway and someone was on the outside of the railing trying to scare you and at the end you had to give your glasses back. There was also a guy with three heads trying to scare you also. ,1,43.77,99,21.25,1.85,3.92,0,3.92,0,8.82,1.96,6.86,0.98,0,3.92,0.98,0,0.98,0.98,4.9,0.98,3.92,3.92,0,3.92,3.92,0,0,0,14.71,1.96,0,0,0,0,0,12.75,0,0,0,0.98,5.88,0,0,0,0,0,0,0,0,3.92,13.73,0,2.94,9.8,0.98,0,0,5.88,3.92,-30.17,-30.3,-32.92,-27.3,4,1,5,1,2,1,0,67.57,43.24,100,43.24,100,0,78.57,18.57,63.57,0,0,50,0,100,9,1,0,6,0,0,0,0,0,0,0,0,0,16,0,16,1,16,0.375,102,18 +86,1015,Asylum,Immediate,Control,Baseline,0,07:30pm,1,Low Threat,0,0.5,"Asylum wasnt scary as I thought it was going to be they didnt have many actors being scary the one I remember is the girl in the red dress, there was a lot of sounds happening, to me it wasnt dark as I thought it was going to be as well. I know it was a lot of walking and wasnt much of scaring. ",1,19.94,1,88.07,1.63,0,0,0,0,15.38,3.08,12.31,6.15,0,0,0,0,6.15,1.54,6.15,1.54,4.62,4.62,0,4.62,4.62,0,0,0,4.62,0,0,0,0,0,0,4.62,0,0,1.54,0,0,0,1.54,0,0,0,0,0,0,4.62,9.23,0,1.54,3.08,3.08,1.54,0,1.54,4.62,-18.77,-16.93,-14.13,-25.26,3,4,1,1,3,3,0,0,100,33.33,33.33,75,50,0,100,50,100,100,0,100,100,2,0,0,2,1,0,0,0,0,1,0,1,0,5,2,7,0.714285714,4,0.5,65,18 +87,1015,Asylum,Delay,Control,Baseline,0,07:30pm,1,Low Threat,1,1,"Asylum started with a person in the reception table and then you walk into a place with a lady in a red dress who talks to you, there was also a long hallway you have to walk down. There was a lot of air guns that went off. I remember something jumped out of a fridge. ",1,96.28,96.86,98.26,20.23,0,0,0,0,3.51,0,3.51,1.75,0,0,1.75,0,0,1.75,0,0,0,0,0,0,0,0,0,0,12.28,3.51,0,1.75,0,0,1.75,10.53,0,0,1.75,0,3.51,0,1.75,0,0,0,0,0,0,7.02,24.56,0,7.02,15.79,1.75,0,0,5.26,7.02,14.04,28.23,20.56,-6.67,2,3,3,3,2,1,47.62,100,0,57.14,57.14,18.03,0,100,40.98,40.98,0,0,100,0,100,2,2,0,2,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.333333333,57,18 +88,1015,DevilsDen,Immediate,Control,Baseline,0,07:30pm,3,High Threat,0,0.75,"Machine shop was scary to me as soon as you walk in you see two men that scare you. I also remember the long hall you have to walk down which was really dark and had so much fog and their were two people there who scare you. There was a lot of scaring to happen and the props were scary too it was dark in their, many actors scaring people and there was a lot of sounds that went off as well. ",1,15.19,97.26,49.65,1,0,0,0,0,3.61,0,3.61,1.2,0,0,0,1.2,1.2,1.2,8.43,1.2,7.23,7.23,0,7.23,7.23,0,0,0,12.05,0,0,0,0,0,0,12.05,0,0,0,1.2,2.41,0,0,0,0,0,0,0,0,4.82,16.87,0,3.61,8.43,3.61,1.2,0,2.41,4.82,44.46,63.64,38.79,30.94,4,3,2,3,5,1,92.31,61.54,0,100,100,12.09,47.25,100,18.68,0,0,100,0,0,0,4,1,0,4,2,0,0,0,0,0,0,0,0,11,0,11,1,9,0.444444444,83,18 +89,1015,DevilsDen,Delay,Control,Baseline,0,07:30pm,3,High Threat,1,1,I remember from Devil's Den that at the entrance there was two guys who jump out at you and then at the end of the haunted house you had to walk down a long hallway that had fog and strobe lights and someone was in the hall scaring you. I remember a lot of sounds were going on. And there was one actor with a chainsaw and other actors came up to you making noise in you ear to try to scare you. ,1,85.84,98.86,80.67,1,1.2,0,1.2,0,7.23,0,7.23,2.41,1.2,1.2,1.2,0,1.2,2.41,4.82,0,4.82,2.41,0,2.41,2.41,0,0,0,13.25,0,0,0,0,0,0,13.25,0,0,0,1.2,2.41,0,0,0,0,0,0,0,0,2.41,20.48,0,4.82,10.84,1.2,3.61,0,2.41,2.41,15.83,37.9,25.69,-16.1,2,3,1,3,5,2,60,100,0,66.25,66.25,20,20,100,28.33,0,100,0,100,0,0,4,2,0,4,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.4,83,18 +90,1015,GhostlyGrounds,Delay,Control,Baseline,0,07:30pm,3,High Threat,0,0.6,"I remember from Ghostly Grounds that when you first go you have to walk on a bus to get inside and there were dead fake people and one real person who scares you. When you walk in the haunted house their was box that had a fake dead person in it and it kept banging its head on the box, there were actors who were jumping out from cages scaring people, one part of the haunted house is walking in this dark room with dead people, smoke and a guy scaring you. There were a lot of noises happening and a person was hiding in the wall scaring you. ",1,63.42,98.75,65.87,1,0,0,0,0,2.78,0,2.78,0.93,0,0,0,0.93,0.93,0.93,8.33,0,8.33,3.7,0,3.7,3.7,0,0,0,14.81,1.85,0,0,0,1.85,0,12.96,0,0,0,0.93,1.85,0,0.93,0,0,0,0,0.93,0,6.48,18.52,0,4.63,11.11,1.85,1.85,0,2.78,7.41,-3.08,66.67,-22.21,-53.71,5,1,1,2,4,2,93.33,0,70,75.56,100,100,100,82.93,0,53.66,100,0,0,0,0,6,2,0,6,0,0,0,0,0,0,0,0,0,14,0,14,1,14,0.428571429,108,18 +91,1016,Infirmary,Immediate,Control,Baseline,0,08:30pm,2,Low Threat,0,0.2,"it wasnt too scary, I just remember walking through exhibits where the people were staying away from me and doing more skits. It was a little had to decipher from the second part of the tour since the two exhibits were back to back. The black light 3d glasses were cool but very disorienting. ",1,71.02,2.75,92.16,20.23,0,0,0,0,11.11,0,11.11,3.7,1.85,0,0,0,5.56,1.85,3.7,1.85,1.85,1.85,0,1.85,1.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,0,0,0,0,1.85,0,0,0,7.41,16.67,0,1.85,9.26,3.7,0,1.85,5.55,7.41,-54.54,-32.13,-58.45,-73.04,4,1,5,1,3,2,0,50,75,100,2.5,100,33.33,0,0,10,45.45,0,0,45.45,100,3,0,0,1,2,0,0,0,0,0,1,0,1,6,2,8,0.75,4,0.25,54,22 +92,1016,Infirmary,Delay,Control,Baseline,0,08:30pm,2,Low Threat,1,0.2,"I remember seeing actors performing more skits instead of following or trying to scare the people on the tour. They seemed more focused on the act than the people walking by. It was not as scary as I was expecting at first, but got creepier as we kept walking. I was walking second in our group, and remained in that spot until further into the penitentiary. The ceilings were higher than I expected and created more of an echo of all the noises.",1,89.52,16.42,90.36,1,4.82,2.41,2.41,0,12.05,1.2,10.84,2.41,0,1.2,2.41,0,7.23,1.2,4.82,0,4.82,3.61,0,3.61,3.61,0,0,0,7.23,1.2,0,0,0,1.2,0,6.02,0,0,0,0,0,0,1.2,0,0,0,0,0,1.2,2.41,15.66,1.2,3.61,7.23,1.2,2.41,0,1.2,3.61,-4.24,-17.09,31.07,-26.69,4,3,5,1,1,4,0,84.21,0,100,55.26,0,33.33,100,6.25,41.67,94.12,94.12,94.12,0,100,3,0,0,4,3,0,0,0,0,0,0,0,0,10,0,10,1,7,0.571428571,83,22 +93,1016,Asylum,Delay,Control,Baseline,0,08:30pm,1,Low Threat,0,0.75,"Asylum was slightly scarier than the first exhibit, but there werent very many jump scares and it was easy to just walk through. I dont remember much from this section, but I do remember that it was about as scary as the first one, not too bad but definitely creepy. The other groups being closer to us in this section also made it less scary, with more people being within my field of vision. It wasnt as bright in this section, with dimmer lights making it hard to see.",1,24.75,1.24,91.13,1,1.11,1.11,0,0,14.44,0,14.44,2.22,2.22,0,0,1.11,8.89,2.22,7.78,1.11,6.67,6.67,0,6.67,5.56,0,0,0,2.22,0,0,0,0,0,0,2.22,0,0,0,0,0,0,1.11,1.11,0,0,0,0,0,4.44,16.67,0,2.22,8.89,4.44,0,1.11,2.22,4.44,8.33,-31.79,17.67,39.12,3,2,2,1,5,5,0,33.33,100,66.67,100,60,100,60,60,0,66.67,100,66.67,33.33,0,2,0,0,4,3,0,0,0,0,2,0,0,1,9,3,12,0.75,6,0.666666667,90,22 +94,1016,DevilsDen,Immediate,Control,Baseline,0,08:30pm,4,High Threat,0,0.4,"the Devil's Den was very dark upon entering, and by the second person I was singled out from the group and not allowed to pass and let other participants go past because the person wouldnt let me by. if it werent for that person, I dont believe I would have found this section as scary as I did. it was hard to see and the strobe lights definitely added to my fear as we continued to walk through the section. ",1,43.4,5.84,92.99,2.86,2.5,1.25,0,1.25,13.75,0,13.75,2.5,2.5,2.5,1.25,1.25,5,0,2.5,0,2.5,2.5,0,2.5,2.5,0,0,0,8.75,1.25,0,0,0,0,0,7.5,0,0,0,0,0,0,0,0,0,0,0,0,0,6.25,15,0,5,6.25,3.75,0,1.25,0,6.25,52,38.3,41.74,75.96,5,3,2,3,5,1,33.33,33.33,0,0,100,28.57,42.86,100,71.43,0,0,100,100,100,100,5,0,0,2,1,0,0,0,0,1,0,0,0,8,1,9,0.888888889,7,0.285714286,80,22 +95,1016,DevilsDen,Delay,Control,Baseline,0,08:30pm,4,High Threat,1,0.4,"The Devil's Den part of the tour was definitely more scary, as the person at the front was only letting people in a few at a time. The workers were yelling more and walking more like zombies, making it clear that they wanted to scare you and not seem human while doing so. it was very dark upon entering, and being singled out from the group was burned into my memory. It was interesting being at the back of the group, as I felt that anyone could come up and scare me and I wouldnt have any protection against them. the metal grate at the end of the section was dropped right as i walked through, and i mustve had scared eyes because the workers seemed to pick up on the fact that i was very jumpy and scared. even without seeing my full facial expressions, these people knew i was scared and did their jobs very well.",1,52.24,29.54,65.08,2.78,1.27,0,0,1.27,11.39,0,11.39,2.53,1.27,2.53,2.53,1.27,2.53,0.63,5.06,1.27,3.8,3.8,0,3.8,3.8,0,0,0,7.59,0.63,0,0,0,0,0.63,6.96,0,0,0,0,0,0.63,0,0,0.63,0,0,0.63,0.63,5.7,13.29,0,3.8,6.96,1.9,0.63,0.63,1.26,6.96,47.94,62.72,49.7,31.39,1,3,4,2,1,1,100,0,50,79.03,1.61,0,90.91,100,39,95.31,0,0,93.94,100,100,5,0,0,6,6,0,0,0,0,1,0,0,0,17,1,18,0.944444444,11,0.545454545,158,22 +96,1016,GhostlyGrounds,Delay,Control,Baseline,0,08:30pm,5,High Threat,0,0.4,"The Ghostly Grounds section was scary, having to enter through a school bus with a very narrow walk way down the middle. these actors got very up in your face, although they didnt touch any of us it seemed like they were about to every time they got close. i remember having a lot more eye contact during this section, with the workers who seemed to be looking into my soul. there was one point during this section that i found myself not moving forward, but i quickly started walking again once i realized how long it had been since i moved. ",1,43.21,29.11,99,10.43,1.98,0.99,0,0.99,12.87,0.99,11.88,5.94,1.98,0,2.97,0,3.96,0.99,0.99,0,0.99,0.99,0,0.99,0.99,0,0,0,10.89,1.98,0,0,0,0,1.98,8.91,0,0,0,0,1.98,0,1.98,0,0,0,0,0,0,3.96,22.77,0,4.95,13.86,2.97,0,0.99,3.96,3.96,43.1,75.3,34.03,19.97,1,2,5,5,1,1,100,30.22,75.54,30.22,0,0,100,14.04,75.44,87.72,0,66.67,33.33,66.67,100,7,1,0,1,2,0,0,0,0,0,0,0,0,11,0,11,1,9,0.111111111,101,22 +97,1017,Infirmary,Immediate,Goal-assigned,Baseline,2,06:15pm,3,Low Threat,0,0,The laser light right away with the hands popping out was so rad! I actually got really scared! I also couldnt see too well and that added some serious anxiety. Being at the end of the line was always a bit tough because they would sneak up behind me out of nowhere. I also thought that the loud banging was a bit scary as well. The uncertinty had me feeling a bit tense in the upper trap region of my back as well. Lots of rad things going on ,1,59.21,7.56,78.52,3.64,0,0,0,0,10.11,2.25,7.87,2.25,1.12,2.25,0,2.25,0,0,8.99,3.37,5.62,3.37,0,3.37,3.37,0,0,0,2.25,1.12,0,0,0,0,0,1.12,0,0,0,0,0,0,1.12,0,0,0,0,0,0,6.74,20.22,0,1.12,12.36,2.25,2.25,2.25,1.12,6.74,50.33,48.83,43.86,58.31,5,2,3,2,5,5,42.5,0,42.5,42.5,100,16.05,100,100,16.05,0,50,50,100,100,0,1,0,0,6,5,0,0,0,0,0,0,0,1,12,1,13,0.923076923,7,0.857142857,89,23 +98,1017,Infirmary,Delay,Goal-assigned,Baseline,2,06:15pm,3,Low Threat,1,0,The very first thing I remember with Infirmary was the room where we first walked in. The green light that was waist high and the smoke with hands coming out from underneath it was very scary and did not expect any of that. After that I remember walking through a circular shape the room as it looked like it was spinning clockwise. From there I remember walking through a clown room that was very scary. The smoke was also very disorienting as I was getting a little confused on where to go. This also was really tough to see exactly the corners and where characters would be popping up. ,1,52.92,21.05,93.81,2.23,0.92,0.92,0,0,8.26,0,8.26,2.75,0,0.92,1.83,1.83,0.92,2.75,2.75,0,2.75,2.75,0,2.75,1.83,0,0,0,0.92,0,0,0,0,0,0,0.92,0,0,0,0,0,0,0.92,0,0,0.92,0,0,0,5.5,20.18,0,5.5,12.84,3.67,0,0,1.84,5.5,12.53,-11.21,-4.56,53.36,2,5,4,1,3,1,0,100,0,0,11.9,41.18,82.35,0,41.18,100,0,0,50,100,2.38,0,2,0,4,2,0,1,0,2,2,0,0,0,8,5,13,0.615384615,6,0.666666667,109,23 +99,1017,Asylum,Delay,Goal-assigned,Baseline,2,06:15pm,2,Low Threat,0,0.5,Asylum was one of my favorites because it really brought me back to the 1950 setting. The main thing I remember is the man reenacting a news real and him scaring the living crap out of us as we walked by. He did a really good job staying in character and looking directly into the camera as if he was actually being filmed. Another highlight that really stood out was the woman in the room after the cameraman. She seem to be having some sort of panic attack about what she wants to wear to her event. Immediately after I remember seeing the woman put make up on her face and being very concerned on the way that she looked. This was very scary because she kept looking at me through the mirror as she was putting make up on. The entire vibe and this Asylum was my favorite of the entire experience strictly because it matched the vibe of the eastern state penitentiary so well. ,1,67.11,67.92,15.38,13.81,1.19,1.19,0,0,11.31,0,11.31,1.79,2.98,0.6,2.38,2.98,1.19,1.19,5.36,1.79,2.38,3.57,0.6,2.38,2.38,0,0,0.6,10.71,1.79,0,0,0,0.6,0.6,8.93,0,0,5.36,2.38,0,0.6,1.19,0,0,0,0,0,0,5.36,13.1,0,2.38,8.33,2.38,0,0,1.79,5.36,-14.45,-31.66,4.71,-16.4,3,2,1,1,3,2,0,40,100,45.45,24.85,50,100,0,59.09,7.58,100,0,100,3.03,3.03,3,0,0,6,1,0,0,0,0,2,2,0,0,10,4,14,0.714285714,9,0.666666667,168,23 +100,1017,DevilsDen,Immediate,Goal-assigned,Share,2,06:15pm,3,High Threat,0,0.5,The Devil's Den was intense! the chainsaw man was the first thing that came into mind. I think it was the smell of the tgasoline that actually got me as well. Lots of banging on the metal tables were also really tough on the ears. I did actually feel my heartbeat beat out of my chest when the loud banging was going on. Very impressed with all of the art and decor to be honest actually! I was very impressed to with the decor to be honest! Very impressive work Eastern State! The hammer and tools were actually jarring as well,1,66.64,15.93,21.97,95.66,0.99,0,0.99,0,14.85,0.99,13.86,1.98,0,0,0,10.89,0,0,5.94,5.94,0,0,0,0,0,0,0,0,3.96,2.97,0,0,0,0,0,0.99,0,0,0,0.99,0,0,0.99,0,0,0,0,0,0,2.97,9.9,0,1.98,2.97,0,3.96,0.99,0.99,2.97,23.73,-20.48,28.73,62.93,2,4,2,1,5,1,0,100,19.23,100,19.23,33.33,50,50,100,0,0,100,100,4.55,4.55,0,0,0,5,3,0,0,0,0,0,0,1,3,8,4,12,0.666666667,5,1,101,23 +101,1017,DevilsDen,Delay,Goal-assigned,Share,2,06:15pm,3,High Threat,1,0.25,Instantly the very first thing that came to my senses what is the smell of gasoline and hearing the chainsaw start up from the previous group. And houses in the past have always scared me most with a chainsaw. I knew that was going to be the scariest moment for me especially when he started to reach 4 feet with the chainsaw. I also remember there being a lot of banging of metal and loud noises. Walking through a couple rooms there was a man with a hammer banging it on a metal table and screaming at us as he was doing so. This was the most disturbing because I couldn’t hear myself think as he was doing so. The hostess letting us in before we went in was also very scary and intriguing. The first thing I remember was her eyes and how great of a character she was playing as a scary guard. As soon as we walked in there were these cell looking rooms where people would lunge out behind the bars and try to grab us. This was by far one of the scariest starts to the the house that we entered. Overall I was very impressed with the Devil's Den,1,55.8,68.54,59.99,4.76,3.9,2.93,0.49,0.49,6.34,0.49,5.85,2.93,0.98,1.46,0,0,0,0.98,4.88,1.46,3.41,2.44,0,2.44,2.44,0,0,0,7.32,0.49,0,0,0,0,0,6.83,0,0,1.46,1.95,0,0,0.49,0,0,0,0,0,0.49,2.44,16.1,0.49,3.41,7.32,0.98,3.41,0.98,0.49,2.93,53.17,82.8,37.6,39.12,1,3,1,3,5,5,100,50,0,50,100,22.22,22.22,100,77.78,0,100,100,100,100,0,6,1,0,8,3,0,0,0,0,3,2,0,0,18,5,23,0.782608696,15,0.533333333,206,23 +102,1017,GhostlyGrounds,Delay,Goal-assigned,Test,2,06:15pm,3,High Threat,0,0.4,The Ghostly Grounds was very spooky and the first thing I remember was a lot of smoke and tombstones. Another big highlight was the eerie music that was playing in the background. It was also quite dark and remember being in the back of the line and people following me. I was quite nervous that they would sneak up on me and scare me even more since I was in the back. I also remember hearing soft screams in the background. The fake smoke was also very disorienting. The corners were very tough for me to go around because I did not know what to expect and couldn’t see much,1,24.44,2.84,80.89,1,0,0,0,0,11.01,0,11.01,3.67,1.83,1.83,1.83,0,1.83,2.75,6.42,0.92,5.5,3.67,0,3.67,3.67,0,0,0,2.75,1.83,0,0,0,0.92,0,0.92,0,0,0,0,0,0,0,0,0,0.92,0,0,0,6.42,14.68,0,0.92,9.17,1.83,2.75,0.92,0.92,6.42,9.3,3.08,8.32,16.49,2,3,4,3,4,1,25,100,0,75,29.76,25,25,100,0,61.9,0,33.33,0,100,71.43,1,0,0,9,3,0,0,0,0,0,0,1,0,13,1,14,0.928571429,10,0.9,110,23 +103,1018,Infirmary,Delay,Control,Baseline,0,08:30pm,2,Low Threat,0,0.8,I remember this was the first one we went in I think and I also dint think this was scary. They had lots of neon paint and big spiders and I got a pair of those paper 3D glasses and they were purple and black. They had paintings on easels set up and what looked like strippers I think? I remember going through a tunnel thing that was spinning and it felt like the ground was moving.The scare actors werent scary much but I was so supprised about the theme it just wasnt what i was expecting ,1,9.74,12.03,83.42,1.66,1.02,1.02,0,0,9.18,0,9.18,6.12,0,0,0,0,3.06,2.04,3.06,0,3.06,3.06,0,3.06,3.06,0,0,0,6.12,0,0,0,0,0,0,6.12,0,0,0,0,0,0,1.02,0,0,0,0,0,0,3.06,10.2,0,4.08,2.04,3.06,0,1.02,1.02,3.06,-32.06,-15.59,-31.98,-48.62,4,5,1,1,4,2,0,45.24,0,100,4.76,70,13,51,0,100,100,0,25,52.63,52.63,1,1,0,8,4,0,0,0,0,0,1,0,0,14,1,15,0.933333333,10,0.8,98,18 +104,1018,Asylum,Immediate,Control,Baseline,0,08:30pm,2,Low Threat,0,0.5,"Very colorful and trippy, I got cool funky glasses. There were strippers (kinda) and big spiders. Neon paint with black light made things look like they were moving. Not as scary, very tame. I was more interested in the things going on than being scared. I liked the artsy theme. I wouldnt be scared without the glasses but the glasses made my vision limited which put me more on edge.",1,35.59,1,72.58,7.42,0,0,0,0,12.86,0,12.86,0,2.86,1.43,1.43,0,7.14,0,12.86,5.71,7.14,7.14,0,7.14,7.14,0,0,0,2.86,0,0,0,0,0,0,2.86,0,0,0,0,0,0,1.43,0,0,0,0,0,1.43,5.71,17.14,2.86,4.29,2.86,7.14,0,1.43,1.43,7.14,-38.51,-37.03,-27.97,-50.53,3,1,1,1,2,2,0,25,100,100,50,100,0,66.67,66.67,33.33,100,0,0,100,100,0,0,0,1,3,1,0,0,7,3,0,0,0,4,11,15,0.266666667,1,1,70,18 +105,1018,Asylum,Delay,Control,Baseline,0,08:30pm,2,Low Threat,1,0.5,"Honestly, I am so bad at remembering the sections but I believe this was the second part of it. I wasnt that scared and I liked the story vibe going on. I remember the dentist guy and the weird head with the teeth and I remember thinking ""Wow, they couldve put better details on that."" I also remember the actress with the silky red robe and the black wig that was clearly not a lace front and also it was synthetic hair. ",1,30.81,1.87,87.24,20.23,1.22,0,1.22,0,17.07,0,17.07,7.32,0,1.22,0,2.44,4.88,4.88,6.1,2.44,2.44,3.66,0,2.44,1.22,0,0,0,4.88,1.22,0,0,0,0,1.22,3.66,0,0,1.22,1.22,0,0,0,0,0,0,0,0,1.22,1.22,8.54,0,2.44,2.44,2.44,0,1.22,0,2.44,-11.69,10.22,-27.65,-17.65,4,5,1,5,4,2,41.18,88.24,50,100,0,64.71,64.71,25,0,100,100,0,56.25,56.25,3.13,0,0,0,6,3,0,0,0,0,0,1,0,1,9,2,11,0.818181818,6,1,82,18 +106,1018,DevilsDen,Immediate,Control,Baseline,0,08:30pm,2,High Threat,0,0.6,Was really interesting in trying to figure out whatever story they put together. This really didnt scare me much and I just found it more interesting and stimulating than anything else. Liked the actress in the red dress or robe and the head with the fake teeth in it. The fake teeth in the fleshy gummy head was my favorite and I liked the loud noises. ,1,58.76,3.25,79.84,42.71,3.03,1.52,1.52,0,18.18,0,18.18,4.55,1.52,1.52,3.03,3.03,6.06,0,13.64,7.58,6.06,1.52,0,1.52,1.52,0,0,0,7.58,4.55,0,0,0,3.03,1.52,3.03,0,0,1.52,0,0,0,0,0,0,0,0,0,3.03,0,12.12,0,1.52,6.06,1.52,3.03,0,0,3.03,26.23,28.32,-3.21,53.59,4,2,3,2,4,1,46.43,0,66.67,100,33.33,44.05,100,16.67,0,33.33,0,50,100,0,0,0,0,0,1,3,0,0,0,3,1,0,0,1,4,5,9,0.444444444,1,1,66,18 +107,1018,DevilsDen,Delay,Control,Baseline,0,08:30pm,2,High Threat,1,0.8,"lots of strobe lights, fog, loud noises. Scare actors trying to get you to join the Devil's Den working I liked the cool machine props they set up too. The scare actors with the weapons/tools in hand freaked me out the most.",1,99,78.8,5.5,20.23,6.98,2.33,4.65,0,2.33,0,2.33,0,0,2.33,0,0,0,0,13.95,6.98,6.98,4.65,0,4.65,4.65,0,0,0,9.3,0,0,0,0,0,0,9.3,0,0,0,0,0,0,2.33,0,0,0,0,0,0,6.98,16.28,0,0,6.98,2.33,4.65,2.33,2.33,6.98,NA,-17.02,52.24,NA,4,5,1,1,1,1,0,57.14,0,100,67.86,0,44.44,88.89,50,100,50,50,50,50,50,1,0,0,5,1,0,0,0,0,0,0,0,0,7,0,7,1,6,0.833333333,43,18 +108,1018,GhostlyGrounds,Delay,Control,Baseline,0,08:30pm,3,High Threat,0,0.6,"I remember there were zombies and I remember being scared because I love zombies but also hate zombies. I remember it being dark and I couldnt see well. I dont really remember much inside at all but I do think I liked it. I mostly remember going into it and then also marking my sheet right after and borrowing a pen from the person standing next to me who was also in the study (around 510, blond hair in his face, loosefitting clothes) ",1,3.94,1,99,37.57,0,0,0,0,15.66,1.2,14.46,7.23,1.2,1.2,1.2,1.2,2.41,6.02,6.02,3.61,2.41,3.61,1.2,2.41,1.2,1.2,0,0,6.02,2.41,0,0,0,0,0,3.61,0,0,0,1.2,0,0,1.2,0,0,0,0,0,0,3.61,14.46,0,1.2,10.84,2.41,0,0,1.2,3.61,-28.51,-30.9,-12.54,-42.1,4,3,1,1,4,4,0,18.82,37.65,100,80,87.2,87.2,100,0,27.2,100,23.81,49.21,0,26.98,1,0,0,3,1,2,0,0,3,0,2,0,2,5,9,14,0.357142857,4,0.75,83,18 +109,1019,Infirmary,Immediate,Control,Baseline,0,08:30pm,4,Low Threat,0,0.8,"Infirmary was psychedelic, with these glasses that distorted your vision and balance, clowns and stuff, they sent you through this rotating tunnel that messed your balance up, then at the end took your glasses",1,22.63,99,12.44,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.71,0,0,0,0,0,0,14.71,0,0,0,0,0,0,2.94,0,0,0,0,0,0,0,8.82,0,2.94,2.94,2.94,0,0,2.94,0,NA,49.05,16.33,NA,5,3,1,2,5,1,42.86,0,42.86,42.86,100,64.71,64.71,100,64.71,0,50,50,50,50,50,1,1,0,5,0,0,0,0,0,0,0,0,0,7,0,7,1,7,0.714285714,34,18 +110,1019,Infirmary,Delay,Control,Baseline,0,08:30pm,4,Low Threat,1,0.6,"Infirmary was the first attraction we went to. We went and walked past two girls dancing on top of a platform, then a man handed us these weird glasses that made everything blurry. Then, we were taken through a psychedelic hallway. at the end, there was a spinning tunnel that made me very dizzy, and outside the tunnel we handed off our glasses.",1,70.33,99,67.59,20.23,9.52,9.52,0,0,4.76,1.59,3.17,0,3.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.29,1.59,0,0,0,0,0,12.7,0,0,1.59,1.59,0,0,1.59,0,0,0,0,0,1.59,0,15.87,0,7.94,4.76,1.59,0,1.59,1.59,1.59,NA,-15.33,-6.08,NA,2,3,1,1,2,1,0,100,0,62.5,62.5,50,0,100,31.25,85.42,50,50,50,50,50,3,2,0,3,0,0,0,0,0,0,1,0,0,8,1,9,0.888888889,8,0.375,63,18 +111,1019,Asylum,Delay,Control,Baseline,0,08:30pm,1,Low Threat,0,0.75,"Asylum was the second attraction and it took you through multiple different fake film behind the scenes. You were first taken into this movie where a doctor was preforming experiments and there was a fake head with teeth all around it. Then, there was a really funny dude who was a detective, he said things like ""The clues, I need to find clues!"" and I thought it was funny. Then, there was a woman getting ready for a scene where a phone rang and she had to go answer it. ",1,46.9,81.78,61.86,35.85,0,0,0,0,10.99,1.1,9.89,5.49,1.1,1.1,0,1.1,1.1,0,5.49,3.3,2.2,2.2,2.2,0,0,0,0,0,14.29,5.49,0,0,0,2.2,3.3,8.79,0,1.1,2.2,2.2,3.3,0,4.4,0,0,0,0,0,0,8.79,12.09,0,1.1,9.89,0,1.1,0,7.7,8.79,46.84,46.32,65.5,28.71,5,3,4,4,1,1,59.65,33.33,66.67,0,100,0,53.09,100,100,6.17,0,50,0,100,50,2,0,0,6,1,0,0,0,0,0,1,0,0,9,1,10,0.9,8,0.75,91,18 +112,1019,DevilsDen,Immediate,Control,Baseline,0,08:30pm,3,High Threat,0,0.2,"Machine shop took you through another part of the prison, it was presented like they were harvesting human parts. At the end of it there was a very shaky box that had a lot of appendages on it. There was also this sliding floor that disoriented you.",1,42.22,76.11,57.41,4.04,2.13,0,0,2.13,6.38,0,6.38,0,0,0,0,0,6.38,0,2.13,0,2.13,0,0,0,0,0,0,0,8.51,0,0,0,0,0,0,8.51,0,0,0,0,0,0,2.13,0,0,2.13,0,0,0,2.13,12.77,0,4.26,6.38,2.13,0,0,4.26,2.13,8.32,47.72,32.55,-55.32,3,5,5,5,1,1,90,30,100,100,0,0,42.86,52.38,28.57,100,0,0,0,0,100,1,0,0,5,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.833333333,47,18 +113,1019,DevilsDen,Delay,Control,Baseline,0,08:30pm,3,High Threat,1,0.6,"Machine shop was the third attraction. it took us through an abandoned factory, and the factory had a lot of body parts laying around it. I dont remember specifics up until the end, where we walked through a dangling box, but the box was covered in human body parts like hands. Other than that, it was kinda forgettable, it didnt scare me but i thought the box was cool.",1,60.52,3.78,98.67,7.29,2.9,2.9,0,0,15.94,0,15.94,2.9,0,0,1.45,0,10.14,2.9,4.35,1.45,2.9,1.45,0,1.45,1.45,0,0,0,4.35,0,0,0,0,0,0,4.35,0,0,0,0,0,0,1.45,0,0,0,0,0,0,1.45,10.14,0,2.9,7.25,0,0,1.45,1.45,1.45,-1.63,20.32,-8.28,-16.94,3,5,5,5,3,1,39.06,59.38,100,18.75,0,28.89,28.89,0,57.78,100,0,23.21,46.43,23.21,100,0,2,0,2,2,0,0,0,0,0,1,0,2,6,3,9,0.666666667,4,0.5,69,18 +114,1019,GhostlyGrounds,Delay,Control,Baseline,0,08:30pm,2,High Threat,0,0.4,The Ghostly Grounds was the very last attraction. It took us through some very dark hallways. I dont remember much from this but I also thought it was plain forgettable. We did enter through a bus.,1,12.97,40.06,63.35,20.23,5.71,5.71,0,0,11.43,0,11.43,5.71,0,0,0,0,2.86,5.71,0,0,0,0,0,0,0,0,0,0,5.71,0,0,0,0,0,0,5.71,0,0,0,0,0,0,2.86,0,0,0,0,0,0,0,5.71,0,2.86,0,2.86,0,0,2.86,0,52.44,74.06,43.36,39.91,1,4,4,4,1,1,100,50,50,0,100,0,66.67,33.33,100,0,0,0,33.33,100,33.33,0,1,0,1,0,0,0,0,0,0,1,0,2,2,3,5,0.4,2,0.5,35,18 +115,1020,Infirmary,Immediate,Control,Baseline,0,08:30pm,1,Low Threat,0,0.4,"Sunglasses on, felt like a little buzz. Other than that I saw very bright neon color. +",1,89.52,1,89.39,96.74,0,0,0,0,18.75,0,18.75,6.25,0,0,0,0,12.5,0,6.25,6.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.25,31.25,0,0,0,25,0,6.25,0,6.25,28.56,49.8,43.36,-7.47,2,3,3,4,1,2,75,100,100,0,0,0,0,100,100,0,75,0,100,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,3,0,3,1,3,0.666666667,16,22 +116,1020,Infirmary,Delay,Control,Baseline,0,08:30pm,1,Low Threat,1,0.2,"Bright lights, neon lights. Lots of turns and weird looking characters. Got 3D glasses. +",1,89.52,40.06,2.36,98.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,7.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,0,0,0,0,0,7.14,0,35.71,0,7.14,0,28.57,0,0,7.14,7.14,NA,-11.67,21.68,NA,2,3,1,1,1,1,0,100,0,0,0,0,0,100,0,0,50,50,50,50,50,1,0,0,4,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.8,14,22 +117,1020,Asylum,Delay,Control,Baseline,0,08:30pm,1,Low Threat,0,0.5,Zombies and bud ride.,1,26.1,99,89.39,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,25,0,25,0,25,0,0,0,0,0,0,0,0,0,0,25,0,25,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,2,0.5,1,1,4,22 +118,1020,DevilsDen,Delay,Control,Baseline,0,08:30pm,2,High Threat,0,0.4,"Heavy rusty metal tools. +",1,89.52,40.06,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,25,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,1,2,1,4,22 +119,1020,GhostlyGrounds,Immediate,Control,Baseline,0,08:30pm,3,High Threat,0,0.6,"Not so bright, darker colors. Can not remember that much. The Ghostly Grounds was the same way i felt for the Infirmary.",1,42.52,1,97.09,88.66,0,0,0,0,28.57,0,28.57,9.52,0,4.76,0,0,14.29,4.76,4.76,4.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.81,0,0,4.76,14.29,0,4.76,0,0,-5.34,-16.31,6.96,-6.67,5,2,2,1,5,1,0,0,50,50,100,53.33,100,33.33,33.33,0,0,100,0,0,100,0,0,0,2,0,0,0,0,0,0,1,0,1,2,2,4,0.5,2,1,21,22 +120,1020,GhostlyGrounds,Delay,Control,Baseline,0,08:30pm,3,High Threat,1,0.4,"Jail cells and long passage ways, +",1,49.68,40.06,39.59,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.67,16.67,0,0,16.67,0,0,0,0,16.67,NA,NA,21.68,NA,1,2,1,1,1,1,50,50,50,50,50,0,100,0,0,0,50,50,50,50,50,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,1,2,1,6,22 +121,1021,Infirmary,Delay,Control,Baseline,0,06:15pm,1,Low Threat,0,0,Infirmary had bright colors. We got glasses for the very intro to it. There was a hallway with polka dots and a guy hidden on the wall as he blended in. There were drawings all over the walls and people wore neon and I think some looked like creatures and others more like clowns. ,1,83.52,62.05,27.44,48.44,1.85,1.85,0,0,5.56,1.85,3.7,1.85,0,0,0,0,1.85,0,1.85,1.85,0,0,0,0,0,0,0,0,5.56,0,0,0,0,0,0,5.56,0,0,0,3.7,0,0,1.85,0,0,0,0,1.85,0,5.56,18.52,0,0,11.11,7.41,0,0,1.85,7.41,-0.32,23.07,31.28,-55.32,2,2,5,5,1,1,50,100,100,50,0,0,100,0,100,30,0,0,0,0,100,1,1,0,6,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.75,54,21 +122,1021,Asylum,Immediate,Control,Baseline,0,06:15pm,2,Low Threat,0,0.25,"I remember at the end, there was a girl dancing as we entered the hallway. I remember the rooms were dark and we had someone with polka dots jump out at us. It was dark for many parts of it, and we entered a green light. There were lots of barrels, and movie stars. A girl ran into a bed, and was acting. She ran to the other room due to a phone sound. A guy was talking to a camera, he had a gray face. He was mimicing the sound. ",1,84.28,94.16,54.07,20.23,4.4,4.4,0,0,5.49,0,5.49,2.2,0,0,1.1,0,2.2,2.2,0,0,0,0,0,0,0,0,0,0,16.48,4.4,0,0,0,0,2.2,12.09,0,0,3.3,3.3,0,0,0,0,0,0,0,0,0,2.2,20.88,0,6.59,6.59,5.49,2.2,0,0,2.2,9.77,57.73,25.29,-53.71,4,2,1,2,4,2,84.21,0,0,100,50,18.42,100,50,0,25,100,0,0,0,0,2,1,0,13,0,0,0,0,1,0,0,0,0,16,1,17,0.941176471,16,0.8125,91,21 +123,1021,Asylum,Delay,Control,Baseline,0,06:15pm,2,Low Threat,1,0.25,"Asylum had a man who pretended to talk into the camera. You entered the next room, and you see a woman wearing a white or red dress. I believe it was red. She hears the phone ring then runs into the next room where she lays on the bed in act. You then walk through rooms with normal scares, I think it’s just a dark hallway. ",1,82.03,93.9,96.82,7.03,0,0,0,0,5.97,0,5.97,2.99,0,0,1.49,0,1.49,0,1.49,0,1.49,1.49,0,1.49,1.49,0,0,0,14.93,2.99,0,0,0,0,2.99,11.94,0,0,4.48,1.49,0,0,1.49,0,0,0,0,0,0,4.48,25.37,0,5.97,11.94,7.46,1.49,0,1.49,4.48,19.99,58.5,39.23,-37.77,4,3,3,3,1,2,85.71,39.29,0,100,50,0,0,100,54.84,9.68,92.86,0,100,0,100,1,1,0,6,0,0,0,0,0,0,0,0,2,8,2,10,0.8,8,0.75,68,21 +124,1021,DevilsDen,Immediate,Control,Baseline,0,06:15pm,2,High Threat,0,0.6,"From Machine shop, it was very loud. There were people banging on things and we walked through a hallway filled with cages where someone was dancing around inside and reached outside of the cage. There was someone that jumped out with a chainsaw following for a moment prior. ",1,82.63,84.23,99,20.23,2.08,2.08,0,0,4.17,0,4.17,0,0,0,4.17,0,0,0,0,0,0,0,0,0,0,0,0,0,8.33,2.08,0,0,0,0,0,6.25,0,0,0,0,0,0,0,0,2.08,0,0,0,0,4.17,29.17,0,8.33,18.75,0,4.17,0,2.08,4.17,NA,-27.22,-8.64,NA,5,1,1,1,5,1,0,43.9,43.9,51.22,100,100,60,80,88.89,0,50,50,50,50,50,2,1,0,4,0,0,0,0,0,0,0,0,0,7,0,7,1,7,0.571428571,48,21 +125,1021,DevilsDen,Delay,Control,Baseline,0,06:15pm,2,High Threat,1,0.2,"I believe this one had the man who chases you with a chainsaw. Quite a few people had heavy and loud machinery and followed you for a bit. I believe they wore overalls. Also, there might have been a room with chains hanging down. ",1,38.37,92.77,66.42,20.23,0,0,0,0,9.09,0,9.09,4.55,0,0,4.55,0,0,0,0,0,0,0,0,0,0,0,0,0,11.36,0,0,0,0,0,0,11.36,0,0,0,2.27,0,0,0,0,0,0,0,0,0,4.55,15.91,0,2.27,9.09,0,2.27,2.27,0,4.55,4.58,13.6,-3.51,3.66,5,4,4,4,5,2,29.63,88.89,59.26,0,100,63.64,27.27,27.27,100,0,50,0,0,100,0,2,1,0,3,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.5,44,21 +126,1021,GhostlyGrounds,Delay,Control,Baseline,0,06:15pm,3,High Threat,0,0.6,"I think the Ghostly Grounds section had the girls dancing in the hallway as we walked down Eastern State. It had lots of fog, and I think it had green lasers in the beginning. I don’t really remember it. ",1,60.19,14.81,99,20.23,2.63,2.63,0,0,13.16,0,13.16,7.89,0,0,5.26,5.26,2.63,2.63,0,0,0,0,0,0,0,0,0,0,7.89,2.63,0,0,0,0,0,5.26,0,0,2.63,0,0,0,0,0,0,0,0,0,0,0,21.05,0,5.26,13.16,2.63,0,0,0,0,-7.12,20.7,6.99,-49.04,2,5,4,3,2,2,33.33,100,0,4.76,4.76,28,0,56,68,100,87.5,0,0,100,100,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,21 +127,1022,Infirmary,Delay,Control,Baseline,0,06:15pm,1,Low Threat,0,1,"You had to put glasses on for it, so it was in 3D. There were a lot of colors and you had to walk through many different alleys and hallways. Lots of clowns. The first hallway you go through is very dark and it was hard to not run into the wall.",1,64.84,73.15,70.92,20.23,0,0,0,0,3.85,0,3.85,0,0,0,0,0,3.85,0,0,0,0,0,0,0,0,0,0,0,5.77,0,0,0,0,0,0,5.77,0,0,0,0,7.69,0,0,0,0,0,0,0,0,1.92,21.15,0,7.69,9.62,3.85,0,1.92,7.69,1.92,NA,43.4,-36.51,NA,3,1,1,4,3,1,72.73,72.73,100,0,100,100,79.59,0,44.9,67.35,50,50,50,50,50,3,0,0,4,0,0,0,0,0,0,0,0,0,7,0,7,1,7,0.571428571,52,23 +128,1022,Asylum,Immediate,Control,Baseline,0,06:15pm,2,Low Threat,0,0.75,"The Asylum section was somewhat lit up compared to the other ones. It was the first section that actually felt like a prison, which was a little bit nerving at the start. I remember seeing the bath tub and shower as soon as you walk in and it reminded me that people have actually been forced to live there. Overall I remembered it as one of the less scary experiences from the night. ",1,77.13,14.33,91.47,2.35,2.7,0,0,2.7,16.22,0,16.22,4.05,1.35,0,1.35,2.7,4.05,4.05,2.7,0,2.7,1.35,0,1.35,1.35,0,0,0,1.35,0,0,0,0,0,0,1.35,0,0,0,0,0,0,1.35,1.35,0,0,0,0,0,9.46,13.51,0,1.35,8.11,2.7,0,1.35,2.7,9.46,32.57,38.43,7.53,51.75,5,4,2,4,5,1,59.57,29.79,89.36,0,100,48.78,31.71,31.71,100,0,0,100,50,50,53.57,1,0,0,4,1,0,0,0,0,1,1,0,0,6,2,8,0.75,5,0.8,74,23 +129,1022,Asylum,Delay,Control,Baseline,0,06:15pm,2,Low Threat,1,0.75,I remember when you first enter there is a bathtub and shower. There also isn’t as much moments where people sneak up on you. The characters were more performers and we locked into what they were doing instead. The woman was wearing a red dress. ,1,7.5,86.16,93.95,3.72,2.22,2.22,0,0,6.67,0,6.67,2.22,0,0,0,0,4.44,2.22,2.22,0,2.22,0,0,0,0,0,0,0,13.33,2.22,0,0,0,0,0,11.11,0,0,2.22,0,0,0,0,0,0,0,0,0,0,2.22,15.56,0,2.22,11.11,2.22,0,0,0,2.22,-26.44,-9.34,-19.46,-50.53,3,1,1,1,3,3,0,0,100,0,50,100,50,0,100,0,100,100,0,0,100,3,0,0,3,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.5,46,23 +130,1022,DevilsDen,Delay,Control,Baseline,0,06:15pm,4,High Threat,0,0.6,I remember Devil's Den was one of the scariest ones. At the end of it there is a giant trap that a man upstairs was slamming. Other than that I honestly don’t remember too much. A lot of chainsaws.,1,74.95,3.65,91.37,1,0,0,0,0,12.82,0,12.82,5.13,0,0,0,2.56,5.13,5.13,10.26,0,10.26,2.56,0,2.56,2.56,0,0,0,2.56,0,0,0,0,0,0,2.56,0,0,0,2.56,0,0,0,0,0,0,0,0,0,0,7.69,0,2.56,5.13,0,0,0,0,0,0.42,35.97,20.2,-54.9,2,4,5,4,5,2,50,100,50,0,64.29,22.22,22.22,22.22,100,0,87.5,0,0,87.5,100,1,0,0,2,0,0,0,0,0,0,1,0,1,3,2,5,0.6,3,0.666666667,40,23 +131,1022,GhostlyGrounds,Immediate,Control,Baseline,0,06:15pm,3,High Threat,0,0.6,"Ghostly Grounds immediately hit me as one of the scarier ones when we went into the bus. I remembered wondering if the people on the bus were real or not, they ended up being fake. I remember going up the steps, I expected there to be more up there but it was interesting looking down the hallway and seeing all the cells. You were sort of able to imagine the cell mates being there to spook yourself.",1,71.14,32.65,99,1,3.95,2.63,1.32,0,15.79,1.32,14.47,5.26,0,0,6.58,1.32,5.26,2.63,6.58,1.32,5.26,2.63,0,2.63,2.63,0,0,0,7.89,1.32,0,0,0,1.32,0,6.58,0,1.32,0,0,0,0,0,0,0,0,0,0,2.63,2.63,17.11,0,3.95,10.53,2.63,0,0,0,5.26,68.01,73.06,57.87,73.11,1,2,2,2,1,1,100,0,59.26,59.26,59.26,0,100,55.56,100,55.56,0,100,100,50,50,1,1,0,0,3,0,0,0,1,3,0,0,0,5,4,9,0.555555556,2,0,76,23 +132,1022,GhostlyGrounds,Delay,Control,Baseline,0,06:15pm,3,High Threat,1,0.4,"The Ghostly Grounds was the scariest one. I remember this one had the most feelings of actually being in the prison, and you had to go up some steps. This one had the most people popping out at you",1,85.45,82.58,84.38,1,2.63,0,0,2.63,7.89,0,7.89,5.26,0,0,0,2.63,0,2.63,5.26,0,5.26,2.63,0,2.63,2.63,0,0,0,5.26,0,0,0,0,0,0,5.26,0,0,0,0,5.26,0,0,0,0,0,0,0,0,7.89,15.79,0,5.26,10.53,0,0,2.63,5.26,7.89,32.5,23.81,68.98,4.72,5,2,2,4,1,3,37.5,37.5,81.25,0,100,0,100,100,71.43,14.29,50,100,0,0,0,2,0,0,0,1,0,0,0,0,0,1,0,0,3,1,4,0.75,2,0,38,23 +133,1023,Infirmary,Delay,Control,Baseline,0,07:30pm,1,Low Threat,0,0.5,"I was given glasses that were supposed to enhance the experience of this section. There was an actor that made a loud sound with a cane of some sort right at the beginning of the section. There were a lot of neon colors on the walls. There was also a room that had a bridge or tunnel of some sort which had a lot of colors and I remember experiencing a sort of spinning effect. Other than that, there was just a lot of neon orange, green, and yellow colors, almost like paint splatters, everywhere.",1,84.53,14.81,55.97,20.23,0,0,0,0,15.79,1.05,14.74,2.11,2.11,2.11,4.21,0,4.21,1.05,0,0,0,0,0,0,0,0,0,0,1.05,0,0,0,0,0,0,1.05,0,0,0,0,0,0,0,0,0,0,0,0,0,2.11,20,0,2.11,9.47,6.32,3.16,0,0,2.11,-13.84,-7.13,-34.39,0,2,1,4,5,2,2,20,100,60,40,0,100,0,60,60,80,50,0,50,100,50,2,1,0,10,0,0,0,0,0,0,1,0,1,13,2,15,0.866666667,13,0.769230769,95,18 +134,1023,Asylum,Immediate,Control,Baseline,0,07:30pm,1,Low Threat,0,1,"I remember seeing a lot of film and maybe a few of those like megaphone director things. Also the tint of the area was more of a black and white type. There was also this women who called people darling, but she said it more like, ""DAHLING"", with like an accent, which I kind of loved.",1,71.85,50.7,8.95,47.3,1.79,0,0,1.79,10.71,0,10.71,1.79,0,0,5.36,0,3.57,1.79,1.79,1.79,0,1.79,1.79,0,0,0,0,0,16.07,7.14,0,0,0,0,5.36,8.93,0,1.79,3.57,0,0,0,0,0,0,0,0,0,0,7.14,10.71,0,0,3.57,7.14,0,0,0,7.14,16.03,83.42,41.4,-76.74,1,3,5,4,5,2,100,81.82,54.55,0,54.55,25,33.33,100,100,0,83.33,0,0,0,100,1,0,0,5,1,0,0,0,0,0,0,0,0,7,0,7,1,6,0.833333333,56,18 +135,1023,Asylum,Delay,Control,Baseline,0,07:30pm,1,Low Threat,1,0.5,I remember seeing some film and maybe a directors chair of some sort and there was a general black and white tint for this whole section. The people walking around were supposed to be like actors or filmmakers. There was a woman in a red dress who called people darling. She was standing nears a table. There was a room with mirrors that had lights around them.,1,59.36,80.84,37.86,20.23,1.49,0,0,1.49,8.96,0,8.96,1.49,0,2.99,2.99,0,1.49,1.49,0,0,0,0,0,0,0,0,0,0,11.94,1.49,0,0,0,0,1.49,10.45,0,1.49,2.99,0,0,0,0,0,0,0,0,0,0,4.48,25.37,0,1.49,14.93,8.96,0,0,0,4.48,-25.52,-10.66,-33.29,-32.62,5,1,1,1,4,2,0,43.33,53.33,6.67,100,100,27.78,77.78,0,77.78,100,0,53.85,0,0,1,1,0,7,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.777777778,67,18 +136,1023,DevilsDen,Immediate,Control,Baseline,0,07:30pm,2,High Threat,0,0.75,I remember there was an area with like dead life forms hanging from the ceiling. Also there was a guy who was yelling about tearing out peoples tongues just because they were cursing. That guy had a hammer. I think there was a mostly red tint for the whole section. This might have also been the section where there was a long hallway towards the end that had a lot of empty cells and strobe lights. There were people walking around the hall and screaming too.,1,40.39,60.8,87.35,9.15,0,0,0,0,5.81,0,5.81,2.33,1.16,0,2.33,0,0,1.16,1.16,0,1.16,0,0,0,0,0,0,0,8.14,1.16,0,0,0,0,1.16,5.81,0,0,0,2.33,0,0,0,1.16,0,0,0,0,0,6.98,24.42,0,1.16,17.44,3.49,2.33,0,1.16,6.98,19.75,18.83,45.68,-5.27,4,4,1,2,5,5,38.89,0,50,100,0,22.22,66.67,66.67,100,0,100,52.94,52.94,52.94,0,0,2,0,5,0,0,0,0,0,0,0,0,0,7,0,7,1,7,0.714285714,86,18 +137,1023,DevilsDen,Delay,Control,Baseline,0,07:30pm,2,High Threat,1,0.5,I remember seeing a lot of red and there were like meat or just dead limbs or animals or something hanging from the ceiling. A few of the actors had machinery like saws or hammers. This guy was yelling about cutting out someones tongue because they were cursing right before I entered. There was a butcher of some kind standing behind a table that mightve had some type of meat or something on it.,1,59.12,19.44,73.75,20.23,0,0,0,0,14.86,0,14.86,1.35,1.35,0,12.16,0,6.76,1.35,0,0,0,0,0,0,0,0,0,0,6.76,1.35,0,0,0,0,1.35,5.41,0,0,0,1.35,0,0,0,0,0,0,0,0,0,5.41,13.51,0,1.35,8.11,2.7,1.35,0,0,5.41,-19.5,-12.03,-30.39,-16.1,2,5,1,1,2,2,0,100,0,33.33,76.19,57.14,0,28.57,57.14,100,100,0,100,0,0,1,0,0,7,0,0,0,0,0,0,0,0,4,8,4,12,0.666666667,8,0.875,74,18 +138,1023,GhostlyGrounds,Delay,Control,Baseline,0,07:30pm,2,High Threat,0,0.8,"I dont remember much, but I think this was the section that had the long hallway that took a really long time to walk down and had a lot of flashing strobe lights. There were also characters who were yelling at each other and supposed to be like inmates wandering out of their cells. There was also a lot of smoke and it was almost completely dark without the strobe lights flashing.",1,29.64,18.97,68.87,20.23,1.39,0,0,1.39,13.89,0,13.89,2.78,0,2.78,1.39,2.78,4.17,1.39,0,0,0,0,0,0,0,0,0,0,5.56,1.39,0,0,0,0,1.39,4.17,0,0,0,0,0,0,1.39,0,0,0,0,0,0,6.94,20.83,0,2.78,11.11,6.94,1.39,0,1.39,6.94,-14.39,2.02,-27.71,-17.48,2,1,1,3,2,2,23.64,100,0,81.82,54.55,100,0,87.5,33.93,33.93,100,0,35.71,71.43,0,0,0,0,4,0,0,1,0,1,0,0,0,1,4,3,7,0.571428571,4,1,72,18 +139,1024,Infirmary,Immediate,Control,Baseline,0,06:15pm,2,Low Threat,0,0.2,I remember Infirmary not being very scary as the first attraction. There was not a lot of jump scares but I remember loud noises. The 3D glasses and flashing lights made it hard to see which made it a little nerveracking.,1,48.44,1,87.24,1,0,0,0,0,19.51,0,19.51,4.88,4.88,0,0,0,9.76,4.88,7.32,0,7.32,4.88,0,4.88,4.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.44,19.51,0,2.44,2.44,7.32,4.88,2.44,0,2.44,6.09,62.32,-50.5,6.46,2,1,3,4,3,2,88.89,100,50,0,100,100,64.29,0,0,0,44.44,0,100,0,0,1,0,0,3,2,0,0,0,0,0,1,0,0,6,1,7,0.857142857,4,0.75,41,19 +140,1024,Infirmary,Delay,Control,Baseline,0,06:15pm,2,Low Threat,1,0.2,I believe that Infirmary was the first attraction and I remember walking in and receiving 3D glasses and we walked through narrow hallways and a tunnel that felt like we were spinning around in. I also remember a dark hallway with polka dots and a man that blended in with the polkadot wall that jumped out and scared me. I remember vivid colors and a man on stilts that went in our faces as we passed by him. I remember being scared by the man in the polka dot room but not by anything else really in this attraction. ,1,66.04,52.11,99,4.48,4.04,4.04,0,0,11.11,0,11.11,6.06,0,0,1.01,1.01,3.03,4.04,2.02,0,2.02,2.02,0,2.02,2.02,0,0,0,8.08,0,0,0,0,0,0,8.08,0,0,0,4.04,0,0,1.01,0,0,0,0,0,0,2.02,21.21,0,6.06,11.11,3.03,0,1.01,1.01,2.02,-36.18,-40.24,-56.62,-11.68,5,1,2,1,2,3,0,69.51,92.68,69.51,100,100,0,0,0,68.42,66.67,100,0,66.67,70.18,7,3,0,3,0,0,0,0,0,0,1,0,0,13,1,14,0.928571429,13,0.230769231,99,19 +141,1024,Asylum,Delay,Control,Baseline,0,06:15pm,1,Low Threat,0,0.5,I remember Asylum being the least scary. We walked through different rooms that were kind of old hollywood theme. I think they were least scary for me because there were no jump scares it was more just people playing a role of a scary person in each room. I do remember there was a loud noise in the room when the one lady came from her glam room to the bedroom that threw me off guard. There was a dentist with a drill that got in peoples faces with it but it was more loud than scary. The characters were not very interactive with the guests but more just like they were playing a role and we were observing.,1,59.67,45,82.8,1.23,2.5,1.67,0,0.83,12.5,2.5,10,2.5,1.67,0,1.67,0,4.17,1.67,6.67,1.67,5,4.17,0,4.17,4.17,0,0,0,9.17,0.83,0,0.83,0,0,0,9.17,0,0.83,1.67,0,0,0,1.67,0,0,0,0,0,0,3.33,14.17,0,3.33,8.33,0,2.5,0,1.67,3.33,-41.33,-47.27,-11.75,-64.97,3,5,1,1,3,2,0,60,100,80,60,50,50,0,75,100,100,0,0,0,33.33,3,1,0,4,1,0,0,0,0,5,0,0,0,9,5,14,0.642857143,8,0.5,120,19 +142,1024,DevilsDen,Delay,Control,Baseline,0,06:15pm,4,High Threat,0,0.4,I remember entering Devil's Den through the side of a building and the people already in it came out and said it was too scary so it made me a little nervous. Then when we walked in there was a red lighting and a control panel then we walked outside momentarily and there were creepy characters standing all along outside that followed us through the halls and a guy standing at the entrance with a chainsaw that came in my face. I remember walking through one of the long hallways of the penitentiary and there was a lot of smoke and I could not see my group members or where I was going. Then there was different colored lighting in the hallway and people standing at the end of it that gave it a creepy feel. I do not remember many people jumping out and scaring me. I remember a lot of machine noises. ,1,66.23,17.46,99,1,3.25,2.6,0,0.65,8.44,0.65,7.79,3.25,1.3,0.65,0.65,0,2.6,2.6,3.9,0,3.9,3.25,0,3.25,3.25,0,0,0,5.84,1.95,0,0,0,0.65,0.65,3.9,0,0,0,0.65,0,0,0,0,0,0,0,0,0,5.84,20.78,0,5.19,12.34,1.95,0.65,0.65,0,5.84,-8.26,27.56,2.86,-55.21,3,4,5,4,3,2,44.44,22.22,100,0,35.93,54.55,72.73,0,100,39.09,32.26,0,32.26,0,100,5,3,0,9,1,2,0,0,0,1,0,0,0,18,3,21,0.857142857,17,0.529411765,154,19 +143,1024,GhostlyGrounds,Immediate,Control,Baseline,0,06:15pm,5,High Threat,0,0.4,"The Ghostly Grounds was extremely scary to me and I did not expect it compared to the ones before it. First going through the bus with flashing lights and bodies on the bus started my nervousness. There was a lot of jump scares, loud noises, and people that came close to touching me. There was some parts where I could not see the group leader due to fog or darkness which raised my fear level. Also seeing real people waiting in the corner to scare you or people behind you was nerveracking. Seeing the bodies hanging from th ceiling with flashing lights was the scariest moment for me. Also having no one there that I knew raised my fear levels.",1,51.8,2.91,97.97,1,0.84,0,0,0.84,10.92,1.68,9.24,0.84,0,0.84,1.68,1.68,5.88,0,7.56,0.84,6.72,5.88,0,5.88,5.88,0,0,0,3.36,0,0,0,0,0,0,3.36,0,0,0,0,0,0,0,0,0,0,0,0,0,5.04,21.01,0,4.2,7.56,6.72,1.68,0.84,0,5.04,-6.71,67.38,-15.31,-72.2,1,3,5,3,4,2,100,50,0,75,3.26,66.67,16.67,100,0,73.19,47.92,0,0,47.92,100,2,1,0,8,6,0,0,0,0,1,0,0,0,17,1,18,0.944444444,11,0.727272727,119,19 +144,1024,GhostlyGrounds,Delay,Control,Baseline,0,06:15pm,5,High Threat,1,0.8,I remember Ghostly Grounds being the scariest one for me. I first remember walking onto a stationary school bus with scary music and figures lying in the seats and being scared that one of them were gonna jump up. Then when we got off of the bus there was a loud noise behind the fence. I remember walking through cages and fences with vines hanging from them and there was a guy trying to break out of the one in the middle to come chasing after people. I remember walking down steps with creepy murals on the side. I also remember walking through a chamber with flashing strobe lights and bodies hanging from the ceiling and there was a guy dressed in all black in the corner and I was unable to see while being scared that he was going to pop out at me. I also remember walking down the hallway from Devil's Den at the end ,1,93.88,32.88,97.86,1,1.91,0.64,1.27,0,7.01,1.91,5.1,4.46,0,0.64,0,0,0,3.82,3.82,0,3.82,3.18,0,3.18,3.18,0,0,0,3.82,0,0,0,0,0,0,3.82,0,0,0,1.91,0,0,0.64,0,0,0,0,0,0,3.18,21.02,0,5.1,12.1,2.55,1.91,0,0.64,3.18,-33.88,-35.52,-16.52,-49.6,3,5,4,1,3,2,0,46.73,100,51.76,35.68,39.29,53.13,0,28.57,100,93.94,0,3.03,100,100,3,5,0,8,3,1,0,0,0,0,0,0,0,19,1,20,0.95,16,0.5,157,19 +145,1025,Infirmary,Immediate,Control,Baseline,0,06:15pm,2,Low Threat,0,0.6,"the vivid color and the 3d glasses were especially memorable for me. They helped (in addition to the sculptures of spiders) the exhibit feel like an art installation. I really enjoyed the psychedelic colors and the optical illusions used in this exhibit. I remember the two models/workers dancing on a table at the beginning of the exhibit, they conveyed the ""mild"" rating of this section in comparison to the others. the most afraid I felt during this exhibit was during a hallway portion between scenes where the dry fog and the lights created a swamp effect, that made me feel like I was wading through chestheight water. +",1,98.42,17.13,71.78,64,2.78,0.93,0.93,0.93,11.11,0,10.19,4.63,2.78,0,0,0.93,1.85,1.85,4.63,3.7,0.93,1.85,0.93,0.93,0.93,0,0,0,5.56,2.78,0.93,0,0,0,0.93,2.78,0,0,0,0,0,0,0,0,0,0,0,0,0.93,3.7,14.81,0,0.93,5.56,4.63,0,3.7,0,4.63,4.09,41.67,-8.96,-20.44,3,4,5,2,3,3,80,0,100,87.62,3.81,70,70,0,100,75.56,47.73,95.45,0,50,100,0,0,0,5,2,0,1,0,2,2,0,0,1,7,6,13,0.538461538,5,1,108,19 +146,1025,Infirmary,Delay,Control,Baseline,0,06:15pm,2,Low Threat,1,0.6,"As I remember, Infirmary was about a psychedelic experience, that used a lot of optical illusions and colored lighting to manipulate the landscape. I remember the dancing actors on a raised platform, huge spiders on the walls, mirrors everywhere, and a light and fog ""swamp"" effect. I also remember a lot of neon colors and bright lighting.",1,91.74,21.77,58.46,46.76,1.75,0,0,1.75,12.28,1.75,10.53,7.02,5.26,0,0,0,0,5.26,1.75,1.75,0,0,0,0,0,0,0,0,5.26,3.51,0,0,0,0,0,1.75,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75,15.79,0,3.51,3.51,8.77,0,0,0,1.75,-5.36,55.78,-23.52,-48.34,3,4,5,4,3,2,83.33,37.5,100,0,0,91.67,61.11,0,100,100,45.83,0,50,50,100,0,0,0,8,0,0,0,0,1,0,0,0,0,8,1,9,0.888888889,8,1,57,19 +147,1025,Asylum,Delay,Control,Baseline,0,06:15pm,3,Low Threat,0,0.75,I cant remember which of the sections was entitled Asylum.,1,20.83,1,99,20.23,0,0,0,0,27.27,0,27.27,9.09,0,9.09,0,0,18.18,9.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,0,0,0,0,0,0,9.09,9.09,0,0,9.09,0,0,0,9.09,9.09,-33,-23.33,-21.95,-53.71,2,1,1,1,3,2,0,100,100,0,0,100,75,0,75,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,11,19 +148,1025,DevilsDen,Immediate,Control,Baseline,0,06:15pm,4,High Threat,0,0.6,"I remember beginning the experiment in a portion of the prison where an actor swung an axe/knife at oncoming participants. I also remember multiple images of fake dead bodies combined with prison imagery. This reminded me of slavery, and made me feel as though I were a slave/prisoner when I remembered the historical context of the penitentiary. This section in particular reminded me about learning how slaves in america were operated on while still conscious, maimed for fun/medical reasons, cannibalized, and otherwise dismembered. It became impossible to remove this context from everything I experienced afterwards in the Devil's Den. This portion of the exhibit was definately not for me.",1,78.28,2.31,99,1,5.36,0,0,5.36,17.86,0.89,16.96,7.14,3.57,0,0,0,4.46,4.46,8.04,0.89,7.14,0.89,0.89,0,0,0,0,0,4.46,2.68,0,0,0,1.79,0,1.79,0,0,0,0,0,0,0,0,0,0,0,0,0,2.68,9.82,0,1.79,5.36,1.79,0,0.89,0,2.68,61.26,71.63,88.39,23.76,1,4,4,2,1,5,100,0,56.82,4.55,56.82,0,60.27,68.49,100,100,71.74,47.83,50,100,0,2,0,0,2,1,0,0,0,0,0,1,0,4,5,5,10,0.5,4,0.5,112,19 +149,1025,DevilsDen,Delay,Control,Baseline,0,06:15pm,4,High Threat,1,0.6,"Machine shop featured a lot of hardware tools and actors swinging knives and drills. There were also a lot of both real and fake chainsaw, drilling, and hammering noises through out this experience. Here I remember actors following me/my group and screaming making loud noises.",1,47.48,40.06,44.75,1,0,0,0,0,6.52,0,6.52,2.17,2.17,0,0,2.17,0,2.17,6.52,0,6.52,0,0,0,0,0,0,0,8.7,2.17,0,0,0,2.17,0,6.52,0,0,0,0,0,0,0,0,0,0,0,0,0,6.52,17.39,0,2.17,6.52,0,8.7,0,0,6.52,48.19,55.56,45.27,43.76,4,2,2,5,1,1,90,50,50,100,0,0,100,35.48,67.74,67.74,0,100,0,100,0,2,0,0,6,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.75,46,19 +150,1025,GhostlyGrounds,Delay,Control,Baseline,0,06:15pm,4,High Threat,0,0.4,"I remember the Ghostly Grounds had a lot of disturbing body parts and fake blood hanging around. There was a room in the exhibit that featured fake bodies/actors hanging and it was so realistic that everyone in my group got quiet when we entered the room. This was one of the scariest moments for me. I remember the actors there were wearing gauze and fake blood. This section seemed to be focused on gore. +",1,51.04,48.08,96.85,1,1.35,1.35,0,0,6.76,1.35,5.41,4.05,0,0,1.35,0,1.35,2.7,6.76,0,6.76,1.35,0,1.35,1.35,0,0,0,10.81,4.05,0,0,0,4.05,0,6.76,0,0,0,0,0,0,1.35,0,0,0,0,0,0,0,17.57,1.35,1.35,13.51,0,1.35,0,1.35,0,3.25,17.27,45.24,-52.76,2,3,5,3,1,2,50,100,0,100,7.14,0,20,100,40,25.71,93.33,0,0,93.33,100,1,1,0,5,1,0,0,0,0,0,0,0,1,8,1,9,0.888888889,7,0.714285714,74,19 +151,1026,Infirmary,Immediate,Goal-assigned,Baseline,2,07:30pm,2,Low Threat,0,0.4,"ok so we walked in, and there were a bunch of rooms with different themes, there were a bunch of people in front and behind us, and there was screaming, and I feel like there was a medical theme, and we walked through that moving floor tunnel thing, and there was a women taking pictures of all the ""monsters"" in the rooms, and i think there was fog?, I think there was a bathtub full of blood, and I was second or third in the lineup for walking in and there was probably a guy hiding around a corner",1,54.26,52.11,99,20.23,3.03,3.03,0,0,7.07,1.01,6.06,3.03,0,0,2.02,0,2.02,0,0,0,0,0,0,0,0,0,0,0,5.05,0,0,0,0,0,0,5.05,0,0,1.01,1.01,0,0,1.01,0,1.01,0,0,1.01,0,4.04,27.27,0,4.04,20.2,1.01,1.01,1.01,2.02,5.05,37.1,55.79,27.7,27.81,5,2,4,2,5,1,68.67,0,45.78,0,100,36.67,100,36.67,100,0,0,50,0,100,52.63,1,1,0,9,0,0,0,0,1,0,0,0,1,11,2,13,0.846153846,11,0.818181818,99,18 +152,1026,Infirmary,Delay,Goal-assigned,Baseline,2,07:30pm,2,Low Threat,1,0.6,"ok so I truly dont remember Infirmary at all, I think it was a 3D theme with a bunch of neon lights but why that was supposed to be scary who knows. I know a guy, in the beginning, tried to hassle us before giving us our 3D glasses. and then we walked through the laser room which was one of the only truly scary parts of it. Then we walked through the actual section, and it was a bunch of 3D walls and paint coming off the walls but it truly just looked like paintball gone wrong. There was a moving tunnel of LEDs, but only the walls were moving so it was probably supposed to be an optical illusion. I also remember the guy at the end asking us to throw our glasses away, but other than that stuff I can only picture the color of the LED paints but even that might be wrong but I think they were yellow, orange and pink",1,34.86,43.61,80.67,3.11,5.42,4.22,0.6,0.6,18.67,1.81,16.87,3.61,1.2,3.01,1.2,1.81,6.02,1.2,2.41,0,2.41,1.2,0,1.2,1.2,0,0,0,8.43,1.81,0,0,0,1.2,0.6,6.63,0,0,0,1.2,0,0,0,0,0,0,0,0,0,1.81,13.86,0,4.22,5.42,4.82,0,0,0,1.81,-29.88,-7.68,-32.4,-49.55,2,5,1,5,2,2,16.47,100,20,80,0,56.99,0,37.5,12.5,100,100,0,17.17,85.86,85.86,4,2,0,11,1,0,0,0,0,0,0,0,4,18,4,22,0.818181818,17,0.647058824,166,18 +153,1026,Asylum,Delay,Goal-assigned,Baseline,2,07:30pm,1,Low Threat,0,0.75,"umm, there was a guy with a camera and he did a banging motion to scare ppl as they walked in. maybe there was a machete guy or some kind of medical scene with blood and medical instruments. steven was walking fast, I think I was second in the rooms. I was not that scared, but I think some people in the group were scared. I think it was a very lowkey haunted section, definitely scarier than the Infirmary section but not the scariest section in there. yeah, thats pretty much all Ive got, I assume it was a movie or film theme but beyond the camera dude, I dont remember any of the actors or their characters. ",1,41.22,3.75,99,1,0,0,0,0,18.64,0.85,16.1,4.24,0,0,5.93,0.85,8.47,0.85,5.08,0,5.08,4.24,0,4.24,4.24,0,0,0,7.63,0,0,0,0,0,0,7.63,0,0.85,0,3.39,0,0,0.85,0,0,0,0,0,0,2.54,14.41,0,3.39,10.17,0,0.85,0,0.85,2.54,53.29,83.83,1,75.04,1,3,4,2,2,1,100,0,25,29.35,55.43,40,0,100,26.96,47.83,0,93.88,93.88,100,100,4,0,0,5,2,0,0,0,0,2,0,0,3,11,5,16,0.6875,9,0.555555556,118,18 +154,1026,DevilsDen,Delay,Goal-assigned,Share,2,07:30pm,3,High Threat,0,0.2,"ok, so I was definitely the most scared during this section. within the first couple minutes of being in there, some actor came around a corner and jump scared me. I think the anticipation of waiting outside for a little bit added to the fear factor, not gonna lie. Then I think there was like a courtyard or at least tree and plant decorated area which another actor came out and scared me. And then I remember some actor blocking my path and not letting me go around the table and I was very angry and frustrated because he was determined to scare me however he was just extremely annoying and I think he said something along the lines of ""this is what happens when you dont follow the rules"" and overall it essentially ruined the rest of the section for me because I was so angry so that sucks, I think I remember some kind of red theme, maybe the lights or blood or costumes idk",1,22.91,1.33,99,1,0.6,0,0,0.6,16.17,0,14.97,4.19,1.2,0,2.99,1.2,5.99,1.2,6.59,0,5.99,5.99,0,5.39,2.99,2.4,0,0,5.99,1.8,0,0,0.6,0,0.6,4.19,0,0,0,1.8,0,0,0,0,0,0,0,0,0,2.4,11.38,0,2.4,8.38,1.2,0,0,0,2.4,21.53,81.75,27.17,-44.34,1,4,5,3,2,1,100,83.08,0,34.87,34.87,28.37,0,90.26,100,51.29,0,0,20.93,1.16,100,5,1,1,6,4,0,0,0,0,2,0,0,5,17,7,24,0.708333333,13,0.461538462,167,18 +155,1026,GhostlyGrounds,Immediate,Goal-assigned,Test,2,07:30pm,2,High Threat,0,0.4,"in the Ghostly Grounds section to first thing we did was walk onto the bus, and there were a bunch of what I assume to be mannequins but Im sure there was an actor in there somewhere and then we walked off the bus and into the building, and i think some guy scared me around the corner, and then there was the rooms with the cages and there was the box inside of the cage with the fake screaming girl in it, and there were two fake mannequins inside a cage dancing and there was a couple trying to decide which direction to take and there was moss on the ceiling and there was an actor slamming a cage on the ceiling i think and there were more cages and i think pipes. there was also a smoke machine around a few corners, I think the fog smelled too and there was also the mannequin on the bed covered in the sheet who sat up and there was an actor scaring people outside of a cage",1,69.97,43.4,96.89,2.01,1.7,1.14,0.57,0,5.68,0,5.68,3.41,0,0.57,1.14,0,1.14,0,2.84,0,2.84,1.14,0,1.14,1.14,0,0,0,6.25,1.7,0,0,0,1.14,0,4.55,0,0,0.57,0.57,0,0,0.57,0,0,0,0,0,0,1.7,19.89,0,2.27,17.05,0,0.57,0,0.57,1.7,-13.24,17.21,-24.67,-32.27,3,1,4,4,3,2,36.11,50,100,0,100,100,90,0,54,0,95.83,0,0,100,50,4,4,0,13,0,0,0,0,0,0,0,0,0,21,0,21,1,21,0.619047619,176,18 +156,1026,GhostlyGrounds,Delay,Goal-assigned,Test,2,07:30pm,2,High Threat,1,0.6,"we walked through a bus, into a section with cages, past the handicapable ramp which I thought was great for accessibility. I was expecting someone to scare me on the bus but no one did so either the actors are unengaged or they were all mannequins. Also in this section, there was a room full of cages, with some guy hanging out of one trying to convince ppl he wasnt real but then he would scare them. and there was a guy on a landing above our heads banging on a cage as we walked under the doorway and it wasnt scary but I did think about the possibility that the cage would collapse on my head and I would die soooo. after we finished the Ghostly Grounds section we ran into the woman at the end who told us we could go down one way or the kaleidoscope hallway, and we went down the kaleidoscope hallway which wasnt scary at all.",1,56.86,62.18,92.58,5.13,6.21,4.97,1.24,0,16.15,2.48,13.66,1.86,0,3.11,2.48,0.62,6.83,0,3.11,0.62,2.48,2.48,0,2.48,2.48,0,0,0,13.04,1.24,0,0,0,0,0.62,11.8,0,0,0.62,2.48,0,0,0,0,0.62,0,0,0,0,2.48,14.91,0,3.73,11.18,0,0.62,0,0.62,2.48,38.46,55.04,48.93,11.41,3,4,1,4,1,5,92.42,25,100,0,75,0,62.29,43.43,100,5.71,100,68.75,68.75,68.75,0,6,3,0,5,4,0,1,0,0,2,0,0,0,18,3,21,0.857142857,14,0.357142857,161,18 +157,1027,Infirmary,Delay,Goal-assigned,Baseline,2,07:30pm,2,Low Threat,0,0.6,"Infirmary was the first exhibit if I remember correctly, it was the one where they gave us glasses. Everything was super neon, and actually pretty cool. I felt more excited going through rather than scary. There were ladies on these elevated surfaces in the beginning and I keep remembering this bright neon orange in the beginning. We walked through walls that were lit up neon. It was probably the brightest exhibit we went through. I dont remember anything about the actors. Just the walls I was seeing as I went through. The smoke that was being used was almost 3D in a way that I cant explain because of the glasses. I remember opening these heavy curtains at one point and walking through a very dark part of the tour where the glasses didnt work because everything was pretty much pitch black. ",1,34.46,16,94.15,64.63,2.82,2.11,0.7,0,17.61,2.82,14.79,4.23,2.11,0.7,4.23,0.7,3.52,2.82,4.23,3.52,0.7,1.41,0.7,0.7,0.7,0,0,0,5.63,2.11,0,0.7,0,0,0.7,4.23,0,0,0.7,0,0,0,0,0,0,0,0,0,0,3.52,19.72,0,3.52,9.15,4.93,0,2.11,0,3.52,-25.49,-45.93,-19.51,-11.03,3,1,1,1,2,5,0,95.24,100,100,80.27,100,0,88.57,67.86,5.71,100,32.53,34.94,69.88,0,3,0,0,10,2,0,0,0,0,0,1,0,2,15,3,18,0.833333333,13,0.769230769,142,20 +158,1027,Asylum,Immediate,Goal-assigned,Baseline,2,07:30pm,1,Low Threat,0,0.75,. I just found out that Asylum was actually the movie themes one and it was really cool it was like an old movie there were signs everywhere for directors and there was a lady in a red dress and actors and it was kind of scary I think the scariest part was the guy that put his tooth drill towards me. I also remember the ground was little slippery nd it was very windy roads that we wnt through,1,23.13,54.96,63.35,8.55,2.5,1.25,0,1.25,11.25,1.25,10,3.75,0,0,2.5,2.5,1.25,1.25,3.75,1.25,2.5,2.5,0,2.5,2.5,0,0,0,7.5,1.25,0,1.25,0,0,0,7.5,0,0,1.25,2.5,0,0,1.25,0,0,0,0,0,0,3.75,12.5,0,1.25,8.75,1.25,0,1.25,1.25,3.75,-22.95,-23.33,-36.58,-8.93,3,1,1,1,3,2,0,0,100,100,0,100,100,0,0,0,100,0,100,100,50,1,0,0,7,3,0,0,0,0,0,0,0,0,11,0,11,1,8,0.875,81,20 +159,1027,Asylum,Delay,Goal-assigned,Baseline,2,07:30pm,1,Low Threat,1,0.5,"Asylum was the second part of the tour. It was twenties movie themed and there were signs all over that said director and cast and there were people dressed up like they were in the movie roles. There was a lady in a robe that was red and for some reason I remember seeing water fountains around. This exhibit was not very long, in fact it felt like the shortest one. We were walking around in very crammed spaces for most of it and I really dont remember it being that scary. I specifically remember one part of the tour where there was a makeshift dentist room and the actor had a drilll that he would move towards our faces when we walked by. I also remember the room with the lady in the red robe. She was in a bed in the middle of a dark room and that was the only thing in the room. That is all I can specifically remember. I dont remmeber the very beginning or end.",1,47.63,43.46,90.77,13.97,2.31,1.73,0,0.58,10.4,2.31,8.09,4.05,0.58,1.16,0.58,0.58,2.31,2.89,0.58,0,0.58,0.58,0,0.58,0.58,0,0,0,6.94,1.73,0,1.16,0,0,0.58,6.36,0,0,1.73,0.58,0,0,0.58,0,0,0,0,0,0,2.89,19.08,0,1.73,14.45,2.31,0,0.58,0.58,2.89,12.69,-24.53,-4.2,66.8,5,3,2,1,2,1,0,46.58,23.29,76.03,100,40,0,100,7.06,68.82,0,100,75,51.47,51.47,2,1,0,10,1,0,0,0,0,0,1,1,3,14,5,19,0.736842105,13,0.769230769,173,20 +160,1027,DevilsDen,Delay,Goal-assigned,Share,2,07:30pm,4,High Threat,0,0.6,"The most I remember from Devil's Den was the loud noises. At one point right before we walked out of the indoor part there was this guy above us that dropped a cage that was so loud it startled me. I believe Devil's Den was also the exhibit where we walked onto a school bus in the very beginning. I rememebr being scared of the school bus because I thought someone was going to pop out at us while we were in there and it was a very small space. I remember there was a levitating box and someone was inside banging on it and it was so loud. At the end of this tour I remember being able to go one of two ways and the way we went took us through a hallway with a bunch of old jail calls that the prisoners used to live in. It was so dark inside each of them and they were so small. I remember that part because I remember also seeing these cells in parts of the Devil's Den tour and it was so dark I was nervous that there were actors in them that were going to pop out, but no one ended up popping out of them at us and most parts of the exhibit where cells were there were not decorations around them. ",1,39.96,58.5,95.43,5.58,4.42,3.54,0.44,0.44,8.85,0.88,7.96,3.1,1.33,0,0.88,0,2.65,2.21,2.21,0,1.77,1.33,0,0.88,0.88,0,0,0,7.52,0,0,0,0,0,0,7.52,0,0,0,0.44,0,0,0.44,0,0,0,0,0,0,3.1,17.7,0,2.21,12.39,1.33,2.21,0,0.44,3.1,-3.87,-25.34,-3.39,17.11,2,5,4,1,3,5,0,100,100,9.8,9.8,9.01,42.86,0,0,100,64.49,33.33,33.33,100,0,4,1,0,12,3,0,1,0,1,0,1,0,0,20,3,23,0.869565217,17,0.705882353,226,20 +161,1027,GhostlyGrounds,Immediate,Goal-assigned,Test,2,07:30pm,3,High Threat,0,0.6,Ghostly Grounds was the last one we went through and at first we went through an old school bus and I remember thinking about if someone was going to jump out at me while I was on the bus because that would have been really scary. I liked this one a lot because we culd see into all the old prison cells but I think that distracted me from the actors themselves. there was also a loud shaking box and I think someone was inside of it slamming on it but this was definitel the loudest haunted house ou of all of them. we had to go up and don steps in this one and the ground like slipped under you at one pouint and I remember that because I almost ate it after someone JUMPED OUT AT ME he really got my heart rate going I think. ut it was cool how you could choose the last part which to go through and the koleidescope hall had all the abandoped cells in it. I cant really remember a lot of the actors in this one though but I had the most jump scares in this part of eastern state it was super awesome. ,1,42.04,29.16,97.61,14.8,2.46,1.97,0,0.49,16.26,1.48,14.78,4.43,1.97,1.48,2.46,1.48,4.43,1.48,4.43,1.97,2.46,1.48,0.49,0.99,0.99,0,0,0,6.9,0,0,0,0,0,0,6.9,0,0,0,0.49,0.99,0,0.49,0,0,0,0,0,0,3.94,13.79,0.49,5.42,6.9,0.49,0.99,0.49,1.48,3.94,28.35,48.08,16.92,20.07,3,4,2,2,3,3,83.33,0,100,2.5,70.83,30.77,76.92,0,100,21.15,40,100,0,62,21,4,1,0,6,2,0,1,0,1,4,1,0,1,13,8,21,0.619047619,11,0.545454545,203,20 +162,1027,GhostlyGrounds,Delay,Goal-assigned,Test,2,07:30pm,3,High Threat,1,0.6,"I really do not remember anything from Ghostly Grounds. I cannot even remember what the theme was of this part of the tour. I think that the only thing I can remember is the end when we were walking through a large dark space and an actor came up crawling and that startled me because I didnt even see them at first. Other than that, I really dont remember anything from Ghostly Grounds. I do not remember any of the actor or props.",1,8.62,1,99,20.23,1.23,1.23,0,0,28.4,2.47,25.93,7.41,1.23,2.47,4.94,2.47,9.88,6.17,1.23,0,0,1.23,0,0,0,0,0,0,4.94,0,0,0,0,0,0,4.94,0,0,0,0,0,0,0,0,0,0,0,0,0,1.23,8.64,0,3.7,2.47,2.47,0,0,0,1.23,-6.85,16.9,-14.32,-23.11,2,4,2,4,3,3,41.18,100,100,0,50,77.31,57.14,0,100,57.14,94.12,100,0,100,100,0,1,0,2,1,0,0,0,0,0,0,0,4,4,4,8,0.5,3,0.666666667,81,20 +163,1028,Infirmary,Immediate,Goal-assigned,Baseline,2,07:30pm,1,Low Threat,0,0.4,There were a bunch of clowns and colors and trippy objects and shapes. Not a lot of jump scares and I remember at the beginning we had to put on some 3d glasses in order to enhance the experience. One guy tried following me down a stairwell. Overall was the least scary in my opinion. All of the actors had face makeup. ,1,94.75,31.06,69.74,1.4,4.84,1.61,1.61,1.61,8.06,1.61,6.45,3.23,0,0,0,0,1.61,1.61,3.23,0,3.23,3.23,0,3.23,3.23,0,0,0,4.84,0,0,0,0,0,0,4.84,0,0,0,1.61,3.23,0,0,0,0,0,0,0,0,0,11.29,0,3.23,6.45,1.61,0,0,3.23,0,-30.58,-31.73,-50.95,-9.08,3,1,5,1,3,1,0,58.54,100,36.59,36.59,100,64.71,0,0,38.24,0,92.31,0,0,100,3,0,0,5,0,0,0,0,0,1,0,0,0,8,1,9,0.888888889,8,0.625,62,20 +164,1028,Infirmary,Delay,Goal-assigned,Baseline,2,07:30pm,1,Low Threat,1,0.8,In the Infirmary section we walked in and there was someone with a canvas that was painting and they pushed it toward us. Then we walked through this tunnel and they gave us some 3d glasses to make everything pop out more. I remember really big spiders and all of the images as we walked through were very trippy and colorful. There were a couple of clowns throughout that would follow you and try and jump scare you. There was a spinning tunnel that you crossed on this bridge. ,1,29.68,99,57.08,20.23,6.74,5.62,1.12,0,8.99,2.25,6.74,1.12,1.12,2.25,1.12,1.12,0,1.12,2.25,1.12,1.12,1.12,0,1.12,1.12,0,0,0,13.48,1.12,0,0,0,0,0,12.36,0,0,0,0,0,0,0,0,0,0,0,0,0,4.49,20.22,0,7.87,10.11,2.25,0,0,0,4.49,28.07,54.13,-0.85,30.94,1,2,3,2,3,1,100,0,100,66.67,3.92,50,100,0,50,61.76,0,0,100,0,0,5,2,0,5,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.416666667,89,20 +165,1028,Asylum,Delay,Goal-assigned,Baseline,2,07:30pm,1,Low Threat,0,0.5,In Asylum I remember we started walking through and there were some jumpscares in the beginning. I vividily remember on the way out walking through a bunch of strobe lights that made me feel like I was going to seize. There was also fog as we walked down this hallway with a lot of the old cells that people used to live in. I do not particularly remember much of the station but there was an instance with a jumpscare where someone came out of a hidden window backspace that I was not expecting.,1,86.35,11.47,99,20.23,3.16,2.11,0,1.05,11.58,0,11.58,4.21,2.11,0,3.16,0,3.16,3.16,0,0,0,0,0,0,0,0,0,0,3.16,0,0,0,0,0,0,3.16,0,0,0,0,0,0,1.05,0,0,0,0,1.05,0,7.37,22.11,0,5.26,12.63,3.16,0,1.05,1.05,8.42,2.22,-17.1,-19.98,43.76,3,4,2,1,2,1,0,66.67,100,0,66.67,75,0,25,100,50,0,100,0,100,0,2,0,0,0,0,2,1,0,3,1,1,0,1,2,9,11,0.181818182,2,0,95,20 +166,1028,DevilsDen,Immediate,Goal-assigned,Share,2,07:30pm,3,High Threat,0,0.4,"In Devil's Den you came in and there was some dude with a hook that went at you right away and then you continued through some other shops that looked like butchers and then you walked through this long hallway with very blinding lights that were white and made it seem like a rave. There were a few jumpscares throughout, too. The hallway had some rooms that looked abandoned.",1,60.52,93.24,82.12,7.29,0,0,0,0,4.35,0,4.35,1.45,1.45,0,1.45,0,1.45,0,1.45,0,1.45,0,0,0,0,0,0,0,7.25,0,0,0,0,0,0,7.25,0,1.45,0,1.45,0,0,0,0,0,0,0,0,0,5.8,23.19,0,4.35,11.59,7.25,0,0,0,5.8,53.34,84.33,44.76,30.94,1,2,4,4,5,1,100,66.67,33.33,0,74.36,25.71,100,62.86,62.86,0,0,0,0,100,0,3,1,0,4,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.5,69,20 +167,1028,DevilsDen,Delay,Goal-assigned,Share,2,07:30pm,3,High Threat,1,0.2,"In the Devil's Den section I remember walking in and there was a guy with some type of weapon, maybe a bat, that followed us in the beginning. As we continued to walk through a lot of the people seemed to have weapons. There were some at work at the ""Devil's Den"", too. There were a lot of machines throughout",1,98.32,77.41,89.39,20.23,5,3.33,1.67,0,5,0,5,3.33,0,0,3.33,0,0,1.67,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,1.67,0,0,0,0,0,0,0,0,0,5,16.67,0,3.33,13.33,0,0,0,0,5,-14,-22.95,-24.84,5.78,3,1,1,1,3,3,0,33.33,100,33.33,66.67,100,50,0,100,50,100,100,0,100,0,2,1,0,3,0,0,0,0,0,0,0,0,1,6,1,7,0.857142857,6,0.5,60,20 +168,1028,GhostlyGrounds,Delay,Goal-assigned,Test,2,07:30pm,4,High Threat,0,0,In the Ghostly Grounds section I remember starting by walking through a dimly lit bus with a bunch of actors in each seat. I believe that the theme in this one was more vampire like and i remember the fog machines being used creating a hazy environment. ,1,98.7,18.24,96.69,20.23,2.17,0,2.17,0,10.87,0,10.87,6.52,2.17,0,2.17,0,0,4.35,0,0,0,0,0,0,0,0,0,0,2.17,0,0,0,0,0,0,2.17,0,0,0,0,0,0,0,0,0,0,0,0,2.17,2.17,17.39,0,2.17,10.87,4.35,0,0,0,4.34,33.98,68.65,23.23,10.07,2,4,3,4,2,2,90,100,75,0,50,22.5,0,50,100,25,90,0,100,100,0,0,1,0,4,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.8,46,20 +169,1029,Infirmary,Immediate,Goal-assigned,Baseline,2,07:30pm,1,Low Threat,0,0.4,3D glasses. Neon colors. Spirals. Few actors. Cages. Spiders. Tanks. Splatter paint on the floors. Actor kicked art easel. ,1,98,90.88,70.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.26,0,5.26,0,0,0,0,0,0,0,10.53,0,0,0,0,0,0,10.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.32,0,10.53,10.53,5.26,5.26,0,0,0,NA,-11.67,NA,NA,4,1,1,1,1,1,0,0,0,100,0,50,50,50,50,50,50,50,50,50,50,0,0,0,9,0,0,0,0,0,0,0,0,0,9,0,9,1,9,1,19,20 +170,1029,Infirmary,Delay,Goal-assigned,Baseline,2,07:30pm,1,Low Threat,1,0.6,Infirmary was a 3d glasses exhibit. There were lots of polka dots. Everything was neon. There were big spiders and holes in the walls. There were orange and blue stripes on the walls. Lots of neon clowns. There were neon green/yellow pipes along the walls. There was a big neon blue cylinder with hazard signs on it. There was a big python at one point. I think there was a rockclimibing wall. Lots of mannequins. A part where you walk through just dots. Cargo boxes.,1,76.62,40.06,61.77,9.15,0,0,0,0,3.49,1.16,2.33,1.16,0,0,0,0,1.16,0,1.16,0,1.16,0,0,0,0,0,0,0,1.16,0,0,0,0,0,0,1.16,0,0,0,0,0,0,0,0,0,0,0,1.16,0,3.49,22.09,0,1.16,15.12,5.81,0,0,0,4.65,-13.42,-24.54,-46.65,30.94,2,1,4,1,2,1,0,100,35.71,67.86,67.86,100,0,0,38.3,0,0,0,0,100,0,0,1,0,14,0,0,0,0,0,0,1,0,0,15,1,16,0.9375,15,0.933333333,86,20 +171,1029,Asylum,Delay,Goal-assigned,Baseline,2,07:30pm,2,Low Threat,0,0.5,Asylum was about Hollywood. I remember walking through there were signs of the different stages with numbers on them. When you first walked in there was a man reading a newspaper behind a desk. It was dark. There was a real actress who was screaming something. There were flashing lights like a camera at points. There were a few different clapperboards.,1,69.92,68.33,79.1,20.23,0,0,0,0,8.06,0,8.06,1.61,0,0,1.61,1.61,3.23,1.61,0,0,0,0,0,0,0,0,0,0,8.06,0,0,0,0,0,0,8.06,0,0,1.61,1.61,0,0,1.61,0,0,0,0,0,0,4.84,20.97,0,3.23,11.29,4.84,1.61,0,1.61,4.84,-1.49,34.75,14.48,-53.71,3,4,1,4,5,2,58.97,89.74,100,0,66.67,33.85,33.85,20,100,0,100,0,0,0,0,1,0,0,9,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.9,62,20 +172,1029,DevilsDen,Immediate,Goal-assigned,Share,2,07:30pm,2,High Threat,0,0.6,"More actors in this one. Bones. Butchered meat on a board. Actor with axe/sledgehammer. Sign outside said MACHINE SHOP. Part where you walk through a box and it shakes. Actor slammed his fist against said box. That box was orange. Dark. Many turns. Actor screamed ""the machine will never stop."" ",1,83.1,82.38,46.57,4.72,0,0,0,0,5.88,1.96,3.92,0,0,0,0,0,3.92,0,1.96,0,1.96,0,0,0,0,0,0,0,15.69,3.92,0,0,0,0,3.92,11.76,0,0,0,1.96,0,0,0,0,0,0,0,0,0,1.96,17.65,0,5.88,5.88,3.92,1.96,0,0,1.96,NA,89.06,27.19,NA,1,3,1,4,2,1,100,57.89,57.89,0,0,22.73,0,100,75,50,50,50,50,50,50,0,1,0,11,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.916666667,51,20 +173,1029,DevilsDen,Delay,Goal-assigned,Share,2,07:30pm,2,High Threat,1,0.8,I remember there was meat hanging and attached to a board. There were a lot of cleavers and other blades. I think we walked through a box at one point and that box was orange. There were bodies hanging from the ceiling towards the end. ,1,77.34,27.89,97.42,20.23,2.22,2.22,0,0,6.67,0,6.67,4.44,0,0,0,0,2.22,2.22,0,0,0,0,0,0,0,0,0,0,2.22,0,0,0,0,0,0,2.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.78,0,2.22,13.33,2.22,0,0,0,0,-10.77,-8.94,-7.28,-16.1,5,1,1,1,5,2,0,66.67,33.33,0,100,100,66.67,66.67,100,0,100,0,100,0,0,1,1,0,6,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.75,45,20 +174,1029,GhostlyGrounds,Delay,Goal-assigned,Test,2,07:30pm,3,High Threat,0,0.6,This one was about vampires. There was a lot of red light. I remember strobe lights. I am pretty sure this one had a moving floor at one point. We walked through the actual eastern state cells I am not sure if this was just the exit to the attraction or if it was actually part of it. I remember this attraction was right after the Al Capone one. There were lots of animatronics in this one.,1,33.77,3.5,92.29,20.23,1.3,1.3,0,0,12.99,0,12.99,2.6,0,0,7.79,1.3,6.49,2.6,0,0,0,0,0,0,0,0,0,0,1.3,0,0,0,0,0,0,1.3,0,0,0,0,0,0,0,0,0,0,0,0,0,5.19,14.29,0,2.6,7.79,3.9,0,0,0,5.19,41.85,46.39,37.48,41.68,5,4,4,3,5,5,40.63,40.63,0,50,100,17.19,17.19,75,100,0,46.88,46.88,50,100,0,0,0,0,5,0,1,0,0,0,0,1,0,1,5,3,8,0.625,5,1,77,20 +175,1030,Infirmary,Delay,Goal-assigned,Baseline,2,07:30pm,2,Low Threat,0,0.2,Do not remember anything from “Infirmary”. There were a lot of vibrant colors (highlighter colors); I specifically remembered there were a lot of clowns wearing lab coats and running around. Spray cans at the start of section.,1,80.4,7.5,93.14,2.53,0,0,0,0,10.53,0,10.53,5.26,0,0,2.63,0,2.63,5.26,2.63,0,2.63,2.63,0,2.63,0,0,2.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.63,18.42,0,2.63,10.53,5.26,0,0,0,2.63,-12.11,-10.15,-32.99,6.82,5,1,3,1,5,2,0,41.18,52.94,5.88,100,100,20,68.57,22.86,0,43.75,0,100,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,5,1,6,0.833333333,5,1,37,20 +176,1030,Asylum,Immediate,Goal-assigned,Baseline,2,07:30pm,1,Low Threat,0,0.5,"Asylum was the least scary one out of all the attractions. Not much was remembered since it wasnt scary/memorable. Asylum had a lot of noises, however most of them werent jump scares. The music wasnt in a particular fast/slow beat. As far as I can remember, the scene was very bright (compared to the other attractions) meaning that I could see everything including what was in front and my surroundings. ",1,55.1,1,99,2.35,0,0,0,0,22.97,2.7,18.92,4.05,1.35,2.7,0,0,10.81,4.05,8.11,2.7,5.41,4.05,0,4.05,4.05,0,0,0,1.35,0,0,0,0,0,0,1.35,0,0,0,0,0,0,2.7,0,0,0,0,0,0,6.76,17.57,0,4.05,8.11,2.7,2.7,0,2.7,6.76,21.57,40.92,-2.76,26.55,3,5,2,5,3,1,65,30,100,65,0,17.95,35.9,0,35.9,100,0,100,0,33.33,35.71,1,0,0,5,0,0,0,0,0,2,0,0,1,6,3,9,0.666666667,6,0.833333333,74,20 +177,1030,Asylum,Delay,Goal-assigned,Baseline,2,07:30pm,1,Low Threat,1,0.5,"Honestly, I do not remember much from “Asylum”. “Asylum” had a lot of actors? and directors glooming around. A lot of the props were cinematic props. Setting was blueish/red instead of pitch black. ",1,85.2,13.82,22.12,2.17,2.78,0,0,2.78,11.11,0,11.11,2.78,0,0,0,2.78,5.56,2.78,2.78,0,2.78,2.78,0,2.78,0,0,2.78,0,5.56,0,0,0,0,0,0,5.56,0,0,0,0,0,0,5.56,0,0,0,0,0,0,5.56,8.33,0,0,2.78,5.56,0,0,5.56,5.56,-56.79,-36.58,-57.25,-76.54,2,1,5,1,2,2,0,100,100,100,11.11,100,0,0,0,61.54,87.5,0,0,0,100,0,0,0,4,0,0,0,0,0,0,0,0,1,4,1,5,0.8,4,1,36,20 +178,1030,DevilsDen,Immediate,Goal-assigned,Share,2,07:30pm,2,High Threat,0,0.4,"Devil's Den was relative scarier than ""Asylum"". The reason being that the music/beat was louder, there were seemingly more jump scares, and the actors were moving closer to us. I remember that rather than feeling scared, I was more concerned on not touching the actor, and wondering if there was something ahead of me that I could stumble on (reason being that the setting was very dark). I also remember there were a lot of flashes across a hallway. The flashes were more ""annoying"" than scary. ",1,35.13,7.37,96.89,1,1.14,1.14,0,0,18.18,0,18.18,7.95,2.27,1.14,4.55,0,5.68,2.27,9.09,1.14,6.82,6.82,0,5.68,4.55,1.14,0,0,4.55,1.14,0,0,1.14,0,0,3.41,0,0,0,0,0,0,1.14,0,0,0,0,0,1.14,1.14,17.05,0,3.41,5.68,3.41,2.27,2.27,1.14,2.28,25.03,4.31,40.9,29.88,5,4,2,1,5,1,0,0,0,5.26,100,24.6,51.59,65.08,100,0,0,100,0,11.76,11.76,1,0,0,4,4,0,0,0,0,1,0,0,0,9,1,10,0.9,5,0.8,88,20 +179,1030,DevilsDen,Delay,Goal-assigned,Share,2,07:30pm,2,High Threat,1,0.4,"Machine shop was seemingly more scary than the other attractions. There were loud noises (uncomfortable, not music), lots of jump scares, and the setting was very foggy. Since there were lots of screamings from other guests, it definitely made the experience way less scarier for me. There were TVs depicting graphic imagery along with workers wearing professional factory uniform. ",1,73,10.17,65.66,1,1.69,0,0,1.69,13.56,0,13.56,1.69,3.39,0,1.69,1.69,6.78,0,8.47,0,8.47,6.78,0,6.78,5.08,0,0,0,3.39,0,0,0,0,0,0,3.39,0,1.69,0,0,0,0,0,1.69,0,0,0,0,0,0,18.64,0,1.69,6.78,3.39,6.78,0,1.69,0,-8.69,-10.94,5.22,-20.36,3,3,1,1,5,2,0,0,100,0,18.18,80,40,100,100,0,100,0,50,50,0,1,0,0,5,2,0,0,0,0,1,0,0,0,8,1,9,0.888888889,6,0.833333333,59,20 +180,1030,GhostlyGrounds,Delay,Goal-assigned,Test,2,07:30pm,3,High Threat,0,0.6,"The Ghostly Grounds in my memories was considered one of the X series, meaning scarier series. Remember going through a bus, there were bodies laying in the seats. There were lots of jump scares, foggy setting, as well as a long tunnel towards the end of the session.",1,99,28.37,99,4.04,0,0,0,0,8.51,0,8.51,6.38,0,0,0,0,0,4.26,6.38,2.13,4.26,4.26,0,4.26,4.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.13,19.15,0,6.38,14.89,0,0,0,0,2.13,14.73,66.09,0.88,-22.77,5,3,1,2,2,3,56.25,0,6.25,37.5,100,45,0,100,25,0,100,100,0,0,0,1,2,0,2,0,0,0,0,0,0,1,0,0,5,1,6,0.833333333,5,0.4,47,20 +181,1032,Infirmary,Delay,Goal-assigned,Baseline,2,08:30pm,2,Low Threat,0,0.8,we walk into a bigish empty room with neon paint and words on the walls. Some creepy girl was on a scooter thing sliding around banging into walls. then we walk into a room with two girls in like disco clothing dancing on tables and a lady hands us 3D glasses. Then we walk into a room with a green laser light that replicates water so you couldnt see below you with some and people like bumping into you. Then we walk through a tunnel thats moving with a bride and over floor thats sliding. And after that i dont remember anything until we came back out where the girls were dancing. ,1,82.05,99,99,5.5,6.25,6.25,0,0,2.68,0,2.68,0.89,0,0.89,0.89,0,0,0.89,1.79,0,1.79,0.89,0,0.89,0.89,0,0,0,15.18,3.57,0,0.89,0,0,0.89,12.5,0,0,4.46,0,0,0,0,0.89,0,0,0,0,0,6.25,30.36,0,9.82,16.96,2.68,0.89,0,0.89,6.25,-3.78,41.18,2.78,-55.32,2,5,5,3,2,1,73.81,100,0,82.14,27.38,23.53,0,50.8,50.8,100,0,0,0,0,100,2,4,0,7,0,0,0,0,0,0,0,1,1,13,2,15,0.866666667,13,0.538461538,112,18 +182,1032,Asylum,Immediate,Goal-assigned,Baseline,2,08:30pm,4,Low Threat,0,0,"the man at the entrance yelled something about getting takes right we walk in past a man shooting a news casting who was banging on a table, then to a man starring at a table and then he reached his hand out like he was grabbing you, then past a women at what seemed to be a bar table saying something about seeing all these fresh faces, then past another man who was getting in peoples faces about casting I think and then we walked through the rest of the hallway and and out of the section. +remember a women in a red dress walking by who then came through a hidden door into the other side ",1,94.27,95.32,88.67,32.04,1.71,1.71,0,0,8.55,0.85,7.69,2.56,0,0,2.56,0,2.56,0.85,0.85,0.85,0,0,0,0,0,0,0,0,16.24,2.56,0,0,0,0,2.56,13.68,0,0,1.71,5.98,0,0,3.42,0,0,0,0,0.85,0,4.27,17.95,0,4.27,9.4,2.56,1.71,0.85,3.42,5.12,42.32,42.25,52.51,32.2,5,2,3,3,5,1,34.17,34.17,0,40,100,14.81,100,71.11,88.89,0,0,0,100,100,100,3,2,0,7,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.583333333,117,18 +183,1032,Asylum,Delay,Goal-assigned,Baseline,2,08:30pm,4,Low Threat,1,0.25,"First we walk to the door and some dude yelled in my face, then he said we could go in and we walk through the entrance. Then we come up to a newscaster guy he was starring at a camera and he was practicing takes of a scene. He then slammed his hand on the desk as we walked by. Then we go to another guy at a desk just starring into space very creepy like. we walk further and a women in red robe was walking towards us by a bar table and she went through a door in the wall we didnt see. then we walk out and that was the end of the Asylum. ",1,82.49,99,90.74,5.94,9.32,8.47,0.85,0,2.54,0,2.54,0,0,0.85,0,0,1.69,0,1.69,0,1.69,0.85,0,0.85,0.85,0,0,0,18.64,1.69,0,0,0,0,1.69,16.95,0,0.85,1.69,6.78,0,0,1.69,0,0,0,0,0,0,5.93,23.73,0,9.32,14.41,1.69,0.85,0,1.69,5.93,NA,-16.69,-47.6,NA,5,1,1,1,2,1,0,89.61,89.61,6.49,100,100,0,33.33,10.14,10.14,50,50,50,50,50,8,0,0,6,0,0,0,0,0,0,0,0,0,14,0,14,1,14,0.428571429,118,18 +184,1032,DevilsDen,Delay,Goal-assigned,Share,2,08:30pm,4,High Threat,0,0.6,we were stopped outside with a guy and an axe talking about stuff and then we walk through a room that red. we run into a dude with an chainsaw getting real close to us ad some more guys with axes and stuff that were around the place. we walked through this red box that was like a grinding machine or something and there was blood on the walls it looked like and i cant remember anything else ,1,57.4,90.19,74.77,20.23,6.41,6.41,0,0,8.97,0,8.97,1.28,0,1.28,3.85,1.28,3.85,1.28,0,0,0,0,0,0,0,0,0,0,11.54,1.28,0,0,0,0,1.28,10.26,0,1.28,0,3.85,0,0,1.28,0,0,0,0,0,0,6.41,17.95,0,3.85,10.26,3.85,0,0,1.28,6.41,-3.46,67.08,-22.15,-55.32,2,5,5,4,2,1,74.14,100,48.28,0,0,76.53,0,61.22,83.67,100,0,0,0,0,100,2,2,0,6,0,0,0,0,0,0,0,0,2,10,2,12,0.833333333,10,0.6,78,18 +185,1032,GhostlyGrounds,Immediate,Goal-assigned,Test,2,08:30pm,3,High Threat,0,0.8,"walked through the bus with the strobe lights and the ""people"" in the seats then through the gate part where a guy was banging on the bars and yelling and running around, then through the hallway there was a bunch of people in masks that kept popping out one was in its own cell thing and was reaching out, and there were people in capes running around gurgling and hissing, then we walked up the stairs and there were more people, and then there was a portion where their were bodies hanging from the ceiling and then walked through the rest of the hall and into the exit portion. +there was zapping noises and smoke at one point ",1,84.11,50.15,97.35,11.57,1.69,0.85,0,0.85,2.54,0,2.54,0,0,0,0,0,1.69,0,0.85,0,0.85,0,0,0,0,0,0,0,3.39,0.85,0,0,0,0,0.85,2.54,0,0,0,0.85,0,0,0,0,0,0,0,0,0,5.08,27.12,0,5.08,17.8,0.85,4.24,0,0,5.08,NA,83.24,66.05,NA,1,3,1,3,1,1,100,83.33,0,20.29,55.07,0,28.57,100,91.93,32.3,50,50,50,50,50,4,4,0,13,0,0,0,0,0,0,0,0,0,21,0,21,1,21,0.619047619,118,18 +186,1032,GhostlyGrounds,Delay,Goal-assigned,Test,2,08:30pm,3,High Threat,1,0.6,Ghostly Grounds we walk through a sketchy bus with dummies in the seats then through a metal cage gate area with some dude running around and banging on it then we walk up stairs with like wind blowing and smoke and then we walk past these creepy dudes in black outfits with capes and sketchy wrinkly masks on that kept hissing and running around. then some one was in a cage like hanging out and was reaching out to people. and there was a freezer section with like bodies hanging from the ceiling and there was a part where the floor was moving and some guy was standing on like this gate thing and pushed it down as if he was pushing it on us. and then we walked down the stairs and left. there was also a room with like taser sounds and lights flashing ,1,78.38,84.02,97.5,12.93,3.45,3.45,0,0,1.38,0,1.38,0,0,0,0.69,0,1.38,0,0.69,0,0.69,0.69,0,0.69,0.69,0,0,0,6.21,0,0,0,0,0,0,6.21,0,1.38,0,2.76,0,0,0,0,0,0,0,0,0,5.52,27.59,0,6.9,17.24,2.07,2.07,0,0,5.52,29.26,73.34,69.75,-55.32,1,5,5,2,1,1,100,0,60,20,20,0,28.57,42.86,85.71,100,0,0,0,0,100,4,5,0,11,0,0,0,0,0,0,0,0,0,20,0,20,1,20,0.55,145,18 +187,1033,Infirmary,Immediate,Goal-assigned,Baseline,2,08:30pm,4,Low Threat,0,0.4,"the room was filled with bright lights, paint was splattered everywhere, the floors began to move, characters were colorfully dressed, there was a scare In every corner",1,89.52,40.06,99,20.23,0,0,0,0,7.41,7.41,0,0,0,0,0,0,0,0,7.41,3.7,3.7,3.7,0,3.7,3.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,0,0,0,0,0,37.04,0,7.41,22.22,7.41,3.7,0,3.7,0,NA,66.56,15.81,NA,5,4,1,4,3,1,83.33,41.67,50,0,100,27.78,55.56,0,100,0,50,50,50,50,50,1,0,0,4,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.8,27,19 +188,1033,Infirmary,Delay,Goal-assigned,Baseline,2,08:30pm,4,Low Threat,1,0.4,"dancers were at the entrance, the floors moved, and there was paint splattered everywhere ",1,56.86,79.51,99,20.23,0,0,0,0,7.14,7.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,0,0,0,0,0,0,7.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.86,0,14.29,28.57,0,7.14,0,0,0,NA,39.04,-2.33,NA,2,4,1,3,2,1,50,100,0,0,0,50,0,50,100,75,50,50,50,50,50,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,1,3,1,14,19 +189,1033,Asylum,Delay,Goal-assigned,Baseline,2,08:30pm,5,Low Threat,0,0.75,there was a director in the entrance ,1,99,97.11,99,20.23,14.29,0,0,14.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.29,0,0,0,0,0,0,14.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.86,0,0,42.86,0,0,0,0,0,NA,-33.68,-58.26,NA,3,1,1,1,2,1,0,50,100,100,0,100,0,0,0,0,50,50,50,50,50,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,7,19 +190,1033,DevilsDen,Delay,Goal-assigned,Share,2,08:30pm,5,High Threat,0,0.8,the room was red and there was a man with a chainsaw,1,89.52,84.23,39.59,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.33,0,0,0,0,0,0,8.33,0,0,0,8.33,0,0,0,0,0,0,0,0,0,0,25,0,0,16.67,8.33,0,0,0,0,NA,42,11.75,NA,3,2,1,2,4,1,66.67,0,100,100,100,50,100,75,0,0,50,50,50,50,50,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,1,2,1,12,19 +191,1033,GhostlyGrounds,Immediate,Goal-assigned,Test,2,08:30pm,5,High Threat,0,0.6,"We began by entering a school bus, the room was red, smoke occasionally appeared, monsters were trapped in cages, men were disguised in black and white mask, some of the characters carried weapons such as knives",1,95.3,84.23,59.49,20.23,2.78,2.78,0,0,2.78,0,2.78,0,0,0,2.78,0,0,0,0,0,0,0,0,0,0,0,0,0,5.56,0,0,0,0,0,0,5.56,0,0,0,2.78,0,0,0,0,0,0,0,0,0,0,25,0,5.56,8.33,11.11,0,0,0,0,NA,75.04,50.45,NA,1,3,1,2,1,1,100,0,38.1,76.19,76.19,0,11.11,100,100,11.11,50,50,50,50,50,0,1,0,5,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.833333333,36,19 +192,1033,GhostlyGrounds,Delay,Goal-assigned,Test,2,08:30pm,5,High Threat,1,0.4,"we entered a bus that led to a red room, there were characters in black and white mask, and there were bodies hanging ",1,47.48,85.5,92.58,20.23,8.7,4.35,0,4.35,4.35,0,4.35,0,4.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.35,0,0,0,0,0,0,4.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.13,0,4.35,21.74,13.04,0,0,0,0,NA,39.57,-14.51,NA,2,4,1,4,2,1,50,100,50,0,0,80,0,80,100,100,50,50,50,50,50,0,2,0,2,0,0,0,0,0,0,0,0,0,4,0,4,1,4,0.5,23,19 +193,1034,Infirmary,Delay,Goal-assigned,Baseline,2,08:30pm,2,Low Threat,0,0.8,"I remember walking into Infirmary, which was a large room with two canvases on stands, and a person rolling through the room with them. The entire section was, of course, neon and bright. So was this room, which had neon murals of the city. Afterwards, we came into another room with two dancing figures on boxes, and one figure giving out 3D glasses. She ran out before me and the last member in our line could walk past, so we had to wait a moment. Afterwards, and upon putting on the 3D glasses, we came into several narrow, neon passageways. We walked through a spinning tunnel which was extremely disorienting, and continued to a part where some of the actors were dressed to camouflage with the surrounding neon.",1,87.23,75.49,99,30.91,4.69,4.69,0,0,10.94,0,10.94,3.91,0,0.78,0,2.34,3.91,0.78,0.78,0.78,0,0,0,0,0,0,0,0,9.38,0.78,0,0,0,0,0,7.81,0,0,0.78,0,1.56,0,0,0,0,0.78,0,0,0,0.78,21.88,0,7.81,13.28,0.78,0,0,2.34,0.78,12.3,79.79,33.14,-76.04,1,2,5,2,1,2,100,0,25,57,83,0,100,25,31,57,96.15,0,0,0,100,5,4,0,7,0,0,0,0,0,0,0,0,0,16,0,16,1,16,0.4375,128,19 +194,1034,Asylum,Immediate,Goal-assigned,Baseline,2,08:30pm,3,Low Threat,0,0.5,"Outside, while we were waitng, a man with makeup was talking to us. I wasnt sure what he was saying at first, and I furrowed my brow as I leaned in to hear. His hair was cut short and it was black. He was generally colored monotone. He said something along the lines of ""... these next takes need to be PERFECT"" where he triggered a loud noise like air being released suddenly. He was pretending to be talking to actors before a shoot, I imagine. Walking in, we rounded a corner where a man dressed, equally in monotone but with bloodstains and as a journalist, was standing over some desks. There was some voiceover dialogue which he was mouthing, and he then stamped suddenly close to us while triggering that same, loud release of air. After that, I am less sure but I believe we walked past a woman dressed in red, smiling who made no immediate effort to scare us. We walked into the next room, which seemed like rounding a grimy bathtub, and as we followed the path around, when we looked back towards the direction we had come, the woman in red triggered the loud air noise as she stepped into the room though a concealed curtain. Moving into the next room, there was what seemed to be a detective, very similar to the journalist but the entrance was facing him. After him, we walked past what seemed like a concierge, where a woman was sat rather calmly. She said something courteous as we walked past. I do not remember more.",1,51.97,84.23,89.39,25.1,4.92,4.55,0.38,0,10.98,0.38,10.61,2.27,1.52,0.38,2.65,0.38,4.17,0.38,2.65,1.52,1.14,1.14,0.76,0.38,0.38,0,0,0,15.15,3.03,0,0.38,0,0,2.27,12.12,0,0,1.89,4.55,0.38,0,0.38,0.38,0,0,0,0,0,4.17,19.32,0,3.03,11.36,2.27,3.03,0,1.14,4.17,-13.29,10.03,-31.81,-18.09,4,1,5,3,4,4,33.33,77.78,0,100,35.47,100,25,83.33,0,69.87,32.5,65,65,0,100,9,0,0,25,0,0,0,0,0,0,0,0,3,34,3,37,0.918918919,34,0.735294118,264,19 +195,1034,Asylum,Delay,Goal-assigned,Baseline,2,08:30pm,3,Low Threat,1,0.5,"At the entrance of Asylum was a man who was acting as a director and pretending we were actors, telling us that we had to get the next shots right. As he said this, he scared us by yelling and through a loud and sudden release of air. We went in and I remember the detective and journalists who were very similar in standing by their desks. I remember walking by the dentists, the concierge, and the woman dressed in red in her studio. She scared us by bursting into the room after hers, which had a tub in the middle.",1,81.16,99,32.94,4.72,6.86,5.88,0,0.98,4.9,0,4.9,1.96,0,0,0,0,1.96,1.96,1.96,0,1.96,1.96,0,1.96,1.96,0,0,0,21.57,2.94,0,0,0,0,2.94,18.63,0,0,3.92,2.94,1.96,0,1.96,0,0,0,0,0,0,2.94,14.71,0,1.96,9.8,0.98,1.96,0,3.92,2.94,21.62,46.94,10.16,7.77,5,2,3,3,4,2,42.86,19.05,0,75,100,48.72,100,89.74,0,53.85,95.24,0,100,100,0,4,2,0,9,0,0,0,0,0,0,0,0,0,15,0,15,1,15,0.6,102,19 +196,1034,DevilsDen,Immediate,Goal-assigned,Share,2,08:30pm,3,High Threat,0,0.6,"Waiting outside the Devil's Den was a large burly man with a huge hammer. He had a red jumpsuit on and was pacing back and forth by the entrance. Before we had gone in, here was a couple that asked whether they had to go up the stairs or to the left. The man remarked that it was hard to go through a gate unless you were a ghost. I didnt understand what they were talking about because I couldnt see past the entrance. He paced some more and then yelled to everyone in the line that we should keep our faces covered as we entered, or else they would rip off anything they saw... lips, nose, heads maybe. Then one of his colleague, a woman equally with gory makeup, came to his side. She held an axe, and had another axe strapped to her right leg. She asked what limbs we wanted to give up before entering. I wanted to make a joke and raise my arm, but I didnt. No one else said anything before we were let in. I dont remember much about the shop itself, it all seems to blur. But I remember people with red jumpsuits being at our sides, holding axes or hammers. I was swearing a lot as people scared at me, and more than once the actors would say that I should watch my tongue or they would rip it out. There was a crushing machine with gore in it and someone escorting us into it. After that, there was a man on a scaffold that slammed it down as we walked below him. We then walked into a long passegway with fog and strobe lights. There was a small person running around us with a cogstyledaxe. At first he didnt speak, but then he said something I dont remember.",1,36.52,63.13,68.52,20.23,4.87,3.9,0.65,0.32,13.64,1.3,12.01,1.62,0.65,2.6,3.25,0,5.52,0.97,1.3,0.65,0.65,0.32,0,0.32,0.32,0,0,0,15.58,3.9,0,0,0,0,2.92,11.69,0,0,1.3,3.25,0.65,0.65,0,0,0,0,0,0,0,3.9,14.29,0.32,3.57,8.44,2.27,0.32,0.32,1.3,3.9,67.92,84.15,40.82,78.78,1,2,4,2,1,1,100,0,22.22,24.59,58.47,0,100,40,43.77,74.26,0,98.39,73.79,100,50,8,1,0,16,0,3,0,0,0,0,0,0,6,25,9,34,0.735294118,25,0.64,308,19 +197,1034,DevilsDen,Delay,Goal-assigned,Share,2,08:30pm,3,High Threat,1,0.2,"I remember the start of the Devil's Den the most clearly. There was a bearded man with a hammer pacing outside the entrance who yelled at us to keep our faces covered or they would rip anything they saw off. He was then joined by a woman with two axes, on strapped to her right leg. She asked who of us wanted to volunteer a limb. The man in front of us asked whether or not they should go up the stairs, and the man with the hammer said the only way to go through the gate that led to the stairs was to be a ghost. I had not noticed the gate until we were being ushered in. In the tour itself, I remember going past several machines, with people in red jumpsuits yelling at us. There was the arm in the machine with a woman yelling at us, then a man by a machine which I do not remember, but I do remember the man said he would rip my tongue out if I didn’t mind my language, and the crushing machine. There was also the man with the chainsaw at some point.",1,86.43,67.13,70.12,43.1,4.62,4.1,0,0.51,12.82,1.03,11.79,2.56,0.51,2.05,2.05,0.51,5.13,2.05,1.54,1.54,0,0,0,0,0,0,0,0,16.92,4.62,0.51,0,0,0,3.59,12.31,0,0,2.05,4.1,0,0.51,0,0,0,0,0,0,0,3.59,12.82,0.51,1.54,9.23,1.03,1.54,0,0.51,3.59,-21.41,17.72,-21.41,-60.54,3,5,5,5,4,2,50,62.5,100,100,0,50,50,33.33,0,100,25,0,25,25,100,8,0,0,13,0,0,0,0,0,1,0,0,2,21,3,24,0.875,21,0.619047619,196,19 +198,1034,GhostlyGrounds,Delay,Goal-assigned,Test,2,08:30pm,3,High Threat,0,0.4,"I remember that the entrance to the Ghostly Grounds was a gray bus. The lady ushering us in told the two men behind us that they could not carry drink into the section. Climbing into the bus, you immediately notice the figures slumped onto the windows of the bus as strobe lights flash, giving you the barest glimpses of their presence. I thought that at any moment, one of them was going to startle us, I even kept turning around to make sure they hadn’t moved. As we exited the bus, there was a loud rattling noise. I didn’t see the man that did it, but as I walked past I saw him. I think he was old and bearded and was making the noise by dragging something rapidly across a laminated sheet. I yelled “What are you doing?!” In surprise and he responded with something like “Scaring you!”. After that, I remember a long passageway intercepted by cages and others, curtained passages. There were people with cloaks and demonlike masks. Being at the end of the line, the demons were walking behind me, and one of them decided to follow me ominously through the entirety of the tour. I remember that they and the other people in the group could choose to pass through the curtained passages to keep going. After this, we came into a mostly undecorated hallway that led us to the jail cells, which were no longer part of the “Ghostly Grounds”",1,75.69,61.96,90.7,8.69,3.28,2.46,0.41,0.41,11.48,0.41,11.07,3.69,1.23,0.82,1.64,0,3.28,1.23,2.87,0.41,1.64,1.64,0,0.82,0.82,0,0,0,10.66,1.64,0,0.41,0,0,1.23,9.43,0,0,0.41,2.05,0,0,0,0,0,0,0,0,0,3.69,17.21,1.64,4.1,8.2,2.05,1.64,0,0,3.69,25.46,79.69,52.01,-55.32,1,3,5,3,1,1,100,20,0,70,73.12,0,54.55,100,27.27,29.92,0,0,0,0,100,9,2,0,12,1,0,1,0,1,0,1,0,0,24,3,27,0.888888889,23,0.52173913,246,19 +199,1035,Infirmary,Delay,Goal-assigned,Baseline,2,08:30pm,1,Low Threat,0,0.4,The Infirmary section was neon themed and required us to wear special glasses. When we entered there were two women dancing on the table and another giving us the glasses. It was more of a creepy vibe than scary I would say. Going through the attraction was weird because the glasses just bent the light a made everything look funny. ,1,64.48,77.41,28.56,6.08,5,5,0,0,10,1.67,8.33,0,3.33,1.67,0,0,3.33,0,5,1.67,3.33,5,1.67,3.33,3.33,0,0,0,10,3.33,0,0,0,0,1.67,6.67,0,0,1.67,0,1.67,0,0,0,0,0,0,0,1.67,6.67,13.33,1.67,5,5,3.33,0,0,1.67,8.34,-0.68,-28.03,37.55,-11.56,3,3,4,1,1,1,0,0,100,100,100,0,50,100,0,0,0,0,0,100,100,2,0,0,4,2,0,0,0,0,0,0,0,0,8,0,8,1,6,0.666666667,60,21 +200,1035,Asylum,Immediate,Goal-assigned,Baseline,2,08:30pm,3,Low Threat,0,0.25,"There was a woman in a red dress at the end +This ranked one of the top two because something jumped out of a cabinet at me +The theme was like back stage at some production +It was the second attraction we visited +",1,98.31,67.32,53.52,20.23,4.65,2.33,2.33,2.33,4.65,0,4.65,0,2.33,0,2.33,0,0,0,0,0,0,0,0,0,0,0,0,0,6.98,2.33,0,0,0,0,0,4.65,0,0,2.33,0,0,0,0,0,0,0,0,0,0,6.98,16.28,0,2.33,11.63,2.33,0,0,0,6.98,38.02,71.44,11.69,30.94,1,4,3,5,2,1,100,65.22,100,39.13,0,42.11,0,84.21,100,100,0,0,100,0,0,1,0,0,2,0,0,0,0,0,0,2,0,0,3,2,5,0.6,3,0.666666667,43,21 +201,1035,Asylum,Delay,Goal-assigned,Baseline,2,08:30pm,3,Low Threat,1,0.5,Asylum was themed as behind the scenes at some type of production. Earlier in the begging there was a man doing something with a type writer. At the end there was a lady with a red dress. We first saw her in second to last room. There was a door for the actress to access the final room which she would try to use unexpectedly in order to scare us. ,1,98.2,95.12,31.69,2.07,7.04,2.82,1.41,2.82,8.45,0,8.45,0,1.41,2.82,1.41,0,1.41,0,2.82,0,2.82,1.41,0,1.41,1.41,0,0,0,11.27,1.41,0,1.41,0,0,0,11.27,0,0,5.63,1.41,1.41,0,1.41,0,0,0,0,0,0,1.41,16.9,0,0,14.08,2.82,0,0,2.82,1.41,NA,44.77,32.3,NA,2,2,1,5,1,1,86.67,100,33.33,100,0,0,100,100,6.25,100,50,50,50,50,50,1,1,0,4,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.666666667,71,21 +202,1035,DevilsDen,Immediate,Goal-assigned,Share,2,08:30pm,4,High Threat,0,0.4,"We waited outside for a little +We went in and there was a guy with an axe who said not to fear because its just an axe +Next we went outside and there was a person with a chain saw +There was a man standing above a door way and was went under him, a large metal gate dropped +There was a long hallway with strobe lights and fog machines at the end",1,89.52,94.56,97.3,7.77,4.11,4.11,0,0,2.74,0,2.74,0,1.37,0,0,0,1.37,0,1.37,0,1.37,1.37,0,1.37,1.37,0,0,0,12.33,1.37,0,0,0,0,1.37,10.96,0,0,0,4.11,0,0,0,0,0,0,0,0,0,1.37,27.4,0,5.48,19.18,2.74,0,0,0,1.37,33.26,71.26,-2.41,30.94,1,2,2,2,4,1,100,0,66.67,42.86,42.86,64.1,100,64.1,0,0,0,100,0,0,0,5,1,0,4,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.4,73,21 +203,1035,DevilsDen,Delay,Goal-assigned,Share,2,08:30pm,4,High Threat,1,0.6,"The Devil's Den was industrial themed. At the beginning there was a man with an axe who tried scaring us. After that we stepped outside and there was another person with a chainsaw. The outside portion was short and we quickly went back inside. Once back inside, the next thing I remember was the man standing on the ledge above the door. As we walked under the ledge, the gate that was in front of him would fall and cause a large bang. When we went through the door, we were in a long corridor that was filled with fog and had strobe lights flashing. ",1,83.32,97.11,99,10.73,6.67,5.71,0.95,0,3.81,0,3.81,0.95,0.95,0.95,0,0,0.95,0.95,0.95,0,0.95,0.95,0,0.95,0.95,0,0,0,10.48,0,0,0,0,0,0,10.48,0,0,0,2.86,0,0,0,0,0.95,0,0,0,0,2.86,27.62,0,4.76,20.95,1.9,0.95,0,0.95,2.86,39.77,29.97,27.46,61.88,3,2,3,2,1,1,50,0,100,25,0,0,100,0,50,50,0,0,100,100,0,5,1,0,8,0,0,0,0,0,0,0,0,0,14,0,14,1,14,0.571428571,105,21 +204,1035,GhostlyGrounds,Delay,Goal-assigned,Test,2,08:30pm,3,High Threat,0,0.6,In the Ghostly Grounds we started by walking through an old bus. There was nothing on the bus that was scary. After that we entered a building. This section used things like blasts of air to scare us. I remember walking up stairs at one point. At the top of the steps the floor was a special floor that moved as you stepped on it. ,1,95.8,87.7,96.5,1.56,4.69,4.69,0,0,4.69,1.56,3.13,1.56,1.56,0,0,0,0,1.56,3.13,0,3.13,3.13,0,3.13,3.13,0,0,0,6.25,0,0,0,0,0,0,6.25,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,20.31,0,9.38,10.94,0,0,0,0,3.13,22.36,37.97,-1.83,30.94,4,2,3,3,4,1,60,40,0,100,25,60,100,80,0,86.67,0,0,100,0,0,2,3,0,2,1,0,0,0,0,0,0,0,0,8,0,8,1,7,0.285714286,64,21 +205,1036,Infirmary,Delay,Control,Baseline,0,06:15pm,1,Low Threat,0,0.2,"It was very trippy, I walked in and got glasses, green walls, there was a bunch of neon paint and neon lights, there were rooms with mirror, rooms with bright colorful lights, there was also a tunnel vision room with a wobbly floor, and a spinning tunnel room with lights, the area was well lit and relatively close and compact. after we left there was a lady to collect the glasses. +",1,61.59,48.42,96.56,83.63,1.41,1.41,0,0,1.41,0,1.41,0,0,0,0,0,1.41,0,4.23,4.23,0,0,0,0,0,0,0,0,2.82,1.41,0,1.41,0,0,0,2.82,0,0,1.41,0,0,0,2.82,0,0,0,0,0,0,1.41,35.21,0,4.23,19.72,11.27,0,0,2.82,1.41,-14.3,-30.11,-43.73,30.94,5,1,3,1,2,1,0,53.13,53.13,53.13,100,100,0,0,56.6,28.3,0,0,100,0,0,2,2,0,9,0,0,0,0,0,0,0,0,0,13,0,13,1,13,0.692307692,71,21 +206,1036,Asylum,Immediate,Control,Baseline,0,06:15pm,2,Low Threat,0,0.5,"1940s Hollywood feel, stage lights, movie camera, dressing room, radio station, detective, dream state, red lipstick, fog machine",1,89.52,72.07,10.18,20.23,0,0,0,0,5.56,0,5.56,5.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.56,0,0,0,0,0,0,5.56,0,0,0,0,0,0,0,0,0,0,0,0,0,11.11,22.22,0,0,5.56,11.11,0,5.56,0,11.11,NA,NA,NA,-53.71,1,1,1,1,1,2,50,50,50,50,50,50,50,50,50,50,100,0,0,0,0,0,1,0,7,1,0,0,0,0,0,0,0,0,9,0,9,1,8,0.875,18,21 +207,1036,Asylum,Delay,Control,Baseline,0,06:15pm,2,Low Threat,1,0.5,"1930s Hollywood feel, detective, dentist chair, radio playing, man in suit behind desk, backstage dressing room, movie camera and set, mental psych ward?, blue gray color scale ",1,93.76,80.61,27.44,77.5,0,0,0,0,7.41,0,7.41,3.7,0,0,0,0,0,0,3.7,3.7,0,0,0,0,0,0,0,0,7.41,0,0,0,0,0,0,7.41,0,0,0,3.7,0,0,0,0,0,0,0,0,0,3.7,25.93,0,0,11.11,11.11,0,3.7,0,3.7,-14.57,-11.67,21.68,-53.71,2,4,1,1,1,2,0,100,0,0,0,0,0,0,100,0,100,0,0,0,0,0,1,0,9,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.9,27,21 +208,1036,DevilsDen,Immediate,Control,Baseline,0,06:15pm,3,High Threat,0,0.6,"Chainsaw, gasoline smell, man in a cage, stairs, compressed air gun sounds, yellow, ",1,99,81.78,2.93,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.69,0,7.69,0,0,0,0,0,0,0,7.69,0,0,0,0,0,0,7.69,0,0,0,7.69,0,0,0,0,0,0,0,0,0,0,23.08,0,0,7.69,7.69,7.69,0,0,0,NA,-11.67,NA,NA,2,1,1,1,1,1,0,100,0,0,0,50,50,50,50,50,50,50,50,50,50,0,0,0,6,0,0,0,0,0,0,0,0,0,6,0,6,1,6,1,13,21 +209,1036,DevilsDen,Delay,Control,Baseline,0,06:15pm,3,High Threat,1,0.6,"I remember a man rushing us with a chainsaw and the smell of gasoline, sight story, the smell of gasoline. the yellow light of the street lamps, dentist chair?",1,99,78.45,7.91,20.23,3.45,3.45,0,0,3.45,0,3.45,3.45,0,0,0,0,0,3.45,0,0,0,0,0,0,0,0,0,0,10.34,3.45,0,0,0,0,3.45,6.9,0,0,0,3.45,0,0,0,0,0,0,0,0,0,3.45,13.79,0,0,3.45,10.34,0,0,0,3.45,-45.09,-26.81,-54.75,-53.71,2,1,1,1,3,2,0,100,50,100,10,100,50,0,0,0,100,0,0,0,0,1,0,0,2,0,0,0,0,2,0,0,1,1,3,4,7,0.428571429,3,0.666666667,29,21 +210,1036,GhostlyGrounds,Delay,Control,Baseline,0,06:15pm,2,High Threat,0,0.4,"Prison Bus, walking up a set of stairs, long hallway with metal gate slam, prison cell block",1,99,40.06,97.97,1,11.76,0,0,11.76,0,0,0,0,0,0,0,0,0,0,17.65,0,17.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.88,29.41,0,11.76,17.65,0,0,0,0,5.88,NA,35.84,NA,NA,2,1,1,4,1,1,50,100,66.67,0,0,50,50,50,50,50,50,50,50,50,50,1,1,0,0,0,0,2,0,0,0,0,0,0,2,2,4,0.5,2,0,17,21 +211,1037,Infirmary,Delay,Control,Baseline,0,06:15pm,4,Low Threat,0,0.4,"I found Infirmary very innovative due to the 3D glasses, but I hated it for that exact reason. An actor handed out glasses at the beginning and there was a lady dancing on a table. There were yellow, orange, green, and pink fluorescent spiders and machine parts that popped out at you when you wore the glasses. There were air guns and clowns on stilts. Just before the guy on stilts was a spinning tunnel with multicolored 3D dots.",1,78.11,62.57,73.13,8.44,0,0,0,0,5.06,0,5.06,2.53,1.27,0,0,0,2.53,0,1.27,0,1.27,1.27,0,1.27,0,1.27,0,0,7.59,2.53,0,1.27,0,0,0,6.33,0,0,1.27,1.27,0,0,0,0,0,0,0,0,1.27,2.53,16.46,0,2.53,6.33,7.59,0,0,0,3.8,-14.32,14.1,-12.91,-44.15,5,1,1,3,5,3,30,90,0,60,100,100,22.41,74.14,100,0,100,50,0,0,0,2,1,0,9,0,0,0,0,0,2,0,0,0,12,2,14,0.857142857,12,0.75,79,22 +212,1037,Asylum,Immediate,Control,Baseline,0,06:15pm,2,Low Threat,0,0.25,"It was a creepy backstage section, with Detectives and a woman in red. There were lots of cobwebs, old machinery (film projectors, operating tables, desks with documents and photos), and doorways that let the actors scare us in other parts. One of the Detectives was holding a magnifying glass. The Detectives were wearing fedoras and trench coats. One Detective kept slamming his rotary phone on the receiver. There was lots of fog, I suppose simulating cigarette smoke and dust. ",1,85.63,81.39,16.07,1,1.27,1.27,0,0,5.06,0,5.06,0,0,0,1.27,0,2.53,0,3.8,0,3.8,2.53,0,2.53,2.53,0,0,0,11.39,1.27,0,0,0,0,1.27,10.13,0,0,1.27,1.27,0,0,1.27,0,0,0,0,0,0,0,10.13,0,1.27,7.59,1.27,0,0,1.27,0,-16.74,48.02,-42.94,-55.32,3,1,5,4,2,1,75,25,100,0,55,100,0,50,0,63.33,0,0,0,0,100,1,0,0,14,1,0,0,0,0,0,0,0,0,16,0,16,1,15,0.933333333,79,22 +213,1037,Asylum,Delay,Control,Baseline,0,06:15pm,2,Low Threat,1,0.25,"It was a movie backlot set with multiple detectives. They were trying to solve a mystery, maybe who murdered the lady in red? The lady in red stood beside an operation table after she walked through a backroom from a makeup counter. ",1,99,97.11,12.96,3.2,4.76,0,4.76,0,9.52,0,9.52,2.38,0,2.38,4.76,0,0,0,2.38,0,2.38,0,0,0,0,0,0,0,16.67,7.14,0,4.76,2.38,0,0,14.29,0,0,7.14,0,0,0,0,0,0,0,0,0,0,0,16.67,0,2.38,9.52,4.76,0,0,0,0,4.02,-17.39,-1.48,30.94,3,2,2,1,3,1,0,0,100,55,100,50,100,0,28.13,0,0,100,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,1,7,1,8,0.875,7,1,42,22 +214,1037,DevilsDen,Immediate,Control,Baseline,0,06:15pm,5,High Threat,0,0.2,"There were lots of machines and it seemed like many more actors in this section than the others. The machinery was rusty and large. Many of the actors were wearing service jumpsuits and carrying weapons (like a wrench or crowbar). There was a section with a dentist who had a head on his chair with teeth stuck into it. There was a guy with a chainsaw (which reeked of gasoline) on our way into the section. There was a guy overhead a doorway that dropped a large metal grate above our heads. The actors had face paint on. I remember it being the most scary of the four. There was lots of steam and hissing valves. Also, there were taserlike electrical things in the wall.",1,87.17,68.12,63.35,6.44,1.6,1.6,0,0,4.8,0,4.8,1.6,0,0,1.6,0,3.2,0.8,1.6,0,1.6,0.8,0,0.8,0.8,0,0,0,7.2,0,0,0,0,0,0,7.2,0,0,0,2.4,0,0,0,0,0,0,0,0,0,1.6,16,0,1.6,13.6,0,0.8,0,0,1.6,-38.28,-23.59,-36.77,-54.49,3,5,1,1,3,2,0,40,100,20,20,50,25,0,0,100,100,0,0,50,50,0,1,0,17,0,0,0,0,0,1,0,0,1,18,2,20,0.9,18,0.944444444,125,22 +215,1037,DevilsDen,Delay,Control,Baseline,0,06:15pm,5,High Threat,1,0.8,"I remember this being the most anxietyinducing along with Infirmary. It was very disorienting because of the loud noises and strobe lights. I felt like I had to walk really slowly because I couldnt see well. The worst part was not knowing when the actors would jump at you during the strobe light sections. Also, towards the end there was a guy above a doorway that dropped a metal gate and he laughed. There was also a meat freezer where bodies hung. I think this may have been the section with the tunnel of faces as well?",1,40.94,19.15,91.75,20.23,0,0,0,0,12.37,0,12.37,4.12,2.06,2.06,1.03,1.03,2.06,1.03,6.19,3.09,3.09,2.06,1.03,1.03,1.03,0,0,0,5.15,1.03,0,0,0,0,1.03,4.12,0,0,0,2.06,2.06,0,0,0,0,1.03,0,0,0,4.12,19.59,0,4.12,9.28,3.09,2.06,1.03,3.09,4.12,-9.76,45.1,-29.62,-44.78,3,1,1,2,3,4,69.51,0,100,75.61,75.61,100,100,0,39.22,39.22,100,48.65,54.05,0,54.05,1,2,0,7,0,0,0,0,0,2,0,0,0,10,2,12,0.833333333,10,0.7,97,22 +216,1037,GhostlyGrounds,Delay,Control,Baseline,0,06:15pm,4,High Threat,0,0.2,"We had to enter the section through a white bus. There were dummies and actors sitting in the seats, but you couldnt tell who was which due to the strobe lights. During this part, I remember that my anxiety was very high. I honestly do not remember anything after that. ",1,19.3,12.41,99,4.56,2,2,0,0,18,0,18,4,0,2,2,2,8,4,2,0,2,2,0,2,2,0,0,0,10,2,0,0,0,0,2,8,0,0,0,0,4,0,0,0,0,0,0,0,0,2,16,0,2,10,4,0,0,4,2,65.79,94.32,84.47,18.59,1,5,2,4,1,1,100,33.33,33.33,0,0,0,50,75,75,100,0,100,0,100,100,0,1,0,3,1,0,0,0,0,0,0,0,1,5,1,6,0.833333333,4,0.75,50,22 +217,1038,Infirmary,Immediate,Control,Baseline,0,06:15pm,2,Low Threat,0,0.6,We were given 3d glasses to wear when going through the tour. There were many neon colors and it looked like a Stanley Kubrick movie. I did not feel very scared in Infirmary because there werent too many jump scares. I remember mostly just the neon colors and seeing things weird because of the glasses. ,1,24.99,8.91,74.91,1,1.82,1.82,0,0,12.73,0,12.73,3.64,3.64,0,1.82,0,3.64,1.82,3.64,0,3.64,3.64,0,3.64,3.64,0,0,0,1.82,0,0,0,0,0,0,1.82,0,0,0,0,0,0,0,0,0,0,0,0,1.82,3.64,18.18,0,3.64,5.45,7.27,0,1.82,0,5.46,52.21,76.69,36.08,43.85,1,4,4,4,1,1,100,33.33,33.33,0,100,0,25,25,100,0,0,0,50,100,50,3,0,0,3,1,0,0,0,0,0,0,1,0,7,1,8,0.875,6,0.5,55,21 +218,1038,Infirmary,Delay,Control,Baseline,0,06:15pm,2,Low Threat,1,0.2,There were a lot of neon colors and it was pitched black in there. We were given 3d glasses. There was a big spider. You put the glasses in a bin at the end. There was a platform we walked through and everything was spinning around me. Everything seemed closer to me than they were because of the glasses. It felt like a Stanley Kubrick movie with all of the colors. ,1,76.47,72.47,85.48,20.23,2.82,2.82,0,0,9.86,4.23,5.63,2.82,1.41,0,1.41,0,1.41,0,0,0,0,0,0,0,0,0,0,0,5.63,0,0,0,0,0,0,5.63,0,0,0,0,0,0,0,0,0,0,0,0,0,2.82,21.13,0,4.23,11.27,4.23,0,1.41,0,2.82,-2.51,-19.72,-8.86,21.07,3,4,4,1,5,1,0,9.09,100,54.55,100,90.67,40,60,100,0,0,0,0,100,33.33,2,1,0,6,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.666666667,71,21 +219,1038,Asylum,Delay,Control,Baseline,0,06:15pm,1,Low Threat,0,0.5,"I do not remember Asylum very much, I am not sure which one that was because I may now be confusing all of them. I believe there may have been detectives with big magnifying glasses screaming in peoples faces and asking questions. ",1,1.85,1,98.53,3.38,0,0,0,0,27.91,2.33,25.58,6.98,2.33,0,13.95,0,6.98,2.33,2.33,0,2.33,2.33,0,2.33,0,0,0,0,9.3,2.33,0,0,0,0,2.33,6.98,0,0,0,0,0,0,2.33,0,0,0,0,0,0,9.3,6.98,0,0,4.65,0,2.33,0,2.33,9.3,15.22,-29.25,19.62,55.28,4,2,3,1,5,1,0,0,88.89,100,100,65.96,100,82.98,57.45,0,0,50,100,6.25,6.25,2,0,0,2,0,0,0,0,0,0,0,0,2,4,2,6,0.666666667,4,0.5,43,21 +220,1038,DevilsDen,Delay,Control,Baseline,0,06:15pm,4,High Threat,0,0.6,I remember we were taken on a bus at first and there were strobe lights on the bus. Someone put their hand in front of my face and it scared me. Then we were taken inside and there was a big box jangling. I remember it because it was very loud. I also remember the meat locker with the bodies hanging upside down. I accidentally bumped into one. I also remember going up and then down stairs at different points. It felt like there were maybe 3 levels to this section of the tour. I also remember at some point the floor boards were moving like a treadmill because I almost fell. ,1,46.07,21.49,99,11.2,1.79,1.79,0,0,10.71,0,10.71,5.36,1.79,0,2.68,0,0.89,4.46,0.89,0,0.89,0.89,0,0.89,0.89,0,0,0,3.57,0,0,0,0,0,0,3.57,0,0,0,0,0,0,1.79,0,0,0,0,0,0,2.68,19.64,0,4.46,12.5,0.89,1.79,0.89,1.79,2.68,44.7,67.94,22.07,44.08,1,2,4,2,3,1,100,0,74.24,39.39,74.24,14.56,100,0,44.66,0,0,0,67.14,100,67.14,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,21 +221,1038,GhostlyGrounds,Immediate,Control,Baseline,0,06:15pm,4,High Threat,0,0.6,"This was the last section of the tour. The first thing we did was go through a bus. I did not like that because there were strobe lights. Also, I did not like it because a man put his hand in my face. then we were led into a maze sort of thing and there were many loud noises and jump scares. I remember we went up like 3 different levels and there was a point where the floor was moving. there was also a section where there were strobe lights and things that looked like bodies hanging upside down. ",1,21.43,34.37,98.38,4.56,4,3,0,1,9,0,9,1,3,0,2,0,3,1,2,0,2,1,0,1,1,0,0,0,5,0,0,0,0,0,0,5,0,0,0,2,0,0,0,0,0,0,0,0,0,5,25,0,5,16,3,2,0,0,5,39.76,72.42,19.39,27.46,1,2,2,2,4,1,100,0,60,40,20,20,100,40,0,40,0,100,0,33.33,33.33,2,2,0,7,2,0,0,0,0,0,1,0,0,13,1,14,0.928571429,11,0.636363636,100,21 +222,1038,GhostlyGrounds,Delay,Control,Baseline,0,06:15pm,4,High Threat,1,0.2,"I mixed up the Devil's Den and the Ghostly Grounds. I hope it is possible to switch these answers. The Devil's Den was where the dentist was and he was screaming about taking teeth out. There was also the woman on the phone screaming about someone getting married I think. There was also a man with a chainsaw. It was very loud and smelled like gasoline. Where he had the chainsaw was in this outdoor, atrium looking area. It kind of looking like the desert. ",1,53.29,61.28,18.08,37.34,1.19,1.19,0,0,8.33,0,8.33,2.38,0,1.19,5.95,0,0,0,1.19,1.19,0,1.19,1.19,0,0,0,0,0,9.52,2.38,0,0,0,0,2.38,7.14,1.19,0,1.19,3.57,0,1.19,2.38,0,0,0,0,0,0,3.57,16.67,0,0,10.71,2.38,3.57,0,3.57,3.57,26.05,67.69,20.68,-10.22,1,4,5,4,5,1,100,100,100,0,18.75,58.44,58.44,79.22,100,0,0,0,88.89,0,100,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,21 +223,1039,Infirmary,Immediate,Control,Baseline,0,06:15pm,3,Low Threat,0,0,"the tunnel, clown blocking my way, 3D trippy stuff, lady giving out 3D glasses, ",1,89.52,40.06,72.58,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,7.14,0,7.14,0,0,0,7.14,0,0,7.14,0,0,0,0,0,0,0,0,0,0,7.14,14.29,0,0,14.29,0,0,0,0,7.14,NA,56.07,43.36,NA,1,2,1,2,1,1,100,0,0,100,0,0,100,100,0,0,50,50,50,50,50,0,1,0,3,0,0,0,0,0,0,0,0,0,4,0,4,1,4,0.75,14,22 +224,1039,Infirmary,Delay,Control,Baseline,0,06:15pm,3,Low Threat,1,0,"spinning tunnel, clown, 3D glasses pickup, 3D glasses drop off, polka dots, lots of colors, swampy entrance ",1,98.34,40.06,46.57,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.53,0,11.76,5.88,5.88,0,0,0,0,NA,-23.33,NA,NA,3,1,1,1,1,1,0,0,100,100,0,50,50,50,50,50,50,50,50,50,50,2,1,0,3,0,0,1,0,0,0,0,0,0,6,1,7,0.857142857,6,0.5,17,22 +225,1039,Asylum,Delay,Control,Baseline,0,06:15pm,2,Low Threat,0,0.25,I honestly do not remember anything from this section. I remember it not being scary though. ,1,1,1,99,1,0,0,0,0,43.75,0,43.75,12.5,0,0,6.25,6.25,18.75,12.5,6.25,0,6.25,6.25,0,6.25,6.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.25,0,0,6.25,0,0,0,0,0,2.29,-11.67,-25.24,43.76,2,1,2,1,2,1,0,100,0,0,0,100,0,80,80,80,0,100,0,100,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,2,0.5,0,0,16,22 +226,1039,DevilsDen,Immediate,Control,Baseline,0,06:15pm,4,High Threat,0,0.4,"lots of axes, man swinging axe in my face, metal pipe, tunnel at end, strobing lights in tunnel, people scaring from behind in tunnel, moving floor, chainsaw ",1,99,40.06,99,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,0,3.7,3.7,0,3.7,3.7,0,0,0,3.7,0,0,0,0,0,0,3.7,0,0,0,3.7,0,0,0,0,0,0,0,0,0,3.7,29.63,0,7.41,18.52,3.7,0,0,0,3.7,NA,-24.51,21.68,NA,3,2,1,1,1,1,0,0,100,100,14.29,0,100,0,0,0,50,50,50,50,50,2,1,0,5,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.625,27,22 +227,1039,DevilsDen,Delay,Control,Baseline,0,06:15pm,4,High Threat,1,0.6,"lady with axes at beginning, chainsaw, people swinging axes in my face, long tunnel with flashing lights, limbs, ",1,99,40.06,96.01,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.56,5.56,0,5.56,0,0,0,5.56,0,0,5.56,0,0,0,0,0,0,0,0,0,0,11.11,27.78,0,5.56,11.11,11.11,0,0,0,11.11,NA,66.3,21.68,NA,1,3,1,2,1,1,100,0,50,66.67,0,0,0,100,0,0,50,50,50,50,50,1,1,0,3,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.6,18,22 +228,1039,GhostlyGrounds,Delay,Control,Baseline,0,06:15pm,4,High Threat,0,0.4,"someone popping out of wall trying to grab my face, people in jail cells, dark bus at beginning with people in seats,",1,99,40.06,79.84,20.23,4.55,0,4.55,0,9.09,0,9.09,0,0,4.55,4.55,0,0,0,0,0,0,0,0,0,0,0,0,0,4.55,0,0,0,0,0,0,4.55,0,0,0,0,0,0,4.55,0,0,0,0,0,0,13.64,27.27,0,0,18.18,4.55,0,4.55,4.55,13.64,NA,67.14,-36.58,NA,5,1,1,2,3,1,66.67,0,16.67,16.67,100,100,100,0,0,0,50,50,50,50,50,2,0,0,3,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.6,22,22 +229,1040,Infirmary,Immediate,Control,Baseline,0,06:15pm,1,Low Threat,0,0.6,I remember it not being so scary. just some 3D glow effects and spiders and a clown. the spinning room made a little dizzy. ,1,26.1,1.71,89.39,1,0,0,0,0,16.67,0,16.67,8.33,8.33,0,0,0,4.17,4.17,4.17,0,4.17,4.17,0,4.17,4.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.67,0,4.17,4.17,4.17,0,4.17,0,0,-22.07,-12.54,-37.58,-16.1,4,1,1,1,4,2,0,0,0,100,62.5,100,75,50,0,0,100,0,100,0,0,0,1,0,4,1,0,0,0,0,0,0,0,0,6,0,6,1,5,0.8,24,22 +230,1040,Infirmary,Delay,Control,Baseline,0,06:15pm,1,Low Threat,1,0.6,This one was the one with the 3D glasses and spiders. Moving tunnel and clowns,1,77.34,40.06,1.91,20.23,0,0,0,0,13.33,13.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.67,0,6.67,0,0,0,0,0,0,NA,-20.21,-47.9,NA,2,1,1,1,2,1,0,100,50,0,0,100,0,0,50,50,50,50,50,50,50,0,1,0,3,0,0,0,0,0,0,0,0,0,4,0,4,1,4,0.75,15,22 +231,1040,Asylum,Delay,Control,Baseline,0,06:15pm,1,Low Threat,0,0.25,"dont really remember this one +",1,1,1,63.35,20.23,0,0,0,0,40,0,40,20,0,0,0,20,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,-10.53,30.94,1,1,3,1,3,1,50,50,50,50,50,100,100,0,100,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,5,22 +232,1040,DevilsDen,Delay,Control,Baseline,0,06:15pm,3,High Threat,0,0.8,we were introduces with a guy with chain saw and there were actors with tools and at the end we went through this long tunnel,1,82.95,99,35.01,20.23,8,8,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,16,0,0,0,4,0,0,0,0,0,0,0,0,0,4,16,0,4,8,4,0,0,0,4,NA,56.07,-10.53,NA,1,1,1,2,2,1,100,0,0,100,0,100,0,100,100,0,50,50,50,50,50,0,1,0,2,0,0,0,0,0,0,0,0,0,3,0,3,1,3,0.666666667,25,22 +233,1040,GhostlyGrounds,Immediate,Control,Baseline,0,06:15pm,3,High Threat,0,0.8,This one was scary when the women speaking Russian or something started chasing us. the moving floors and dark hall way. ,1,18.12,88.15,97.09,1,4.76,4.76,0,0,9.52,0,9.52,0,0,0,9.52,0,4.76,0,4.76,0,4.76,4.76,0,4.76,4.76,0,0,0,14.29,4.76,0,0,0,0,4.76,9.52,0,0,4.76,0,0,0,0,0,0,0,0,0,0,0,19.05,0,4.76,9.52,4.76,0,0,0,0,NA,-16.5,-28.38,NA,2,1,1,1,2,1,0,100,0,100,0,100,0,83.33,41.67,41.67,50,50,50,50,50,1,0,0,3,1,0,0,0,0,0,0,0,1,5,1,6,0.833333333,4,0.75,21,22 +234,1040,GhostlyGrounds,Delay,Control,Baseline,0,06:15pm,3,High Threat,1,0.8,I think this was the first one with the spiders and tunnel and clown following us ,1,43.4,75.49,15.38,20.23,6.25,6.25,0,0,6.25,0,6.25,6.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.25,0,0,0,0,0,0,6.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-36.09,-20.21,-34.36,-53.71,3,1,1,1,2,2,0,50,100,0,0,100,0,0,88.89,44.44,100,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,22 +235,1041,Infirmary,Immediate,Goal-assigned,Baseline,2,06:15pm,1,Low Threat,0,0.8,"It was a lot of colors. There was a woman dancing in white and black. We were handed this 3D glasses to perceive everything around us as an illusion. It was fairly quiet. No one jumped out at our group.There was a lot of illusions. I specifically remembering these illusions hurting my eyes. My glasses kept falling off as one of the actors yelled at everyone to put their glasses on. I remember walking through these squeaky floors. The walk through was very quick. I saw the color purple, green, and yellow. There were lights flashing at one point. There was a guy in a green mask waiting to collect our glasses after the walk through was over. I wasnt scared at all.",1,72,63.91,89.39,6.37,3.23,3.23,0,0,8.06,4.03,4.03,2.42,0,0,0.81,0,0.81,1.61,1.61,0,1.61,1.61,0,1.61,0.81,0,0,0,9.68,1.61,0,0,0,0,0.81,8.06,0,0,0.81,0.81,0,0,0.81,0,0,0,0,0,0,0.81,27.42,0,5.65,8.87,9.68,2.42,0.81,0.81,0.81,20,20.11,-13.71,53.59,5,2,2,4,3,1,22.86,22.86,45.71,0,100,66.67,100,0,33.33,38.19,0,100,50,0,0,6,0,0,11,1,0,0,0,0,0,0,0,0,18,0,18,1,17,0.647058824,124,18 +236,1041,Infirmary,Delay,Goal-assigned,Baseline,2,06:15pm,1,Low Threat,1,0.6,"There was a woman in black and white dancing at the entrance. Once we entered, I could not see the floor because the fog was so thick. I remember feeling paranoid that I was going to fall because I could not see the floor in front of me. I eventually picked up some 3D glasses. There were neon colors such as green, pink, and blue around me. I didnt feel scared at all. When exiting, I danced with the lady in the black and white as I exited. We put our glasses in the basket. I remember while walking through, a guy yelled at us to put our glasses on. The was a guy in a green mask guarding the door as we exited. ",1,63.25,35.45,99,6.37,5.65,4.84,0,0.81,9.68,0.81,8.87,3.23,1.61,1.61,0,0,2.42,1.61,1.61,0,1.61,1.61,0,1.61,1.61,0,0,0,10.48,3.23,0,0.81,0,0,0.81,8.06,0,0,1.61,1.61,0,0,0,0,0,0,0,0,0,2.42,31.45,0,6.45,14.52,8.87,0.81,1.61,0,2.42,33.58,40.84,14.74,45.17,5,2,2,2,5,5,31.17,0,0,62.34,100,61.7,100,74.47,36.17,0,33.33,100,33.33,33.33,0,6,1,0,7,2,0,0,0,0,0,0,1,0,16,1,17,0.941176471,14,0.5,124,18 +237,1041,Asylum,Delay,Goal-assigned,Baseline,2,06:15pm,1,Low Threat,0,0.75,I think this was the scariest attraction for me. This was the attraction where the actors kept jumping out to scare me. I just remember it being dark and me screaming every 5 minutes. ,1,29.85,2.18,99,1,0,0,0,0,8.82,2.94,5.88,5.88,0,0,0,0,0,2.94,5.88,0,5.88,5.88,0,5.88,5.88,0,0,0,2.94,0,0,0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,0,0,0,0,2.94,14.71,0,2.94,5.88,2.94,2.94,0,0,2.94,-0.65,13.32,0.84,-16.1,3,4,1,4,3,2,33.33,66.67,100,0,0,60,80,0,100,46.67,100,0,0,100,0,2,0,0,1,1,0,0,0,0,0,0,0,0,4,0,4,1,3,0.333333333,34,18 +238,1041,DevilsDen,Delay,Goal-assigned,Share,2,06:15pm,3,High Threat,0,0.6,"There was meat everywhere. The lady at the entrance told us ""okay temple."" and I remember asking her how she knew we went to the temple and she said because we smell like a dorm. As we entered, a guy jumped out at us. I told him to back up then tripped right after and he said ""thats why you tripped."" I remember laughing through the whole attraction. Someone told me they were going to slit my throat because I told them that they werent scary. It was a lot of meat hanging from the ceilings. ",1,34.33,99,54.55,20.23,5.21,5.21,0,0,10.42,1.04,9.38,4.17,4.17,0,1.04,0,1.04,2.08,2.08,1.04,1.04,2.08,1.04,1.04,1.04,0,0,0,28.13,9.38,0,1.04,0,0,8.33,19.79,0,0,4.17,3.13,0,0,0,0,0,0,0,0,0,5.21,10.42,0,3.13,7.29,0,0,0,0,5.21,-15.42,-21.83,-25.86,1.43,2,1,2,1,2,3,0,100,100,6.98,53.49,100,0,78.43,78.43,78.43,47.5,100,0,50,50,10,0,0,2,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.166666667,96,18 +239,1041,GhostlyGrounds,Immediate,Goal-assigned,Test,2,06:15pm,4,High Threat,0,0.6,"Honestly, I dont even remember which one the ""Ghostly Grounds"" was. I think it was one of the ones I didnt find as scary. However, Im really not sure. I only remember the first and last walkthrough. I just remember flashing lights and not being able to see anything. It was agitating my eyes. ",1,1.02,1,99,5.02,1.89,0,1.89,0,26.42,0,26.42,9.43,0,0,5.66,3.77,9.43,5.66,1.89,0,1.89,1.89,0,1.89,1.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.77,9.43,0,0,0,7.55,0,0,0,3.77,24.41,20.34,-20.53,73.42,2,1,2,4,2,5,33.33,100,33.33,0,36.67,100,0,100,75,75,50,100,100,55,0,0,0,0,3,0,0,0,0,0,1,0,0,3,3,4,7,0.428571429,3,1,53,18 +240,1041,GhostlyGrounds,Delay,Goal-assigned,Test,2,06:15pm,4,High Threat,1,1,"I remember there being shaky floors, flashing lights, a cage with a fake person inside of it. there was screaming and ominous music in the background. I remember someone jumping out at me and accidentally touching me. It was cold. The lights were red. ",1,65.33,17.46,99,3.56,0,0,0,0,6.82,0,6.82,4.55,0,0,2.27,0,0,4.55,6.82,2.27,4.55,2.27,0,2.27,2.27,0,0,0,6.82,2.27,0,0,0,2.27,0,4.55,0,0,0,0,0,0,0,0,0,0,0,0,0,2.27,36.36,0,4.55,13.64,9.09,4.55,4.55,0,2.27,-19.27,-22.07,-19.66,-16.1,2,5,1,1,2,2,0,100,33.33,33.33,4.17,40,0,40,40,100,100,0,0,100,0,2,1,0,6,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.666666667,44,18 +241,1042,Infirmary,Immediate,Goal-assigned,Baseline,2,07:30pm,2,Low Threat,0,0.4,"Infirmary was the second scariest attraction that I went on. I think the first thing that came to my mind while going through the Infirmary was the various shapes and colors. I feel like this took the attention away from the actors and made it easier for them to jump scare us. I think one of the scarier parts of Infirmary was the beginning where you go through the school bus. I think it was more scary because when you think of a school bus you think of innocence and young children, when in reality it is the opposite ",1,74,52.11,97.85,4.48,1.01,1.01,0,0,12.12,0,12.12,6.06,2.02,0,0,0,3.03,0,6.06,2.02,4.04,4.04,0,4.04,4.04,0,0,0,8.08,1.01,0,0,0,1.01,0,7.07,0,0,0,0,0,0,1.01,0,0,0,0,0,0,3.03,11.11,1.01,5.05,4.04,1.01,0,1.01,1.01,3.03,5.77,9.35,-7.25,15.2,2,4,5,4,2,1,33.33,100,100,0,75.44,50,0,0,100,6.58,0,90.48,0,90.48,100,0,1,0,2,1,0,0,0,0,3,2,0,0,4,5,9,0.444444444,3,0.666666667,99,21 +242,1042,Infirmary,Delay,Goal-assigned,Baseline,2,07:30pm,2,Low Threat,1,0.4,Infirmary I remember being very trippy. The main thing I remember was putting on the 3D goggles and going through the 3D section of the attraction. I thought this was one of the coolest parts of the entire night. I remember feeling more anxious at the time I was putting on the glasses because I thought the purpose of the glasses was to get us to feel more comfortable just to be scared by a random jump scare. ,1,94.99,11.19,91.37,8.34,1.28,1.28,0,0,14.1,0,14.1,8.97,2.56,0,1.28,0,1.28,3.85,6.41,2.56,3.85,5.13,1.28,3.85,3.85,0,0,0,1.28,0,0,0,0,0,0,1.28,0,0,0,0,0,0,1.28,0,0,0,0,0,0,5.13,10.26,0,5.13,1.28,0,0,3.85,1.28,5.13,-24.45,-35.72,-38.21,0.58,4,1,4,1,3,2,0,58.82,58.82,100,37.25,100,50,0,56.67,30,45.45,0,45.45,100,51.52,2,1,0,1,3,0,0,0,0,0,0,0,0,7,0,7,1,4,0.25,78,21 +243,1042,Asylum,Delay,Goal-assigned,Baseline,2,07:30pm,2,Low Threat,0,0,"I honestly do not remember a ton from the Asylum part of the tour. The main thing I remember was it was a very narrow path going throughout the attraction, I remember some parts having to go in a single file line to get through.",1,95.99,1,99,20.23,0,0,0,0,15.22,0,15.22,6.52,0,0,0,2.17,6.52,6.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.35,0,4.35,0,0,0,0,0,0,6.52,15.22,0,4.35,13.04,0,0,0,8.7,6.52,23.31,48.41,11.46,10.07,5,3,3,3,5,2,56.67,66.67,0,66.67,100,67.5,50,100,75,0,90,0,100,100,0,1,0,0,1,0,0,0,0,0,0,0,0,1,2,1,3,0.666666667,2,0.5,46,21 +244,1042,DevilsDen,Immediate,Goal-assigned,Share,2,07:30pm,5,High Threat,0,0.8,Machine shop was the scariest part of the night. I really do not like gore or seeing limbs being chopped off so that was uncomfortable for me but I think it also made it very fun. As I was in the outdoor section of the attraction a large man with a chainsaw and pretended to saw my leg off. The first thing that caught my attention was the person letting us into the attraction. I vividly remember the host letting us in appeared to have a special contact in that made one of her eyes completely white and I remember being a little freaked out about it. ,1,65.75,16.97,72.99,10.86,1.87,1.87,0,0,11.21,0,11.21,2.8,1.87,0,0.93,1.87,3.74,1.87,2.8,0.93,1.87,2.8,0.93,1.87,0.93,0,0,0,5.61,0,0,0,0,0,0,5.61,0,0,0.93,1.87,0,0,0.93,0,0,0,0,0,0,5.61,14.02,0.93,0.93,6.54,5.61,0,0,0.93,5.61,2.74,-36.56,-9.64,54.43,3,2,2,1,3,1,0,30,100,100,37.14,47.93,100,0,0,36.36,0,100,34.92,69.84,34.92,1,1,0,4,1,0,0,0,0,3,2,0,0,7,5,12,0.583333333,6,0.666666667,107,21 +245,1042,DevilsDen,Delay,Goal-assigned,Share,2,07:30pm,5,High Threat,1,0.8,At Devil's Den I remember having the most scary experience. I remember being followed by a guy with a really loud chainsaw and pretending to saw my leg off. The main thing I remember was a lot of fake blood and a lot of flashing lights which made me pretty uncomfortable.,1,86.58,4.22,46.57,1,0,0,0,0,15.69,0,15.69,5.88,1.96,0,1.96,1.96,1.96,5.88,5.88,0,5.88,3.92,0,3.92,1.96,0,0,0,3.92,1.96,0,0,0,1.96,0,1.96,0,0,0,1.96,0,0,0,0,0,0,0,0,0,1.96,7.84,0,0,0,5.88,1.96,0,0,1.96,1.23,-22.15,-20.11,45.94,2,4,2,1,2,5,0,100,54.17,8.33,8.33,81.82,0,0,100,0,90.91,100,100,100,0,2,0,0,3,1,0,0,0,0,1,0,0,0,6,1,7,0.857142857,5,0.6,51,21 +246,1042,GhostlyGrounds,Delay,Goal-assigned,Test,2,07:30pm,4,High Threat,0,0.6,The main thing I remember from the Ghostly Grounds was the effects they used to try to scare us. I vividly remember being scared while going through a hallway full of fog and you could only see every like 2 seconds because of strobe lights. Going down that hall felt like it took forever because the entire time I was worried about jump scares. ,1,74.35,58.95,67.59,1,3.17,1.59,1.59,0,19.05,3.17,15.87,6.35,6.35,3.17,0,0,0,3.17,6.35,0,6.35,6.35,0,6.35,6.35,0,0,0,4.76,0,0,0,0,0,0,4.76,0,0,0,0,0,0,1.59,0,1.59,0,0,0,0,6.35,14.29,0,4.76,3.17,4.76,0,1.59,3.18,6.35,19.58,97.28,-17.28,-21.27,1,5,4,3,4,3,100,50,0,8.33,8.33,69.23,69.23,69.23,0,100,92.31,46.15,0,100,50,0,1,0,4,2,0,0,0,0,0,0,0,0,7,0,7,1,5,0.8,63,21 +247,1043,Infirmary,Immediate,Goal-assigned,Baseline,2,07:30pm,1,Low Threat,0,0.2,"The colors were very bright. The blacklight was cool, the glasses made things weird, it was trippy. It was fluorescent and the path was windy There were clowns. It was quick compared to the others. ",1,24.37,13.3,24.32,94.7,0,0,0,0,8.57,0,8.57,0,2.86,0,0,0,5.71,0,5.71,5.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.86,0,17.14,0,0,5.71,8.57,0,2.86,0,2.86,NA,82.8,31.35,NA,1,3,1,3,1,1,100,50,0,50,100,0,0,100,33.33,33.33,50,50,50,50,50,0,0,0,6,2,0,0,0,0,0,0,0,0,8,0,8,1,6,1,35,21 +248,1043,Infirmary,Delay,Goal-assigned,Baseline,2,07:30pm,1,Low Threat,1,0.4,This one had really bright colors and we wore the glasses. It was a blacklight with neon polka dots and spiders. There were people dressed as clowns. There was also a narrow spot that had fog and green lasers at the beginning that was trippy to walk through. I just remember mainly it was really bright colors and the clowns and blacklight. ,1,17.22,49.66,10.77,70.91,1.61,1.61,0,0,4.84,0,4.84,1.61,0,0,0,3.23,0,1.61,3.23,3.23,0,0,0,0,0,0,0,0,1.61,0,0,0,0,0,0,1.61,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61,14.52,0,1.61,4.84,8.06,0,0,0,1.61,-24.41,-16.58,-29.35,-27.3,4,1,5,1,2,1,0,60,2.5,100,2.5,100,0,87.5,33.33,87.5,0,0,50,0,100,1,0,0,5,0,0,1,0,1,0,0,3,0,6,5,11,0.545454545,6,0.833333333,62,21 +249,1043,Asylum,Delay,Goal-assigned,Baseline,2,07:30pm,1,Low Threat,0,0.5,I think this was the one with the jail cells and the vines and the hanging box that had loud noises. I am honestly having a hard time remembering though. That one was dark and loud and narrow. ,1,22.98,7.5,52.19,2.53,0,0,0,0,15.79,5.26,10.53,5.26,0,0,0,2.63,2.63,2.63,2.63,0,2.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.63,18.42,0,0,5.26,2.63,7.89,2.63,0,2.63,24.49,81.96,3.59,-12.08,1,3,4,3,2,2,100,66.67,0,38.1,0,50,0,100,71.43,71.43,87.5,0,0,100,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,21 +250,1043,DevilsDen,Delay,Goal-assigned,Share,2,07:30pm,3,High Threat,0,0.6,Machine shop had men with chainsaws running around. It had a loud cage that fell towards the end. It was a lot of red lighting and fake limbs. There was air blowing on me randomly. There was people yelling about taking our body parts. Part of it we walked outside then back in. This was also dark and narrow at times. ,1,50.51,59.57,98.05,6.23,3.28,3.28,0,0,4.92,0,4.92,0,0,0,1.64,0,3.28,0,1.64,0,1.64,0,0,0,0,0,0,0,8.2,3.28,0,0,0,1.64,1.64,4.92,0,0,0,1.64,0,0,1.64,0,0,0,0,0,0,3.28,24.59,0,4.92,14.75,3.28,3.28,0,1.64,3.28,18.1,43.36,17.62,-6.67,2,3,3,3,1,1,58.97,100,0,33.33,66.67,0,5.45,100,5.45,76.36,0,0,100,0,100,1,0,0,9,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.9,61,21 +251,1043,GhostlyGrounds,Immediate,Goal-assigned,Test,2,07:30pm,3,High Threat,0,0.4,There was alien looking things. A very shaky floor towards the end. People in cages and lots of loud banging and air being blown at me. Less people jumping out compared to some others. There were strobe lights that made it hard to see. A hanging cage that was rattling with something banging on the inside.,1,83.77,14.49,89.39,20.23,0,0,0,0,7.14,0,7.14,0,1.79,0,1.79,0,3.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.79,0,0,0,0,0,7.14,30.36,0,3.57,14.29,5.36,5.36,1.79,1.79,7.14,NA,33.68,-14.28,NA,5,4,1,2,2,1,37.5,0,50,0,100,66.67,0,0,100,0,50,50,50,50,50,1,0,0,9,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.9,56,21 +252,1043,GhostlyGrounds,Delay,Goal-assigned,Test,2,07:30pm,3,High Threat,1,0.6,I think this is the one with the moving floors at the end and the school bus at the beginning. I remember this one being the scariest one. I am honestly having a difficult time with details. I remember walking up steps at the end. ,1,96.08,5.61,99,1,0,0,0,0,17.78,4.44,13.33,6.67,0,0,0,2.22,0,4.44,4.44,0,4.44,2.22,0,2.22,2.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22,11.11,0,6.67,4.44,0,0,0,0,2.22,-3.88,38.02,-10.53,-39.14,2,1,1,3,2,2,50,100,0,0,50,100,0,100,100,0,100,0,100,0,100,1,1,0,1,0,0,0,0,0,1,0,0,1,3,2,5,0.6,3,0.333333333,45,21 +253,1044,Infirmary,Delay,Goal-assigned,Baseline,2,07:30pm,2,Low Threat,0,0.6,"Infirmary was the room where we wore 3d glasses and walked through the room and saw lots of bright and neon colors everywhere and skyscrapers. The people in this room were clownlike type of people, popping out and scaring you. Everything looked all distorted and crazy with the 3d glasses, and sometimes it was hard to walk because the floor was distorted as well. The main gist that I remember from this room was all of the neon colors and clownlike type of people popping out from behind corners. ",1,79.65,60.12,48.97,36.25,1.12,1.12,0,0,7.87,4.49,3.37,1.12,1.12,0,1.12,0,0,1.12,4.49,2.25,1.12,2.25,0,1.12,1.12,0,0,0,2.25,0,0,0,0,0,0,2.25,0,0,0,0,0,0,0,0,0,0,0,0,0,5.62,21.35,0,2.25,12.36,5.62,0,1.12,0,5.62,33.14,40.12,28.35,30.94,5,3,4,2,5,1,29.82,0,0,59.65,100,31.31,31.31,100,48.48,0,0,0,0,100,0,3,1,0,8,0,0,0,0,0,0,0,3,0,12,3,15,0.8,12,0.666666667,89,20 +254,1044,Asylum,Immediate,Goal-assigned,Baseline,2,07:30pm,3,Low Threat,0,0.5,"Asylum was the room with the theme being backstages. There were people pretending to be backstage getting ready for the show. The room had curves but was pretty well lit the entire time. There was smoke but no darkness nor strobe lights. People came behind corners and tried to scare us, but I found this room to be a 3/5 scary level wise. I enjoyed this room because there were not too many jump scares but it was enjoyable overall. ",1,27.64,2.86,94.28,58.42,2.44,1.22,1.22,0,14.63,1.22,13.41,1.22,1.22,0,1.22,0,7.32,0,9.76,6.1,3.66,6.1,2.44,3.66,3.66,0,0,0,1.22,0,0,0,0,0,0,1.22,0,0,0,0,0,0,2.44,0,0,0,0,0,0,8.54,19.51,0,2.44,12.2,4.88,0,0,2.44,8.54,41.2,77.2,2.35,44.07,1,5,4,5,2,1,100,100,53.13,53.13,0,17.98,0,42.7,42.7,100,0,0,51.43,100,51.43,1,0,0,8,2,0,0,0,0,0,0,1,0,11,1,12,0.916666667,9,0.888888889,82,20 +255,1044,Asylum,Delay,Goal-assigned,Baseline,2,07:30pm,3,Low Threat,1,0.5,"Asylum was the second room in which we walked through and went around a lot of corners. There were not that many jump scares. We saw people dressed as ""performers/ actors"" preparing to go on stage. There was not blood or chainsaws or anything like that, it was more so creepy than scary. They were back stage waiting to go onstage. There was one woman whose room had a makeup area and a director chair and that is the one particular scene that I remember clearly. + +",1,28.28,33.55,98.3,1.05,3.45,2.3,0,1.15,13.79,2.3,11.49,1.15,0,0,3.45,1.15,8.05,1.15,3.45,0,3.45,3.45,0,3.45,3.45,0,0,0,8.05,0,0,0,0,0,0,8.05,0,0,1.15,0,0,0,1.15,0,0,0,0,0,0,6.9,17.24,0,5.75,12.64,1.15,0,0,1.15,6.9,45.23,95.55,46.81,-6.67,1,3,3,3,1,1,100,39.29,0,21.43,21.43,0,15.18,100,51.79,51.79,0,0,100,0,100,3,1,0,6,1,0,0,0,0,0,1,0,2,11,3,14,0.785714286,10,0.6,87,20 +256,1044,DevilsDen,Delay,Goal-assigned,Share,2,07:30pm,5,High Threat,0,0.8,"The Devil's Den was the room similar to the Ghostly Grounds, with a lot of jump scares and more scary people than the previous two rooms. This room had a person chasing other people with a chainsaw and the people in this room were a lot bloodier and scarier than others. This room was also very dark and was sometimes difficult to see. I specifically remember being chased by a man with a chainsaw and I also remember another person with an axelike type of tool. This room had lots of people with lots of different machinery and I remember this room also being very loud and chaotic. It was filled with bloody and gory people that hid behind corners and walls and on the ground below. ",1,74.35,11.37,81.28,1,0,0,0,0,9.52,0,9.52,2.38,0,0,0.79,0,5.56,2.38,3.97,0,3.97,2.38,0,2.38,2.38,0,0,0.79,2.38,0,0,0,0,0,0,2.38,0,0,0,0.79,0,0,0,0,0.79,0,0,0.79,0,4.76,14.29,0,1.59,9.52,2.38,0.79,0,0.79,5.55,61.6,89.48,47.77,47.56,1,3,3,3,1,1,100,54.74,0,27.37,0,0,56.12,100,34.18,78.06,0,1.27,100,34.18,1.27,3,0,0,14,2,0,0,0,0,0,1,0,0,19,1,20,0.95,17,0.823529412,126,20 +257,1044,GhostlyGrounds,Immediate,Goal-assigned,Test,2,07:30pm,5,High Threat,0,0.6,"The Ghostly Grounds room began with entering the bus and it being extremely dark besides the strobe lights. There were pretend dead bodies and real people as well reaching out to you. After that we got off the bus and went through into the room which had several different levels with upstairs and downstairs parts. People were locked in cages and there was lots of noise and commotion happening. The floors moved at one point and there was lots of smoke and red lights everywhere. There were lots of jump scares and people hiding behind walls. At one point we were in a room with lots of strobe lights and pretend dead people hanging from the ceilings and actual people being in there as well, and it was hard to tell the difference.",1,76.99,44.54,91.71,20.23,1.52,1.52,0,0,7.58,0.76,6.82,0,0,0,0,1.52,3.79,0,3.03,1.52,1.52,0.76,0,0.76,0.76,0,0,0,3.03,0.76,0,0,0,0,0.76,2.27,0,0,0,0,0,0,0.76,0,0,0,0,0.76,0,5.3,25.76,0,3.79,16.67,4.55,0.76,0.76,0.76,6.06,-31.02,2.2,-19.23,-76.03,2,3,5,3,2,2,21.21,100,0,54.55,27.27,76.47,0,100,20.59,100,96.3,0,0,0,100,3,3,0,13,0,0,0,0,0,0,0,0,0,19,0,19,1,19,0.684210526,132,20 +258,1044,GhostlyGrounds,Delay,Goal-assigned,Test,2,07:30pm,5,High Threat,1,0.6,"Ghostly Grounds was the last room where we first began walking onto a school bus and the entire bus was dark except for the occasional strobe light flashing. The were pretend bodies in the bus seats as well as real ones, and it was hard to differentiate between the two. We got off the bus and went into the main room where we started on the bottom floor and had to go up and down two separate flights of stairs throughout this room. There was lots of blood and chainsaws and other machinery like that. This room was more gory than the rest. It was on and off dark with strobe lights and there was the meat packing room with different pretend bodies hanging from the ceiling as well as real people, and it was also difficult to differentiate between the two because of the flashing strobe lights. There was also an instant where the floor began to move and walking became difficult. At the very end we walked up a flight of stairs and down a long hallway and it was almost impossible to see because of the constant flashing strobe lights. This room was also scary since this had the most jump scares than the rest. ",1,86.63,37.29,94.74,20.23,1.93,1.93,0,0,10.14,0,10.14,0,1.45,0,0.97,0.97,4.35,0,3.86,1.93,1.93,0.97,0,0.97,0.97,0,0,0,1.93,0,0,0,0,0,0,1.93,0,0,0,0,0.97,0,0.48,0,0,0,0,0,0,3.86,23.19,0,4.35,14.01,4.83,0,0.48,1.45,3.86,27.7,27.84,97.68,-42.41,2,4,5,3,1,2,46.75,100,0,54.55,54.55,0,46.33,76.27,100,100,24.26,0,25.44,75.15,100,4,5,0,17,1,0,0,0,0,0,1,0,0,27,1,28,0.964285714,26,0.653846154,207,20 +259,1045,Infirmary,Delay,Goal-assigned,Baseline,2,06:15pm,2,Low Threat,0,1,"Infirmary was very colorful, neon, and there were splashes of color on the walls. The characters lit up with the costumes that they were wearing. I remember it was glow in the dark. My shoes were white so when I looked down they were glowing. The actors came up really close to you but didnt touch you. The walls were glow in the dark and the rooms were small and black with neon splashes of color. There was loud music. I think there was a scary clown character. I was front of the line walking through. The haunted house was very short, we were out of there very fast. ",1,52.92,45.49,95.58,11,0.92,0.92,0,0,4.59,0,4.59,1.83,0,0,0,0.92,1.83,0.92,2.75,0.92,1.83,0.92,0,0.92,0.92,0,0,0,5.5,0,0,0,0,0,0,5.5,0,0,0,0,0,0,0,0,0,0,0,0,0,2.75,31.19,0,2.75,14.68,11.01,1.83,0.92,0,2.75,58.21,53.75,28.05,92.83,1,2,2,2,1,1,100,0,100,0,82.14,0,100,16.67,16.67,39.68,0,100,100,100,0,2,0,0,14,0,0,0,0,0,0,0,1,0,16,1,17,0.941176471,16,0.875,109,18 +260,1045,Asylum,Immediate,Goal-assigned,Baseline,2,06:15pm,1,Low Threat,0,0.75,"Asylum wasnt very scary, I walked through and there were loud noises coming from automated machines. The actors followed you around until you walked into the other room. They screamed in my face, which was scary, but the scenery wasnt. I walked first in line and kept tripping on the ground because I was nervous of what was coming next. It was after the colorful haunted house and felt very short. I was looking all around, at the ceilings, at the props, and the actors. They had really nice, spooky, makeup on. ",1,51.31,18.43,99,1,0,0,0,0,9.68,1.08,8.6,1.08,1.08,0,0,1.08,5.38,0,8.6,2.15,6.45,4.3,0,4.3,4.3,0,0,0,6.45,0,0,0,0,0,0,6.45,0,0,0,0,0,0,1.08,0,0,0,0,0,0,1.08,20.43,0,5.38,10.75,2.15,3.23,1.08,1.08,1.08,42.62,7.06,28.91,91.89,5,4,4,4,5,1,16.84,54.74,54.74,0,100,22.81,85.96,22.81,100,0,0,94.74,94.74,100,0,6,0,0,7,4,0,0,0,0,0,0,0,0,17,0,17,1,13,0.538461538,93,18 +261,1045,Asylum,Delay,Goal-assigned,Baseline,2,06:15pm,1,Low Threat,1,0.5,"Asylum I dont remember almost anything from. I dont remember what happened or what it looked like. There was loud bangs from the walls, an actor opened up a wooden slide from a wall and screamed out. I think there was a woman with a long staff that was telling us about separation anxiety and how if youre scared of being alone you shouldnt walk in. There was a long vault with fog and a single man walking towards you, that part was actually scary because you cant move forward or back since you cant see anything. There was light at the end of the tunnel but he was blocking it. He ran up to me and scared me, whispered in my ear about something that I dont remember at all. ",1,20.83,27.64,98.58,1.71,0.76,0.76,0,0,16.67,0.76,15.91,3.79,2.27,2.27,5.3,0.76,6.06,2.27,3.03,0,3.03,3.03,0,3.03,3.03,0,0,0,11.36,1.52,0,0,0,0,1.52,9.09,0,0,0.76,2.27,0,0,0.76,0,0,0,0,0,0,6.06,22.73,0,3.79,13.64,2.27,3.03,0,0.76,6.06,-20.3,-22.9,-16.83,-21.17,2,4,4,1,2,3,0,100,44.62,23.85,23.85,66.33,0,44.9,100,100,64.2,32.1,0,100,66.67,0,0,0,3,0,7,1,0,3,1,0,0,3,3,15,18,0.166666667,3,1,132,18 +262,1045,DevilsDen,Delay,Goal-assigned,Share,2,06:15pm,3,High Threat,0,0.75,"The Devil's Den had people that were dismembering bodies. There was a girl actor that screamed ""your worth more in pieces"" or something like that which I found to be scary and true, only because people make a huge profit for selling organs instead of saving lives?? Which is crazy. I remember there was a guy with a chainsaw. There was a guy with a hammer. There was blood, splattered blood on the ground and walls. There were dismembered feet hanging off the walls of a passageway, which was extremely disturbing. There were loud noises that popped out from walls. ",1,60.65,34.37,81.21,1.76,0,0,0,0,12,0,12,2,2,0,2,1,5,1,4,0,3,2,0,1,1,0,0,0,5,0,0,0,0,0,0,5,0,0,1,2,0,0,0,0,0,0,1,0,0,6,17,0,1,13,0,4,0,0,7,28.5,14.29,12.73,58.47,5,2,2,2,4,1,25,0,75,75,100,33.33,100,33.33,0,0,0,100,66.67,0,0,0,0,0,12,2,0,0,0,0,0,1,0,2,14,3,17,0.823529412,12,1,100,18 +263,1045,GhostlyGrounds,Immediate,Goal-assigned,Test,2,06:15pm,3,High Threat,0,0.6,"The Ghostly Grounds started in the bus, there were dead and dying props in each seat. It was foggy and there were neon lights. There was a guy that was sitting in the seat and he got up and followed me down the bus and screamed in my ear. Then we walked into the prison. The prison doors were all open but they were too dark to see into them, there were lights on the ceilings but it was filled with cages with props in them. There were actors in the cage that jump out at you. Then we walked into a small room with hanging bodies from hooks. My heart was racing and I had no clue where to walk because I was so scared as to which one was gonna jump out at me. One of the men in the room popped out and screamed at us until we ran out of the room. Th",1,71.74,66.44,99,4.87,3.85,2.56,0,1.28,4.49,1.28,3.21,0.64,0.64,0,0,0,1.92,0,1.92,0,1.92,0.64,0,0.64,0.64,0,0,0,7.69,0,0,0,0,0,0,7.69,0,0,0,1.92,0,0,0.64,0,0.64,0,0,0,0,4.49,28.21,0,4.49,19.23,2.56,1.92,0,1.28,4.49,30.6,6.09,14.24,71.46,5,4,4,4,5,1,9.77,12.5,50,0,100,70.31,87.5,62.5,100,0,0,50,50,100,0,6,2,0,12,2,0,0,0,0,0,0,0,0,22,0,22,1,20,0.6,156,18 +264,1045,GhostlyGrounds,Delay,Goal-assigned,Test,2,06:15pm,3,High Threat,1,0.4,"The Ghostly Grounds was my favorite haunted house, although now I really cant remember much of anything that happened in there. I think the Ghostly Grounds was the one where you enter through the bus, and there were dead bodies all across the seats. One actor was in a seat pretending to be dead, then rose up and chased us off the bus. He blended in so well. Then you walk in and there are cages everywhere, some with props in then and others with actors in them. They jump out of the cages and get really close to you. You walk up the stairs into another level of the penitentiary and you get to see the cells of the inmates, this time there are cages with flowers in them, which was odd. Then you walk down a very long vault with jail cells on both sides of you, and there were neon flickering lights on the ceilings.",1,70.09,84.23,95.65,20.23,1.28,0.64,0,0.64,10.26,2.56,7.69,1.28,0,0.64,0.64,1.28,3.85,0.64,2.56,1.28,1.28,0,0,0,0,0,0,0,10.26,0.64,0,0,0,0.64,0,9.62,0,0,0,0.64,0,0,1.28,0,0,0,0,0,0.64,5.13,19.87,0,3.85,14.74,1.28,0,0,1.28,5.77,-36.65,-30.56,-17.48,-61.91,4,3,1,1,4,3,0,28.89,52.59,100,28.89,76.04,16.67,100,0,16.67,100,34.41,0,0,34.41,5,3,0,9,1,0,0,0,0,1,1,0,1,18,3,21,0.857142857,17,0.529411765,156,18 +265,1046,Infirmary,Delay,Goal-assigned,Baseline,1,08:30pm,2,Low Threat,0,0.4,"Infirmary was so coooooool. I want to go back and just hang out there. I remember walking over a bridge type thing, it was dizzying I think maybe there was a spinning aspect. There were lights strobing and everything was neon. There were girls dressed in neon dancing on tables, and we got 3D glasses to wear. ",1,19.15,40.06,99,20.23,1.75,1.75,0,0,8.77,1.75,7.02,3.51,0,1.75,1.75,0,0,1.75,0,0,0,0,0,0,0,0,0,0,5.26,1.75,0,0,0,0,0,3.51,0,0,1.75,0,0,1.75,1.75,0,0,0,0,0,0,5.26,26.32,0,7.02,17.54,1.75,0,1.75,3.5,5.26,14.33,-10.14,1.09,52.04,2,3,3,1,5,1,0,100,4.55,4.55,59.09,87.5,64.58,100,75,0,0,45.83,100,0,0,1,2,0,4,0,0,0,0,0,1,1,0,1,7,3,10,0.7,7,0.571428571,57,20 +266,1046,Asylum,Immediate,Goal-assigned,Baseline,1,08:30pm,3,Low Threat,0,0.5,"When we entered Asylum, the guy said to make sure we clocked in. then we walked past a film reel i think. i honestly remember this one the least i think. I dont really know. I forgot to pay attention but I was scared. Was this the one with the meat chamber? I definitely walked through this shaking room covered in meat but im not sure if it was Asylum. i remember looking at the lights and they were flickering fluorescent tubes. i also saw flickering yellow light bulbs.",1,22.85,5.77,99,9.61,3.3,3.3,0,0,18.68,2.2,16.48,5.49,0,0,3.3,3.3,4.4,3.3,1.1,0,1.1,1.1,0,1.1,1.1,0,0,0,6.59,1.1,0,0,0,0,1.1,5.49,0,0,0,1.1,0,0,2.2,0,0,0,0,0,0,4.4,16.48,3.3,3.3,3.3,6.59,0,0,2.2,4.4,60.99,55.72,57.38,69.87,3,2,2,2,1,1,92.98,0,100,33.33,33.33,0,100,69.35,100,8.06,0,100,100,34.48,34.48,2,0,0,4,1,0,1,0,0,0,0,0,5,7,6,13,0.538461538,6,0.666666667,91,20 +267,1046,Asylum,Delay,Goal-assigned,Baseline,1,08:30pm,3,Low Threat,1,0.25,"I can’t remember which house was Asylum. I also never really understood what Asylum meant, but I’m pretty sure I connected it with like film/directing. I think when you enter there is an old film movie camera and someone scary manning it. I don’t know what else happened in there. I remember a handful of attractions and scary moments, but can’t distinguish when they occurred. ",1,1,1,99,1.85,0,0,0,0,25,1.47,23.53,8.82,0,2.94,2.94,1.47,10.29,2.94,2.94,0,2.94,2.94,0,2.94,2.94,0,0,0,5.88,0,0,0,0,0,0,4.41,0,0,0,0,0,0,2.94,0,0,0,0,0,0,8.82,7.35,0,1.47,5.88,0,0,0,2.94,8.82,-21.16,-27.23,-28.11,-8.14,5,1,4,1,2,3,0,46.43,46.43,50,100,100,0,60,70.77,27.69,89.66,89.66,0,100,51.72,0,0,0,1,1,0,0,0,0,0,0,0,6,2,6,8,0.25,1,1,72,20 +268,1046,DevilsDen,Immediate,Goal-assigned,Test,1,08:30pm,4,High Threat,0,0.6,"in the Devil's Den, the first thing was waiting to get inside and this dude with an axe swung it at me and pretended to hit me in the face it was scary. then we walked through this long misty hall i think. at the end i think i remember there were some like red windows with screaming coming from them. now trying to recall im getting really confused and doubting which scary parts were in which attraction. ",1,68.35,11.19,99,1,2.56,1.28,1.28,0,15.38,0,15.38,5.13,0,1.28,2.56,1.28,3.85,2.56,5.13,0,5.13,3.85,0,3.85,2.56,0,0,0,3.85,0,0,0,0,0,0,3.85,0,1.28,0,1.28,0,0,2.56,0,0,0,0,0,0,5.13,14.1,0,3.85,8.97,1.28,1.28,0,2.56,5.13,50.05,95.78,54.03,0.34,1,4,5,4,1,1,100,74.14,22.41,0,0,0,83.33,41.67,100,100,0,31.25,62.5,33.33,100,3,1,0,3,1,0,0,0,0,0,0,0,2,8,2,10,0.8,7,0.428571429,78,20 +269,1046,DevilsDen,Delay,Goal-assigned,Test,1,08:30pm,4,High Threat,1,0.8,"Hmmm the Devil's Den, I think this was when I walked through the meat locker room, but I’m not exactly sure. I remember being really scared when I walked through the meat room because someone scared me immediately. I’m really trying to call back my memories. I think this was also the attraction where there was a guy swinging an axe right outside the door and he swung it in my face, which was funny I guess. At one point we went through a long dark misty hallway where freaks were coming out from the walls. It was very scary but cool.",1,20.45,3.04,99,10.51,1.96,0.98,0.98,0,14.71,0,14.71,3.92,0.98,0.98,3.92,1.96,3.92,1.96,4.9,1.96,2.94,3.92,0.98,2.94,2.94,0,0,0,4.9,0.98,0,0,0,0,0.98,3.92,0,0,0,1.96,0,0,0,0,0,0,0,0,0,6.86,19.61,0,5.88,12.75,0.98,0,0.98,0,6.86,8.37,-7.44,37.08,-4.51,5,2,3,1,5,4,0,0,6.67,53.33,100,36.17,100,67.02,44.68,0,92.86,45.24,100,0,0,1,2,0,2,2,1,1,0,0,2,0,0,3,7,7,14,0.5,5,0.4,104,20 +270,1046,GhostlyGrounds,Delay,Goal-assigned,Share,1,08:30pm,4,High Threat,0,0.8,"I definitely don’t remember anything called the “Ghostly Grounds”. I remember the machine room, Asylum, the freaky carnival themed one in the beginning, and maybe one more. Was it really called the Ghostly Grounds? Hm. Honestly I was so cold and it was so crowded. I was definitely freaked out though, but I would’ve walked slower if I could to take everything in. I kind of had to rush to keep up with the group and the study leader, who I noticed went completely unscared throughout the tours.",1,31.31,3.55,98.3,36.68,1.15,0,0,1.15,20.69,1.15,19.54,3.45,0,2.3,5.75,5.75,3.45,2.3,1.15,1.15,0,0,0,0,0,0,0,0,5.75,2.3,0,0,0,0,2.3,3.45,0,0,0,0,2.3,0,2.3,0,0,0,0,0,0,4.6,14.94,1.15,4.6,8.05,0,0,1.15,4.6,4.6,11.41,40.73,31.62,-38.12,5,3,1,3,5,2,36.67,36.67,0,60,100,8.02,18.52,100,22.22,0,100,0,55.88,55.88,55.88,0,0,0,0,0,1,0,0,2,3,0,0,3,0,9,9,0,0,0,89,20 +271,1047,Infirmary,Immediate,Goal-assigned,Baseline,2,08:30pm,2,Low Threat,0,1,"The entire scene was neon (green, orange), the actors were dressed as clowns, there was a woman dancing on a platform at the beginning, then a man handed us 3D glasses, we went through the square(?) shaped track that opened out to the beginning, thing popped out at you because of the glasses, there were spider decorations, there was a strobe light section, there were pipes along the walls, there was a big mural with a multiarm woman wrestling a giant spider, the actors had their faces painted, not masks.",1,93.41,92.24,55.54,20.23,2.22,2.22,0,0,2.22,0,2.22,0,1.11,0,0,0,1.11,0,0,0,0,0,0,0,0,0,0,0,11.11,1.11,0,0,0,0,0,10,0,0,2.22,1.11,0,0,0,0,0,0,0,0,0,4.44,17.78,0,2.22,12.22,3.33,0,0,0,4.44,9.18,-23.33,19.92,30.94,2,4,3,1,2,1,0,100,100,0,0,25,0,50,100,0,0,0,100,0,0,3,2,0,8,0,0,0,0,0,0,0,0,0,13,0,13,1,13,0.615384615,90,23 +272,1047,Infirmary,Delay,Goal-assigned,Baseline,2,08:30pm,2,Low Threat,1,0.2,"Neon lights and colors, woman dancing on the elevated surface, mural of a multiarm woman wrestling a spider, actors with clown makeup, large spider props on the walls, orange/green glowing pipes, 3D glasses, strobe light with clowns, actors popping out of the walls, neon snakes, polka dots, actors following behind us and scaring us, blacklights, the area with the 3D glasses was like a big rectangle or circle that you entered on one side of the dancing lady and came out the other side to return your glasses.",1,99,96.22,64.89,9.43,2.25,2.25,0,0,2.25,0,2.25,0,0,0,1.12,0,2.25,0,1.12,0,1.12,1.12,0,1.12,1.12,0,0,0,13.48,3.37,0,1.12,0,0,0,11.24,0,0,3.37,0,0,0,0,0,0,0,0,0,0,5.62,23.6,0,5.62,12.36,6.74,0,0,0,5.62,NA,52.12,23.77,NA,5,4,1,2,2,1,59.65,0,59.65,29.82,100,20,0,40,100,63.53,50,50,50,50,50,3,2,0,13,0,0,0,0,0,0,0,0,1,18,1,19,0.947368421,18,0.722222222,89,23 +273,1047,Asylum,Delay,Goal-assigned,Baseline,2,08:30pm,1,Low Threat,0,0.5,"This section was so short I honestly dont remember much. The scene was set up to look like a 1940s or 1950s abandoned office, with old style telephones and posters. The actors were wearing old costumes too, like pants and collared shirts with suspenders, but their faces were painted to look skeletonlike. I remember a man sitting in a chair reading a newspaper, and I think there was music from a gramophone playing. There was one point when we walked past a woman with brown hair wearing a dress, pearl necklace, and feather boa. She was in a vanity area with a mirror and shade and was singing opera. ",1,73.55,45.49,51.66,33,0.92,0.92,0,0,5.5,0,5.5,2.75,0,0,0.92,0.92,1.83,1.83,2.75,1.83,0.92,0,0,0,0,0,0,0,7.34,1.83,0,0,0,0.92,0.92,5.5,0,0,1.83,0.92,0,0,0,0,0,0,0,0,0,3.67,12.84,1.83,0.92,7.34,2.75,1.83,0,0,3.67,2.59,26.57,-31.17,12.37,3,1,3,2,2,2,50,0,100,100,59.52,100,0,66.67,66.67,76.19,33.33,0,100,0,0,2,1,0,14,0,0,0,0,0,0,0,0,2,17,2,19,0.894736842,17,0.823529412,109,23 +274,1047,DevilsDen,Immediate,Goal-assigned,Share,2,08:30pm,3,High Threat,0,0.6,"Red jumpsuits, cut up bodies, woman with axes at the beginning, going from inside out into the garden area on a ramp, man wielding a cinderblock, people holding pipes, man on a surface above the walkway banging a pipe, pistons going off and creating a lot of noise, fog",1,99,74.89,66.12,4.4,2.04,0,2.04,0,0,0,0,0,0,0,0,0,0,0,2.04,0,2.04,0,0,0,0,0,0,0,6.12,0,0,0,0,0,0,6.12,0,0,2.04,4.08,0,0,0,0,0,0,0,0,2.04,4.08,24.49,0,4.08,14.29,2.04,4.08,0,0,6.12,NA,24.81,-9.59,NA,2,5,1,3,1,1,50,100,0,75,33.33,0,0,0,0,100,50,50,50,50,50,0,1,0,9,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.9,49,23 +275,1047,DevilsDen,Delay,Goal-assigned,Share,2,08:30pm,3,High Threat,1,0.6,"Woman in red jumpsuit at the outside (she had axes and one white eye), walking into the darkest area first, man in jumpsuit in the corner in shadows, trying to avoid him, being directed to the outside garden by the man holding the cinderblock, seeing the chainsaw guy, being scared by the chainsaw guy, running in the area with chopped up bodies on the table, being told by the guy that he would chop my legs off if I ran, going through the hallway with hanging chopped up body parts, man on the balcony above hallways with a pipe, banging on the rails, loud air pistons going off, strobe light with bodies hanging from meat hooks, fog",1,99,69.89,36.64,11.52,0.85,0,0.85,0,3.42,0,3.42,0,0,1.71,0.85,0,1.71,0,0.85,0,0.85,0.85,0,0.85,0.85,0,0,0,9.4,0.85,0,0,0,0,0.85,8.55,0,0,1.71,6.84,0,0,0,0,0,0,0,0.85,0,0.85,24.79,0,4.27,12.82,5.98,1.71,0,0,1.7,NA,-0.37,10.71,NA,3,4,1,4,5,1,22.22,86.11,100,0,33.33,57.5,38.33,60,100,0,50,50,50,50,50,4,3,0,12,0,0,0,0,0,0,0,0,0,19,0,19,1,19,0.631578947,117,23 +276,1047,GhostlyGrounds,Delay,Goal-assigned,Test,2,08:30pm,3,High Threat,0,0.2,"First thing we did was go into the bus. It was extremely dark and there was a mix of real and fake people in the seats. Then we went into a caged area outside where we could see the Blood Lounge and actors scared us from outside the cage. We then went inside and weaved through a maze of cages. The actors mostly had these deadgray masks on, but some just had faces painted. The actors would follow us and pop out from behind the bars of the cages. At one point there was a man hanging from some bars, and then a woman laughing and following us. The ceiling had what looked like plant material hanging from it. There was one cage that had a box that was hanging by chains and would periodically shake and flash. There was a part when we walked through and area with strobe lights and a man got right up in my face. There was also a part when the flood was sliding as you walked along it. At another time we walked up a set of stairs and there were large hanging reapers from the ceiling above the cage maze area. We walked up another set of stairs and ended on an area with a long hallway where people with plague masks were scaring us. ",1,75.11,91.44,75.79,11.17,4.93,4.93,0,0,4.93,0,4.93,0,0,1.35,0.45,0.9,2.24,0,2.69,0.9,1.79,1.35,0.45,0.9,0.9,0,0,0,8.97,0.9,0,0,0,0.45,0.45,8.07,0,0,0.45,0.9,0,0,0.45,0,0,0,0,0,0,4.48,19.28,0,3.59,13.9,2.24,0,0,0.45,4.48,17.07,13.74,-6.29,43.76,2,1,4,3,5,1,30,100,0,42.5,73.18,100,43.15,100,93.02,0,0,97.78,0,100,0,11,5,0,15,0,0,0,0,0,0,0,0,0,31,0,31,1,31,0.483870968,223,23 +277,1048,Infirmary,Delay,Goal-assigned,Baseline,2,08:30pm,2,Low Threat,0,0.6,"Infirmary was the first of the tours. I wore 3D glasses during this tour. Infirmary was very bright and colorful. It felt like a ""funhouse"" at a fair. Some distinct parts of this tour include walking over a chained bridge, walking through a spinning room, and clowns. I remember there being a lot of stripes on the walls in this tour. ",1,96.97,10.78,87.98,89.9,0,0,0,0,6.56,0,6.56,3.28,0,0,0,0,3.28,1.64,4.92,4.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.64,18.03,0,4.92,8.2,3.28,0,1.64,0,1.64,30.84,53.14,-4.37,43.76,5,2,2,2,3,1,67.31,0,75,50,100,38.46,100,0,0,50,0,100,0,100,0,1,2,0,5,0,0,0,0,0,0,1,0,0,8,1,9,0.888888889,8,0.625,61,27 +278,1048,Asylum,Immediate,Goal-assigned,Baseline,2,08:30pm,2,Low Threat,0,0.75,"Asylum had to do with a movie set. I remember strobe lights, director chairs, film reels. I also remember music playing but im not sure what type of music. i remember feeling like it wasnt that scary. i dont think there were as many jump scares as i was anticipating. I think there was deep colors, browns, greys, blacks, and also some off white colors. i want to say this section of the tour felt like i was lost in a maze.",1,25.36,1,97.45,3.11,1.2,0,0,1.2,14.46,0,14.46,8.43,0,1.2,2.41,0,3.61,3.61,4.82,1.2,3.61,2.41,0,2.41,2.41,0,0,0,2.41,1.2,0,0,0,0,1.2,1.2,0,0,0,0,2.41,1.2,1.2,0,0,0,0,0,0,3.61,16.87,0,1.2,6.02,4.82,2.41,2.41,4.81,3.61,51.74,49.4,69.27,36.55,5,3,2,2,1,1,46.38,0,23.19,1.45,100,0,66.67,100,73.96,3.12,0,100,0,22.5,1.25,1,0,0,11,2,0,0,0,0,0,0,0,1,14,1,15,0.933333333,12,0.916666667,83,27 +279,1048,Asylum,Delay,Goal-assigned,Baseline,2,08:30pm,2,Low Threat,1,0.25,"during the Asylum tour I remember dark colors including grays, browns, and blacks. The object I remember seeing the most is a directors chair, a movie reel, and cages. In the cages, there were characters hanging from the ceiling and swaying back and forth. I remember creepy music playing in the background and making a lot of turns throughout the tour. ",1,97.63,23.05,86.48,20.23,1.61,0,0,1.61,6.45,0,6.45,4.84,1.61,0,0,0,0,4.84,3.23,1.61,1.61,1.61,0,1.61,1.61,0,0,0,1.61,0,0,0,0,0,0,1.61,0,0,0,0,0,0,1.61,0,0,0,0,0,0,3.23,19.35,0,3.23,9.68,4.84,1.61,0,1.61,3.23,25.99,30.25,40.43,7.29,5,4,4,4,5,3,35.38,53.85,40,0,100,28.21,58.97,66.67,100,0,92.31,92.31,0,100,0,1,0,0,9,0,0,0,0,0,0,0,0,1,10,1,11,0.909090909,10,0.9,62,27 +280,1048,DevilsDen,Immediate,Goal-assigned,Share,2,08:30pm,4,High Threat,0,0.2,"Devil's Den was the scariest tour for me. i disliked all of the machinery noises because they remind me of horror movies. there was heavy machinery alll around including chain saws, hammers, saws, cranes, and maybe stuff like broken down cars and trucks? I remember lots of tones of red and brown and dark grey. I remember not being able to see the edges of the rooms and halls making me feel uneasy and the more freighted. At the end of Devil's Den there was a hall with the lights almost all the way off, strobe lights going off slowly, and the floor seemed to move. I disliked this part of the tour the least because it felt like i couldnt tell where i was and what was in the immediate surroundings. Most of the characters in this tour made gross noises. ",1,83.86,6.39,82.36,1,0.7,0,0.7,0,11.97,1.41,10.56,3.52,2.82,0.7,2.11,0,1.41,2.11,6.34,0,6.34,3.52,0,3.52,2.11,0,0,0,1.41,0.7,0,0,0,0,0.7,0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,2.82,19.01,0,2.11,8.45,4.93,1.41,2.11,0,2.82,4.49,29.99,-27.01,10.5,4,5,2,2,4,1,54.37,0,85.92,100,29.61,52.71,52.71,14.29,0,100,0,100,1.79,1.79,53.57,0,1,0,12,2,0,0,0,0,2,1,0,1,15,4,19,0.789473684,13,0.923076923,142,27 +281,1048,DevilsDen,Delay,Goal-assigned,Share,2,08:30pm,4,High Threat,1,0.6,"The thing I remember most from the Devil's Den tour is the character chasing me wish a chain saw. The sound of the chain saw occurred quickly one you entered the hallway. The character with the chain saw was on my left and the hallway was at a slight decline. Some other machinery in this tour included hammers, saws, and chains. ",1,96.97,22.81,18.18,20.23,1.64,0,0,1.64,4.92,0,4.92,1.64,0,1.64,0,0,1.64,1.64,0,0,0,0,0,0,0,0,0,0,1.64,0,0,0,0,0,0,1.64,0,0,0,0,0,1.64,0,0,0,0,0,0,0,0,11.48,0,1.64,3.28,4.92,1.64,0,1.64,0,-12.5,48.94,-32.72,-53.71,2,4,1,5,2,2,89.74,100,100,100,0,89.74,0,0,100,100,100,0,0,0,0,1,1,0,7,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.777777778,61,27 +282,1048,GhostlyGrounds,Delay,Goal-assigned,Test,2,08:30pm,4,High Threat,0,0.6,"The Ghostly Grounds tour was the scariest tour. I remember the beginning of the tour being the walk through of the bus. I felt this part of the tour was the most nerveracking because I couldnt see past like a foot in front of me, there was smoke everywhere, and I was unsure of where to walk next. I remember trying to grab onto the seats to my left and right in the bus to make sure I was walking in the correct direction. I did not like this feeling of not knowing where you step next. After the bus part, the thing I remember the most is that some of the characters looked like zombies. I honestly dont remember much from the rest of this tour. ",1,89.52,1,99,12.02,0.79,0,0.79,0,15.87,0.79,15.08,5.56,0.79,1.59,0.79,0.79,3.97,3.17,0.79,0,0.79,0.79,0,0.79,0.79,0,0,0,0.79,0,0,0,0,0,0,0.79,0,0,0,0,0,0,0.79,0,0,0,0,0,0,3.97,17.46,1.59,3.17,8.73,1.59,0,2.38,0.79,3.97,35.28,62.78,23.89,19.16,1,2,3,2,3,2,100,0,86.67,21.67,21.67,10.1,100,0,62.5,62.5,46.15,0,100,100,50,2,1,0,4,3,0,0,0,0,1,0,0,1,10,2,12,0.833333333,7,0.571428571,126,27 +283,1049,Infirmary,Immediate,Goal-assigned,Baseline,1,08:30pm,2,Low Threat,0,0.6,"neon lights, many colors, dancers, a little child with red hair, moving wood planks, 3d glasses, green fog, things sticking out, colorful pegs on the wall, polka dots, music, was more cool than scary, pink glow sticks wrapped around a pole +",1,97.66,54.61,14.11,58.42,0,0,0,0,2.44,0,2.44,0,0,0,0,0,2.44,0,7.32,4.88,2.44,2.44,0,2.44,2.44,0,0,0,4.88,0,0,0,0,0,0,4.88,0,0,0,0,0,0,0,0,0,0,0,0,0,4.88,31.71,0,2.44,7.32,17.07,2.44,2.44,0,4.88,37.53,38.29,43.36,30.94,3,3,4,2,1,1,59.26,0,100,33.33,66.67,0,0,100,100,0,0,0,0,100,0,0,0,0,12,1,0,0,0,0,0,0,0,0,13,0,13,1,12,1,41,20 +284,1049,Infirmary,Delay,Goal-assigned,Baseline,1,08:30pm,2,Low Threat,1,0.6,"i think this was the first one, there were black lights and polka dots, people dancing on tables with polka dot dresses, they had large hair and looked like female figures, there was a spray paint wall, green fog, colorful things sticking out on a wall, we put on 3d glasses, we put them in a big box at the end, funky music playing ",1,84.59,87.7,65.48,69.4,3.13,3.13,0,0,3.13,0,3.13,3.13,0,0,0,0,0,0,3.13,3.13,0,0,0,0,0,0,0,0,9.38,1.56,0,0,0,0,0,7.81,0,0,1.56,0,0,0,0,0,0,0,0,0,0,6.25,23.44,0,4.69,9.38,7.81,1.56,0,0,6.25,-35.76,-14.84,-38.74,-53.71,5,1,1,1,5,2,0,30,0,90,100,100,18.64,38.98,38.98,0,100,0,0,0,0,3,0,0,10,0,0,0,0,0,0,0,0,0,13,0,13,1,13,0.769230769,64,20 +285,1049,Asylum,Delay,Goal-assigned,Baseline,1,08:30pm,1,Low Threat,0,0.5,"there was a person in a red dress with large dark hair and a person that i kept seeing was saying something to her, they kept saying she was a star, there was a person at a desk that looked like a secretary, people were speaking jibberish, it was a green tint ",1,74.95,88.42,1,20.23,0,0,0,0,1.92,0,1.92,0,0,0,1.92,0,0,0,0,0,0,0,0,0,0,0,0,0,17.31,5.77,0,0,0,0,5.77,11.54,0,0,3.85,0,0,0,0,0,0,0,0,0,0,3.85,17.31,0,0,5.77,11.54,0,0,0,3.85,NA,52.36,41.76,NA,4,3,1,2,1,1,88.24,0,35.29,100,2.94,0,85.71,100,5.71,37.14,50,50,50,50,50,0,0,0,7,0,0,0,0,0,0,0,0,0,7,0,7,1,7,1,52,20 +286,1049,DevilsDen,Immediate,Goal-assigned,Test,1,08:30pm,2,High Threat,0,0.6,"red lights, more tunnels, huge blade, man with a huge sword thing, person on table, a little tunnel with a bunch of flesh on it, a man standing at the end of the tunnel with a wrench, person in a cage, people hanging upside down with chains on their ankles, person standing with a huge covering, person in white laying on a bed, ",1,99,92.24,24.32,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.11,0,0,0,0,0,0,11.11,0,0,0,3.17,0,0,0,0,0,0,0,0,0,1.59,15.87,0,1.59,11.11,4.76,0,0,0,1.59,NA,-32.33,-8.88,NA,2,4,1,1,3,1,0,100,100,46.67,68.33,92.31,92.31,0,100,0,50,50,50,50,50,0,1,0,11,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.916666667,63,20 +287,1049,DevilsDen,Delay,Goal-assigned,Test,1,08:30pm,2,High Threat,1,0.6,"there was a flesh bridge, when we walked in a man had a big ax thing, when i came out of the flesh brige someone came at me with a wrench, there was a blade on top of the flesh bridge, there was a bunch of bodies hanging upside down from chains in one area and two characters in it, red lights ",1,93.3,59.25,97.57,20.23,1.61,1.61,0,0,1.61,0,1.61,0,0,0,1.61,0,0,0,0,0,0,0,0,0,0,0,0,0,4.84,0,0,0,0,0,0,4.84,0,0,0,1.61,0,0,0,0,0,0,0,0,0,3.23,25.81,0,4.84,17.74,3.23,0,0,0,3.23,NA,11.18,-43.9,NA,3,1,1,2,4,1,28.57,0,100,38.1,7.14,100,64.71,38.24,0,0,50,50,50,50,50,3,1,0,2,0,0,1,0,3,0,0,0,0,6,4,10,0.6,6,0.333333333,62,20 +288,1049,GhostlyGrounds,Delay,Goal-assigned,Share,1,08:30pm,2,High Threat,0,0.6,"i remember seeing a big bus as we stood in line, there was an accesible entrance, there were a bunch of people sitting in the seats and it was dark, the bus was made by ford, it was longer than the other sites and we went through a bunch of stairs that took us to a hallway with portraits of old men, for the last part we walked through the huge hallway with prison cells and people were walking around trying to be scary, it was hard to see in this hallway the lights were very dim, i kept seeing accessible routes because there were a lot of stairs, it was kind of foggy i think in the hallway with the portraits of men then we just went back down ",1,89.52,67.13,81.58,6.78,5.38,3.85,0.77,0.77,7.69,0,7.69,1.54,1.54,0.77,1.54,0,2.31,0.77,1.54,0,1.54,0.77,0,0.77,0.77,0,0,0,5.38,0,0,0,0,0,0,5.38,0,0,0,1.54,0,0,0.77,0,0,0,0,0,0,3.85,20,0,3.08,12.31,3.85,0,0.77,0.77,3.85,1.59,48.33,14.81,-58.36,3,2,5,4,3,3,75,50,100,0,75,33.33,100,0,83.33,66.67,33.33,33.33,0,33.33,100,2,3,0,9,0,0,0,0,0,0,1,1,0,14,2,16,0.875,14,0.642857143,130,20 +289,1050,Infirmary,Delay,Control,Baseline,0,08:30pm,2,Low Threat,0,0.4,"This was one of the more scary rooms i believe +It felt more twisted and weird +Neon lights +More jump scares +Dont remember much from this one ",1,44.1,8.59,92.16,1,0,0,0,0,11.11,0,11.11,11.11,0,0,0,0,0,3.7,7.41,0,7.41,7.41,0,7.41,7.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,0,18.52,0,7.41,3.7,3.7,0,3.7,0,3.7,18.66,85.67,-36.58,6.88,1,1,2,2,3,1,100,0,0,0,60,100,100,0,0,0,0,100,0,0,60,1,0,0,1,2,0,0,0,0,1,0,0,1,4,2,6,0.666666667,2,0.5,27,19 +290,1050,Asylum,Immediate,Control,Baseline,0,08:30pm,2,Low Threat,0,0.75,"This was a little scary, but it did to make me jump or fear for my life. It was better/scarier than Infirmary, but not the best of tonight. I think there were monster strippers dancing on the table in here, but not sure. ",1,32.02,1,99,1,4.55,0,4.55,0,22.73,0,22.73,2.27,2.27,0,6.82,0,15.91,0,9.09,2.27,6.82,6.82,0,6.82,6.82,0,0,0,6.82,2.27,0,0,0,0,0,2.27,0,0,0,0,0,0,0,0,0,0,0,0,0,11.36,11.36,0,4.55,6.82,0,0,0,0,11.36,-13.1,39.91,-55.57,-23.63,5,1,5,2,3,2,42.11,0,42.11,0,100,100,50,0,0,18.75,44.44,0,88.89,44.44,100,1,0,0,1,2,0,0,0,0,2,0,0,1,4,3,7,0.571428571,2,0.5,44,19 +291,1050,Asylum,Delay,Control,Baseline,0,08:30pm,2,Low Threat,1,0.75,"Pretty sure this was not as scary as the others +people jumping out at me +long line to get in +I think this was the second haunted house +dark +loud sounds +air gun +very windy and lots of turns +stone walls +jail cells + +",1,70.9,2.3,96.19,1,0,0,0,0,9.3,0,9.3,2.33,0,0,2.33,0,4.65,0,6.98,0,6.98,2.33,0,2.33,2.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.33,0,0,0,0,0,0,13.95,23.26,0,4.65,11.63,2.33,4.65,0,2.33,13.95,13.21,79.09,-23.35,-16.1,1,1,1,4,4,2,100,100,66.67,0,37.5,100,46.67,100,0,0,100,0,100,0,0,4,0,0,5,0,0,0,0,0,1,1,0,0,9,2,11,0.818181818,9,0.555555556,43,19 +292,1050,DevilsDen,Delay,Control,Baseline,0,08:30pm,3,High Threat,0,0.6,"loud machines making noises +people jump scaring us +girls in front of us were screaming +walking though corridors +jail cell +dark +cold as hell +smoke machine +funky lights",1,67.11,91.33,48.09,1,7.14,7.14,0,0,7.14,0,7.14,0,3.57,0,0,0,3.57,0,10.71,0,7.14,3.57,0,3.57,3.57,0,0,3.57,10.71,0,0,0,0,0,0,10.71,0,0,3.57,0,0,0,0,0,0,0,0,0,0,3.57,35.71,0,7.14,7.14,7.14,10.71,3.57,0,3.57,NA,-16.01,32.78,NA,2,3,1,1,1,1,0,100,0,60,0,0,33.33,100,0,0,50,50,50,50,50,4,0,0,6,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.6,28,19 +293,1050,GhostlyGrounds,Immediate,Control,Baseline,0,08:30pm,2,High Threat,0,0.6,"This was the longest one of the four. It was pretty scary, but not as scary as the Mach. Shop. I remember people nearly hitting us with objects but stopping last second. There were lots of actors running and screaming. Also, the girls in front of us were screaming the whole time which was ridiculous. There was a hallway with cells above us, and monsters running and scaring us in the weird flashing light. ",1,55.1,71.32,87,1,5.41,5.41,0,0,9.46,0,9.46,1.35,0,0,2.7,0,5.41,1.35,6.76,0,6.76,4.05,0,4.05,4.05,0,0,0,9.46,1.35,0,0,0,1.35,0,8.11,0,0,1.35,0,0,0,0,0,0,0,0,0,1.35,5.41,18.92,0,2.7,10.81,2.7,2.7,0,0,6.76,19.9,59.52,-27.48,27.66,1,1,2,2,2,4,100,0,0,100,21.43,100,0,0,100,14.29,50,100,50,0,0,3,1,0,4,2,0,0,0,0,2,0,0,0,10,2,12,0.833333333,8,0.5,74,19 +294,1050,GhostlyGrounds,Delay,Control,Baseline,0,08:30pm,2,High Threat,1,0.4,"It was dark with a lot of lights that were flashing, and people running around yelling and screaming. They were dressed up in costumes and loud noises. Bodies hanging from ceiling like a meat locker i think. Zombie strippers. Also they were swinging axes at our faces. ",1,61.33,84.86,42.1,4.04,2.13,2.13,0,0,2.13,0,2.13,2.13,0,0,0,0,0,0,2.13,0,2.13,0,0,0,0,0,0,0,10.64,2.13,0,0,0,0,2.13,8.51,0,0,0,0,0,0,0,0,0,0,0,0,0,4.26,27.66,0,4.26,8.51,6.38,8.51,0,0,4.26,6.81,66.4,-34.4,-11.56,1,5,4,2,3,1,100,0,61.11,61.11,5.56,86.67,86.67,0,0,100,0,0,0,100,100,1,0,0,10,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.909090909,47,19 +295,1051,Infirmary,Delay,Goal-assigned,Baseline,1,06:15pm,1,Low Threat,0,0.6,"This one was very heavy on the black light paintings and makeup. There were special glasses provided for us to make things 3D. There were a lot of fun clowns and dancers when we walked in. I dont know what to call it, but there was a tunnel and a little bridge through it and the tunnel walls were rotating around us like washing machine which made it very difficult to walk through because it looked like the room/tunnel was spinning. I just remember there being a lot of black light effects and neon painting on the wall. At the end they collected our glasses in a tub. ",1,58.39,66.98,70.59,20.23,3.67,3.67,0,0,8.26,0,8.26,2.75,3.67,0,0,0,1.83,0.92,1.83,0.92,0.92,0.92,0.92,0,0,0,0,0,7.34,1.83,0,0,0,0,0.92,5.5,0,0,0,0,0,0,0.92,0,0,0,0,0,0,8.26,18.35,0,3.67,9.17,4.59,0,0.92,0.92,8.26,16.51,0.01,16.94,32.59,5,2,2,1,5,1,0,0,30,0,100,70.83,100,70.83,85.42,0,0,100,0,100,52.38,3,2,0,9,0,0,0,0,0,0,0,0,1,14,1,15,0.933333333,14,0.642857143,109,20 +296,1051,Asylum,Immediate,Goal-assigned,Baseline,1,06:15pm,2,Low Threat,0,0.25,"When we walked in they took our 3D glasses from us. There was a spot for the ""Diva Star"" to get ready in a ""backstage"" like area. There was a man at a dentist chair looking thing that had a skull on it and he was yelling something like, ""I only have this part of my actress. I need the whole thing!"" ",1,60.93,88.59,35.88,44.38,4.84,4.84,0,0,4.84,0,4.84,0,0,1.61,1.61,0,1.61,0,1.61,1.61,0,0,0,0,0,0,0,0,12.9,1.61,0,0,0,0,1.61,11.29,0,0,1.61,3.23,1.61,0,3.23,0,0,0,0,0,0,9.68,12.9,0,1.61,8.06,1.61,1.61,0,4.84,9.68,NA,-17.8,-24.14,NA,2,4,1,1,2,1,0,100,31.25,4.17,4.17,92.31,0,57.14,100,85.71,50,50,50,50,50,1,2,0,3,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.5,62,20 +297,1051,Asylum,Delay,Goal-assigned,Baseline,1,06:15pm,2,Low Threat,1,0.5,"In Asylum there were a bunch of props set up from a movie set. There was a room with a dentist in it I think asking us to come back so he could take care of our teeth. There was a ""Star Diva"" vanity thing that had a mirror and chair set up. After that, there was a room with a man and a chair that looked like it came from either a dentists office or something like an OR. The chair had a skull on it and the man was saying something along the lines of, ""This is all I have of my actress, please let me have you"" or something like that. Basically saying he was gonna kill us and harvest us for parts for his actress. ",1,62.64,75.04,41.41,20.23,3.85,3.08,0,0.77,8.46,0.77,7.69,0.77,0,0.77,4.62,0,3.85,0,1.54,0.77,0.77,0,0,0,0,0,0,0,14.62,5.38,1.54,0.77,0.77,0.77,2.31,9.23,0,0,1.54,3.85,0,0,1.54,0,0,0,0,0,0,6.92,11.54,0,1.54,10,0.77,0,0,1.54,6.92,21.35,60.66,42.54,-39.14,1,5,1,5,1,2,100,25,75,87.5,0,0,66.67,33.33,55.56,100,100,0,100,0,100,4,2,0,6,0,0,0,0,0,0,0,0,2,12,2,14,0.857142857,12,0.5,130,20 +298,1051,DevilsDen,Delay,Goal-assigned,Test,1,06:15pm,3,High Threat,0,0.6,"We waited in a line outside Machine Chop and the character Bunny was standing outside letting people in. She told groups more than two to stand in line smallest to tallest so she knew where to chop us. I was freaking out a little because we did not get in line smallest to tallest and I was at the back so I thought I wasnt going to be allowed in. She also said a really funny joke something like, ""If you have to ask if someone is around the corner, there is."" and it was just so deadpanned that it was funny. Anyway, we went in and it was really dark inside. I was looking around every single corner for someone. There were machine parts and actors were showing us the way through. It also happened to be in the death row portion of the prison which I thought was cool in kind of a twisted way. But there was a big circuit board kind of thing in the beginning before we were led outside and then back inside. There were people with mallets or hammers or something that would swing at me and then stop before they hit and honestly, I think I was being targeted because that happened like six times throughout the night. I think there were body parts hanging along the wall and ceiling in this one too. There were a bunch of machinery props out and about too. We eventually were led into The Machine, I guess it was called, and it was just this big box that kind of shook a little bit. It was very anticlimactic for sure. There was a girl outside of it that said something about having all the parts in the machine. And then I think that was the end of the section. ",1,36.67,38.15,96.73,24.42,3.62,2.3,0,1.32,13.82,0.66,12.83,2.3,1.64,0.33,5.26,0.99,3.95,0,2.3,1.32,0.99,0.66,0.66,0,0,0,0,0,7.89,2.3,0,0,0,0,1.64,5.59,0,0,1.32,0,0.66,0,0.33,0,0,0,0,0,0,5.26,16.78,0,1.32,14.14,0.99,0,0.33,0.99,5.26,32.59,61.91,33.51,2.33,1,2,3,2,1,2,100,0,85.71,14.29,60.48,0,100,13.33,53.33,49.56,20,0,100,20,61.67,15,1,0,13,5,0,0,0,0,1,0,0,3,34,4,38,0.894736842,29,0.448275862,304,20 +299,1051,GhostlyGrounds,Immediate,Goal-assigned,Share,1,06:15pm,3,High Threat,0,0.8,We walked past a bunch of vampires. There was a bus at the entrance that we went through that had a bunch of fake corpses and flashing lights. There were a bunch of hanging fake corpses from the ceiling. Prisoneresque people were jumping out through the bars of a jail cell. There was floor boards that shifted all weirdly. A dark tunnel of flashing lights through one of the hallways of the prison. ,1,98.5,71.69,28.97,1,5.48,2.74,0,2.74,1.37,1.37,0,0,0,0,0,0,0,0,5.48,0,5.48,0,0,0,0,0,0,0,5.48,2.74,0,0,0,2.74,0,2.74,0,0,0,0,0,0,0,0,0,0,0,0,1.37,2.74,20.55,0,4.11,9.59,6.85,0,0,0,4.11,NA,34.5,1.91,NA,5,2,1,2,5,1,44.44,0,66.67,4.76,100,66.67,100,16.67,71.43,0,50,50,50,50,50,1,2,0,6,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.666666667,73,20 +300,1051,GhostlyGrounds,Delay,Goal-assigned,Share,1,06:15pm,3,High Threat,1,0.2,"I remember waiting in line for Ghostly Grounds, there were vampires outside. One of them said A+ was their favorite blood type. The line led to a bus that was dark and had a strobe light on it. There were fake dead bodies in the seats of the bus. Outside the bus and around a corner, there was a scare guy hiding between two chain link fences and he jumped up at the people behind us. The inside of the attraction was really dark and there were a bunch of dead bodies hanging from the ceiling. There were actors who would jump from in between jail bars at us. There was a ""freezer"" that had whole dead bodies hanging from it and there were crazy strobe lights in it as well. There was also a scare actor hiding amongst the bodies that was reaching out at us. I ran into the last body because I couldnt see from the strobe lights. Outside the freezer there were moving floor boards. I think there were three or four of them that shifted in every direction. ",1,82.19,65.94,88.46,14.24,2.2,1.65,0,0.55,4.95,0.55,4.4,1.1,1.1,1.1,0.55,0.55,0.55,0.55,3.3,1.1,1.65,1.65,0,1.1,1.1,0,0,0,7.14,1.1,0,0,0,0.55,0.55,6.04,0,0,0,1.1,0,0,0,0,0,0,0,1.1,0,2.2,25.27,0,2.75,18.68,4.4,0,0,0,3.3,-19.4,8.52,4.63,-71.35,2,4,5,5,2,2,30.77,100,71.15,17.79,0,54.14,0,86.09,100,72.18,48.65,0,0,50,100,6,3,0,12,0,0,0,0,0,0,0,0,1,21,1,22,0.954545455,21,0.571428571,182,20 +301,1052,Infirmary,Immediate,Goal-assigned,Baseline,1,06:15pm,1,Low Threat,0,0.6,"There was lots of neon lights and neon paint everywhere, including on the actors and set pieces. The actors were dressed up as clowns I think. There were a few girls there who sort of looked like strippers, dancing up on a stage with poles. We were wearing 3D glasses. We walked through a spinny tube thingy thats supposed to make you dizzy. The actors kept growling in our ears, it was nasty. ",1,79.95,99,14.66,2.26,4.11,4.11,0,0,9.59,1.37,8.22,1.37,1.37,2.74,2.74,0,0,0,2.74,0,2.74,1.37,0,1.37,0,0,0,0,15.07,1.37,0,0,0,0,0,13.7,0,0,1.37,0,0,0,0,0,0,0,0,0,0,2.74,19.18,0,2.74,9.59,2.74,2.74,1.37,0,2.74,22.73,44.87,-20.4,43.73,3,4,4,4,3,1,65,65,100,0,37.5,89.36,59.57,0,100,68.09,0,93.33,0,100,0,2,1,0,8,1,0,0,0,0,0,0,0,0,12,0,12,1,11,0.727272727,73,22 +302,1052,Infirmary,Delay,Goal-assigned,Baseline,1,06:15pm,1,Low Threat,1,0.8,"This was the first section, and we were wearing 3D glasses. Everything was painted neon and the characters were dressed as clowns mostly. There was a girl painting in the first big room, holding a lollipop, and then we walked into a room where there were clown strippers on poles dancing on a stage above us. Thats the room where we got the 3D glasses. We walked through one of those spinning tunnel things, and then around a corner and up some stairs. Everything was neon and 3D and it looked like a fun house, obviously. This section was kind of small, and there was a guy dressed up for the next section at the very end of it telling us to give our glasses back. ",1,63.81,96.23,67.59,31.1,5.56,5.56,0,0,4.76,1.59,3.17,0,0,0,2.38,0.79,0,0,0.79,0.79,0,0.79,0.79,0,0,0,0,0,10.32,2.38,0,0,0,0,0.79,7.94,0,0,0.79,0.79,0,0,0.79,0,0,0,0,0,0,3.97,18.25,0,3.17,14.29,0.79,0,0,0.79,3.97,-3.89,-12.55,-30.05,30.94,5,1,4,1,2,1,0,51.85,75.93,3.7,100,100,0,54.17,72.22,36.11,0,0,0,100,0,6,4,0,7,0,0,0,0,0,0,1,1,0,17,2,19,0.894736842,17,0.411764706,126,22 +303,1052,Asylum,Delay,Goal-assigned,Baseline,1,06:15pm,2,Low Threat,0,0,"It started with a man in a suit taking our 3D glasses away, and then us walking through a dark backstage looking area. We walked past a man who could have been a reporter maybe who slammed his fists on the desk, a doctor or dentist who said hell make us look real good for the camera, a dressing room for a star actress, and a man with a skull on a bed asking us to donate parts to him. There was also a room in the beginning with a bunch of desks and a man who lunged at us from over the desk. ",1,97.18,99,25.1,20.23,6.73,6.73,0,0,5.77,0,5.77,0,0.96,0.96,1.92,0.96,1.92,0,2.88,0.96,0.96,0.96,0.96,0,0,0,0,0.96,19.23,2.88,0.96,0,0,0,1.92,16.35,0,0,0.96,5.77,0,0,0.96,0,0,0,0,0,0,4.81,14.42,0.96,3.85,7.69,2.88,0,0,0.96,4.81,36.87,56.2,10.65,43.76,5,2,2,2,3,1,46.15,0,30.77,61.54,100,40,100,0,60,3,0,100,0,100,0,5,3,0,3,0,0,0,0,0,0,0,0,1,11,1,12,0.916666667,11,0.272727273,104,22 +304,1052,DevilsDen,Delay,Goal-assigned,Test,1,06:15pm,4,High Threat,0,0.4,"Before we went in, there was a girl outside named Bunny with an ax telling us to line up shortest to tallest if theres more than two in our group so she knows where to cut us. We were inside the death row section of the prison, and there were a few guys in there running at us to yell in our ears that, we think we can just walk right into the shop and live? We went outside and there was a guy with a chainsaw hiding behind a wall. There were lots of jump scares in this section. We walked through a windy part where there were lots of machines and people with lab coats on, and there was a big crusher thingy with body parts melted into it. There were also body parts hanging from chains near the exit.",1,79.62,98.1,98.56,7.54,8.45,7.75,0,0.7,6.34,0,5.63,1.41,0,0.7,0.7,0,3.52,0,1.41,0,1.41,0.7,0,0.7,0.7,0,0,0,12.68,1.41,0,0,0,0,1.41,11.27,0,0,1.41,1.41,0,0,0,0,0,0,0,0.7,0,2.82,28.17,0,4.23,21.83,0.7,1.41,0,0,3.52,40.72,91.09,55.98,-24.9,1,3,3,4,1,4,100,20,27.62,0,27.62,0,91.06,100,29.27,29.27,96.55,96.55,100,0,100,4,1,0,10,0,0,0,0,0,0,0,0,0,15,0,15,1,15,0.666666667,142,22 +305,1052,GhostlyGrounds,Immediate,Goal-assigned,Share,1,06:15pm,4,High Threat,0,0.4,"It was the last segment we walked through, and all of the actors were dressed up as weird demon vampire things and crawling around. We went up and down the stairs a few time. There were lots of gunshot sounding things? It was very dark but I remember going through a bunch of cellblocks that had cages with fake and real demon vampire things. It started through a school bus with a bunch of dolls in it. There was a man outside crawling around asking for fresh blood. This one had LOTS of jumpscares.",1,84.47,65.16,71.66,20.23,2.13,2.13,0,0,4.26,1.06,3.19,1.06,0,0,0,1.06,1.06,1.06,2.13,1.06,1.06,0,0,0,0,0,0,0,6.38,2.13,0,0,0,1.06,1.06,4.26,0,0,0,1.06,0,0,0,0,0,0,0,0,1.06,3.19,18.09,0,5.32,10.64,1.06,1.06,0,0,4.25,24.56,46.34,-3.61,30.94,4,3,3,3,4,1,75,75,0,100,56.94,60,60,100,0,45.56,0,0,100,0,0,2,2,0,9,0,0,0,0,0,0,1,0,0,13,1,14,0.928571429,13,0.692307692,94,22 +306,1052,GhostlyGrounds,Delay,Goal-assigned,Share,1,06:15pm,4,High Threat,1,0.8,"This was the last section, and it started with a school bus parked outside. You went up in it and it was filled with smoke, strobe lights, and mannequin doll things. A man was outside to jump scare you after you got off. You went inside, and there were cages with bodies hanging in them and actors hiding in them to jump scare you. They were all dressed as these weird demon vampire things, with blank white masks and maybe one of them was on stilts? There were some shaky floorboards, and we went up and down a staircase in one of the cellblocks, but nothing happened up there. We came out into one of the main hallways of the cellblock, and there was a woman at the end guiding us towards our pictures and congratulating us on surviving.",1,77.78,99,89.99,12.67,3.6,3.6,0,0,2.88,1.44,1.44,0,0,0,0.72,0,0.72,0,2.16,0.72,1.44,2.16,0.72,1.44,1.44,0,0,0,13.67,1.44,1.44,0.72,0,0,0,12.23,0,0,0.72,0.72,0,0,0.72,0.72,0.72,0,0,0.72,0.72,0.72,24.46,0,5.04,16.55,2.88,0,0,2.16,2.16,35.17,29.83,13.8,61.88,5,3,3,3,5,1,37.24,55.86,0,74.48,100,73.27,73.27,100,73.27,0,0,0,100,100,0,8,3,0,11,0,0,0,0,0,0,1,0,1,22,2,24,0.916666667,22,0.5,139,22 +307,1054,Infirmary,Delay,Goal-assigned,Baseline,2,06:15pm,4,Low Threat,0,0.75,"there were neon colors and neon figures/graffiti painted on the walls +there was a green laser light that made walking through the first section very disorienting and you felt like you were going to walk into a wall. the green laser beam went up to my hips in height. I could see what was on the floor +hands and people would pop out from the green laser light +there were 3d glasses but they made me dizzy so I took them off +spiders +strobe lights +actors following us and popping out at us +I screamed a lot +It was the first section we went through +spooky carnival music +blacklight +glowing white paint +spinning figures + +",1,72.44,74.72,74.45,11.39,2.61,2.61,0,0,6.96,0,6.96,2.61,1.74,1.74,0,0,0.87,0,0.87,0,0.87,0.87,0,0.87,0.87,0,0,0,6.96,0,0,0,0,0,0,6.96,0,0,0,0,0,0,0.87,0,0,0.87,0,0,0,6.09,27.83,0,4.35,11.3,8.7,1.74,1.74,1.74,6.09,36.86,48.17,20.91,41.51,2,4,2,4,2,1,75,100,100,0,50,20,0,40,100,0,0,100,0,50,0,4,0,0,10,0,2,0,0,4,1,1,0,0,14,8,22,0.636363636,14,0.714285714,115,27 +308,1054,Asylum,Immediate,Goal-assigned,Baseline,2,06:15pm,2,Low Threat,0,0.5,"a woman looking at herself in the mirror +a chaise/lounge chair +darkness +people jumping out at me +loud noises +hissing sounds +fog +spooky makeup +dark circles under eyes +spooky music +",1,99,59.25,17.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.9,3.23,9.68,6.45,0,6.45,6.45,0,0,0,6.45,0,0,0,0,0,0,6.45,0,0,6.45,0,0,0,0,0,0,0,0,0,0,6.45,41.94,0,3.23,9.68,12.9,16.13,0,0,6.45,NA,81.53,-21.45,NA,1,3,1,4,2,1,100,29.17,58.33,0,29.17,85.71,0,100,0,0,50,50,50,50,50,1,0,0,9,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.9,31,27 +309,1054,Asylum,Delay,Goal-assigned,Baseline,2,06:15pm,2,Low Threat,1,0.25,"woman in robe looking into mirror of a vanity +the woman had a retro curled hairstyle +the woman was laughing +a chaise chair +dentist chair +teeth +darkness +fog +spooky music +people in costume following me +man in a tophat +I remember that it was the second section we walked through +I remember that the actors were talking but I cant remember what they said +a directors chair",1,84.84,57.85,69.28,20.23,2.99,1.49,0,1.49,7.46,0,7.46,4.48,0,1.49,0,0,2.99,4.48,2.99,1.49,1.49,2.99,1.49,1.49,1.49,0,0,0,17.91,5.97,0,0,0,1.49,4.48,11.94,0,0,4.48,1.49,0,0,0,0,0,0,0,0,0,1.49,13.43,0,1.49,7.46,2.99,1.49,0,0,1.49,32.57,80.31,33.74,-16.35,1,4,5,5,1,1,100,18.75,43.75,43.75,0,0,0,21.13,100,100,0,0,50,50,100,1,0,0,14,0,0,0,0,0,0,1,0,1,15,2,17,0.882352941,15,0.933333333,67,27 +310,1054,DevilsDen,Immediate,Goal-assigned,Share,2,06:15pm,4,High Threat,0,0.5,"a man with a saw came up to us with the saw near our feet outside +darkness +flashing lights +limbs +blood +person with hammer popped out +fog +flashing lights +I screamed and laughed +hissing sounds +fog +someone bent over cutting things +corpses +skeletons +heads on the walls +shadows +cogs and wheels +someone turning a crank",1,98.61,95.19,63.35,47.86,3.64,3.64,0,0,3.64,0,3.64,0,0,0,3.64,0,0,0,1.82,1.82,0,1.82,1.82,0,0,0,0,0,12.73,1.82,0,0,0,0,1.82,10.91,0,0,0,1.82,0,0,0,0,0,0,0,0,0,1.82,38.18,0,5.45,12.73,14.55,5.45,0,0,1.82,NA,92.16,51.73,NA,1,3,1,4,1,1,100,16.67,16.67,0,33.33,0,0,100,100,100,50,50,50,50,50,4,0,0,8,0,0,0,0,0,0,0,2,0,12,2,14,0.857142857,12,0.666666667,55,27 +311,1054,DevilsDen,Delay,Goal-assigned,Share,2,06:15pm,4,High Threat,1,0.5,"we walked on a ramp and a man with a chainsaw ran past us with the chainsaw near our feet +I screamed +drilling sounds +hammering sounds +actor with hammer came towards us +actor pretending to work at a desk or work bench +sawing +hissing sounds +machinery +heads with faces on the walls +limbs hanging +fake dead body/corpse on table +fog + there was a woman with a shaved head and spooky contacts on her eyes that was holding an axe before we entered the haunted house. She talked about people having attachment issues. She was scaring people while they were in line to get in + +",1,94.68,97.94,19.26,1,6.67,4.76,1.9,0,1.9,0,1.9,0,0,0,0.95,0,0.95,0,3.81,0,3.81,1.9,0,1.9,1.9,0,0,0,14.29,1.9,0,0,0,0.95,0.95,12.38,0,0,3.81,0.95,0,0,0.95,0,0,0,0,0,0,4.76,17.14,0,3.81,7.62,0.95,4.76,0,0.95,4.76,20.69,67.62,-36.49,30.94,1,5,2,3,2,1,100,25,0,75,0,60,0,0,60,100,0,100,0,0,0,6,0,0,17,0,0,0,0,0,0,0,0,1,23,1,24,0.958333333,23,0.739130435,105,27 +312,1054,GhostlyGrounds,Delay,Goal-assigned,Test,2,06:15pm,4,High Threat,0,0.6,"we walked through an old school bus +there were fake dead bodies in the seats +there was an actor hiding in a seat who popped out +in one section there were corpses hanging from the ceiling and they were swaying; there were strobe lights flashing and actors lurking; because the lights were flashing, I didnt know when an actor was near me. It felt like the corpses were going to swing into my face. Hard to tell whether it was an actor or a corpse near me +there was a part where the floor moved underneath your feet +hissing sounds +fog +we walked down a very dark hallway with prison cells; actors followed us down the hall +an actor wearing a cloak popped out and blocked my partner Ron from walking forward. Ron was walking behind me and I looked back towards him to make sure he was ok +",1,77.23,63.88,98.06,7.94,3.36,2.68,0,0.67,5.37,0,5.37,1.34,0.67,0,0.67,0,2.68,0,1.34,0,1.34,0,0,0,0,0,0,0,11.41,2.01,0.67,0,0,0.67,0.67,9.4,0,0,0,1.34,0,0,0,0,0,0,0,0.67,0,4.03,29.53,1.34,4.7,16.11,4.7,1.34,1.34,0,4.7,35.04,56.81,20.46,27.85,1,2,2,2,4,1,100,0,100,80,44.14,25,100,75,0,66.81,0,100,50,0,51.72,6,2,0,12,1,0,0,0,0,1,0,0,0,21,1,22,0.954545455,20,0.6,149,27 +313,1055,Infirmary,Immediate,Control,Baseline,0,07:30pm,2,Low Threat,0,0,"Kaleidascope Hallway +Clowns +Guy with sledgehammer +3d Spider +3d Spikes on the wall +3d graffiti +Jumpscare at beginning +Lots of orange and green +Clown Afros +",1,99,63.73,3.34,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,12,0,0,4,8,0,0,0,0,NA,19.81,-9.59,NA,3,5,1,2,1,1,50,0,100,100,0,0,0,0,0,100,50,50,50,50,50,1,0,0,7,0,0,1,0,1,0,0,0,0,8,2,10,0.8,8,0.875,25,18 +314,1055,Infirmary,Delay,Control,Baseline,0,07:30pm,2,Low Threat,1,0.5,"Kaleidoscope Walkway +3d Spikes +3d Spider +Lots of green orange and purple colors",1,89.52,40.06,1,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.77,0,0,0,30.77,0,0,0,0,NA,-11.67,21.68,NA,3,4,1,1,1,1,0,0,100,0,0,0,0,0,100,0,50,50,50,50,50,0,0,0,5,0,0,1,0,0,0,0,0,0,5,1,6,0.833333333,5,1,13,18 +315,1055,Asylum,Delay,Control,Baseline,0,07:30pm,2,Low Threat,0,1,"Flashing lights and people running at you in the hallway with the frame by frame effect given by the light +",1,99,89.5,28.56,20.23,0,0,0,0,5,0,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,10,25,0,5,5,15,0,0,0,10,-11.27,-28.16,-36.58,30.94,3,1,4,1,3,1,0,66.67,100,33.33,66.67,100,100,0,0,0,0,0,0,100,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,18 +316,1055,DevilsDen,Delay,Control,Baseline,0,07:30pm,3,High Threat,0,0.75,"Lady at the beginning jumping at people +Guys with tools jumping out at people",1,99,97.11,97.09,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.29,7.14,0,7.14,0,0,0,14.29,0,0,7.14,7.14,0,0,0,0,0,0,0,0,0,21.43,21.43,0,14.29,7.14,0,0,0,0,21.43,NA,87.41,NA,NA,1,1,1,2,1,1,100,0,0,0,50,50,50,50,50,50,50,50,50,50,50,2,0,0,2,0,0,0,0,0,0,0,0,0,4,0,4,1,4,0.5,14,18 +317,1055,GhostlyGrounds,Immediate,Control,Baseline,0,07:30pm,2,High Threat,0,0.6,"Dead people on the school bus +Flashing lights and people running at you +Almost slipped on sliding panels",1,95.3,92.24,39.59,20.23,0,0,0,0,5.56,0,5.56,0,0,0,5.56,0,0,0,0,0,0,0,0,0,0,0,0,0,5.56,0,0,0,0,0,0,5.56,0,0,0,0,0,0,0,0,0,0,0,0,0,11.11,27.78,0,16.67,0,11.11,0,0,0,11.11,NA,72.09,34.07,NA,1,4,1,2,1,1,100,0,50,0,66.67,0,0,37.5,100,0,50,50,50,50,50,2,0,0,2,0,0,0,0,0,0,0,0,0,4,0,4,1,4,0.5,18,18 +318,1055,GhostlyGrounds,Delay,Control,Baseline,0,07:30pm,2,High Threat,1,0.6,School bus with dead people on it and guy standing in one of the corners,1,99,77.41,19.26,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.67,0,0,0,0,0,0,6.67,0,0,0,6.67,0,0,0,0,0,0,0,0,0,6.67,13.33,0,0,13.33,0,0,0,0,6.67,NA,52.78,21.68,NA,5,3,1,3,1,1,50,50,0,50,100,0,0,100,0,0,50,50,50,50,50,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,1,2,1,15,18 +319,1056,Infirmary,Delay,Goal-assigned,Baseline,1,07:30pm,1,Low Threat,0,0.4,lady on stilts as you entered the haunted house i think. had to put on 3d glasses. walked through a hallway with neon designs painted all of the ways. neon paint all over. walked into a neon room with staff wearing matching neon costumes so they could jump out and scare you since they blended in. things hanging from the ceiling. walked on a bridge to get between 2 of the rooms i think. ,1,99,83.39,87,2.35,0,0,0,0,8.11,2.7,5.41,2.7,1.35,1.35,0,0,0,0,2.7,0,2.7,1.35,0,1.35,1.35,0,0,0,8.11,1.35,0,1.35,0,0,0,8.11,0,0,1.35,0,2.7,0,1.35,0,0,0,0,0,0,2.7,18.92,0,8.11,10.81,0,0,0,4.05,2.7,-0.72,47.96,2.63,-52.76,5,4,5,3,2,2,41.18,41.18,0,41.18,100,40,0,20,100,1.43,93.33,0,0,93.33,100,3,3,0,5,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.454545455,74,21 +320,1056,Asylum,Immediate,Goal-assigned,Baseline,1,07:30pm,1,Low Threat,0,0.5,"there was a skull with teeth in its head. there was doctors, there was really short actors, there was air that shot out by yout feet scare you. people yelling. there possibly was a guy who had a phone up against a skulls head amd was pretending like it was talking.",1,46.7,82.38,46.57,4.72,0,0,0,0,7.84,0,7.84,0,0,0,1.96,1.96,1.96,0,1.96,0,1.96,1.96,0,1.96,1.96,0,0,0,13.73,5.88,0,0,0,0,5.88,7.84,0,0,0,1.96,0,0,0,0,0,0,0,0,0,5.88,17.65,0,0,15.69,0,1.96,0,0,5.88,-7.63,45.48,-13.05,-55.32,4,2,5,2,3,1,68.18,0,50,100,25,63.64,100,0,25,25,0,0,0,0,100,1,0,0,7,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.875,51,21 +321,1056,Asylum,Delay,Goal-assigned,Baseline,1,07:30pm,1,Low Threat,1,0.25,"looked like great gatsby inspired. film set and director chair we had to walk through. very dark. not many staff members, making it less scary. woman dressed in bloody dress",1,77.34,89.5,19.26,20.23,10,6.67,0,3.33,10,0,10,3.33,3.33,0,0,0,3.33,0,13.33,6.67,6.67,6.67,3.33,3.33,3.33,0,0,3.33,16.67,0,0,0,0,0,0,16.67,0,0,3.33,0,6.67,0,0,3.33,0,0,0,0,3.33,6.67,13.33,0,3.33,3.33,6.67,0,0,10,10,-3.32,-9.34,53.1,-53.71,3,2,1,1,1,2,0,0,100,0,50,0,100,66.67,33.33,0,100,0,0,0,0,1,0,0,4,1,0,0,0,0,0,0,0,0,6,0,6,1,5,0.8,30,21 +322,1056,DevilsDen,Immediate,Goal-assigned,Test,1,07:30pm,2,High Threat,0,0.6,"there was lady in a red robe. a tall man in black popped out and scared me he was hidden in black fog I could not see him at all. had to walk down a few stairs, the small lady at the front was bald and tiny. there were showers possibly. ",1,79.1,51.75,46.57,4.72,0,0,0,0,7.84,1.96,5.88,0,0,1.96,1.96,0,1.96,0,1.96,0,1.96,1.96,0,1.96,1.96,0,0,0,9.8,3.92,0,3.92,0,0,0,9.8,0,0,3.92,5.88,3.92,0,0,0,0,0,0,1.96,0,3.92,27.45,0,1.96,15.69,9.8,0,0,3.92,5.88,NA,39.31,14.8,NA,4,3,1,3,4,1,65.91,25,0,100,0,30.3,66.67,100,0,66.67,50,50,50,50,50,4,0,0,6,0,0,0,0,1,0,0,0,0,10,1,11,0.909090909,10,0.6,51,21 +323,1056,DevilsDen,Delay,Goal-assigned,Test,1,07:30pm,2,High Threat,1,0.6,more loud noises occurred than in the rest of the houses. more staff and therefore more jump scares. walked through a fog tunnel hallway i think. smelled so bad and made me feel sticky. i think also in this house was the strobe light hallway where you felt like you were entering the afterlife. walked through all the jail houses and staff was standing hiding in the fog/strobe lights and scared us really good. potentially body parts hanging from the ceiling. ,1,75.84,54.61,91.29,1,1.22,1.22,0,0,15.85,1.22,14.63,6.1,1.22,0,1.22,1.22,3.66,0,6.1,1.22,4.88,4.88,1.22,3.66,2.44,0,0,0,6.1,0,0,0,0,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,1.22,0,4.88,21.95,0,4.88,7.32,3.66,2.44,3.66,0,6.1,50.2,72.49,54.04,24.07,1,3,3,2,1,4,100,0,4.17,75,39.58,0,36.78,100,41.38,41.38,31.37,62.75,100,0,33.33,3,2,0,5,1,0,0,0,1,0,0,0,0,11,1,12,0.916666667,10,0.5,82,21 +324,1056,GhostlyGrounds,Delay,Goal-assigned,Share,1,07:30pm,2,High Threat,0,0.4,there was mist that you had to walk to and made you feel sticky. loud air they went off by your feet as you walked by. chains hanging. ,1,46.07,99,72.58,20.23,0,0,0,0,7.14,0,7.14,3.57,3.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.86,0,0,0,0,0,0,17.86,0,0,0,0,7.14,0,0,0,0,0,0,0,0,3.57,28.57,0,10.71,7.14,0,3.57,7.14,7.14,3.57,-14.51,-16.72,-57.75,30.94,4,1,3,1,3,1,0,55.56,0,100,33.33,100,25,0,5,5,0,0,100,0,0,2,0,0,5,0,0,0,0,0,0,0,0,0,7,0,7,1,7,0.714285714,28,21 +325,1057,Infirmary,Immediate,Goal-assigned,Baseline,1,07:30pm,2,Low Threat,0,0.6,"started with clowns and neon colored paint + the workers gave us 3D glasses and w e went over a bridge with spinning walls that made you feel disoriented + Then we paused at an outside check point where they told us to remove the 3D glasses and put them into a box +We continued our way through the building with similar neon colored paint, actors wearing clown suits, and hanging bridges. + There was also actors on elevated boxes wearing 60s style dresses, dancing. +",1,83.6,99,75.67,20.23,7.32,6.1,0,1.22,3.66,0,3.66,1.22,1.22,0,0,0,1.22,0,0,0,0,0,0,0,0,0,0,0,17.07,3.66,0,0,0,0,1.22,13.41,0,0,0,0,0,0,0,0,0,1.22,0,0,0,2.44,20.73,1.22,4.88,10.98,2.44,0,1.22,1.22,2.44,4.88,-9.59,14.72,9.51,2,3,2,5,4,1,18.99,100,64.56,43.04,0,27.45,58.82,100,0,66.67,0,100,0,0,53.13,5,1,0,9,0,0,0,0,0,0,0,0,0,15,0,15,1,15,0.6,82,19 +326,1057,Infirmary,Delay,Goal-assigned,Baseline,1,07:30pm,2,Low Threat,1,0.4,"Infirmary was the first event of the night. It started by going into an art studio w/ neon lights and one actor painting on the canvas. Then we walked into a room with two gogo dancers on black boxes wearing black and white dresses and men in clown makeup. There were neon lights and colors. Then they gave us 3D glasses to wear and we walked through a tunnel with moving walls that made you dizzy. Then we continued to walk through neon colored rooms with actors wearing bright colors and clown makeup. At one point we walked over a snake bridge, but I am unsure at what point we did that. At the end of the attraction there were two more gogo dancers on black boxes wearing black and white polka dot dresses. ",1,87.33,96.16,48.48,30.38,4.48,4.48,0,0,2.24,0,2.24,0,0.75,0,0.75,0,0.75,0,0.75,0.75,0,0,0,0,0,0,0,0,10.45,0.75,0,0,0,0,0,9.7,0,0,0,0.75,0,0,0,0,0,0,0,0,0,1.49,20.9,0,4.48,6.72,8.96,0,0.75,0,1.49,56.23,83.54,54.2,30.94,1,3,4,2,1,1,100,0,0,33.33,6.41,0,40,100,40,44.62,0,0,0,100,0,3,4,0,11,0,0,0,0,0,0,1,0,1,18,2,20,0.9,18,0.611111111,134,19 +327,1057,Asylum,Delay,Goal-assigned,Baseline,1,07:30pm,1,Low Threat,0,1,"This event began with man in a room with a type writer, lip syncing the words to a monologue about an actor/play write. The next room had a woman with a long red robe, startling people by singing very loudly. She would walk between rooms by a trick door disguised as a vanity table. This attraction also had a dentist with a power drill standing by an old school dental chair. One actor was also standing behind a concierge desk with a land line, talking to a skull. ",1,99,77.75,33.23,55.18,1.12,0,0,1.12,1.12,0,1.12,0,0,1.12,0,0,0,0,3.37,2.25,0,1.12,0,0,0,0,0,0,12.36,5.62,0,0,0,1.12,3.37,6.74,0,0,2.25,1.12,0,0,0,0,0,0,0,0,1.12,2.25,17.98,0,1.12,13.48,1.12,2.25,0,0,3.37,56.83,90.39,51.2,28.89,1,3,5,4,1,1,100,33.33,33.33,0,45.1,0,0,100,100,55.88,0,0,94.44,94.44,100,1,2,0,8,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.727272727,89,19 +328,1057,DevilsDen,Delay,Goal-assigned,Test,1,07:30pm,3,High Threat,0,0.6,"Before even entering the Devil's Den, there was an actress controlling the lines who put us into height order (shortest to tallest) before walking through. In this attraction, there were long dark hallways with a red hue and a bald actor with a hatchet who would run up and scare you. The walls were often lined with bloody limbs. Their were actors in red jump suits that would walk up behind you and scare you. ",1,80.25,99,90.46,1,4,1.33,0,2.67,5.33,0,5.33,0,1.33,2.67,1.33,0,0,0,4,0,4,2.67,0,2.67,2.67,0,0,1.33,13.33,0,0,0,0,0,0,13.33,0,0,1.33,0,0,0,0,0,0,0,0,0,0,1.33,29.33,0,8,16,5.33,0,0,0,1.33,NA,25.57,-3.92,NA,2,4,1,4,3,1,50,100,100,0,0,50,50,0,100,100,50,50,50,50,50,5,0,0,7,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.583333333,75,19 +329,1057,GhostlyGrounds,Immediate,Goal-assigned,Share,1,07:30pm,2,High Threat,0,0.6," Jail cells covered in vines and skulls on the floor. + Gas tanks releasing air and imitated electrical shocks + An actor with a skull mask and a black cape hiding in between the cells + A man wearing a red jump suit and makeup growling. + Decapitated arms and legs lining both sides of a wall + A medal box with an animatronic inside shaking",1,99,59.57,11.41,6.23,1.64,0,1.64,0,0,0,0,0,0,0,0,0,0,0,1.64,0,1.64,0,0,0,0,0,0,0,3.28,0,0,0,0,0,0,3.28,0,0,0,1.64,0,0,0,0,0,0,1.64,1.64,0,0,18.03,0,1.64,9.84,4.92,1.64,0,0,3.28,NA,25.22,12.45,NA,3,2,1,4,3,1,46.15,50,100,0,100,46.15,100,0,100,0,50,50,50,50,50,0,0,0,14,0,0,0,0,0,0,0,0,0,14,0,14,1,14,1,62,19 +330,1057,GhostlyGrounds,Delay,Goal-assigned,Share,1,07:30pm,2,High Threat,1,0.6,"This attraction started with our group walking onto a bus. In the bus their were dolls and mannequins sitting in the seats. The bus was also filled with fog. Towards the end of the bus was an actor sitting still waiting for us to approach so he could jump up an scare us. After we got off the bus, there were jail cells with foliage and dirt covering them with skulls and debris on the ground around them. There were actors in black capes with white masks positioned around the cells and bars. There was also a large metal box with an animatronic figure inside, thrashing violently. ",1,89.52,96.84,60.78,5.11,3.74,3.74,0,0,0.93,0,0.93,0,0,0.93,0,0,0,0,1.87,0,1.87,1.87,0,1.87,0.93,0.93,0,0,11.21,0.93,0,0,0.93,0,0,10.28,0,0,0,0.93,0,0,0.93,0,0.93,0,0,0,0,0.93,20.56,0,2.8,14.95,2.8,0,0,1.86,0.93,13.49,13.67,34.88,-8.06,2,3,5,3,5,1,26.32,100,0,0,0,25.76,25.76,100,66.67,0,0,95.45,0,0,100,3,1,0,14,0,0,0,0,0,0,0,0,0,18,0,18,1,18,0.777777778,107,19 +331,1058,Infirmary,Delay,Goal-assigned,Baseline,1,07:30pm,2,Low Threat,0,0.6,"Right before we entered there were two characters standing on platforms with masks on. At some point there was a spinning room. The exhibit was a little overwhelming sensory wise, and merged together a lot. But it was pretty much a ton of neon colors on the walls and on the character’s clothing and masks. At one point I remember spiders? ",1,91.61,30.91,61.1,20.23,3.28,3.28,0,0,6.56,0,6.56,1.64,0,0,1.64,0,3.28,1.64,3.28,1.64,1.64,1.64,0,1.64,1.64,0,0,0,1.64,0,0,0,0,0,0,1.64,0,0,0,0,0,0,0,0,0,0,0,0,0,3.28,13.11,0,3.28,8.2,1.64,0,0,0,3.28,12.08,11.38,14.11,10.73,2,2,3,3,4,1,38.46,100,0,100,50,38.46,100,50,0,0,0,0,100,0,50,1,1,0,4,2,0,0,0,0,0,0,0,0,8,0,8,1,6,0.666666667,62,21 +332,1058,Asylum,Immediate,Goal-assigned,Baseline,1,07:30pm,2,Low Threat,0,0.75,"Opera singer in a red dress in her room, creepy dentist with a skull of teeth on a dentist chair, a man stroking a skull, had an asylum vibe. Lots of grey lighting and mist. There was dark figure that creeped low and the stood up in peoples faces all of a sudden. ",1,99,72.6,29.13,1,0,0,0,0,1.89,1.89,0,0,0,0,0,0,0,0,3.77,0,3.77,3.77,0,3.77,3.77,0,0,0,5.66,0,0,0,0,0,0,5.66,0,0,1.89,1.89,0,0,0,0,0,0,0,0,0,1.89,24.53,0,0,15.09,7.55,0,1.89,0,1.89,NA,32.52,16.29,NA,2,4,1,4,2,1,50,100,50,0,91.67,18.18,0,18.18,100,20,50,50,50,50,50,1,0,0,8,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.888888889,53,21 +333,1058,Asylum,Delay,Goal-assigned,Baseline,1,07:30pm,2,Low Threat,1,0.5,"Woman in red dress in the bedroom, dentist chair with skull of teeth, dressing room mirror, man stroking skull, characters in period clothing directing us to the next exhibit, detective desk or something (someone commented that it looked like al capone’s cell or something)",1,92.32,86.82,50.45,20.23,2.27,2.27,0,0,11.36,0,11.36,0,0,0,11.36,0,4.55,0,0,0,0,0,0,0,0,0,0,0,13.64,2.27,0,0,0,0,2.27,11.36,0,0,2.27,2.27,0,0,0,0,0,0,0,0,0,2.27,15.91,0,0,9.09,4.55,0,2.27,0,2.27,NA,67.85,37.52,NA,1,4,1,4,1,1,100,66.67,100,0,0,0,0,25,100,84.38,50,50,50,50,50,2,0,0,6,0,0,0,0,0,0,0,0,2,8,2,10,0.8,8,0.75,45,21 +334,1058,DevilsDen,Immediate,Goal-assigned,Test,1,07:30pm,4,High Threat,0,0.6,"First major scare was a man standing around the corner with a chain saw, in a room that was open and dark, then came a guy with a wrench talking about surrendering our flesh to the machine (that was kind of the theme), then there was a caged in portion that had a fake limb on a table where I heard someone say ""I can smell your flesh burning"", then there was a furnace with a man continuing the theme of handing over flesh, and I think towards the end there was a small hallway where a bunch of fake limbs hanging by chains on the walls. ",1,94.61,67.44,72.99,1,1.87,0.93,0,0.93,4.67,0,4.67,0.93,0,0.93,2.8,0,0,0,3.74,0,3.74,0.93,0,0.93,0.93,0,0,0,9.35,3.74,0,0,0,1.87,1.87,5.61,0,0,0,2.8,0,0,0,0,0,0,0,0,0,0.93,17.76,0,0.93,14.02,1.87,0.93,0,0,0.93,36.68,57.28,42.96,9.8,5,3,2,3,5,1,56.06,56.06,0,33.33,100,13.64,29.55,100,50,0,0,100,0,0,52.38,2,2,0,10,0,0,0,0,0,0,0,0,1,14,1,15,0.933333333,14,0.714285714,107,21 +335,1058,DevilsDen,Delay,Goal-assigned,Test,1,07:30pm,4,High Threat,1,0.8,"It started with the character with the chainsaw, then a dark room with a character who crouched in the shadows before shooting up in guests faces, then there was a man with a wrench talking about surrendering ourselves to the machine, then at some point a table saw with an arm in it, and a fireplace made of bones with a character looming, and at some point someone asked us for our flesh to give to the machine and talked about burning flesh, and a narrow corridor had limbs hanging from chains on the walls, and it ended with the strobe light hallway.",1,99,88.69,25.92,4.8,3.88,2.91,0,0.97,1.94,0,1.94,0,0.97,0,0.97,0,0,0,1.94,0,1.94,0.97,0,0.97,0.97,0,0,0,10.68,3.88,0,0,0,0,2.91,6.8,0,0.97,0,0.97,0,0,0,0,0,0,0,0.97,0,1.94,12.62,0,0,8.74,3.88,0,0,0,2.91,NA,79.14,31.28,NA,1,4,1,4,1,1,100,45.95,72.97,0,0,0,60.61,0,100,36.36,50,50,50,50,50,2,3,0,8,0,0,0,0,0,0,0,0,0,13,0,13,1,13,0.615384615,103,21 +336,1058,GhostlyGrounds,Delay,Goal-assigned,Share,1,07:30pm,3,High Threat,0,0.6,"Started in a bus with strobe lights and Mannikins on the seats, then it let out onto a stairwell that led to an series of exhibits that had a lot of steam, metal cages and allusions to incineration. At one point we went up a stairwell that to a short second floor passage that had shifting floor panels and overlooked a narrow passage of red lights, cages, steam and gnarly looking mannikans. ",1,98.16,56.63,22.12,20.23,2.78,1.39,0,1.39,1.39,0,1.39,0,1.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.39,0,0,0,0,0,0,1.39,0,0,0,0,0,0,0,0,0,0,0,0,0,1.39,18.06,1.39,1.39,9.72,5.56,0,0,0,1.39,NA,50.17,-34.33,NA,2,1,1,5,3,1,58.82,100,44.12,22.06,0,100,46.15,0,57.69,0,50,50,50,50,50,1,1,0,11,0,0,0,0,0,0,0,1,0,13,1,14,0.928571429,13,0.846153846,72,21 +337,1059,Infirmary,Delay,Goal-assigned,Baseline,1,07:30pm,1,Low Threat,0,0.6,"neon lights and painting, there were two dancers on a table moving very slowly, we had to wear glasses to shield our eyes from the neon, there was a ""bridge"" over a backdrop of nothingness that seemed to swirl around and make you feel like you were moving upside down, there was spray paint",1,75.62,98.75,86.01,20.23,3.7,3.7,0,0,5.56,0,5.56,3.7,1.85,0,1.85,0,0,0,0,0,0,0,0,0,0,0,0,0,9.26,0,0,0,0,0,0,9.26,0,0,0,0,3.7,0,0,0,0,0,0,0,0,5.56,24.07,0,7.41,11.11,3.7,0,1.85,3.7,5.56,9.24,1.25,-4.49,30.94,3,5,4,5,3,1,23.08,23.08,100,48.72,0,41.67,83.33,0,41.67,100,0,0,0,100,0,1,1,0,6,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.75,54,22 +338,1059,Asylum,Immediate,Goal-assigned,Baseline,1,07:30pm,1,Low Threat,0,0.25,"Black and White movie, Director, Actress, Old timey, Woman in a Dress, Man near entrance mouthing the words played on the audio clip, Dressing room for the actress, The word ""Diva"" in the actresss room, not that scary, Actress following the man in the group in front of us, the man at the front of the attraction had formal wear, He was wearing a clear plastic mask",1,99,98.61,48.48,20.23,2.99,1.49,0,1.49,1.49,0,1.49,0,0,0,0,0,1.49,0,2.99,1.49,1.49,1.49,0,1.49,1.49,0,0,0,22.39,4.48,0,0,0,0,2.99,17.91,0,0,7.46,5.97,0,0,0,0,0,0,0,0,0,0,19.4,0,0,14.93,2.99,1.49,0,0,0,NA,-22.18,-4.06,NA,4,5,1,1,2,1,0,44.07,28.81,100,5.08,30.95,0,66.67,33.33,100,50,50,50,50,50,1,1,0,9,1,0,0,0,0,0,0,0,0,12,0,12,1,11,0.818181818,67,22 +339,1059,Asylum,Delay,Goal-assigned,Baseline,1,07:30pm,1,Low Threat,1,0.5,"Movie set, antique feeling, black and white film, monochrome, man in the first room mouthing the audio that was playing and he seemed to be at a desk, there was a room with an actress/diva who had a dress on, there was a dressing room for the diva, there was vanity (mirror and seat in front of the mirror), one of the actors had a clear mask on, there was a box right outside of Asylum in which we were supposed to put our glasses that was given for the previous room",1,93.27,84.86,34.72,35.29,2.13,2.13,0,0,5.32,0,5.32,2.13,0,2.13,1.06,0,1.06,0,1.06,1.06,0,0,0,0,0,0,0,0,8.51,1.06,0,0,0,1.06,0,7.45,0,0,1.06,2.13,0,0,1.06,0,0,0,0,0,0,2.13,19.15,0,1.06,13.83,2.13,1.06,1.06,1.06,2.13,-18.57,-30.03,25.65,-51.33,4,2,5,1,1,3,0,50,50,100,20.37,0,100,50,0,83.33,94.74,94.74,0,0,100,1,1,0,10,0,0,0,0,0,0,0,1,0,12,1,13,0.923076923,12,0.833333333,94,22 +340,1059,DevilsDen,Delay,Goal-assigned,Test,1,07:30pm,3,High Threat,0,0.6,"lot of limbs seperated from body, there was a man with a chainsaw, the actors were very chaotic, the set had a very industrial feel, the setting seemed to be like a warehouse, the workers task seemed to be cutting up dead bodies, there was a lot of machinery",1,99,74.89,24.32,20.23,2.04,0,0,2.04,6.12,0,6.12,6.12,0,0,4.08,0,0,0,0,0,0,0,0,0,0,0,0,0,6.12,0,0,0,0,0,0,6.12,0,0,0,2.04,0,0,0,0,0,0,0,0,0,4.08,10.2,0,0,8.16,0,0,2.04,0,4.08,14.2,-10.22,-0.78,53.59,2,3,3,1,4,1,0,100,0,0,33.33,50,50,100,0,61.11,0,0,100,50,0,0,0,0,7,0,0,0,0,0,0,0,0,0,7,0,7,1,7,1,49,22 +341,1059,GhostlyGrounds,Immediate,Goal-assigned,Share,1,07:30pm,3,High Threat,0,1,"School bus with dead bodies, People tied hanging from the ceiling upside down, rattling box hanging from the ceiling that seemed like it had a person inside, there was more people getting in my face than at other sections, the actors had interesting patterns drawn on their faces, one of the actors said ""youre not scared are you"" and got in my face, the school bus with the dead bodies had only one or two live actors, there was some sections where there was props that looked like rotted bodies moving (they were behind a cell/cage), a couple of the actors made interesting growl noises, this section seemed to have a lot of rotting flesh",1,89.52,60.57,67.94,2.64,0,0,0,0,6.03,0,6.03,1.72,0.86,0,2.59,0,3.45,0,6.03,1.72,4.31,0.86,0,0.86,0.86,0,0,0,8.62,0.86,0,0,0,0,0.86,7.76,0,0,0,0,0,0,1.72,0,0,0,0,0,1.72,5.17,16.38,0,0.86,12.93,0.86,1.72,0,1.72,6.89,12.93,48.5,39.64,-49.36,5,4,2,4,5,3,71.88,87.5,75,0,100,8.75,40,40,100,0,95.83,100,0,0,100,2,1,0,13,0,0,0,0,0,0,0,1,0,16,1,17,0.941176471,16,0.8125,116,22 +342,1059,GhostlyGrounds,Delay,Goal-assigned,Share,1,07:30pm,3,High Threat,1,0.6,"started off with a school bus full of corpses, the fake corpses were spaced out pretty evenly throughout the school bus and were one to a seat, there was one live actress inside the bus that seemed to be wearing a psych gown and was standing on the seat, there was another live actor at the end of the school bus when we walked out, there were dead bodies hanging from the ceiling, there was also a box hanging from the ceiling that was banging and seemed to have someone inside of it but you couldnt see into it because the window was frosted, there were different actors standing throughout the section that would yell and get in your face, there was a jail cell with two fake people that looked kind of like corpses but they were automated to move, there were some narrow passage ways",1,77.02,64.19,81.84,7.83,0.68,0.68,0,0,8.84,0,8.84,1.36,0.68,1.36,4.08,0,2.72,0,1.36,0,1.36,0,0,0,0,0,0,0,7.48,2.04,0,0,0,1.36,0.68,5.44,0,0,0.68,0,0,0,0.68,0,0.68,0,0,0,0,6.8,21.09,0,1.36,17.01,1.36,1.36,0,1.36,6.8,60.28,74.9,76.3,29.65,1,4,5,5,1,1,100,100,60,60,0,0,23.67,75.51,100,63.27,0,32.22,66.67,66.67,100,2,1,0,16,0,0,0,0,0,0,0,0,0,19,0,19,1,19,0.842105263,147,22 +343,1060,Infirmary,Delay,Goal-assigned,Baseline,1,08:30pm,1,Low Threat,0,0.2,"i think Infirmary was the first one in the tour. it really wasnt scary and just had a bunch of neon lights everywhere. i remember walking thru a walkway where you couldnt see below your waist due to smoke, which was cool. from there it was just walking through hallways where the actors got up in your face but couldnt touch you which was kinda annoying and defeated the scary parts of it. there were dancers on high platforms towards the end. it was probably the least scary as the sections went",1,47.48,40.06,92.58,1.34,1.09,0,0,1.09,14.13,1.09,13.04,2.17,0,2.17,2.17,1.09,5.43,1.09,5.43,1.09,4.35,4.35,0,4.35,3.26,1.09,0,0,7.61,1.09,0,0,1.09,0,0,6.52,0,0,0,0,0,0,1.09,0,0,0,0,0,0,2.17,20.65,0,3.26,13.04,2.17,0,2.17,1.09,2.17,9.91,28.77,0.3,0.65,5,4,4,4,5,3,44.74,68.42,75,0,100,71.58,33.68,60,100,0,47.37,47.37,0,100,50,2,0,0,2,2,0,1,0,0,3,1,0,0,6,5,11,0.545454545,4,0.5,92,18 +344,1060,Asylum,Immediate,Goal-assigned,Baseline,1,08:30pm,1,Low Threat,0,0.25,there were epeople with tufstuff trying to jumpscare a bunch of people. I think there were a bunch of metal detectors and people in your face. I hardly remember specifics but I remember flashing lights and actors jumping out at you. it was pretty fun I ended up laughing after each jump scare. I think being able to know that they woud not be able to actually harm me made it less scary as it gave me a bigger piece of mind. I think we walked thru it a bit fast and missed some of the jump scares because of it. it wasnt super scary in the aspect of fear just jumpscare,1,56.86,17.77,94.2,5.5,3.57,0.89,2.68,0,14.29,0,14.29,5.36,1.79,0.89,1.79,0.89,2.68,1.79,8.93,3.57,5.36,6.25,1.79,4.46,4.46,0,0,0,7.14,2.68,0,0,0,0,0.89,4.46,0,0,0,0,0,0,0,0.89,0,0,0,0.89,0,7.14,12.5,0.89,4.46,5.36,1.79,0,0,0.89,8.03,57.92,74.46,39.63,59.68,5,2,2,2,1,1,91.67,0,36.11,68.06,100,0,100,32.95,32.95,32.95,0,100,71.21,1.52,1.52,5,0,0,4,3,0,0,0,0,1,0,0,1,12,2,14,0.857142857,9,0.444444444,112,18 +345,1060,Asylum,Delay,Goal-assigned,Baseline,1,08:30pm,1,Low Threat,1,0.5,"Asylum was like the Devil's Den or something, it had a bunch of hallways and was a little scary but nothing too crazy. there was a guy with an axe at the beginning that was really good at not hitting people in the face but getting really close. he was an inch or so from my face which caught me off guard. there was also a guy with a chainsaw at some point after walking down a ramp early in the part of the house. towards the end of the house there was this hallway with flashing lights and actors walking down it. i wasnt paying attention and one actor got in my face and jump scared me. i was freaking out and he rubbed it in my face saying ""im always there"" and stuff like that. i could tell it was his best jump scare of the night.",1,55.7,5.98,90.46,2.44,1.33,0,0.67,0.67,9.33,1.33,8,0,0,0.67,2,1.33,5.33,0,4.67,0.67,3.33,3.33,0.67,2,2,0,0,0,6,1.33,0,0,0,0,1.33,4.67,0,0,0,3.33,0,0,2.67,0,0,0,0,0,0,6,15.33,0.67,3.33,9.33,1.33,0,0.67,2.67,6,10.14,11.12,-19.81,39.12,3,5,1,4,3,5,27.27,27.27,100,0,0,63.64,63.64,0,63.64,100,100,100,100,100,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,18 +346,1060,DevilsDen,Delay,Goal-assigned,Test,1,08:30pm,2,High Threat,0,0.8,Devil's Den was one of the better parts of the haunted house. this was the one with the guy with an axe and a chainsaw that was really good. we passed those guys adn then there was a room with an elevated elevator kind of thing that youd walk through and there was an actor on the other side of the elevator wiating to jump scare you. frmo there you walked thru more rooms with actors with different mechanical weapons to scare you. there was also some open electricity stuff on the walls that was scary. ,1,84.59,92.97,68.87,4.22,2.08,1.04,1.04,0,8.33,2.08,6.25,0,0,0,2.08,1.04,3.13,0,6.25,2.08,4.17,4.17,1.04,3.13,3.13,0,0,0,9.38,0,0,0,0,0,0,9.38,0,0,0,2.08,0,0,0,0,0,0,0,0,0,3.13,16.67,0,4.17,12.5,0,0,0,0,3.13,34.65,63.44,29.78,10.73,1,2,3,2,1,1,100,0,65.22,65.22,0,0,100,67.48,2.44,83.74,0,0,100,0,50,5,1,0,3,2,0,0,0,0,1,0,0,0,11,1,12,0.916666667,9,0.333333333,96,18 +347,1060,GhostlyGrounds,Immediate,Goal-assigned,Share,1,08:30pm,3,High Threat,0,0.6,"we went thru the bus, there was some dummys on the bus and one real actor tht would jump out at people when they walked past. there was some flashing lights, which scare me the most but this time it wasnt too bad. then we got out of the bus and walked into the building where the real scares were. we walked thru a bunch of hallways with actors going crazy jumping out at people and staring into their faces. there were cages of actors but the actors would jum p out from the cages to get in your face, they would also wait at corners to jump out at you. sometimes they were really good at it, but when the person in front of you got scared it kinda ruind the jumpscae since you knew it was there already. we walked up some stairs and there were some more actors and then it kinda just ended. it was probably the best of the 4 sections that we toured. it was definitely the longest and had the most actors in it. the flashing lights tube towards the end was awesome and an actor got in my face when I wasnt looking and got me pretty good. after that thats about it. im trying to remember more but I think at this point my mind is just mixing the last two sections together so I really dont know anymore. Ghostly Grounds was a fun one though for sure.",1,39.94,66.35,91.29,25.48,3.25,2.44,0.81,0,11.38,0,11.38,1.63,0.41,1.63,2.03,2.03,3.25,0.41,4.07,2.03,1.63,3.66,1.63,1.63,1.22,0,0,0,8.54,0,0,0,0,0,0,8.54,0,0,0,0,0,0,2.03,0,0,0,0,0,0,7.32,15.04,0,3.66,9.35,2.03,0,0,2.03,7.32,0.37,5.98,-13.6,8.74,2,3,3,5,2,1,28,100,40,40,0,79.83,0,100,75,91.67,0,0.5,100,50.25,100,15,1,0,5,6,0,0,0,0,1,2,0,3,27,6,33,0.818181818,21,0.238095238,246,18 +348,1060,GhostlyGrounds,Delay,Goal-assigned,Share,1,08:30pm,3,High Threat,1,0.2,Ghostly Grounds was one of the last parts of the haunted house and there were lots of things about it. it was just a walk through tour but wasnt super scary. I think it started with a bus that had some fake people dummies and some actors trying to blend in to get a jump scare on us. it didnt really scare me because i saw them move beforehand and could predict what was going to happen. from then we left the bus and went into a building. in the building we walked through a bunch of rooms with actors in them all doing different things. i think there was a doctors office and a bunch of cages in this part of the haunted house. it was super cold that day so we walked fast through the house. we went up some stairs and there was a long hallway with moveable floorboards which was kinda cool. we walked thru the caged hallway and then the thing ended,1,66.76,50.83,86.1,5.4,4.22,3.61,0.6,0,9.64,0.6,9.04,1.2,0.6,1.2,0.6,0.6,4.22,0,5.42,1.81,3.61,1.81,0,1.81,1.81,0,0,0,6.63,0.6,0,0,0,0.6,0,6.02,0,0,0,0,0,0,0.6,0,0,0,0,0,0,3.01,15.06,0,5.42,7.83,0.6,0,1.2,0.6,3.01,-15.53,14.65,-7.52,-53.71,3,4,1,4,3,2,29.41,16.67,100,0,33.33,76.96,83.33,0,100,50,100,0,0,0,0,8,2,0,7,4,0,0,0,1,0,1,0,0,21,2,23,0.913043478,17,0.411764706,166,18 +349,1061,Infirmary,Immediate,Control,Baseline,0,08:30pm,2,Low Threat,0,0.4,"Bright colors +Actors with glow in the dark face paint +what I think an LSD trip would look like +reminds me of the LSD trip pictures I saw in my neuro class +dark but full of glowy colors +neon lights +neon colors +reminds me of the projector light from Frightfest at Six Flags +reminds me of that one Alice in Wonderland scene in the animated version ",1,98.02,3.25,61.28,20.23,0,0,0,0,10.61,0,10.61,1.52,0,1.52,0,0,3.03,4.55,3.03,1.52,1.52,1.52,0,1.52,1.52,0,0,0,1.52,0,0,0,0,0,0,1.52,0,0,0,0,0,0,0,0,1.52,0,0,0,0,4.55,24.24,1.52,0,7.58,16.67,0,0,1.52,4.55,18.06,62.82,5.24,-13.87,4,2,3,2,4,2,85.71,0,0,100,100,42.86,100,50,0,50,92.86,0,100,0,0,0,0,0,8,0,0,0,0,0,0,0,1,0,8,1,9,0.888888889,8,1,66,20 +350,1061,Infirmary,Delay,Control,Baseline,0,08:30pm,2,Low Threat,1,0.4,"bright colors +neon lights +dancers on a platform +neon face paint on the actors +clowns +lots of neon geometric design on the walls +the room was glowing +what I would think an LSD trip would look like",1,98.83,56.18,1.07,62.77,0,0,0,0,8.11,0,8.11,2.7,0,5.41,0,0,0,0,2.7,2.7,0,0,0,0,0,0,0,0,5.41,0,0,0,0,0,0,5.41,0,0,0,0,0,0,0,0,0,0,0,0,0,5.41,18.92,2.7,0,5.41,13.51,0,0,0,5.41,-4.02,20.65,22.61,-55.32,3,4,5,4,1,1,37.5,37.5,100,0,0,0,0,0,100,25,0,0,0,0,100,0,0,0,7,1,0,0,0,0,0,0,0,0,8,0,8,1,7,1,37,20 +351,1061,Asylum,Delay,Control,Baseline,0,08:30pm,2,Low Threat,0,0.5,"room with a large camera in the corner +actor in 70s style suit and hat looked like he was reporting the news and was facing the camera, although he would occasionally look towards the people walking past +he was standing behind a desk that was diagonal from the camera +the lighting in the room gave everything a tan/brown tint +the room gave off an eerie 70s vibe +feels like youve been transported to the past ",1,98,77.01,33.61,8.11,0,0,0,0,6.58,1.32,5.26,1.32,0,1.32,1.32,0,1.32,0,1.32,0,1.32,1.32,0,1.32,1.32,0,0,0,10.53,3.95,0,0,0,0,1.32,6.58,0,0,0,3.95,0,0,0,0,0,0,0,0,0,7.89,21.05,1.32,1.32,13.16,5.26,0,1.32,0,7.89,23.16,39.78,36.36,-6.67,4,2,2,2,1,1,53.75,0,40,100,40,0,100,50.52,1.03,17.53,0,100,0,0,100,1,0,0,7,2,0,0,0,0,0,0,0,0,10,0,10,1,8,0.875,76,20 +352,1061,DevilsDen,Immediate,Control,Baseline,0,08:30pm,3,High Threat,0,0.4,"black and white movie vibes +camera in the corner +feels like I got transported into an 80s commercial, one thats kind of eerie +man standing by the desk diagonal from the camera +man was wearing an old time suit and looks at if hes talking to the camera +man seems like a news anchorer +was a short walk through +man had a brown hat on +the lighting mad everything look brown ",1,98.6,64.99,16.15,2.07,0,0,0,0,8.45,1.41,7.04,2.82,0,0,5.63,0,1.41,0,2.82,0,2.82,2.82,0,2.82,1.41,1.41,0,0,9.86,2.82,0,0,0,0,2.82,7.04,0,0,0,7.04,0,0,1.41,0,0,0,0,0,0,5.63,16.9,1.41,1.41,5.63,8.45,0,1.41,1.41,5.63,-3.53,-36.22,4.31,21.34,3,3,2,1,2,3,0,16.67,100,100,100,43.33,0,100,50,50,46.67,100,0,50,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,20 +353,1061,DevilsDen,Delay,Control,Baseline,0,08:30pm,3,High Threat,1,0.6,"fake limbs on the ceiling +there was a room with hanging bodies +there was an area with bloody limbs and torsos on the side of the walls +there were jail cells +the group in front of us got scared by one of the actors jumping out from behind a cell and scaring them +it was dark in Devil's Den +outside of Devil's Den was a building with broken windows ",1,99,73.29,74.45,1,1.45,1.45,0,0,0,0,0,0,0,0,0,0,0,0,7.25,0,7.25,2.9,0,2.9,2.9,0,0,1.45,7.25,1.45,0,0,0,1.45,0,5.8,0,0,0,0,0,0,1.45,0,0,0,0,0,0,1.45,23.19,0,1.45,20.29,1.45,0,0,1.45,1.45,NA,-26.06,-18.89,NA,2,1,1,1,5,1,0,100,50,50,69.23,100,31.58,31.58,100,0,50,50,50,50,50,1,1,0,6,0,0,1,0,1,0,1,0,0,8,3,11,0.727272727,8,0.75,69,20 +354,1061,GhostlyGrounds,Delay,Control,Baseline,0,08:30pm,4,High Threat,0,0.8,"darker room compared to Infirmary (way darker) +vibe of the room was scarier and wasnt as bright and playful as Infirmary +cells on the side +people coming out and jump scaring us +actors in costume +actor with an axe like stick in his hand +boiler room part of the haunted house with one of the actors in the center next to a metal table ",1,99,58.66,93.71,6.65,1.56,1.56,0,0,4.69,0,4.69,0,0,0,0,0,4.69,0,7.81,3.13,4.69,4.69,1.56,3.13,3.13,0,0,0,9.38,1.56,0,0,0,0,0,7.81,0,0,0,1.56,0,0,0,0,0,0,0,0,0,4.69,26.56,0,3.13,20.31,4.69,0,0,0,4.69,NA,-11.93,35.91,NA,5,2,1,1,5,1,0,28.57,28.57,28.57,100,33.33,100,66.67,33.33,0,50,50,50,50,50,1,0,0,5,1,0,0,0,3,1,0,0,0,7,4,11,0.636363636,6,0.833333333,64,20 +355,1062,Infirmary,Delay,Control,Baseline,0,08:30pm,1,Low Threat,0,0.4,"There were a lot of crazy colors, usually neon. We were handed 3D glasses, and some of the hallways where relatively narrow. There wasnt a lot of jump scares, just people standing on top of these podiums and performing/interacting. At one point, we went through this narrow, raised, small room and there was a giant spider afterwards. The spider was bright neon. There were two ladies on the podium as we were walking out, both by the entrance and and the exit as they were near each other. The whole path was kinda a large loop, there were sharp turns and certain areas with walls so you could not see the other areas, but in the beginning you could see the people on the podium but we were directed away from it. A lot of neon colors, graffiti, and it was a lot of visual stimulation. ",1,70.33,60.3,78.4,20.23,2.72,2.72,0,0,8.84,0,8.84,0,1.36,1.36,1.36,0,4.76,0,2.04,0.68,0.68,1.36,0,0.68,0.68,0,0,0,5.44,0.68,0,0.68,0,0,0,5.44,0,0,0.68,0,0,0,0,0,0,0,0,0,0,3.4,21.09,0,3.4,13.61,4.08,0,0,0,3.4,-5.17,-7.57,-29.02,21.07,3,1,4,1,2,1,0,0,100,6.25,100,100,0,66.9,66.9,46.21,0,0,0,100,33.33,5,3,0,15,0,0,0,0,0,0,0,1,0,23,1,24,0.958333333,23,0.652173913,147,20 +356,1062,Asylum,Immediate,Control,Baseline,0,08:30pm,2,Low Threat,0,0.75,"it was horror broadcast themed, the first attraction was this guy reciting this broadcast word for word, staring off, and then he banged on the table, and we walked into a room with a sharp turn. it was all grey themed, with actors with pasty white makeup and a lot of television stuff. i dont think there was a scare right after there idk i wasnt scared severely but i cant remember anything. ",1,34.21,6.83,67.02,1,1.37,1.37,0,0,9.59,1.37,8.22,2.74,0,1.37,1.37,0,4.11,1.37,5.48,0,5.48,4.11,0,4.11,4.11,0,0,0,8.22,2.74,0,0,0,0,2.74,5.48,0,0,0,2.74,0,0,0,0,0,0,0,0,0,2.74,10.96,0,2.74,5.48,2.74,0,0,0,2.74,-33.21,-34.48,-10.49,-54.65,2,5,5,1,3,1,0,100,100,55.36,1.79,35.9,35.9,0,61.54,100,0,0,0,33.33,100,1,1,0,7,1,0,0,0,0,0,0,0,1,10,1,11,0.909090909,9,0.777777778,73,20 +357,1062,Asylum,Delay,Control,Baseline,0,08:30pm,2,Low Threat,1,0.75,"This was the broadcast themed one. The first thing that happens is a man at a typewriter on a desk is mouthing the words to a broadcast, then he turns on us. Then the next room is the lady with a bunch of TVs behind her (I put this in the butcher one but I think Im wrong there). There is a lot of static and broken TVs, electricity that zaps and makes those noises. ",1,80.25,55.96,44.33,1,1.33,1.33,0,0,4,0,4,1.33,1.33,0,0,0,1.33,0,4,0,4,0,0,0,0,0,0,0,9.33,4,0,1.33,0,1.33,1.33,6.67,0,0,2.67,2.67,0,0,0,0,0,0,0,0,0,0,10.67,0,2.67,6.67,0,1.33,0,0,0,14.96,18.66,-4.73,30.94,3,4,4,4,2,1,40,80,100,0,0,40,0,0,100,40,0,0,0,100,0,1,1,0,6,0,0,0,0,0,0,0,0,1,8,1,9,0.888888889,8,0.75,75,20 +358,1062,DevilsDen,Delay,Control,Baseline,0,08:30pm,3,High Threat,0,1,"Devil's Den was the butcher themed one? I think. There was a lot of red imagery, parts of people hanging and butcher shop hangers. There were stacks of meat and I think at the end there were like people on the walls, tacked very gorily (if thats a word). I remember we turned around a corner and a short lady with a club kinda jumped at us, then there was a raised bridge with fleshy faces on the sides. There was also a dude butcher somewhere near the bridge (somewhere right after or right before).",1,78.14,40.06,96.91,20.23,3.16,3.16,0,0,9.47,0,9.47,3.16,0,0,5.26,0,3.16,1.05,0,0,0,0,0,0,0,0,0,0,5.26,2.11,0,1.05,0,0,1.05,4.21,0,1.05,1.05,1.05,0,0,0,0,0,0,0,0,0,5.26,16.84,0,3.16,11.58,2.11,0,0,0,5.26,NA,23.33,31.61,NA,5,2,1,2,1,1,25,0,50,75,100,0,100,66.67,0,66.67,50,50,50,50,50,2,1,0,10,0,0,0,0,0,0,0,0,2,13,2,15,0.866666667,13,0.769230769,95,20 +359,1062,GhostlyGrounds,Immediate,Control,Baseline,0,08:30pm,6,High Threat,0,0.8,"we entered through a bus, which was really cramped and dark, with a narrow hallway and had dummies and real actors hiding in the seats. then, we exited through this set of stairs. we then needed to enter the second section, and there was a lady who approached us with a skull and called it larry. larry was dark grey and had tufts of hair. it was really gross. then we entered the second section. there were cell bars and a moving box and a dummies in the cells. actors reached through the cell bars to scare us, and then we were navigated through narrow hallways closed off by cell bars. then we went up stairs, there were moving floor parts, and then we went down the stairs. both the stairs were steep. ",1,63.44,97.76,85.96,6.97,6.77,6.77,0,0,4.51,0,4.51,0,0,0.75,0,2.26,1.5,0,1.5,0,1.5,0.75,0,0.75,0.75,0,0,0,10.53,1.5,0,0.75,0,0,0.75,9.77,0,0,0.75,0,0.75,0,0,0,0,0,0,0.75,0,0.75,21.05,0,6.77,12.03,3.01,0,0,0.75,1.5,NA,39.45,-8.74,NA,4,3,1,3,4,1,70.27,93.69,0,100,75.68,65.33,48,100,0,36,50,50,50,50,50,8,1,0,16,1,0,0,0,0,0,0,0,0,26,0,26,1,25,0.64,133,20 +360,1062,GhostlyGrounds,Delay,Control,Baseline,0,08:30pm,6,High Threat,1,0.4,"The Ghostly Grounds started off with us waiting in line to go onto a bus. A character with a dark skull with tufts of hair named Larry talked to us. We then head to the bus which is completely dark with flashes of light. There are dummies on the bus, and it is very narrow. We then go down a set of metal stairs and enter the next part. There were lots of nets and guns and the like displayed. There was a metal box that moved on its own, with lots of dummies around cages. There was a man who tried to grab at us. There were steep stairs, shaky floorboards, and then narrow stairs we had to go down. ",1,90.62,89.5,93.95,20.23,6.67,5,0.83,0.83,2.5,0,2.5,0,0,0,0,0.83,1.67,0,0,0,0,0,0,0,0,0,0,0,7.5,0.83,0,0,0,0,0.83,6.67,0,0,0,0.83,1.67,0,0.83,0,0,0,0,0,0,4.17,22.5,0,5,15,4.17,0,0.83,2.5,4.17,NA,95.14,74.47,NA,1,3,1,3,1,1,100,28.57,0,14.29,0,0,87.5,100,75,100,50,50,50,50,50,6,1,0,11,0,0,0,0,0,0,0,0,1,18,1,19,0.947368421,18,0.611111111,120,20 +361,1063,Infirmary,Immediate,Control,Baseline,0,08:30pm,1,Low Threat,0,0.2,"We wore glasses that made cool 3D effects on the walls and paints. There were fun colors. I remember a spider, breaks/cracks on walls. Pipes and tubes. Orange and green paint. People dancing in the front and end. Green and orange were the main themes, maybe the only colors. ",1,69.05,51.99,63.35,81.12,2,2,0,0,12,4,8,4,4,0,2,0,0,2,4,4,0,2,2,0,0,0,0,0,4,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,4,26,0,2,10,12,0,2,0,4,6.57,67.61,2.63,-50.53,1,2,1,2,4,3,100,0,0,100,100,33.33,100,33.33,0,100,100,100,0,0,100,1,0,0,9,0,0,0,0,0,0,0,1,1,10,2,12,0.833333333,10,0.9,50,21 +362,1063,Infirmary,Delay,Control,Baseline,0,08:30pm,1,Low Threat,1,0.4,"Everything had a green and orange theme, we wore glasses in the beginning that gave everything a 3D effect. There were pipes and spider webs. There were people dancing in the entrance. ",1,52.84,75.49,89.39,20.23,3.13,3.13,0,0,9.38,6.25,3.13,3.13,3.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.38,6.25,0,0,0,0,0,3.13,0,0,0,0,0,0,0,0,0,0,0,0,0,6.25,25,0,3.13,15.63,6.25,0,0,0,6.25,18.02,28.54,-5.42,30.94,5,4,3,4,5,1,42.86,85.71,50,0,100,78.57,35.71,50,100,0,0,0,100,0,0,1,0,0,5,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.833333333,32,21 +363,1063,Asylum,Delay,Control,Baseline,0,08:30pm,1,Low Threat,0,0.5,I remember a grey old theme with a typewrite and a man in a vest.,1,99,40.06,93.95,20.23,0,0,0,0,6.67,0,6.67,6.67,0,0,0,0,0,6.67,0,0,0,0,0,0,0,0,0,0,6.67,0,0,0,0,0,0,6.67,0,0,0,6.67,0,0,0,0,0,0,0,0,0,0,13.33,0,0,6.67,6.67,0,0,0,0,-16.03,31.49,-25.86,-53.71,3,1,1,2,2,2,50,0,100,50,100,100,0,0,100,0,100,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,1,3,1,15,21 +364,1063,DevilsDen,Delay,Control,Baseline,0,08:30pm,1,High Threat,0,0.6,It had a red theme in an industrial setting. I remember a man with a hammer. There were large machines.,1,94.88,40.06,63.35,20.23,0,0,0,0,5,0,5,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,15,0,0,10,5,0,0,0,0,2.1,16.31,-40.97,30.94,2,1,3,5,2,1,50,100,50,100,0,100,0,50,0,100,0,0,100,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,4,1,4,1,20,21 +365,1063,GhostlyGrounds,Immediate,Control,Baseline,0,08:30pm,1,High Threat,0,0.8,"Ghostly Grounds had a long walk, people yelling. Lots of cells. Sparks, a generator that said high voltage. People popping out of walls and suddenly behind you. There were bodies hanging upside down while someone walks towards us with flashing lights. ",1,85.68,94.84,99,20.23,2.5,2.5,0,0,2.5,0,2.5,0,0,0,2.5,0,0,0,0,0,0,0,0,0,0,0,0,0,12.5,5,0,0,0,0,5,7.5,0,0,0,0,0,0,0,0,0,0,0,0,0,12.5,35,0,5,22.5,5,2.5,0,0,12.5,NA,-44.53,51.48,NA,2,4,1,1,1,1,0,100,100,100,100,0,0,50,100,100,50,50,50,50,50,2,0,0,8,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.8,40,21 +366,1063,GhostlyGrounds,Delay,Control,Baseline,0,08:30pm,1,High Threat,1,0.6,"We started by entering the bus. There were many prison cells and people trying to surprise us from behind. There were moving floors, someone popping out of a wall. There was also bodies hanging upside down with the lights flickering.",1,85.68,94.84,95.54,2.86,10,5,2.5,2.5,5,0,5,0,0,2.5,2.5,0,0,0,5,0,2.5,2.5,0,0,0,0,0,0,7.5,0,0,0,0,0,0,7.5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,32.5,2.5,5,22.5,2.5,0,0,0,5,25.05,44.53,-0.33,30.94,4,3,4,2,5,1,50,0,50,100,100,75,25,100,75,0,0,0,0,100,0,2,1,0,4,0,0,0,0,0,0,0,0,0,7,0,7,1,7,0.571428571,40,21 +367,1064,Infirmary,Immediate,Goal-assigned,Baseline,1,07:30pm,3,Low Threat,0,0,"Lots of art, people with white contacts and pretty dresses, 3d glasses i couldnt wear because they made my head spin, some guy saying his art will follow us wherever we go, a spinny tunnel that made me feel like i was going to fall off the bridge, small hallways, i saw this creepy spider that i thought was going to jump out at me, there were boxes of like body parts or something that the ladies were standing on ",1,39.7,26.5,84.66,8.55,2.5,2.5,0,0,12.5,0,12.5,2.5,3.75,1.25,3.75,0,2.5,0,1.25,0,1.25,1.25,0,1.25,1.25,0,0,0,8.75,2.5,0,1.25,0,0,1.25,7.5,0,0,1.25,2.5,0,0,0,0,0,0,0,0,0,8.75,13.75,0,5,7.5,2.5,0,1.25,0,8.75,19.2,31.33,20.47,5.78,3,2,1,2,1,2,50,0,100,75,75,0,100,0,25,75,100,0,100,100,0,4,1,0,7,1,0,0,0,0,0,0,0,1,13,1,14,0.928571429,12,0.583333333,80,21 +368,1064,Infirmary,Delay,Goal-assigned,Baseline,1,07:30pm,3,Low Threat,1,0.2,"I don’t really remember what Infirmary was. I think it was the art space? it was a lot of neon. i saw a big spider, there was a tunnel with spinning lights. there were actors standing on boxes with clear glass and an artist yelling at us in the beginning, there were glasses as well that made the art pop out. i didn’t wear them, they made me dizzy ",1,43.12,18.24,92.58,41.62,1.45,1.45,0,0,10.14,0,10.14,2.9,2.9,0,2.9,2.9,2.9,1.45,1.45,1.45,0,0,0,0,0,0,0,0,8.7,1.45,0,0,0,0,1.45,7.25,0,0,0,0,0,0,0,0,0,0,0,0,0,2.9,17.39,0,1.45,10.14,2.9,1.45,1.45,0,2.9,-44.05,-30.37,-48.09,-53.71,4,1,1,1,3,2,0,75,50,100,28.85,100,40,0,40,47.69,100,0,0,0,0,2,1,0,9,0,0,0,0,0,0,0,0,1,12,1,13,0.923076923,12,0.75,71,21 +369,1064,Asylum,Delay,Goal-assigned,Baseline,1,07:30pm,3,Low Threat,0,0.5,i honestly don’t remember what Asylum was. i think there was a bus? or maybe it was the one where we walked past death row….. i’m not sure. ,1,1,1,99,20.23,3.45,3.45,0,0,31.03,6.9,24.14,6.9,0,0,13.79,3.45,6.9,3.45,0,0,0,0,0,0,0,0,0,0,3.45,0,0,0,0,0,0,3.45,0,0,0,0,0,0,3.45,0,0,0,0,0,0,3.45,10.34,0,3.45,6.9,0,0,0,3.45,3.45,-12.74,-23.33,14.67,-29.56,3,2,5,1,4,4,0,0,100,100,0,50,100,100,0,20,83.33,83.33,83.33,0,100,0,0,0,0,0,0,1,0,0,0,0,0,3,0,4,4,0,0,0,31,21 +370,1064,DevilsDen,Immediate,Goal-assigned,Test,1,07:30pm,4,High Threat,0,0.4,"it was super, super dark. body parts everywhere but i failed to see any butt cheeks which i believe are the most important part of the body. there was a shelf with shaking buckets on it, someone came around the back and scared me, lots of machine sounds, small hallways, i said ""no, no, no, no"" to an actor and they said ""yes, yes, yes, yes!"" and it was scary, another said ""give up your worthless flesh and become one with the machine"" and i politely declined, we had to line up shortest to tallest bc the halls were so slim and dark, the person letting people in told the shortest in line a secret, it was next to the greenhouse which is my favorite part of the day tour, it was in the death row cells which is another favorite part of mine of the penitentiary ",1,66.65,5.68,74.62,40.13,4.08,0.68,2.04,1.36,16.33,6.12,10.2,0.68,0.68,0,1.36,0,6.8,0,5.44,3.4,2.04,1.36,0,1.36,1.36,0,0,0,9.52,5.44,0.68,0.68,0,1.36,2.72,4.08,0,0,0,0,1.36,0,0,0,0,0,0,0,0,8.16,11.56,0,0.68,8.16,2.04,0.68,0,1.36,8.16,-6.58,13.8,-18.45,-15.08,4,3,4,3,4,2,30.56,62.78,0,100,100,93.33,77.22,100,0,50,96.67,0,0,100,0,7,0,0,11,1,0,0,0,0,0,4,0,1,19,5,24,0.791666667,18,0.611111111,147,21 +371,1064,DevilsDen,Delay,Goal-assigned,Test,1,07:30pm,4,High Threat,1,0.8,"there were a lot of body parts, lots of machines, lots of blood. we walked through the big cage and the actor said “give up your worthless flesh be become one with the machine” and i said no. there were body parts hanging by chains at the end",1,92.12,52.49,39.59,4.22,8.33,2.08,4.17,2.08,8.33,2.08,6.25,0,0,0,0,0,4.17,0,2.08,0,2.08,0,0,0,0,0,0,0,12.5,6.25,0,0,0,2.08,4.17,6.25,0,0,0,0,0,0,0,0,0,0,0,0,0,4.17,8.33,0,2.08,6.25,0,0,0,0,4.17,NA,63.51,29.48,NA,5,4,1,3,5,1,75,75,0,16.67,100,26.67,26.67,56.67,100,0,50,50,50,50,50,3,0,0,5,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.625,48,21 +372,1064,GhostlyGrounds,Delay,Goal-assigned,Share,1,07:30pm,4,High Threat,0,0.8,"this one for sure had a bus and a bunch of people in cages. on the bus there were a lot of mannequins and one actor who was just screaming a ton, it was impressive. there were a lot of animatronics as well, air guns and it was darker than the rest of the attractions. the hallways were very narrow so we had to walk in a single file line. ",1,79.45,57.11,16.97,65.27,1.43,1.43,0,0,4.29,0,4.29,0,0,0,0,0,2.86,0,2.86,2.86,0,0,0,0,0,0,0,0,5.71,1.43,0,0,0,0,0,4.29,0,0,0,0,2.86,0,0,0,0,0,0,0,0,2.86,12.86,0,1.43,8.57,1.43,1.43,0,2.86,2.86,33.05,60.49,54.75,-16.1,1,2,1,5,1,2,100,50,50,100,0,0,100,100,50,100,100,0,0,100,0,1,2,0,7,0,0,0,0,0,1,0,0,0,10,1,11,0.909090909,10,0.7,70,21 +373,1065,Infirmary,Delay,Control,Baseline,0,08:30pm,2,Low Threat,0,0.6,"There were two spooky gogo girls as you walk in standing on boxes, they both had black masks and were moving in sync, they one on the left was taller and not as thin as the one on the right. We walked to the right, a man gave us paper glasses, we walked through narrow rooms that had glowing bright neon graffiti all over it. We walked though a spinning bridge and then back to the room we started and exited",1,69.38,98.41,92.16,20.23,6.17,6.17,0,0,6.17,3.7,2.47,0,0,0,0,0,2.47,0,2.47,1.23,1.23,1.23,0,1.23,1.23,0,0,0,13.58,1.23,0,0,0,0,0,12.35,0,0,1.23,1.23,0,0,0,0,0,0,0,0,0,4.94,24.69,0,7.41,13.58,3.7,0,0,0,4.94,NA,-0.75,-9.13,NA,3,5,1,4,3,1,16.47,40,100,0,20,54.12,80,0,60,100,50,50,50,50,50,3,3,0,5,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.454545455,81,21 +374,1065,Asylum,Immediate,Control,Baseline,0,08:30pm,3,Low Threat,0,0.5,"there was a director missing, it was spooky, the first guy set the scene and told us the theme, second room had a directors chair, there was the third room with a big cube that we walked through that had peoples body parts all on it. there were two actors near the cube. there was a woman with long red hair that scared the people in front of me and when we passed to the next room she popped through a window for a second scare. the actors were wearing pretty plain makeup, all but the woman were brunettes. none were very tall and most were stocky in build. ",1,73.55,89.75,38.52,2.23,4.59,2.75,0,1.83,5.5,2.75,2.75,0,0,0,0.92,0,1.83,0,2.75,0,2.75,2.75,0,2.75,2.75,0,0,0,11.93,0.92,0,0,0,0,0.92,11.01,0,0,2.75,0.92,0,0,0,0,0,0,0,0,0,3.67,13.76,0,1.83,11.01,0.92,0,0,0,3.67,-24.47,2.81,-20.89,-55.32,4,5,5,5,4,1,32.26,49.19,83.06,100,0,36.52,36.52,18.26,0,100,0,0,0,0,100,5,1,0,6,1,0,1,0,2,0,0,0,0,13,3,16,0.8125,12,0.5,109,21 +375,1065,Asylum,Delay,Control,Baseline,0,08:30pm,3,Low Threat,1,0.5,"First room had an actor at a desk, he was setting the scene telling us that there was a director that was missing. We move to the next room and there are some props and an empty directors chair. Then there is a lady in a long gown walking around with big red hair, then we go to a room with two male actors and we walk through a cube that’s male to look like it’s made of body parts",1,78.28,99,78.67,8.55,7.5,5,0,2.5,2.5,0,2.5,0,1.25,0,0,0,1.25,0,1.25,0,1.25,0,0,0,0,0,0,0,16.25,2.5,0,1.25,0,0,1.25,15,0,0,1.25,3.75,0,0,0,1.25,0,0,0,0,0,6.25,20,1.25,5,13.75,2.5,0,0,1.25,6.25,NA,37.61,1.52,NA,4,2,1,2,4,1,50,0,50,100,50,50,100,50,0,33.33,50,50,50,50,50,1,2,0,5,0,0,1,0,0,0,0,0,0,8,1,9,0.888888889,8,0.625,82,21 +376,1065,DevilsDen,Delay,Control,Baseline,0,08:30pm,4,High Threat,0,0.8,I don’t remember this one at all. :/,1,5.64,1,89.39,1,0,0,0,0,25,12.5,12.5,12.5,0,0,0,0,0,12.5,12.5,0,12.5,12.5,0,12.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9.73,-11.67,-48.48,30.94,4,1,2,1,3,1,0,0,0,100,0,100,50,0,0,100,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,8,21 +377,1065,GhostlyGrounds,Immediate,Control,Baseline,0,08:30pm,3,High Threat,0,0.8,"we started going through the aluminum bus with strobe lights, there were dummys in some of the seats and two live actors. one was African American and had long dreds and the other had long hair that was in front of their face. We left the bus and we entered the portion that had floor to ceiling bars. There were cells along either wall that had grates on them and a square opening in the middle. the actors would come through the slats to scare us. the actors were all men in this section. we walked past some animatronics that were shaking, there was a lot of fog and light strobe lights. we went up the stairs and there was a moving platform underfoot and then we went back down the stairs and exited.",1,71.79,96.16,92.66,12.43,5.22,5.22,0,0,2.99,0.75,2.24,0,0,0.75,0,0,1.49,0,0.75,0,0.75,0.75,0,0.75,0.75,0,0,0,9.7,0,0,0,0,0,0,9.7,0,0,0,0.75,0,0,0,0,0,0,0,0,0,4.48,24.63,0,5.22,17.91,2.24,0,0,0,4.48,27.75,16.07,36.24,30.94,3,2,3,2,1,1,33.33,0,100,33.33,6.41,0,100,20,60,67.69,0,0,100,0,0,5,1,0,18,0,0,0,0,0,0,0,0,0,24,0,24,1,24,0.75,134,21 +378,1065,GhostlyGrounds,Delay,Control,Baseline,0,08:30pm,3,High Threat,1,0.8,"There was the bus with the strobe lights that had two actors, one was skinny and had long brown hair and was sitting towards the middle of the bus with long brown hair in front of his face and the other was on the right side in the middle who was African American and had dreds. We walked through the prison part tht had floor to ceiling bars, there were cells with grates alonn either wall with a share hole in the middle. We walked through, the actors tried to jumpscare us by running up to the bars and reaching through, we walked to the end and climbed stairs, there was a big animatronic at the top of the stairs and then a platform with moving floor boards and then we when down another flight of stairs and out again.",1,93.64,79.51,97.09,12.71,6.43,4.29,1.43,0.71,2.86,0,2.86,0,0,0,0,0,2.86,0,0.71,0,0.71,0,0,0,0,0,0,0,7.14,0.71,0,0,0,0,0,6.43,0,0,0,0.71,0,0,0,0,0,0,0,0,0,3.57,23.57,0,5.71,17.14,2.14,0,0,0,3.57,-12.54,-23.8,-44.75,30.94,4,1,3,1,3,1,0,25,25,100,50,100,66.67,0,0,100,0,0,100,0,0,4,1,0,15,0,0,0,0,0,0,0,0,0,20,0,20,1,20,0.75,140,21 +379,1066,Infirmary,Delay,Control,Baseline,0,06:15pm,3,Low Threat,0,0.6,I think this was the first section of the haunted house and we got 3d glasses for it. It was very bright because the walls were drawn or painted on with neon markers. I only remember a few actors coming up and scaring us and it was more just seeing decorations that made it look scary. There was a spinning tunnel and with the glasses it made it hard to walk because i remember saying its like walking with those drunk goggles. It was a short walkthrough but there were a lot of things to look at that made it kind of scary. ,1,47.22,40.06,45.35,1.89,1.94,1.94,0,0,11.65,0,11.65,2.91,4.85,0,2.91,0,1.94,1.94,4.85,0.97,3.88,2.91,0,2.91,2.91,0,0,0,3.88,0.97,0,0,0,0,0.97,2.91,0,0,0,0,0,0,0.97,0,0,0,0,0,0,2.91,13.59,1.94,3.88,5.83,3.88,0,0.97,0.97,2.91,3.42,46.13,-15,-20.87,5,3,5,3,2,3,61.54,92.31,0,35.38,100,75,0,100,33.75,33.75,31.75,63.49,0,66.67,100,3,1,0,5,1,0,0,0,0,0,1,1,1,10,3,13,0.769230769,9,0.555555556,103,19 +380,1066,Asylum,Immediate,Control,Baseline,0,06:15pm,2,Low Threat,0,0.75,It looked like a mental hospital or asylum. There were chairs and medical equipment and the people didnt jump out as much. The were wearing lab coats and they had clear masks over their mouths. The rooms had fog and a green tint in the lights. The people didnt have weapons they looked like they had dentist tools. It was also a pretty short section. There was a woman who was singing loudly and she moved into a room with a small bed and a mirror.,1,47.33,53.95,29.27,36.9,0,0,0,0,5.81,0,5.81,0,0,0,2.33,0,3.49,0,1.16,1.16,0,0,0,0,0,0,0,0,8.14,0,0,0,0,0,0,8.14,0,0,2.33,0,0,0,0,0,0,0,0,0,0,8.14,20.93,0,2.33,10.47,5.81,2.33,0,0,8.14,-1.23,-14.98,-19.66,30.94,3,4,4,1,2,1,0,67.86,100,3.57,100,80.56,0,0,100,0,0,0,0,100,0,0,1,0,10,0,0,0,0,2,0,0,0,0,11,2,13,0.846153846,11,0.909090909,86,19 +381,1066,Asylum,Delay,Control,Baseline,0,06:15pm,2,Low Threat,1,0.75,I think this was the section that was dentist themed. There was a dirty bathtub when we first walked in and most of the people in the place were dressed like doctors and dentists. They were holding surgical tools and standing in front of patient chairs. They also had clear masks so you could see their face. There was a lady who sang and screamed a lot and she was in one room with a mirror and small bed and then she moved to another section of the room that had a vanity and some lighting around it. I remember there were some tables that looked like operating tables. This was the least scary out of the 4 and no one was screaming or following you. It also looked like an abandoned hospital or asylum. ,1,31.38,70.19,47.52,3.72,0.74,0.74,0,0,6.67,1.48,5.19,1.48,0,0.74,1.48,0,2.22,0.74,2.22,0,2.22,0.74,0,0.74,0.74,0,0,0,8.15,1.48,0,0.74,0,0.74,0,7.41,0,0,2.22,0,0,0,0,0,0,0,0,0,0,5.19,17.78,0,1.48,11.85,2.22,2.22,0,0,5.19,21.32,72.78,16.43,-25.26,1,4,1,2,5,3,100,0,60,60,60,50,50,50,100,0,100,100,0,100,100,1,2,0,8,1,0,0,0,0,0,0,0,0,12,0,12,1,11,0.727272727,135,19 +382,1066,DevilsDen,Delay,Control,Baseline,0,06:15pm,4,High Threat,0,1,We had to enter small groups at a time and I remember hearing loud noises. There was a person hiding behind a corner of the entrance and scaring people. People had chainsaws and hammers and i remember someone turning on the chainsaw and it was very loud. I remember them dressing like mechanics and talking about spare parts. There were areas that had smoke and green lights which made it hard to see. I remember this being the scariest of the four sections. I think there were also people behind bars that would walk next to us and make noises at us. ,1,37.99,57.59,78.94,1,2.94,2.94,0,0,10.78,0,10.78,4.9,1.96,0.98,0.98,0,1.96,3.92,3.92,0,3.92,1.96,0,1.96,1.96,0,0,0,7.84,0.98,0,0,0,0,0.98,6.86,0,0,0,0,1.96,0,0,0,0,0,0,0.98,0,6.86,21.57,0,2.94,8.82,3.92,4.9,0.98,1.96,7.84,10.97,61.77,24.87,-53.72,1,3,5,3,1,1,100,100,0,79.75,53.16,0,0,100,30,76.67,0,0,4.55,4.55,100,4,0,0,10,0,0,1,0,1,1,0,0,0,14,3,17,0.823529412,14,0.714285714,102,19 +383,1066,GhostlyGrounds,Immediate,Control,Baseline,0,06:15pm,4,High Threat,0,0.8,There was a tunnel with a lot of flashing lights. It started by going through a bus with some people sitting on the seats. There were cages and a lot of fake props in the cages. There were some people in the cages that came in and out of the area. There was a room with some vines and a person jumped out at the very end. Most people had hammers or axes. There was a painting that fell and someone jumped out from behind it. the floors moved in one hallway and we went up a flight of stairs. There were a few rooms with a lot of red lights. ,1,98.33,56.18,97.36,11.13,0.9,0.9,0,0,1.8,0,1.8,0,0,0,1.8,0,0.9,0,0.9,0,0.9,0,0,0,0,0,0,0,3.6,0.9,0,0,0,0.9,0,2.7,0,0,0,0,0,0,0,0,0,0,0,0,0,5.41,28.83,0,7.21,18.92,3.6,0,0,0,5.41,NA,55.04,47.8,NA,3,4,1,4,1,1,91.3,20,100,0,60,0,61.34,42.02,100,3.36,50,50,50,50,50,3,2,0,11,0,0,0,0,2,0,0,0,0,16,2,18,0.888888889,16,0.6875,111,19 +384,1066,GhostlyGrounds,Delay,Control,Baseline,0,06:15pm,4,High Threat,1,0.4,We started by lining up to go into a bus and i remember it being scary because there were a lot of fake bodies and since it was dark i couldnt tell if they were real or not. There was one real person in the back row and she jumped out at us and followed behind us until we exited. There was an area with cages and vines and a green light and the people in the cages came out and walked behind us and tried to scare us a few times. There was also a section of walking through a pitch black hallway and there were actors along the path who would come up and scare us. There was also an area with a picture frame that fell every few seconds and a person would jump out. There was a hallway with moving panels on the floor. There was also a freezer with fake hanging bodies and an actor inside with a hammer or chainsaw. The freezer was hard to see cause there was a strobing light so it was hard to make out what was happening. ,1,64.38,78.53,92.52,2.46,4.26,3.72,0.53,0,7.98,0.53,7.45,0.53,2.13,1.6,1.6,1.06,2.13,0.53,2.66,0,2.66,1.6,0,1.6,1.6,0,0,0,9.04,1.6,0,0,0,1.06,0.53,7.45,0,0,0.53,0,0,0,0,0,0,0,0,0,0,7.45,25,0,4.79,17.02,3.72,0,1.06,0,7.45,-36.34,-36.91,-39.3,-32.83,5,1,1,1,5,2,0,90.98,90.98,68.85,100,100,48.25,22.38,39.86,0,100,0,33.33,68.47,34.23,6,3,0,9,1,1,0,0,2,0,0,0,2,19,5,24,0.791666667,18,0.5,188,19 +385,1067,Infirmary,Delay,Goal-assigned,Baseline,1,07:30pm,2,Low Threat,0,0.6,"I remember putting on special glasses before walking into the room. The room was very trippy. The room was shades of green and blues and yellows. There were large spiders on the wall when we first walked in, and a large snake in the center of another room. I remember not knowing where to walk forward because everything was altered. And I also remember having to walk through a room covered in fog and I couldnt see which way to go.",1,62.54,6.03,99,20.23,1.23,1.23,0,0,12.35,1.23,11.11,4.94,1.23,1.23,0,0,3.7,3.7,0,0,0,0,0,0,0,0,0,0,1.23,0,0,0,0,0,0,1.23,0,0,0,0,2.47,0,0,0,0,0,0,0,0,3.7,28.4,0,7.41,19.75,2.47,0,0,2.47,3.7,43.69,64.53,46.07,20.47,1,4,4,4,1,2,100,43.04,86.08,0,86.08,0,35.24,35.24,100,19.05,18.82,0,0,100,0,1,1,0,4,0,1,1,0,0,0,0,0,0,6,2,8,0.75,6,0.666666667,81,23 +386,1067,Asylum,Immediate,Goal-assigned,Baseline,1,07:30pm,1,Low Threat,0,0.5,I remember a woman answering a phone and crying about something. There was bed in the center of the room. There were other actors but they did not seem like they were trying to scare anyone. There were signs on the walls.,1,56.86,40.06,99,1,2.38,0,2.38,0,21.43,0,21.43,7.14,0,2.38,7.14,0,7.14,2.38,4.76,0,4.76,4.76,0,4.76,2.38,0,2.38,0,19.05,7.14,0,0,0,0,7.14,11.9,0,0,2.38,0,0,0,0,0,0,0,0,0,0,2.38,16.67,0,0,16.67,0,0,0,0,2.38,21.94,18.7,63.58,-16.47,2,3,1,3,1,2,30.43,100,0,0,39.13,0,27.59,100,68.97,37.93,100,0,56.25,56.25,0,1,0,0,5,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.833333333,42,23 +387,1067,Asylum,Delay,Goal-assigned,Baseline,1,07:30pm,1,Low Threat,1,0.25,I remember a woman in a red dress doing her makeup in a mirror with lights on them and she then went to another room with a bed in the center and cried after getting a phone call. I remember a dentists chair and pictures on the wall. ,1,97.95,52.49,89.39,4.22,0,0,0,0,6.25,0,6.25,4.17,0,0,0,0,2.08,4.17,2.08,0,2.08,2.08,0,2.08,0,0,2.08,0,14.58,6.25,0,0,0,0,6.25,8.33,0,0,6.25,0,0,0,2.08,0,0,0,0,0,0,2.08,18.75,0,2.08,12.5,4.17,0,0,2.08,2.08,-27.5,8.94,-15.04,-76.41,3,1,5,4,5,2,28,64,100,0,40,100,100,47.06,58.82,0,90,0,0,0,100,0,1,0,5,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.833333333,48,23 +388,1067,DevilsDen,Delay,Goal-assigned,Test,1,07:30pm,3,High Threat,0,0.6,"I remember the sound of chainsaws and other metals clanking against each other, and actors walking up to me with chainsaws in their hands. I also remember One actor with a bat in their hand and another with a knife. I remember walking across something like a metal bridge into the next room. ",1,96.59,8.26,99,20.23,0,0,0,0,15.09,0,15.09,5.66,0,0,1.89,0,7.55,5.66,0,0,0,0,0,0,0,0,0,0,7.55,0,0,0,0,0,0,7.55,0,0,0,0,0,0,0,0,0,0,0,0,0,1.89,16.98,0,3.77,11.32,0,1.89,0,0,1.89,20.35,24.89,15.07,21.08,5,4,3,4,5,2,36.36,81.82,36.36,0,100,57.58,57.58,57.58,100,0,50,0,100,55,0,2,1,0,5,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.625,53,23 +389,1067,GhostlyGrounds,Immediate,Goal-assigned,Share,1,07:30pm,4,High Threat,0,0.8,"I remember walking along floor and it shifting back and forth, I remember strobe lights and bodies hanging from the ceiling. I remember more actors jumping out at me during this section of the tour than the other sections. I remember a huge demon thing in the center of a room. ",1,95.53,2.18,99,20.23,0,0,0,0,11.76,0,11.76,7.84,0,0,0,0,3.92,7.84,0,0,0,0,0,0,0,0,0,0,1.96,0,0,0,0,0,0,1.96,0,0,0,0,0,0,0,0,0,0,0,0,0,3.92,23.53,0,3.92,17.65,1.96,0,0,0,3.92,-10.95,-40.64,-36.09,43.88,5,1,4,1,5,5,0,26.67,51.11,75.56,100,100,28.21,56.41,28.21,0,45.45,50,50,100,0,1,0,0,4,1,0,0,0,0,0,0,0,0,6,0,6,1,5,0.8,51,23 +390,1067,GhostlyGrounds,Delay,Goal-assigned,Share,1,07:30pm,4,High Threat,1,0.6,I think I remember strobe lights and monsters,1,5.64,1,99,20.23,0,0,0,0,25,0,25,25,0,0,0,0,0,12.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.5,0,0,0,12.5,0,0,0,0,NA,NA,3.03,-22.77,1,4,1,1,3,3,50,50,50,50,50,50,50,0,100,0,100,100,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,1,2,1,8,23 +391,1068,Infirmary,NA,NA,NA,NA,NA,1,Low Threat,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +392,1068,Asylum,NA,NA,NA,NA,NA,3,Low Threat,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +393,1068,DevilsDen,NA,NA,NA,NA,NA,4,High Threat,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +394,1068,GhostlyGrounds,NA,NA,NA,NA,NA,4,High Threat,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +395,1068,NA,NA,Goal-assigned,NA,1,06:15pm,NA,NA,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +396,1070,Infirmary,Delay,Goal-assigned,Baseline,1,06:15pm,2,Low Threat,0,0.8,"In Infirmary, I remember a lot of bright and colorful lights. I remember a woman dancing on top of a table and I remember a few clownlooking guys walking around. I remember not being too scared during this experience and I honestly cant remember it very well. I also remember it being pretty short and it felt a little psychedelic. I also remember having to wear 3D glasses the whole time.",1,28.77,1.61,99,64.63,0,0,0,0,16.9,0,16.9,11.27,0,1.41,1.41,1.41,2.82,9.86,5.63,4.23,1.41,1.41,0,1.41,1.41,0,0,0,4.23,1.41,0,0,0,0,0,2.82,0,0,1.41,1.41,2.82,0,0,0,0,0,0,0,0,2.82,12.68,0,2.82,4.23,4.23,0,1.41,2.82,2.82,37.09,71.14,37.49,2.66,2,4,4,4,2,2,93.33,100,50,0,75,11.43,0,85.71,100,14.29,28.89,0,0,100,33.33,1,0,0,5,2,0,0,0,0,0,0,0,1,8,1,9,0.888888889,6,0.833333333,71,18 +397,1070,Asylum,Immediate,Goal-assigned,Baseline,1,06:15pm,2,Low Threat,0,0.75,"In Asylum, we followed the story of a missing director. The scares revolved around an old Hollywood movie set and were more standstill than jump scareish. There was an actress who was performing for her role and was considered a diva. We went backstage with her and saw her perform her role for a minute before being cut off and told to redo it. There was also a man in front of a camera, a news reporter, and he was reporting on the missing director. I remember a board full of newspaper clippings talking about different Hollywood mysteries and such. ",1,83.03,95.4,17.04,10.43,3.96,1.98,0,1.98,4.95,0,4.95,1.98,0,0,0.99,0,1.98,0.99,0.99,0,0.99,0.99,0,0.99,0.99,0,0,0,17.82,3.96,0,0,0,0,3.96,13.86,0,0,4.95,1.98,0,0,0.99,0,0.99,0,0,0,0,0.99,10.89,0,2.97,6.93,0.99,0,0,1.98,0.99,48.29,71.93,66.43,6.53,1,2,2,2,1,1,100,0,37.5,75,37.5,0,100,83.59,83.59,17.97,0,100,0,50,100,3,0,0,8,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.727272727,101,18 +398,1070,Asylum,Delay,Goal-assigned,Baseline,1,06:15pm,2,Low Threat,1,0.5,"Like the others, I dont remember this section very well. I remember there was a movie set and a woman who was performing on it who became very upset when the director told her to restart the scene. I also remember a reporter saying that a famous director was missing. I also remember a man at a desk with a TV in the corner of the room and a lot of papers on the desk. I also remember a corkboard with a bunch of newspaper clippings on it. Other than that, I cant remember anything else.",1,67.92,11.66,68.87,34.94,3.13,0,1.04,3.13,13.54,0,13.54,6.25,0,1.04,1.04,0,5.21,6.25,3.13,2.08,1.04,1.04,0,1.04,0,0,1.04,0,9.38,2.08,0,0,0,0,2.08,7.29,0,0,2.08,1.04,0,0,0,0,0,0,0,0,0,1.04,4.17,0,0,4.17,0,0,0,0,1.04,-27.92,-23.82,-37.09,-22.86,4,1,3,1,4,2,0,16.08,30.07,100,44.06,100,92.31,30.77,0,61.54,47.5,0,100,25,100,0,0,0,8,0,0,0,0,0,0,0,0,2,8,2,10,0.8,8,1,96,18 +399,1070,DevilsDen,Immediate,Goal-assigned,Test,1,06:15pm,4,High Threat,0,0.6,"We entered the building after being told that the group in front of us was being dismembered. After entering, we noticed a man with a chainsaw who followed us for a bit down the walkway. After that, we entered a building with multiple jump scares done by the actors. One man with some sort of power tool told me he was gonna chop off my arms which was nice. Though I cant remember the middle that well, I do remember at the end when we had to walk through a big room with strobe lights and a woman with a weapon standing near the end, in the middle of the hall.",1,91.8,89.25,90.13,32.75,6.31,5.41,0,0.9,7.21,0,7.21,2.7,0,0.9,1.8,0,2.7,1.8,2.7,1.8,0.9,0.9,0,0.9,0.9,0,0,0,13.51,1.8,0,0,0,0,1.8,11.71,0,0,0.9,2.7,1.8,0,0,0,0,0,0,0,0,0.9,14.41,0.9,4.5,8.11,0.9,0,0,1.8,0.9,12.34,23.45,8.83,4.74,5,4,4,3,5,2,28.26,66.67,0,0,100,56.96,30,60,100,0,47.83,0,0,100,0,6,1,0,6,1,0,0,0,0,0,0,0,1,14,1,15,0.933333333,13,0.461538462,111,18 +400,1070,DevilsDen,Delay,Goal-assigned,Test,1,06:15pm,4,High Threat,1,0.6,"Now that I have finished going through the questions in the last section, I think that I might have mixed up Devil's Den with The Ghostly Grounds. I remember there being multiple different rooms with many different people, and a dentist that wanted to take your teeth. I also remember a crazy man with a chainsaw I think? And then of course the strobe lights and the long hallway with the person at the end who followed us for a bit.",1,85.68,33.01,98.38,20.23,2.5,1.25,1.25,0,13.75,0,13.75,6.25,0,1.25,2.5,2.5,2.5,2.5,1.25,0,0,1.25,0,0,0,0,0,0,6.25,0,0,0,0,0,0,6.25,0,0,0,1.25,0,1.25,1.25,0,0,0,0,0,0,7.5,10,0,1.25,7.5,1.25,0,0,2.5,7.5,6.25,36.52,-25.09,7.31,5,1,1,2,4,5,25,0,0,50,100,100,100,66.67,0,0,100,50,50,100,0,1,1,0,4,0,0,0,0,1,0,0,0,2,6,3,9,0.666666667,6,0.666666667,80,18 +401,1070,GhostlyGrounds,Delay,Goal-assigned,Share,1,06:15pm,3,High Threat,0,0.8,"The only thing I remember from the Ghostly Grounds is the long hallway at the end of the haunted house. I remember it might have had something to do with vampires. I also remember strobe lights and one guy standing at the end of the long hallway who followed us for a few steps and scared me right at the end. Other than that, theres not much that I can remember.",1,65.15,9.23,94.92,1.98,1.43,1.43,0,0,17.14,2.86,14.29,5.71,0,1.43,2.86,0,4.29,5.71,2.86,0,2.86,1.43,0,1.43,1.43,0,0,0,4.29,0,0,0,0,0,0,4.29,0,0,0,1.43,0,0,0,0,0,0,0,0,0,5.71,8.57,0,1.43,5.71,1.43,0,0,0,5.71,23.51,82.6,5.42,-17.49,1,2,3,2,3,4,100,0,0,33.33,0,25,100,0,25,100,50,50,100,0,100,0,0,0,2,0,2,0,0,2,0,0,0,1,2,5,7,0.285714286,2,1,70,18 +402,1071,Infirmary,Immediate,Goal-assigned,Baseline,1,07:30pm,1,Low Threat,0,0.6,"I remember lots of neon colors, and that there was a lady dancing on a platform at the start. Im pretty sure that there were dangling black strips that we ha to push aside to go through the room at one point. We had to wear glasses which definitely made things very dizzy. There was a tunnel that we had to walk through with spinning walls and handrails. We were directed by an actor to put our glasses in the bin at the end.",1,78.95,91.33,79.29,20.23,5.95,5.95,0,0,5.95,0,5.95,1.19,1.19,0,1.19,1.19,1.19,1.19,0,0,0,0,0,0,0,0,0,0,9.52,2.38,0,1.19,0,0,0,8.33,0,0,1.19,0,4.76,0,0,0,0,0,0,0,0,4.76,17.86,0,7.14,8.33,2.38,0,1.19,4.76,4.76,27.65,52.36,22.41,8.17,5,4,1,2,5,4,55.17,0,55.17,36.78,100,47.54,73.77,47.54,100,0,100,100,100,0,0,4,1,0,6,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.545454545,84,18 +403,1071,Infirmary,Delay,Goal-assigned,Baseline,1,07:30pm,1,Low Threat,1,0.4,"I remember many bright neon colors, and a woman dancing on a platform at the beginning. We were given glasses to enhance our experience, and then had to return them to a person as we were leaving Infirmary. There was a spinning tunnel at one point that was difficult to walk through, especially with the glasses. Im not completely sure, but I believe at one point there were dangling strips that we had to push out of the way to proceed through the room. I remember seeing many polka dots around this section as well. ",1,75.71,64.91,95.32,35.11,4.21,4.21,0,0,8.42,0,8.42,3.16,0,0,0,1.05,2.11,2.11,3.16,2.11,1.05,0,0,0,0,0,0,0,8.42,1.05,0,0,0,0,0,7.37,0,0,1.05,0,4.21,0,0,0,0,0,0,0,0,2.11,16.84,0,6.32,8.42,3.16,0,0,4.21,2.11,25.93,35.53,42.25,0,5,4,4,4,5,2,50,50,75,0,100,16.67,66.67,50,100,0,33.33,0,0,100,33.33,4,1,0,6,0,0,0,0,0,0,0,0,1,11,1,12,0.916666667,11,0.545454545,95,18 +404,1071,Asylum,Delay,Goal-assigned,Baseline,1,07:30pm,1,Low Threat,0,0.5,"To be honest, I do not remember much of anything from this section. The name doesnt ring much of a bell, but I believe it was the second section of the tour. Although I cant recall anything from the inside, I know that I gave this a similar rating to Infirmary (1 or 2). ",1,55.25,1,99,20.23,0,0,0,0,27.78,0,27.78,7.41,0,1.85,5.56,5.56,11.11,3.7,0,0,0,0,0,0,0,0,0,0,3.7,1.85,0,0,0,0,0,1.85,0,0,0,0,0,0,0,0,0,0,0,0,0,5.56,5.56,0,0,5.56,0,0,0,0,5.56,36.04,55.96,-6.16,58.31,1,4,3,5,5,5,100,100,100,100,0,73.68,21.05,47.37,100,0,50,50,100,100,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,5,5,0,0,0,54,18 +405,1071,DevilsDen,Immediate,Goal-assigned,Test,1,07:30pm,3,High Threat,0,0.2,"I remember that most (if not all) of the actors were wearing the color red. They also had tools in their hands that they would dangle in peoples faces. Im pretty sure this was the room with the most actors, compared to others that had more machines and animatronics. There were many large devices off to he side as we were navigating through the room that would blow air and make loud and unsettling noises. I believe I gave it a three, which would be the highest rating of all the rooms in terms of fear. I do remember we made our way through Devil's Den pretty quick. ",1,38.62,51.1,52.89,2.17,2.78,2.78,0,0,16.67,0.93,15.74,2.78,1.85,2.78,5.56,0,4.63,1.85,2.78,0,2.78,1.85,0,1.85,1.85,0,0,0,10.19,0.93,0,0,0,0,0,9.26,0,0,0,0.93,0,0,0,0,0,0,0,0,0,4.63,12.96,0,0,9.26,1.85,1.85,0,0,4.63,-9.99,34.4,-19.23,-45.14,5,1,1,4,5,3,60.61,92.42,92.42,0,100,100,65.29,47.93,72.73,0,100,50,0,52.38,52.38,2,0,0,8,3,0,0,0,0,0,2,0,0,13,2,15,0.866666667,10,0.8,108,18 +406,1071,DevilsDen,Delay,Goal-assigned,Test,1,07:30pm,3,High Threat,1,0.6,"Although I cant recall much of what happened in the section, I remember this being the one I ranked highest (3 I believe) because they utilized their actors very well. Most of the actors wore red shirts and had some type of tool in their hands. When waiting in line to enter this section, there was a person swinging their tool (maybe a large pipe?) at peoples heads as they were about to begin. I do remember a large hall with strobe lights that made it difficult to walk in a straight line. When leaving the section and walking back around, I remember seeing that they had switched the person at the front to a woman who was screaming a lot more than the previous individual. ",1,68.19,54.27,98.48,20.23,0.79,0,0.79,0.79,12.7,1.59,10.32,3.97,2.38,0.79,0.79,0,2.38,3.17,1.59,0.79,0.79,0,0,0,0,0,0,0,11.11,0,0,0,0,0,0,10.32,0,0,0.79,0,0,0,0,0,0,0,0,0,0,0.79,19.05,0,3.97,11.9,2.38,0.79,0,0,0.79,-42.38,-39.78,-31.46,-55.91,5,1,1,1,4,2,0,51.85,51.85,75.93,100,100,71.72,71.72,0,17.93,100,0,20.8,20.8,41.6,4,1,0,6,0,0,0,0,0,3,0,0,2,11,5,16,0.6875,11,0.545454545,126,18 +407,1071,GhostlyGrounds,Delay,Goal-assigned,Share,1,07:30pm,2,High Threat,0,0.2,"I remember that this was the last section of the tour. One thing that stood out from this section was that there werent as many actors, which definitely made this section less frightening. Rather than actors, there were more animatronics and devices that were used for scares, but unfortunately I didnt see them as scary. At one point, there was a machine that blew air at participants around the ankle area. This did make me jump a little, but I wouldnt necessarily classify it as ""scary"". I believe that we also had to walk up a set of stairs, and then down a different set of stairs in this section. ",1,22.87,6.9,96.58,1,0.91,0.91,0,0,14.55,0,14.55,1.82,2.73,0.91,0,1.82,6.36,0.91,3.64,0,3.64,3.64,0,3.64,3.64,0,0,0,4.55,0,0,0,0,0,0,4.55,0,0,0,0,1.82,0,0,0.91,0,0,0,0,0,2.73,15.45,0,1.82,12.73,0.91,0,0,2.73,2.73,22.05,50.23,-27.85,43.76,5,1,2,2,3,1,50,0,50,33.33,100,100,100,0,33.33,0,0,100,0,100,0,4,0,0,3,3,0,0,0,0,0,1,0,0,10,1,11,0.909090909,7,0.428571429,110,18 +408,1072,Infirmary,Delay,Goal-assigned,Baseline,1,07:30pm,1,Low Threat,0,0.8,"lots of colorful neon lights, wore 3d glasses, bridge, tunnel, green laser lights, bright, no actors, short, fun and exciting, trippy, bridge moved and had like rolling plastic",1,76.24,40.06,2.36,99,0,0,0,0,3.57,3.57,0,0,0,0,0,0,0,0,14.29,14.29,0,7.14,7.14,0,0,0,0,0,3.57,0,0,0,0,0,0,3.57,0,0,0,0,0,0,0,0,0,0,0,0,0,10.71,25,0,7.14,0,17.86,0,0,0,10.71,NA,90.96,28.22,NA,1,5,1,2,1,1,100,0,0,0,0,0,0,41.67,50,100,50,50,50,50,50,1,2,0,9,2,0,0,0,0,0,0,0,0,14,0,14,1,12,0.75,28,18 +409,1072,Asylum,Immediate,Goal-assigned,Baseline,1,07:30pm,1,Low Threat,0,0.75,"It was darker and had more flashing lights. There were more actors. It had body parts hanging on the wall and the actors followed you more. more decorations someone laying on a table more zig zag walking, more corners had jail cells",1,49.68,88.15,39.59,20.23,0,0,0,0,4.76,0,4.76,0,0,0,2.38,0,2.38,0,0,0,0,0,0,0,0,0,0,0,9.52,0,0,0,0,0,0,9.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.05,0,4.76,9.52,7.14,0,0,0,0,NA,-32.86,-49.78,NA,3,1,1,1,4,1,0,44.44,100,100,0,100,48.39,29.03,0,0,50,50,50,50,50,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,18 +410,1072,Asylum,Delay,Goal-assigned,Baseline,1,07:30pm,1,Low Threat,1,0.5,"lady in red room getting ready, lady moves to another room where a phone is and sits down, actor popped out of a small door, type writer machine, not too dark, machinery decor, dentist chair",1,92.95,57.11,99,65.27,0,0,0,0,5.71,0,5.71,0,0,0,0,0,5.71,0,2.86,2.86,0,0,0,0,0,0,0,0,14.29,8.57,0,5.71,0,0,2.86,11.43,0,0,5.71,0,0,0,2.86,0,0,0,0,0,0,5.71,31.43,0,2.86,22.86,5.71,0,0,2.86,5.71,NA,12.1,29.87,NA,2,2,1,5,1,1,50,100,100,100,0,0,100,100,0,100,50,50,50,50,50,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,10,1,10,1,35,18 +411,1072,DevilsDen,Immediate,Goal-assigned,Test,1,07:30pm,2,High Threat,0,0.6,"more actors, more decorations, everything I described in Asylum (confused them), someone laying on a table, body parts on the wall darker and flashing lights, longer with more zig zags",1,93.3,59.25,79.1,1.4,0,0,0,0,12.9,3.23,9.68,0,0,0,6.45,0,3.23,0,3.23,0,3.23,3.23,0,3.23,0,0,0,0,12.9,3.23,0,0,0,0,3.23,9.68,0,0,0,0,0,0,3.23,0,0,0,0,0,0,3.23,22.58,0,3.23,12.9,9.68,0,0,3.23,3.23,-10.07,-44.76,-16.4,30.94,3,2,2,1,3,1,0,50,100,100,50,85.71,100,0,50,0,0,100,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,2,7,2,9,0.777777778,7,1,31,18 +412,1072,DevilsDen,Delay,Goal-assigned,Test,1,07:30pm,2,High Threat,1,0.4,"cut up hanging body parts, long poles/rods, kind of like a jail cell, actor laying on a round table, another actor at the doorway before the actor on the round table, lots of corners, darker, machinery decoration, ",1,99,55.75,93.14,20.23,0,0,0,0,10.53,0,10.53,0,0,0,5.26,0,5.26,0,0,0,0,0,0,0,0,0,0,0,7.89,0,0,0,0,0,0,7.89,0,0,0,0,0,0,0,0,0,0,0,0,0,5.26,18.42,0,2.63,15.79,2.63,0,0,0,5.26,9.72,-23.46,21.68,30.94,4,3,2,1,1,1,0,0,84,100,4,0,0,100,0,0,0,100,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,9,0,9,1,9,1,38,18 +413,1072,GhostlyGrounds,Delay,Goal-assigned,Share,1,07:30pm,2,High Threat,0,0.6,"enter through a bus, floor was shifting and moving, actors on the bus, dark, lights, bodies hanging, long, dark hallway with actors, ",1,98.87,86.82,79.84,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,0,0,0,0,0,0,9.09,0,0,0,0,0,0,0,0,0,0,0,0,0,4.55,36.36,0,9.09,13.64,13.64,0,0,0,4.55,NA,47.31,21.68,NA,3,2,1,2,1,1,80,0,100,0,50,0,100,0,0,0,50,50,50,50,50,0,1,0,5,0,0,1,0,1,0,0,0,0,6,2,8,0.75,6,0.833333333,22,18 +414,1073,Infirmary,Immediate,Goal-assigned,Baseline,1,08:30pm,2,Low Threat,0,0.75,"lots of lights, bright colors, clown, 3D, black light, weird music, i was expecting to be more scared, loud noises ",1,80.96,15.75,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,5,10,5,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,40,0,0,0,25,15,0,0,10,41.52,56.07,37.55,30.94,1,4,4,2,1,1,100,0,0,100,0,0,0,50,100,0,0,0,0,100,0,0,0,0,7,1,0,0,0,0,0,0,0,0,8,0,8,1,7,1,20,21 +415,1073,Infirmary,Delay,Goal-assigned,Baseline,1,08:30pm,2,Low Threat,1,0.5,"lights, bright colors, dots, splattered paint, snake, yelling, glasses, 3D",1,89.52,40.06,7.03,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,10,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,10,0,30,20,0,0,0,NA,NA,NA,NA,1,1,1,1,1,1,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,0,0,0,8,0,0,0,0,0,0,0,0,0,8,0,8,1,8,1,10,21 +416,1073,Asylum,Delay,Goal-assigned,Baseline,1,08:30pm,1,Low Threat,0,0.5,"lady singing in a red robe with a bed in the same room, in the beginning a guy slammed a book/binder down, a set thing, ",1,99,62.84,98.89,20.23,0,0,0,0,3.85,0,3.85,0,0,0,0,0,3.85,0,7.69,3.85,3.85,0,0,0,0,0,0,0,7.69,3.85,0,3.85,0,0,0,7.69,0,0,3.85,3.85,0,0,0,0,0,0,0,0,0,0,30.77,0,3.85,19.23,3.85,3.85,0,0,0,NA,-15.57,-9.59,NA,2,5,1,1,1,1,0,100,14.29,14.29,14.29,0,0,0,0,100,50,50,50,50,50,0,1,0,3,0,0,0,0,0,0,0,0,2,4,2,6,0.666666667,4,0.75,26,21 +417,1073,DevilsDen,Delay,Goal-assigned,Test,1,08:30pm,5,High Threat,0,0.75,"girl out front with contacts, sledge hammer, people screaming, outdoor part, moving floor, dentist chair, gory head, chainsaw, air noises, big hammer, ",1,97.37,40.06,95.15,1,0,0,0,0,4.55,0,4.55,0,0,0,0,0,4.55,0,4.55,0,4.55,0,0,0,0,0,0,0,4.55,0,0,0,0,0,0,4.55,0,0,4.55,0,0,0,0,0,0,0,0,0,0,13.64,31.82,0,4.55,18.18,0,9.09,0,0,13.64,NA,90.96,NA,NA,1,1,1,2,1,1,100,0,0,0,0,50,50,50,50,50,50,50,50,50,50,0,0,0,9,0,0,0,0,1,0,0,0,0,9,1,10,0.9,9,1,22,21 +418,1073,GhostlyGrounds,Immediate,Goal-assigned,Share,1,08:30pm,3,High Threat,0,0.8,"during the Ghostly Grounds there were lots of loud noises and banging there were also a lot of cages and characters with masks, there was a person acting like a monkey therewere also vines hanging from the ceiling. some of the characters were pacing. at the exit there were more vines hanging and animals. ",1,86.71,51.31,29.13,5.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.89,0,1.89,0,0,0,0,0,0,0,1.89,0,0,0,0,0,0,1.89,0,0,0,0,0,0,0,0,0,0,0,0,0,1.89,18.87,0,0,13.21,0,5.66,0,0,1.89,28.05,20.72,1.54,61.88,4,2,2,3,4,1,41.67,41.67,0,100,8.33,44.44,100,44.44,0,61.11,0,100,100,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,8,0,8,1,8,1,53,21 +419,1073,GhostlyGrounds,Delay,Goal-assigned,Share,1,08:30pm,3,High Threat,1,0.8,"monkey mask, cages, vines hanging, weird noises, hallway out, cells, ",1,97.77,40.06,63.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,30,0,0,20,0,10,0,0,20,NA,4.96,NA,NA,5,1,1,1,1,1,0,0,0,0,100,50,50,50,50,50,50,50,50,50,50,0,0,0,5,1,0,0,0,0,0,0,0,0,6,0,6,1,5,1,10,21 +420,1074,Infirmary,Immediate,Goal-assigned,Baseline,1,08:30pm,2,Low Threat,0,0.75,There were neon lights around the whole course. It was funhouse themed. There were clowns and carnival like people. We were given 3D glasses which enhanced the course. The course was fairly narrow. Not a lot of people jumped out during this section. ,1,57.83,27.38,82.44,20.23,2.33,2.33,0,0,6.98,0,6.98,0,0,0,2.33,0,4.65,0,0,0,0,0,0,0,0,0,0,0,2.33,0,0,0,0,0,0,2.33,0,0,0,0,0,0,0,0,0,0,0,0,0,9.3,18.6,0,2.33,13.95,2.33,0,0,0,9.3,NA,64.08,18.37,NA,5,2,1,2,5,1,59.26,0,29.63,66.67,100,65.22,100,65.22,78.26,0,50,50,50,50,50,2,0,0,7,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.777777778,43,21 +421,1074,Infirmary,Delay,Goal-assigned,Baseline,1,08:30pm,2,Low Threat,1,0.75,it was full of glow in the dark and black light attractions. it seemed like a carnival type attraction. there was someone handing out 3D glasses. there was a room where you walked through a spinning tube that had holes in it. it was very vibrant. there were snakes and spiders.,1,40.88,73.71,83.69,20.23,0,0,0,0,3.92,0,3.92,1.96,0,0,3.92,0,0,0,0,0,0,0,0,0,0,0,0,0,3.92,0,0,0,0,0,0,3.92,0,0,0,0,0,0,0,0,1.96,0,0,0,0,5.88,29.41,0,3.92,17.65,7.84,0,0,1.96,5.88,29.61,54.41,3.47,30.94,4,5,2,5,1,1,90.91,33.33,66.67,100,0,0,6.38,29.79,6.38,100,0,100,0,0,0,1,1,0,7,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.777777778,51,21 +422,1074,Asylum,Delay,Goal-assigned,Baseline,1,08:30pm,1,Low Threat,0,0.5,it was like a 1960s themed attraction. there was a dentist with a head covered in teeth that was shouting and running around. there were drill noises and bursts of air. there was a detective in the beginning talking about what the attraction was about. there was a woman in red singing in a bedroom.,1,86.82,61.66,63.35,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.64,1.82,1.82,0,0,0,0,0,0,0,7.27,3.64,0,0,0,0,3.64,3.64,0,0,1.82,0,0,0,0,0,0,0,0,0,0,1.82,25.45,0,1.82,16.36,1.82,5.45,0,0,1.82,NA,-15.41,-9.93,NA,4,3,1,1,4,1,0,33.33,0,100,100,66.67,33.33,100,0,0,50,50,50,50,50,0,0,0,12,0,0,0,0,0,0,0,0,0,12,0,12,1,12,1,55,21 +423,1074,DevilsDen,Immediate,Goal-assigned,Test,1,08:30pm,3,High Threat,0,0.5,"There was a man that had a chainsaw that ran past us. People were very interactive during this course. There was a woman in a locker room who kept saying ""time to go to work"" while pacing back and forth and slamming on the lockers. People had props like knives and big sledgehammers. They were making strange noises. ",1,58.3,90.41,67.94,1.05,3.45,1.72,1.72,0,3.45,0,3.45,0,3.45,0,0,0,0,0,3.45,0,3.45,0,0,0,0,0,0,0,10.34,1.72,0,0,0,0,1.72,8.62,0,0,1.72,1.72,0,0,0,0,0,0,0,0,1.72,13.79,15.52,0,5.17,10.34,0,1.72,0,0,15.51,NA,37.87,-30.97,NA,2,1,1,5,3,1,66.67,100,100,72.73,0,100,75,0,59.09,31.82,50,50,50,50,50,1,1,0,7,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.777777778,58,21 +424,1074,DevilsDen,Delay,Goal-assigned,Test,1,08:30pm,3,High Threat,1,0.25,there was a man with a chainsaw that ran right past us while revving it. a woman in a room that looked like a locker room was talking to herself and banging on the walls an lockers. everyone looked like the were in an accident. a man had a big sledgehammer and was swinging it around. ,1,93.64,94.84,48.09,20.23,1.79,1.79,0,0,1.79,1.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.5,1.79,0,0,0,0,1.79,10.71,0,0,3.57,3.57,0,0,0,0,0,0,0,0,0,7.14,21.43,0,3.57,12.5,3.57,1.79,0,0,7.14,NA,-30.73,-33.19,NA,3,5,1,1,4,1,0,20,100,100,20,83.33,50,50,0,100,50,50,50,50,50,1,1,0,6,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.75,56,21 +425,1074,GhostlyGrounds,Delay,Goal-assigned,Share,1,08:30pm,3,High Threat,0,0.6,there were people that looked like vampires. it was very misty and there was a long misty hallway. there were lots of strobe lights.,1,10.19,40.06,39.59,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.5,25,0,0,16.67,8.33,0,0,0,12.5,NA,-5.45,-0.51,NA,5,1,1,1,5,1,0,0,80,0,100,100,100,100,66.67,0,50,50,50,50,50,0,1,0,3,0,0,0,0,0,0,0,0,0,4,0,4,1,4,0.75,24,21 +426,1075,Infirmary,Immediate,Goal-assigned,Baseline,1,08:30pm,2,Low Threat,0,0.25,"There were lots of bright colors, lots of clowns, and loud noises. There were lots of patterns on the walls and floors like dots and stripes. There was a part you walked through that spun and made you dizzy. The clowns had objects they swung around. Lots and lots of spiders that were also very colorful. ",1,40.77,79.51,48.09,47.3,0,0,0,0,3.57,0,3.57,0,1.79,0,0,0,1.79,0,5.36,3.57,1.79,0,0,0,0,0,0,0,5.36,0,0,0,0,0,0,5.36,0,0,0,0,0,0,0,0,0,0,0,0,0,1.79,26.79,0,5.36,10.71,5.36,3.57,1.79,0,1.79,3.49,27.87,37.93,-55.32,2,3,5,4,1,1,41.67,100,50,0,50,0,11.11,100,55.56,100,0,0,0,0,100,1,0,0,12,0,0,0,0,0,0,0,0,0,13,0,13,1,13,0.923076923,56,21 +427,1075,Infirmary,Delay,Goal-assigned,Baseline,1,08:30pm,2,Low Threat,1,0.5,"this tour was filled with very bright neon colors, like paint splashed all over the walls, different patterns painted everywhere. the 3d glasses made these patterns and colors pop even more. there were lots and lots of clowns. there were tons of huge spiders that were also colorful. there was a part you walked through where there was smoke on both sides of you. there was a large rotating tunnels filled with little lights you walked through. ",1,52.96,70.24,68.52,61.07,0,0,0,0,6.49,2.6,3.9,0,1.3,0,0,0,2.6,0,2.6,2.6,0,0,0,0,0,0,0,0,3.9,0,0,0,0,0,0,3.9,0,0,0,0,0,0,0,0,2.6,0,0,0,0,1.3,24.68,0,3.9,14.29,6.49,0,0,2.6,1.3,51.13,64.26,58.19,30.94,5,3,3,2,1,1,61.22,0,34.69,67.35,100,0,28.85,100,69.23,7.69,0,0,100,0,0,3,1,0,8,0,0,0,0,1,0,0,0,0,12,1,13,0.923076923,12,0.666666667,77,21 +428,1075,Asylum,Delay,Goal-assigned,Baseline,1,08:30pm,2,Low Threat,0,0.75,"there were lots of people who looked like old time actors. one room had a guy writing on a type writing and reading off news, like he was typing a newspaper. there was a room with showers and lockers. there was a room that had a vanity with really bright lights but it was very smoky. there was one room where there was a big bed in the middle and a lady in a dress was walking and running around singing, asking who she was going to kill next. there was lots of old music and lots of smoke. we walked past one room that seemed like it had a bar and the guy behind it was slamming stuff onto it really loudly.",1,58.22,80.24,70.82,20.23,1.63,0.81,0,0.81,3.25,0,3.25,0.81,0,0,0.81,1.63,0.81,0,3.25,1.63,1.63,0,0,0,0,0,0,0,13.01,6.5,0,0.81,0.81,0.81,4.07,7.32,0,0,1.63,2.44,0,0,0,0,0,0,0,0,0,4.88,22.76,0,3.25,14.63,2.44,2.44,0,0,4.88,25.28,20.77,62.97,-7.89,2,5,5,4,1,1,45.45,100,100,0,0,0,92.31,92.31,61.54,100,0,0,96,0,100,0,4,0,10,0,0,0,0,3,0,0,0,0,14,3,17,0.823529412,14,0.714285714,123,21 +429,1075,DevilsDen,Immediate,Goal-assigned,Test,1,08:30pm,4,High Threat,0,0.75,It started with someone letting you in with a big metal stick. A guy with a chain saw chased us down a ramp. The people inside talked about cutting you up . There was lots of sounds of people hitting metal really hard. People growled at you. There were a lot of sounds like gunshots and loud bangs. There was also a lot of smoke. ,1,95.8,98.18,23.08,1.56,1.56,1.56,0,0,3.13,0,3.13,0,0,0,1.56,1.56,0,0,3.13,0,3.13,0,0,0,0,0,0,0,10.94,1.56,0,0,0,0,1.56,9.38,0,0,0,1.56,0,0,0,0,0,0,0,0,0,7.81,21.88,0,1.56,10.94,1.56,6.25,1.56,0,7.81,-0.09,67.04,-12,-55.32,2,5,5,5,2,1,73.91,100,47.83,21.74,0,60,0,60,90,100,0,0,0,0,100,4,0,0,6,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.6,64,21 +430,1075,DevilsDen,Delay,Goal-assigned,Test,1,08:30pm,4,High Threat,1,0.5,"the person at the entrance had contacts in that made it seem like she had no pupils, she was letting people in with a big metal stick. we walked in and went down a ramp where a guy ran up next to us with a chainsaw. there were lots and lots of noises that sounded like metal crashing and gunshots. we walked through a room where bodies were hanging upside down and swinging around. there was one room where it looked like they had chopped off limbs on a table. ",1,86.15,92.24,87.45,9.52,3.33,3.33,0,0,3.33,1.11,2.22,1.11,1.11,0,1.11,0,0,0,1.11,0,1.11,0,0,0,0,0,0,0,8.89,0,0,0,0,0,0,8.89,0,0,2.22,1.11,0,0,0,0,0,0,0,0,0,6.67,28.89,0,5.56,20,1.11,2.22,0,0,6.67,-30.21,8.94,-45.85,-53.71,2,1,1,4,2,2,33.33,100,100,0,33.33,100,0,33.33,33.33,66.67,100,0,0,0,0,3,2,0,5,0,0,2,0,1,0,0,0,0,10,3,13,0.769230769,10,0.5,90,21 +431,1075,GhostlyGrounds,Delay,Goal-assigned,Share,1,08:30pm,3,High Threat,0,0.6,"entered through a school bus where there were lots of fake bodies, smoke, and flashing lights. lots of loud bangs throughout the whole tour. there was a part where it was very very smoky and you could not see anything, people were walking and running around, very loud. we had to go up and down stairs, there were cells where people would run through and jump out at you. there was was a box hanging and shaking really loudly. there were different little paths you could go through.",1,23.39,66.75,95.15,9.34,1.14,1.14,0,0,9.09,0,9.09,0,0,3.41,1.14,1.14,3.41,0,1.14,0,1.14,0,0,0,0,0,0,0,5.68,1.14,0,0,0,1.14,0,4.55,0,0,0,0,2.27,0,0,0,0,0,0,0,0,6.82,31.82,0,7.95,19.32,3.41,3.41,0,2.27,6.82,NA,54.82,79.98,NA,4,2,1,5,1,1,88.89,41.67,41.67,100,0,0,100,100,89.41,68.24,50,50,50,50,50,2,1,0,11,0,0,0,0,0,0,0,0,0,14,0,14,1,14,0.785714286,88,21 +432,1076,Infirmary,Delay,Control,Baseline,0,08:30pm,1,Low Threat,0,0.4,"Infirmary was the first segment. It was very colorful and we got to wear special glasses that make things pop off the walls. There were two go go dancing ladies. There was a room that was kind of like an art exhibit. I mostly just remember that it was like a fun house. There might have been flashing lights, I think. Photos on the walls. ",1,39.7,49.21,88.07,68.66,1.54,1.54,0,0,10.77,0,10.77,3.08,1.54,0,6.15,0,0,1.54,3.08,3.08,0,1.54,1.54,0,0,0,0,0,4.62,3.08,0,1.54,0,0,0,3.08,0,0,1.54,0,0,0,1.54,0,0,0,0,0,0,12.31,20,0,4.62,13.85,4.62,0,0,1.54,12.31,20.23,58.08,-31.35,33.97,1,1,3,3,2,1,100,100,0,100,100,100,0,0,100,50,0,0,100,50,50,1,1,0,7,0,0,0,0,0,0,1,0,0,9,1,10,0.9,9,0.777777778,65,24 +433,1076,Asylum,Immediate,Control,Baseline,0,08:30pm,1,Low Threat,0,0.75,"There were clocks on the wall when we first walk in. There were two pretty ladies and one of them said ""Stop there, only one of us is allowed to be beautiful here."" It was dark shades and not a lot of color. There was a section with articles on the wall. There was a loud air gun that was scary. The people there didnt jump out a lot, the noises were the scariest part. The name means nothing to me, there was no part of that experience that makes that Asylum memorable. I felt like we ran through it. ",1,46.17,34.42,94.09,4.64,3.96,2.97,0,0.99,11.88,1.98,8.91,1.98,1.98,0,0.99,0,3.96,0.99,5.94,1.98,3.96,1.98,0,1.98,1.98,0,0,0,7.92,2.97,0,0.99,0,0,0.99,5.94,0,0,0.99,0,0,0,0.99,0,0,0,0,0,0,9.9,20.79,0,2.97,12.87,1.98,1.98,0.99,0.99,9.9,-15.61,10.86,-10.4,-47.29,4,2,5,5,4,1,36.19,20,80,100,0,52.38,100,20,0,80,0,0,0,50,100,2,0,0,9,0,0,0,0,0,0,0,0,2,11,2,13,0.846153846,11,0.818181818,101,24 +434,1076,Asylum,Delay,Control,Baseline,0,08:30pm,1,Low Threat,1,1,This was the second one. We returned our glasses and walked around the corner. This was more dark than the first one. There were newsprint’s on the walls. Framed photos of old timey spooky men. Possibly a bathtub? I did not think this one was scary at all. ,1,55.95,52.49,89.39,1,4.17,4.17,0,0,10.42,2.08,8.33,2.08,0,0,2.08,0,4.17,0,4.17,0,4.17,4.17,0,4.17,4.17,0,0,0,6.25,0,0,0,0,0,0,6.25,0,0,0,2.08,0,0,0,0,0,0,0,0,0,0,12.5,0,4.17,8.33,2.08,0,0,0,0,-26.22,-22.65,-46.16,-9.85,2,5,5,1,4,1,0,100,33.33,40.74,3.7,87.5,20,20,0,100,0,90,0,0,100,0,0,0,5,1,2,0,0,0,0,1,0,0,6,3,9,0.666666667,5,1,49,24 +435,1076,DevilsDen,Immediate,Control,Baseline,0,08:30pm,2,High Threat,0,0.4,"I literally cannot remember it well at all. I think there were cages in this one, where you could choose to go walk through the left, center, or right. There was a guy in another cage that jumped out, the bars in the front and left werent real. There were fake plants around this cage and the lighting was red. There were photos of men. There was one photo that a man pulled down and jumped down from. There was a lot of machines, duh, but one that had a severed hand on it. There was another part with a severed hand and the blood looked shiney, there was a man in this section as well who would jump out. ",1,49.68,22.56,99,31.71,0,0,0,0,11.67,0.83,10.83,2.5,0,2.5,0.83,0.83,5.83,0.83,2.5,1.67,0.83,0,0,0,0,0,0,0,5.83,0.83,0,0,0,0.83,0,5,0,0,0,3.33,0,0,0,0,0,0,0,0,0,5,26.67,0,5,20,2.5,0,0,0,5,-30.57,-16.19,-34.34,-41.17,2,1,1,1,2,2,0,100,0,100,100,100,0,60,40,20,100,0,0,33.33,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,24 +436,1076,DevilsDen,Delay,Control,Baseline,0,08:30pm,2,High Threat,1,0.6,"I literally don’t remember anything really. It was dark, there were like air compressor noises that were kinda scary. I’m pretty sure that when you were waiting in line we had just passed a Vampire themed lounge. I can’t remember if this was the one that had the hand on the table? I remember I gave this a two on the scary level bc of the air compressor noise. ",1,12.27,8.97,82.12,1,1.45,1.45,0,0,17.39,2.9,14.49,4.35,1.45,1.45,5.8,1.45,2.9,4.35,7.25,1.45,5.8,2.9,0,2.9,2.9,0,0,0,4.35,1.45,0,0,0,0,0,2.9,0,0,0,0,0,0,0,0,0,0,0,0,0,5.8,11.59,0,1.45,5.8,1.45,2.9,0,0,5.8,-2.39,-20.94,-14.14,27.89,5,1,2,1,5,1,0,18.57,18.57,74.29,100,100,82.89,82.89,48.68,0,0,100,0,0,7.69,1,0,0,3,1,2,0,0,0,0,0,0,1,5,3,8,0.625,4,0.75,72,24 +437,1076,GhostlyGrounds,Delay,Control,Baseline,0,08:30pm,4,High Threat,0,0.2,"Ghostly Grounds was the last one. We started off in a bus with flashing strobe lights. There were bodies in seats but none of them moved, a real missed opportunity to scare us if you ask me. We exit the bus and walk through hallways where there were cells I think. There was a guy who picked on me for being last in line. “The last in line is the easiest to separate” or something like that. Omg the floor section!!! That one part where every step you take the floor moved!!! Terrifying, that was traumatic. ",1,64.73,58.85,99,9.95,4.21,3.16,1.05,0,10.53,2.11,8.42,1.05,0,0,3.16,1.05,5.26,0,5.26,2.11,3.16,3.16,0,3.16,2.11,0,0,0,10.53,2.11,0,0,0,0,1.05,8.42,0,0,0,1.05,0,0,1.05,0,0,0,1.05,0,0,3.16,24.21,0,5.26,16.84,2.11,0,0,1.05,4.21,61.84,58.84,64.81,61.88,1,2,2,5,1,1,100,25,50,100,0,0,100,100,50,25,0,100,100,0,0,2,2,0,4,3,0,0,0,0,0,2,0,1,11,3,14,0.785714286,8,0.5,95,24 +438,1078,Infirmary,NA,NA,NA,NA,NA,1,Low Threat,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +439,1078,Asylum,NA,NA,NA,NA,NA,1,Low Threat,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +440,1078,DevilsDen,NA,NA,NA,NA,NA,1,High Threat,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +441,1078,GhostlyGrounds,NA,NA,NA,NA,NA,2,High Threat,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +442,1078,NA,NA,Control,NA,0,08:30pm,NA,NA,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +443,1079,Infirmary,NA,NA,NA,NA,NA,1,Low Threat,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +444,1079,Asylum,NA,NA,NA,NA,NA,1,Low Threat,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +445,1079,DevilsDen,NA,NA,NA,NA,NA,2,High Threat,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +446,1079,GhostlyGrounds,NA,NA,NA,NA,NA,4,High Threat,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +447,1079,NA,NA,Control,NA,0,08:30pm,NA,NA,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +448,1080,Infirmary,Immediate,Control,Baseline,0,08:30pm,3,Low Threat,0,0.4,"flashing lights, puff of gas that was scary, foggy ""water"" and neon lights, people running around and saying weird things in your ear, pretty fearful the whole time, 3D glasses, scary noises, clowns, lots of darkness, walked slowly in a line. lots of stimuli at once. ",1,86.23,65.68,60.36,1,0,0,0,0,4.35,0,4.35,0,2.17,0,2.17,0,0,0,8.7,0,8.7,6.52,0,6.52,6.52,0,0,0,4.35,2.17,0,0,0,0,2.17,2.17,0,0,0,0,0,0,0,0,0,0,0,0,2.17,6.52,28.26,0,6.52,8.7,8.7,4.35,0,0,8.69,NA,-1.83,-9.51,NA,5,2,1,1,4,1,0,3.23,35.48,3.23,100,90,100,100,0,0,50,50,50,50,50,2,0,0,8,1,0,0,0,2,1,0,0,0,11,3,14,0.785714286,10,0.8,46,23 +449,1080,Infirmary,Delay,Control,Baseline,0,08:30pm,3,Low Threat,1,0.6,"In the ""Infirmary"" section, we walked in a single file line through a dark area with green lights. There was a fog / neon light machine that made it look like you were wading through deep water. There were neon lights and we put on 3D glasses so that the neon art looked more vivid. There were also gogo dancers who were dancing on the table. There was music playing overhead I think.",1,62.1,88.72,68.87,40.61,2.78,2.78,0,0,2.78,0,2.78,1.39,1.39,0,0,0,0,0,1.39,1.39,0,0,0,0,0,0,0,0,8.33,1.39,0,0,0,0,0,6.94,0,0,0,0,0,0,0,0,0,0,0,0,0,4.17,30.56,1.39,4.17,13.89,11.11,1.39,0,0,4.17,56.25,92.89,87.43,-11.56,1,3,4,4,1,1,100,18.84,21.74,0,21.74,0,55.26,100,80.26,80.26,0,0,0,100,100,1,0,0,5,0,1,1,0,3,0,0,0,1,6,6,12,0.5,6,0.833333333,72,23 +450,1080,Asylum,Delay,Control,Baseline,0,08:30pm,1,Low Threat,0,0.5,I think there was a woman in a red robe who spoke to us and said we looked beautiful. There were also newspaper clippings on the walls and a bathtub. I cant remember anything else beyond that.,1,15.89,56.18,94.68,62.77,5.41,5.41,0,0,13.51,0,13.51,5.41,0,2.7,2.7,0,5.41,2.7,2.7,2.7,0,0,0,0,0,0,0,0,16.22,5.41,0,0,0,0,5.41,10.81,0,0,2.7,0,0,0,0,0,0,0,0,0,0,2.7,18.92,0,0,13.51,5.41,0,0,0,2.7,1.01,57.23,-5.6,-48.59,4,5,5,3,4,2,87.5,29.17,0,100,33.33,40.63,40.63,75,0,100,43.75,0,50,0,100,2,0,0,4,0,0,0,0,0,0,0,0,1,6,1,7,0.857142857,6,0.666666667,37,23 +451,1080,DevilsDen,Delay,Control,Baseline,0,08:30pm,3,High Threat,0,0.8,"flashing lights, scary people, noises, flashes, fear. ",1,89.52,40.06,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.86,0,42.86,28.57,0,28.57,28.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.29,57.14,0,0,0,42.86,14.29,0,0,14.29,NA,NA,NA,NA,1,1,1,1,1,1,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,0,0,0,3,2,0,0,0,0,0,0,0,0,5,0,5,1,3,1,7,23 +452,1080,GhostlyGrounds,Immediate,Control,Baseline,0,08:30pm,4,High Threat,0,1,"walked through a bus, flashing lights with bodies laying on every other seat, some people got up and yelled things at you. people screaming and continually walked slowly through the bus. continued onward to a dark alleyway where people continued to approach you and yell things. people in the back of the line were targeted by the actors. people in cages, bodies with neck removed, splattered walls, walls with hands on them, bodies on tables, floorboards moved underneath at one point. loud noises that sound like gunshots.",1,98.91,73.03,97.26,36.68,0,0,0,0,2.3,1.15,1.15,0,0,0,0,0,1.15,0,3.45,2.3,1.15,0,0,0,0,0,0,0,6.9,2.3,0,0,0,0,2.3,4.6,0,0,0,0,0,0,1.15,0,0,0,0,0,0,8.05,31.03,0,9.2,13.79,3.45,8.05,0,1.15,8.05,NA,37.96,9.89,NA,3,3,1,5,4,1,72.22,72.22,100,100,0,45.83,69.44,100,0,25,50,50,50,50,50,6,1,0,11,0,0,0,0,0,0,0,0,0,18,0,18,1,18,0.611111111,87,23 +453,1080,GhostlyGrounds,Delay,Control,Baseline,0,08:30pm,4,High Threat,1,0.6,"In the Ghostly Grounds section, we walked onto a black schoolbus one by one. A man in a mask/costume ushered us in a line onto the bus. It was dark with flashing strobe lights, they strobed slowly, about one flash on and off per second. There were people sitting completely still in every other bus seat, and it was difficult to tell which ones were supposed to be ""alive"" or ""dead."" No one moved and approached us, but I heard people behind us yell out and scream so I assume that one of the bodies got up and scared them. We walked slowly through the bus and into another section which I do not really remember.",1,60.85,45.17,96.95,5.8,4.31,4.31,0,0,14.66,2.59,12.07,1.72,0,1.72,3.45,2.59,6.03,0.86,1.72,0,1.72,0.86,0,0.86,0.86,0,0,0,8.62,1.72,0,0,0,0,1.72,6.9,0,0,0,0.86,0,0,0.86,0,0,0,0,0,0,3.45,25,0,5.17,12.93,4.31,2.59,0,0.86,3.45,78.66,97.06,95.06,43.85,1,3,4,3,1,1,100,45.57,0,0,30.38,0,50.52,100,100,100,0,0,50,100,50,5,1,0,6,1,0,0,0,0,0,0,0,1,13,1,14,0.928571429,12,0.5,116,23 +454,1081,Infirmary,Immediate,Control,Baseline,0,06:15pm,3,Low Threat,0,1,"Scary, spiders, clown Loud noises. 3d glasses. Made me feel like I was tripping. Actors made weird rawr sound. ",1,67.62,14.81,33.61,1,0,0,0,0,15.79,0,15.79,5.26,10.53,0,0,0,0,0,10.53,0,10.53,5.26,0,5.26,5.26,0,0,0,5.26,0,0,0,0,0,0,5.26,0,0,0,0,0,0,0,0,0,0,0,0,5.26,10.53,21.05,0,0,0,0,15.79,5.26,0,15.79,NA,NA,37.55,30.94,1,3,3,1,1,1,50,50,50,50,50,0,0,100,50,0,0,0,100,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,7,0,7,1,7,1,19,21 +455,1081,Infirmary,Delay,Control,Baseline,0,06:15pm,3,Low Threat,1,0.8,"Spiders, spinning tunnel, clowns, 3d glasses, there was neon colors",1,39.7,40.06,63.35,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,10,10,10,0,0,0,0,NA,NA,21.68,NA,1,4,1,1,1,1,50,50,50,50,50,0,0,0,100,0,50,50,50,50,50,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,5,1,5,1,10,21 +456,1081,Asylum,Delay,Control,Baseline,0,06:15pm,2,Low Threat,0,0.5,"Dark, scary,",1,89.52,40.06,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,50,50,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,50,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,0,0,0,1,1,0,0,0,0,0,0,0,0,2,0,2,1,1,1,2,21 +457,1081,DevilsDen,Delay,Control,Baseline,0,06:15pm,4,High Threat,0,0.6,"Scary, Guy with weird beard and chainsaw chased us. Dark tunnel at the end with a guy in it. Flashing lights, ",1,99,99,24.32,1,4.76,4.76,0,0,0,0,0,0,0,0,0,0,0,0,4.76,0,4.76,4.76,0,4.76,4.76,0,0,0,14.29,0,0,0,0,0,0,14.29,0,0,0,9.52,0,0,0,0,0,0,0,0,4.76,0,23.81,0,4.76,4.76,14.29,0,0,0,4.76,NA,16.71,17.24,NA,3,2,1,2,1,1,40,0,100,100,50,0,100,0,0,50,50,50,50,50,50,1,1,0,2,1,0,0,0,0,0,0,0,0,5,0,5,1,4,0.5,21,21 +458,1081,GhostlyGrounds,Immediate,Control,Baseline,0,06:15pm,5,High Threat,0,0.8,"Bus. dark, scary. Foreign woman screaming from inside a cage. Little guy in a cage that came out. Spikes with bodies on it.",1,99,85.5,44.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.35,0,4.35,4.35,0,4.35,4.35,0,0,0,8.7,0,0,0,0,0,0,8.7,0,0,4.35,4.35,0,0,0,0,0,0,0,0,0,4.35,26.09,0,4.35,13.04,4.35,4.35,0,0,4.35,NA,-26.05,21.07,NA,2,4,1,1,1,1,0,100,66.67,41.67,83.33,0,0,0,100,100,50,50,50,50,50,0,1,0,5,1,0,0,0,0,0,0,0,0,7,0,7,1,6,0.833333333,23,21 +459,1081,GhostlyGrounds,Delay,Control,Baseline,0,06:15pm,5,High Threat,1,0.6,"Bus, foreign lady in cage, Scary, ",1,99,98.75,39.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.67,0,16.67,16.67,0,16.67,16.67,0,0,0,16.67,16.67,0,16.67,0,0,0,16.67,0,0,16.67,0,0,0,0,0,0,0,0,0,0,0,16.67,0,0,16.67,0,0,0,0,0,NA,-11.67,NA,NA,3,1,1,1,1,1,0,0,100,0,0,50,50,50,50,50,50,50,50,50,50,0,1,0,1,1,0,0,0,0,0,0,0,0,3,0,3,1,2,0.5,6,21 +460,1082,Infirmary,Delay,Goal-assigned,Baseline,2,07:30pm,1,Low Threat,0,0.6,Lots of bright colors and clown faces. I think there were 4 actors. ,1,31.07,40.06,81.58,99,0,0,0,0,7.69,0,7.69,7.69,0,0,0,0,0,0,7.69,7.69,0,0,0,0,0,0,0,0,7.69,0,0,0,0,0,0,7.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.08,0,0,7.69,15.38,0,0,0,0,54.29,90.96,40.97,30.94,1,4,3,2,1,1,100,0,0,0,0,0,33.33,33.33,100,0,0,0,100,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,1,3,1,13,34 +461,1082,Asylum,Immediate,Goal-assigned,Baseline,2,07:30pm,1,Low Threat,0,0.5,There was a person doing some stamps on the table when we entered. Then there was a few other actors one lady in red. It wasnt very scary but there were lots of news type props and it was dark and mostly grey. I think there were 4 actors total in the whole set. There were some flashing lights and air blowers. ,1,14.28,49.66,86.48,6.37,1.61,1.61,0,0,8.06,0,8.06,1.61,0,0,1.61,0,4.84,0,1.61,0,1.61,1.61,0,1.61,1.61,0,0,0,9.68,3.23,0,1.61,0,0,1.61,8.06,0,0,1.61,0,0,0,0,0,0,0,0,0,0,0,20.97,0,1.61,11.29,8.06,0,0,0,0,54.42,84.59,16.78,61.88,1,3,3,4,5,1,100,66.67,36.11,0,72.22,76.92,76.92,100,100,0,0,0,100,100,0,1,0,0,9,1,0,0,0,0,0,0,0,0,11,0,11,1,10,0.9,62,34 +462,1082,Asylum,Delay,Goal-assigned,Baseline,2,07:30pm,1,Low Threat,1,0.25,I dont remember much other than a man at the beginning banging on the desk. Then I think later there was a woman in a red robe. ,1,93.76,2.75,99,20.23,0,0,0,0,14.81,0,14.81,7.41,0,0,0,0,7.41,3.7,0,0,0,0,0,0,0,0,0,0,7.41,0,0,0,0,0,0,7.41,0,0,3.7,3.7,0,0,0,0,0,0,0,0,0,0,14.81,0,0,7.41,3.7,3.7,0,0,0,-22.68,-19.49,-18.41,-30.14,2,1,1,1,2,2,0,100,70,10,70,100,0,80,80,0,100,0,0,60,0,1,0,0,2,0,0,0,0,0,0,0,0,0,3,0,3,1,3,0.666666667,27,34 +463,1082,DevilsDen,Immediate,Goal-assigned,Share,2,07:30pm,2,High Threat,0,0.4,There was an axe person at the beginning. Then there was a tall man carrying a large hammer thing walking around outside. There was a man wearing a gas mask outside. The man with the gas mask followed us around throughout the whole set. There were probably 6 more actors. There was a chain saw. There was saw from the roof with dead bodies on the side. There were lots of people hiding around each corner who would pop out we walked around. ,1,91.09,94.09,86.1,20.23,2.41,2.41,0,0,2.41,0,2.41,0,0,1.2,1.2,0,0,0,0,0,0,0,0,0,0,0,0,0,9.64,0,0,0,0,0,0,9.64,0,0,0,3.61,0,0,0,0,0,0,0,1.2,0,2.41,26.51,0,3.61,19.28,3.61,0,0,0,3.61,4.13,8.38,-26.94,30.94,2,5,3,3,2,1,33.33,100,0,79.17,8.33,86.49,0,86.49,8.11,100,0,0,100,0,0,2,0,0,11,0,0,0,0,0,0,0,0,0,13,0,13,1,13,0.846153846,83,34 +464,1082,DevilsDen,Delay,Goal-assigned,Share,2,07:30pm,2,High Threat,1,0.8,There was a person with two axes standing out front. There was a man with a gas mask walking around out front and then throughout the entire exhibit as we went. There was a monster standing on top of a cage that dropped. There were body parts with a saw at the very end. ,1,96.51,72.07,99,20.23,1.85,1.85,0,0,1.85,0,1.85,0,0,0,0,0,1.85,0,0,0,0,0,0,0,0,0,0,0,5.56,0,0,0,0,0,0,5.56,0,0,0,1.85,0,0,0,0,0,0,0,0,0,3.7,31.48,0,5.56,24.07,1.85,0,0,0,3.7,NA,-14.06,-4,NA,2,3,1,1,2,1,0,100,0,50,70,50,0,100,25,30,50,50,50,50,50,1,1,0,6,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.75,54,34 +465,1082,GhostlyGrounds,Delay,Goal-assigned,Test,2,07:30pm,3,High Threat,0,0.2,"I dont remember which one was the Ghostly Grounds, but I think it was the one with a bus that we entered first then it was really foggy and hard to see and we went up stairs and down stairs. I dont really remember anything else.",1,3.8,5.61,99,20.23,4.44,4.44,0,0,24.44,4.44,20,6.67,0,0,2.22,4.44,6.67,4.44,0,0,0,0,0,0,0,0,0,0,4.44,0,0,0,0,0,0,4.44,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22,13.33,0,4.44,4.44,2.22,0,2.22,0,2.22,-24.88,11.72,-17.17,-69.19,2,3,1,3,2,3,33.33,100,0,66.67,33.33,66.67,0,100,0,100,100,50,0,0,100,1,1,0,1,0,0,0,0,0,0,0,0,2,3,2,5,0.6,3,0.333333333,45,34 +466,1083,Infirmary,Delay,Control,Baseline,0,06:15pm,2,Low Threat,0,0.6,"I remember having to put on 3D glasses, everything was neon and 3D. There was a room full of fog, a lady painting, a spinning tunnel, and a man on stilts.",1,89.52,59.25,79.1,20.23,0,0,0,0,6.45,3.23,3.23,3.23,0,0,0,0,0,3.23,0,0,0,0,0,0,0,0,0,0,6.45,3.23,0,3.23,0,0,0,6.45,0,0,3.23,3.23,6.45,0,0,0,3.23,0,0,0,0,0,16.13,0,6.45,9.68,0,0,0,9.68,0,-0.21,52.32,0.76,-53.71,3,2,1,2,4,2,85.71,0,100,100,100,57.14,100,66.67,0,33.33,100,0,0,0,0,1,0,0,5,0,0,1,0,0,0,0,0,0,6,1,7,0.857142857,6,0.833333333,31,18 +467,1083,Asylum,Immediate,Control,Baseline,0,06:15pm,1,Low Threat,0,0.5,I remember walking in and seeing a man standing at a desk his back to us. There was a folder and typewriter on the desk. In the next room there was a doctor with a head filled with teeth on his chair. I remember a lady at a dressing room then she walked through a dorm and was in the next room at the end of the bed standing in front of a table with a phone on it. ,1,99,75.86,93.76,20.23,1.27,1.27,0,0,2.53,0,2.53,2.53,0,0,0,0,0,2.53,0,0,0,0,0,0,0,0,0,0,8.86,2.53,0,1.27,0,0,1.27,7.59,0,0,2.53,3.8,0,0,0,0,1.27,0,0,0,0,1.27,21.52,0,2.53,17.72,1.27,0,0,1.27,1.27,-15.28,-15.79,-13.95,-16.1,5,1,1,1,5,2,0,28.3,56.6,28.3,100,100,100,23.73,74.58,0,100,0,100,0,0,1,0,0,13,0,0,0,0,0,0,0,0,0,14,0,14,1,14,0.928571429,79,18 +468,1083,Asylum,Delay,Control,Baseline,0,06:15pm,1,Low Threat,1,0.25,I remember a man at a desk with a typewriter and a folder. There was a lady in a dressing room then she moved to a room with a bed.,1,99,77.41,82.8,20.23,0,0,0,0,3.33,0,3.33,3.33,0,0,0,0,0,3.33,0,0,0,0,0,0,0,0,0,0,10,3.33,0,3.33,0,0,0,10,0,0,6.67,3.33,0,0,0,0,0,0,0,0,0,0,16.67,0,3.33,13.33,0,0,0,0,0,10.91,57.49,28.95,-53.71,5,3,1,4,5,2,66.67,66.67,33.33,0,100,50,50,100,100,0,100,0,0,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.6,30,18 +469,1083,DevilsDen,Immediate,Control,Baseline,0,06:15pm,4,High Threat,0,0.8,I remember going in and seeing a man standing with a a tool scaring people. Every turn there was someone standing there with some tool. We went doing a ramp that some guy was standing at. As we went down he ran down with a chainsaw. Then there was someone at the end standing on an elevated level on some metal catwalk he would slam the grate of the catwalk.,1,92.95,95.38,94.92,1.98,2.86,2.86,0,0,7.14,1.43,5.71,1.43,0,1.43,2.86,0,0,1.43,2.86,0,2.86,1.43,0,1.43,1.43,0,0,0,11.43,0,0,0,0,0,0,11.43,0,0,0,5.71,0,0,0,0,0,0,0,0,0,2.86,27.14,0,8.57,17.14,1.43,0,0,0,2.86,16.41,49.59,53.34,-53.71,4,2,1,2,1,2,66.67,0,50,100,50,0,100,60,40,20,100,0,0,0,0,4,0,0,7,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.636363636,70,18 +470,1083,DevilsDen,Delay,Control,Baseline,0,06:15pm,4,High Threat,1,1,"I remember walking in and seeing people with pipes and tools. There was a room with strobe lights and a man that would creep up. In the end, there was a guy on a catwalk that would slam a grate.",1,89.52,54.96,78.67,1,0,0,0,0,7.5,0,7.5,2.5,0,5,0,0,0,2.5,5,0,5,2.5,0,2.5,2.5,0,0,0,5,0,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,2.5,25,0,5,15,5,0,0,0,2.5,3.53,20.95,43.36,-53.71,4,2,1,3,1,2,33.33,33.33,0,100,66.67,0,100,100,0,0,100,0,0,0,0,2,1,0,5,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.625,40,18 +471,1083,GhostlyGrounds,Delay,Control,Baseline,0,06:15pm,3,High Threat,0,0.2,I cant remember Ghostly Grounds.,1,1,1,99,20.23,0,0,0,0,50,0,50,25,0,25,0,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,4,18 +472,1084,Infirmary,Delay,Goal-assigned,Baseline,2,06:15pm,1,Low Threat,0,0.2,There was a bus we walked on first. There were electric chairs and bodies hanging. In the bus there were dummies in the seats. The floor moved. There were people in cells. ,1,78.28,75.49,99,20.23,3.13,3.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,0,0,0,0,0,0,3.13,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,34.38,0,6.25,28.13,0,0,0,0,3.13,NA,37.07,-23.51,NA,4,1,1,2,4,1,57.14,0,66.67,100,33.33,100,100,77.78,0,77.78,50,50,50,50,50,0,0,0,1,0,1,0,0,4,0,0,0,0,1,5,6,0.166666667,1,1,32,18 +473,1084,Asylum,Immediate,Goal-assigned,Baseline,2,06:15pm,3,Low Threat,0,0.75,from the Asylum there were people that were looking for a celebrity that went missing. There was a dentist/ surgeon with a dummy head. There was an actress with a fan. there were newspapers on the wall. when we first walked in there was a guy that was mouthing something that was on the radio. There were desks with paper over it. There were people that were standing on the desks. ,1,66.04,84.23,59.49,20.23,2.78,1.39,0,1.39,1.39,0,1.39,0,0,0,1.39,0,0,0,0,0,0,0,0,0,0,0,0,0,6.94,0,0,0,0,0,0,6.94,0,0,1.39,1.39,0,0,1.39,0,0,0,0,0,2.78,4.17,20.83,2.78,2.78,15.28,2.78,0,0,1.39,6.95,NA,28.17,17.45,NA,2,4,1,4,2,1,44,100,60,0,60,21.88,0,29.69,100,29.69,50,50,50,50,50,1,0,0,10,0,0,0,0,0,0,0,0,2,11,2,13,0.846153846,11,0.909090909,72,18 +474,1084,Asylum,Delay,Goal-assigned,Baseline,2,06:15pm,3,Low Threat,1,0.75,In the Asylum section there was a guy at first that was lip syncing to a news article about a famous guy that was wanted. There was a bathtub in one of the rooms. A dentist that had a dummy head with teeth over it. There was an actress in front of a mirror with lights. There was a sink. There was a long hallway. There was a guy with an axe cutting tress down. There were newspapers on the walls. ,1,97.13,68.54,59.99,37.8,1.22,0,1.22,1.22,1.22,0,1.22,0,0,1.22,0,0,0,0,1.22,1.22,0,0,0,0,0,0,0,0,6.1,1.22,0,0,0,0,1.22,4.88,0,0,1.22,3.66,0,1.22,1.22,0,0,0,0,0,0,2.44,21.95,0,0,20.73,1.22,0,0,2.44,2.44,NA,45.02,26.95,NA,4,3,1,3,1,1,64.71,64.71,0,100,100,0,0,100,19.05,19.05,50,50,50,50,50,1,0,0,11,0,0,0,0,2,0,0,0,0,12,2,14,0.857142857,12,0.916666667,82,18 +475,1084,DevilsDen,Delay,Goal-assigned,Share,2,06:15pm,4,High Threat,0,0.4,At the beginning there was a character outside. There were people with axes there was a guy that was cutting wood down. There were people who had tools,1,46.07,79.51,89.39,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,0,0,0,0,0,0,7.14,0,0,0,3.57,0,0,0,0,0,0,0,0,0,7.14,21.43,0,0,21.43,0,0,0,0,7.14,NA,89.62,16.48,NA,1,5,1,5,1,1,100,66.67,33.33,40,0,0,0,62.5,25,100,50,50,50,50,50,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,5,1,5,1,28,18 +476,1084,GhostlyGrounds,Immediate,Goal-assigned,Test,2,06:15pm,3,High Threat,0,0.6,"In the Ghostly Grounds section there were people in jail cells, there was a section where we walked through the jail cells. there was a section with a big monster. we walked in a hall. there was a guy with a chainsaw and there was wood and trees that had been cut down. after that there was a dark hallway ",1,73,84.73,97.35,20.23,3.39,3.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.08,0,0,0,0,0,0,5.08,0,0,0,1.69,0,0,0,0,0,0,0,0,0,3.39,28.81,0,3.39,23.73,1.69,0,0,0,3.39,NA,-21.97,-5.6,NA,2,5,1,1,3,1,0,100,100,0,27.27,40.74,40.74,0,81.48,100,50,50,50,50,50,3,0,0,5,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.625,59,18 +477,1084,GhostlyGrounds,Delay,Goal-assigned,Test,2,06:15pm,3,High Threat,1,0.4,There was a bus we walked on first. There were people in cells. Electric chairs. The floor moved. There were dummies on the bus,1,82.63,84.23,97.72,20.23,4.17,4.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.17,0,0,0,0,0,0,4.17,0,0,0,0,0,0,0,0,0,0,0,0,0,4.17,29.17,0,8.33,20.83,0,0,0,0,4.17,NA,4.96,-26.55,NA,5,1,1,1,3,1,0,0,0,0,100,100,66.67,0,66.67,0,50,50,50,50,50,0,1,0,4,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.8,24,18 +478,1086,Infirmary,Delay,Goal-assigned,Baseline,2,07:30pm,2,Low Threat,0,0.2,They gave us 3D glasses at the beginning. It was a very small section with no breaks in between delirum and the other one. It was very neon and all the characters had neon on them. There was a character hiding in a box in the wall and there was also a character dancing ontop of something at the end. There were a lot of people with big smiles painted on too.,1,85.2,56.63,49.53,40.61,1.39,1.39,0,0,5.56,2.78,2.78,0,0,0,1.39,0,1.39,0,1.39,1.39,0,1.39,1.39,0,0,0,0,0,8.33,4.17,0,0,0,0,0,4.17,0,0,0,0,0,0,0,0,0,0,0,1.39,0,5.56,15.28,0,1.39,12.5,1.39,0,0,0,6.95,23.71,22.76,17.43,30.94,3,2,4,2,5,1,42.42,0,100,100,100,37.31,100,22.39,44.78,0,0,0,0,100,0,1,0,0,11,0,0,0,0,1,0,0,0,0,12,1,13,0.923076923,12,0.916666667,72,18 +479,1086,Asylum,Immediate,Goal-assigned,Baseline,2,07:30pm,1,Low Threat,0,0.25,"I dont remember much from this experience, mostly because it was the most boring and least interesting there. All I remember is a bunch of animatronics in cages I believe, but I think that was another one. All I know is that was the boring one. I know it wasnt very scary and that I wasnt interested in what was going on enough to remember what it was about. ",1,3.46,1,99,7.29,0,0,0,0,21.74,2.9,18.84,10.14,1.45,0,1.45,0,5.8,4.35,7.25,2.9,4.35,4.35,0,4.35,1.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.45,2.9,0,0,2.9,2.9,7.25,1.45,1.45,4.35,0,0,0,4.35,5.8,18.83,41.75,3.32,11.42,5,3,3,3,2,2,46.43,69.64,0,23.21,100,60,0,100,80,7.69,33.33,0,100,0,2.56,0,0,0,0,2,0,0,0,1,0,0,0,6,2,7,9,0.222222222,0,0,69,18 +480,1086,Asylum,Delay,Goal-assigned,Baseline,2,07:30pm,1,Low Threat,1,0.25,I rememeber this was the most borning one because there was nothing good about it. Not scary at all. I dont remember anything from the actual attraction because nothing caught my eye.,1,5.64,1,75.23,20.23,0,0,0,0,25,9.38,15.63,3.13,6.25,0,3.13,0,3.13,3.13,6.25,3.13,3.13,6.25,3.13,3.13,3.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,0,0,0,0,0,0,3.13,9.38,0,3.13,3.13,3.13,0,0,3.13,3.13,9.26,19.43,-8.17,16.51,4,3,4,5,4,1,42.86,42.86,50,100,0,71.43,71.43,100,0,50,0,85.71,0,100,100,0,0,0,0,1,0,0,0,0,0,0,0,4,1,4,5,0.2,0,0,32,18 +481,1086,DevilsDen,Delay,Goal-assigned,Share,2,07:30pm,2,High Threat,0,0.6,I remeber it was one of my favorite parts. I thought it was really cool but not to scary. I dont believe I remember much more. I think it was one of the last ones we did too.,1,2.68,1,99,61.63,2.63,2.63,0,0,21.05,0,21.05,10.53,0,0,0,2.63,7.89,2.63,7.89,5.26,2.63,2.63,0,2.63,2.63,0,0,0,2.63,0,0,0,0,0,0,2.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.63,0,0,0,0,0,2.63,0,0,47.88,40.66,11.43,91.56,5,2,2,2,4,1,43.75,0,43.75,0,100,36.36,100,36.36,0,0,0,100,100,57.14,0,0,0,0,0,3,0,0,0,0,0,1,0,1,3,2,5,0.6,0,0,38,18 +482,1086,GhostlyGrounds,Immediate,Goal-assigned,Test,2,07:30pm,2,High Threat,0,0.6,"I remember it was a lot of fun seeing all the people in the same type of masks speaking gibberish. I remember someone saying hi to me and I laughed straight after because I thought it was funny that the actors say hi even if theyre in character. The bus (i think its that one) was also really cool, I thought it was interesting that we were able to go through it and see all of the weird looking mannequins placed there. Overall it was very entertaining, not to scary though, you could see all the actors before they decided to scare you, it was also quite open and you could see mostly everything. I was expecting something else with the title of Ghostly Grounds but it still exceeded expectations. I think that there wasnt a lot of scare actors but that may be due to the labor shortage.",1,14.69,22.35,81.07,73.09,1.35,0.68,0.68,0,19.59,2.7,16.89,4.73,0.68,1.35,4.05,0.68,5.41,1.35,7.43,5.41,2.03,4.73,2.7,2.03,2.03,0,0,0,11.49,4.73,0,1.35,0,0,4.73,6.76,0,0,0,0,0,0,0,0.68,0.68,0,0,0,1.35,6.08,10.14,0,0.68,5.41,3.38,0.68,0.68,1.36,7.43,37.32,70.21,49.39,-7.65,5,4,5,4,1,3,94.17,21.67,45.83,0,100,0,56.31,37.54,100,22.33,23.97,71.9,0,75.21,100,3,1,0,4,7,0,0,0,0,0,1,0,1,15,2,17,0.882352941,8,0.5,148,18 +483,1086,GhostlyGrounds,Delay,Goal-assigned,Test,2,07:30pm,2,High Threat,1,0.4,I remember that we first walked in through a bus where there were weird mannequins and some actors. All the actors had the same mask on at some point which i thought was funny. There was also animatronics in jail cells and they were borning. There wasnt a lot of scare actors at the jail cell part with all the foliage.,1,65.02,30.91,87.98,20.23,1.64,1.64,0,0,13.11,3.28,9.84,3.28,0,0,0,0,6.56,1.64,3.28,1.64,1.64,3.28,1.64,1.64,1.64,0,0,0,8.2,0,0,0,0,0,0,8.2,0,0,0,0,0,0,0,0,0,0,0,0,1.64,1.64,11.48,0,1.64,9.84,0,0,0,0,3.28,14.89,35.67,3.42,5.59,5,3,3,2,5,2,25.64,0,0,0,100,75.64,50,100,66.67,0,46.15,0,100,0,0,0,1,0,5,2,0,0,0,0,0,0,0,0,8,0,8,1,6,0.833333333,61,18 +484,1087,Infirmary,Immediate,Goal-assigned,Baseline,2,07:30pm,2,Low Threat,0,0.6,"Infirmary started with a thick fog down a dark hallway. There were green lights, but you could not see below the waist. Then we were given some glasses that made the neon colors of the walls move and breathe. The monsters were dressed in neon costumes. There was a cylindrical room that was spinning and disorienting. This went straight into the next attraction.",1,78.06,49.5,90.66,20.23,1.59,1.59,0,0,6.35,0,6.35,0,1.59,1.59,0,0,3.17,0,0,0,0,0,0,0,0,0,0,0,3.17,0,0,0,0,0,0,3.17,0,0,0,0,0,0,0,0,0,1.59,0,0,0,1.59,26.98,0,4.76,14.29,7.94,0,0,1.59,1.59,30.25,69.07,30.76,-9.08,1,2,5,2,1,1,100,0,50,62.5,8.33,0,100,20,25,46.67,0,92.31,0,0,100,1,1,0,6,0,0,1,0,3,0,0,0,0,8,4,12,0.666666667,8,0.75,63,20 +485,1087,Infirmary,Delay,Goal-assigned,Baseline,2,07:30pm,2,Low Threat,1,0.4,Infirmary was the first attraction. The theme was neon and circus type. I was leading our group as we walked. Everybody first gathered in a room where a lady talked to us about the haunted house. There was then a choice to get a red glow stick that would tell the monsters you want to get touched and scared extra. we were not allowed to wear them because the study had to be constant. I lead the group into the first hallway which had a thick fog. There were green lasers that lit the room but you could not see below the waist. We then walked though dark hallways with neon paint. There was a circular hallway that made it feel like the walls were spinning. There were elevated surfaces with painted people dancing on them ,1,59.96,83.32,57.19,7.16,5.88,3.68,1.47,2.21,11.03,0.74,10.29,1.47,2.94,2.21,0,0,3.68,0,1.47,0,1.47,0.74,0,0.74,0.74,0,0,0,12.5,3.68,0,0.74,0,0,1.47,9.56,0,0,0.74,0,1.47,0.74,2.21,0,0.74,0,0,0,0,4.41,18.38,0,2.94,9.56,4.41,0,1.47,5.16,4.41,37.76,32.82,11.34,69.12,2,4,3,4,2,1,44.64,100,50,0,25,33.57,0,40,100,20,0,50,100,50,50,1,1,0,6,0,8,0,0,5,0,2,0,0,8,15,23,0.347826087,8,0.75,136,20 +486,1087,Asylum,Delay,Goal-assigned,Baseline,2,07:30pm,2,Low Threat,0,0.5,"First there was a monster outside who was confused as to why our group leader had his lap top. The monster had a mask on that distorted his voice. It was hard to make out what he was saying but me and the other group members found it comical. Another monster also appeared that was trying to scare me and then bumped into me on accident. He then said ""excuse me"" in a regular human voice. I also found this comical. We then entered the bus which had a mix of real people and fake monsters. I was trying to decipher who was real and who was fake. I also remember walked up and down stairs. At one point there was a hallway where the floors were moving. It was hard to walk on it and I was afraid that one of my group might fall. At the end there was a kaleidoscope hallway. This hallway seemed to be a place where the inmates cells were. The cells were very short which I found odd, and they were all open, it seemed like anyone could go in if they wanted to. ",1,28.42,55.67,81.39,4.18,3.66,1.57,1.05,1.05,14.14,0.52,13.61,3.66,1.05,2.09,3.14,1.05,3.66,0.52,4.19,1.05,3.14,1.57,0,1.57,1.05,0,0,0,13.09,3.14,0,1.05,0,1.05,1.05,9.95,0,0,0,2.09,0,0.52,0,0,0,0,0,0,0.52,4.71,13.61,0,3.66,9.42,0.52,0,1.05,0.52,5.23,23.99,53.12,17.07,1.79,4,2,3,2,4,4,92.31,0,0,100,0,29.49,100,100,0,100,24.36,75,100,0,100,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,20 +487,1087,DevilsDen,Immediate,Goal-assigned,Share,2,07:30pm,4,High Threat,0,0.6,Machine shop was dark and dirty. First there were two people that were hiding behind two walls and jumped out and scared the people behind us. Then we went outside where I was jump scared by a man just outside of the doorway. We then got back inside where we went through winding hallways with blood and organs. We also went through the machine which was bloody and had heads.,1,48.23,92.91,97.09,1,7.14,7.14,0,0,1.43,0,1.43,0,0,0,0,0,1.43,0,5.71,0,5.71,2.86,0,2.86,2.86,0,0,1.43,8.57,0,0,0,0,0,0,8.57,0,0,0,1.43,0,0,1.43,0,0,0,0,1.43,0,5.71,25.71,0,7.14,15.71,2.86,0,0,1.43,7.14,-44.18,-37.35,-39.87,-55.32,3,5,5,1,3,1,0,66.67,100,50,33.33,66.67,33.33,0,33.33,100,0,0,0,0,100,6,0,0,7,0,0,0,0,0,0,0,0,0,13,0,13,1,13,0.538461538,70,20 +488,1087,DevilsDen,Delay,Goal-assigned,Share,2,07:30pm,4,High Threat,1,0.8,"First we went in to the entrance and there were two different monsters that were hiding behind the wall. Then there was another monster hiding behind a door that jump scared me and another partner. There was then a room with hanging bodies. We walked through the machine more and there were bloody body parts everywhere. We then walked through the machine which was covered in blood, flesh and various body parts. We then walked down a long hallway that had intense strobe lights where it was hard to see. ",1,42.98,33.76,99,3.72,5.56,5.56,0,0,8.89,1.11,7.78,0,0,0,0,0,7.78,0,2.22,0,2.22,1.11,0,1.11,1.11,0,0,1.11,5.56,1.11,1.11,0,0,0,0,4.44,0,0,0,0,0,0,0,0,0,0,0,2.22,0,2.22,30,0,5.56,18.89,4.44,0,1.11,0,4.44,NA,71.18,18.9,NA,1,2,1,2,1,1,100,0,66.67,33.33,33.33,0,100,0,0,33.33,50,50,50,50,50,4,1,0,8,0,0,1,0,0,0,0,0,0,13,1,14,0.928571429,13,0.615384615,90,20 +489,1087,GhostlyGrounds,Delay,Goal-assigned,Test,2,07:30pm,3,High Threat,0,0.4,Ghostly Grounds was the second attraction that we went through. It was directly after the first one. There was a little room that we stood in so that we could jot down if we thought the first one was scary. It was very short and the least scary. There was first a guy at a type writer who was asking our group leader what he was using the laptop for. Everybody was dressed as they were in the 40s or 50s.,1,29.27,99,15.38,2.86,7.5,6.25,0,1.25,7.5,1.25,6.25,1.25,1.25,1.25,2.5,0,2.5,0,2.5,0,2.5,2.5,0,2.5,2.5,0,0,0,17.5,1.25,0,0,0,0,1.25,16.25,0,0,0,2.5,0,0,0,0,0,0,0,0,0,0,10,0,1.25,8.75,0,0,0,0,0,49.26,72.11,44.74,30.94,5,2,3,3,1,1,66.67,33.33,0,33.33,100,0,100,50,25,25,0,0,100,0,0,0,0,0,0,0,2,0,0,4,1,2,0,1,0,10,10,0,0,0,80,20 +490,1088,Infirmary,Delay,Goal-assigned,Baseline,2,07:30pm,1,Low Threat,0,0.6,"The Infirmary section was very fun! I remember thinking that it was very psychedelic. I had trouble maintaining balance. There were a lot of blacklights to emphasize the neon colors that were everywhere on the walls, cielings, actors, etc. It was mental asylum themed. Early on, we were given glasses that distorted our vision to make things look more blurry/dizzying. We had to return the glasses at the end of the section to be thrown out. There was a tunnel with a short bridge, but the walls of the tunnel were turning and had colorful patterns on them, lit up in the black darkness. It was very dizzying to walk through. There was a woman standing on a platform and dancing sort of like a stripper. I said something along the lines of ""YAASSS"".",1,88.47,66.21,63.35,30.29,2.22,2.22,0,0,7.41,0.74,6.67,1.48,0.74,0,2.22,0,0.74,0.74,2.22,1.48,0.74,0.74,0.74,0,0,0,0,0,6.67,1.48,0,0,0,0,0.74,5.19,0,0,0.74,0,1.48,0,0,0,0,0,0,0.74,0,3.7,20.74,0.74,3.7,10.37,5.93,0,1.48,1.48,4.44,-30.15,-24.61,-31.63,-34.2,3,1,1,1,5,2,0,0,100,83.33,100,100,66.67,16.67,50,0,100,0,0,50,0,7,2,0,16,0,0,0,0,0,0,0,0,0,25,0,25,1,25,0.64,135,20 +491,1088,Asylum,Immediate,Goal-assigned,Baseline,2,07:30pm,1,Low Threat,0,0.5,"This exhibition featured saws, flashing lights . Seeing a lot of the color red. Actors jumped out. Part of me feels like we didnt go to Asylum. But I know we did. I remember Infirmary, the Devil's Den, and the Ghostly Grounds the best. There were jail cells on either side that were very small. I remember better now. There were a lot of strobe lights, I was having trouble following the group ahead. The hallway was narrow and I was losing my balance. There were a few tall clowns. That were in orange. White strobe lights. I remember seeing the silhouete of my female peer ahead of me, her long hair. We turned a few corners. Actors jumped out at the corners. There were some uneven platforms that we had to be balanced on. WAIT I REMEMBER NOW. It was sort of 1920s gangster theme. There was a guy ina suit sitting on a table ina gangster sort of suit that said something along the lines of ""Keep your eyes out theres something weird thats going on"". And there were a lot of filing cabinets.",1,65.37,49.71,90.68,20.23,4.86,3.24,1.62,0,9.19,0,9.19,3.24,0,0,3.24,0,2.16,2.16,2.16,1.08,1.08,0,0,0,0,0,0,0,8.11,0.54,0,0,0,0,0.54,7.57,0,0,1.08,0.54,1.08,0,0.54,0,0,0,0,1.08,0.54,7.03,17.84,0,2.7,9.19,5.95,0,0.54,1.62,8.65,18.04,22.05,59.52,-27.46,5,2,1,3,1,5,25,50,0,50,100,0,100,80,100,0,100,50,25,25,0,4,0,0,8,0,2,0,0,10,0,0,0,7,12,19,31,0.387096774,12,0.666666667,185,20 +492,1088,Asylum,Delay,Goal-assigned,Baseline,2,07:30pm,1,Low Threat,1,0.5,"The Asylum section of the tour was sort of ""Haunted Hollywood"" themed. There was a sort of ""behind the scenes"" area with a directors chair and a vanity. It was sort of 1920s themed. There was an actress with a handheld oldfashioned fan, fanning herself. There was a man in a gangster sort of suit towards the end of the section that told us to keep an eye out, that there was something weird going on. ",1,98.68,86.82,32.28,20.23,3.9,2.6,0,1.3,11.69,0,11.69,0,0,0,11.69,0,0,0,2.6,1.3,1.3,0,0,0,0,0,0,0,10.39,2.6,0,0,0,1.3,1.3,7.79,0,0,2.6,1.3,0,0,1.3,0,0,0,0,0,1.3,3.9,16.88,0,1.3,14.29,1.3,0,0,1.3,5.2,NA,-0.73,-7.99,NA,4,5,1,3,4,1,17.19,40.63,0,100,0,36.25,36.25,60,0,100,50,50,50,50,50,2,0,0,11,0,0,0,0,0,0,0,0,0,13,0,13,1,13,0.846153846,77,20 +493,1088,DevilsDen,Delay,Goal-assigned,Share,2,07:30pm,2,High Threat,0,0.8,"This section was very mechanical, and had actors dressed up in Devil's Den uniforms. They were very dirty and rugged looking. I think there was a furnace. I remember there were mechanical machines, one of which was chopping up fake body parts such as a hand. ",1,28.85,18.24,92.58,1,0,0,0,0,8.7,0,8.7,4.35,0,0,0,0,4.35,2.17,4.35,0,4.35,0,0,0,0,0,0,0,6.52,2.17,0,0,0,2.17,0,4.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.22,0,0,13.04,2.17,0,0,0,0,20.65,2.73,-2.68,61.88,5,1,3,1,5,1,0,4.76,4.76,4.76,100,100,85.71,85.71,85.71,0,0,0,100,100,0,0,0,0,8,0,0,0,0,0,0,0,0,0,8,0,8,1,8,1,46,20 +494,1088,GhostlyGrounds,Immediate,Goal-assigned,Test,2,07:30pm,2,High Threat,0,0.8,"In the Ghostly Grounds section, we waited in a line that curved around a blue school bus that said ""The Ghostly Grounds"" on it. There were a lot of middle school aged children behind us. There was a clown actor that kept telling our research coordinator to close his laptop and put it away. We stepped up onto the school bus, and there was a dummy woman in the first seat on the left. There were a variety of actors vs dummies in the seats. There were flashing white lights. We were then led into the penitentiary building. There again we walked through a hallway that included the jail cells that were narrow and the long tall narrow hallway. There were tall demonic monsters in the hallway that were above the grassy viney hallway. there was a grassy viney sort of hallway that we walked through. That had chains and a lot of body dummies in a pile. There was an arm in one of the body piles that kept swirling around. It was confusing to look at. I held my arms together throughout various parts. chains",1,89.52,81.28,92.22,14.33,5.41,4.32,0,1.08,4.86,0,4.86,0,0.54,0,1.62,0,2.16,0,0.54,0,0.54,0.54,0,0.54,0,0,0,0,8.65,1.62,0,0,0,0.54,1.08,7.03,0,0,0.54,0.54,0,0,0,0,0,0,0,0,0.54,1.62,23.78,0.54,2.7,18.38,2.7,0,0,0,2.16,19.61,74.06,40.1,-55.32,1,4,5,4,5,1,100,50,50,0,100,40,80,80,100,0,0,0,0,0,100,4,4,0,15,1,0,0,0,0,0,0,1,0,24,1,25,0.96,23,0.652173913,185,20 +495,1088,GhostlyGrounds,Delay,Goal-assigned,Test,2,07:30pm,2,High Threat,1,0.4,"This portion included actors dressed in costumes with jump scares. It was dark and things lurched out at me. This was the last portion that we did. There was a blue decrepit schoolbus that said ""The Ghostly Grounds"" on it. One of the actors was giving our group leader trouble for having a laptop on him, but our leader kept saying that ""Francine knows"". We stepped into the step steeps of the schoolbus, and there were a combination of dummies and live actors in the seats. I remember seeing a dummy woman in the first seat on the lefthand side. She had ratty blonde hair and sort of looked like a prostitute. We left out the back of the schoolbus and walked into a path that led into the penitentiary building. There were a lot of steep steps, and there was a winding path with foliage and cages. There was a weird arm that sort of twisted in place in a pile of other body parts. There were some large dummy demon creatures that loomed above the cages when we later went up the stairs, towards the end of the section.",1,93.24,86.35,81.98,9.95,4.74,3.16,0,1.58,5.79,0,5.79,1.05,0.53,0,2.11,0,1.58,0.53,1.05,0,1.05,0.53,0,0.53,0.53,0,0,0,10,1.58,0,0,0,0.53,1.05,8.42,0,0,1.58,0.53,0,0,0,0,0,0,0,0.53,0.53,3.16,20.53,0,3.68,14.74,2.11,0,0,0,4.22,-7.39,-46.74,-29.03,53.59,5,1,2,1,3,1,0,40,60,80,100,100,75,0,62.5,25,0,100,50,0,0,8,1,0,15,0,0,0,0,0,0,1,0,0,24,1,25,0.96,24,0.625,190,20 +496,1089,Infirmary,Immediate,Control,Baseline,0,07:30pm,2,Low Threat,0,0.6," walked in without glasses through a slightly trippy area. the boards were close together and there was smoke and green lasers + we entered into the neon area and ladies were standing on a stage dancing and a third person was handing out glasses, the line was snaking around + you put on the glasses and entered and a blue tube was off to the right, there were neon pieces popping off of the blue tube that were orange + as we came up there was a clown on the left who was popping in and out + walked through a room with trippy and spinning colors + then we entered onto the colorful floorboard bridge that was rickety via both glasses and physically + we walked through more rooms with spinning light and exited in the same area with the ladies (there were 2 of them) dancing on the stage and handed the glasses back +",1,92.74,85.4,93.95,29.19,3.33,3.33,0,0,1.33,0,1.33,0,0,0,0,0,1.33,0,0.67,0.67,0,0,0,0,0,0,0,0,8,2.67,0,1.33,0,0,0,6.67,0,0,1.33,0,0,0,0,0,0,0,0,0,0,4,29.33,0,8,16.67,4.67,0,0,0,4,NA,-21.95,5.13,NA,3,3,1,1,5,1,0,50,100,25,75,66.67,33.33,100,66.67,0,50,50,50,50,50,7,3,0,14,0,0,0,0,2,0,0,0,0,24,2,26,0.923076923,24,0.583333333,151,24 +497,1089,Infirmary,Delay,Control,Baseline,0,07:30pm,2,Low Threat,1,0.4," there were women on a stage dancing + a person on the ground was handing out glasses + we walked into the room and there was a blue tube with orange pieces + there was a rainbow bridge that we walked over + came out in the same area and gave back the glasses",1,96.85,89.5,99,20.23,4,4,0,0,2,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,12,4,0,0,0,0,0,8,0,0,2,0,0,0,0,0,0,0,0,0,0,8,34,0,8,22,4,0,0,0,8,NA,67.61,37.55,NA,1,4,1,3,1,1,100,100,0,0,100,0,0,50,100,0,50,50,50,50,50,3,1,0,3,0,0,0,0,0,0,0,0,0,7,0,7,1,7,0.428571429,51,24 +498,1089,Asylum,Delay,Control,Baseline,0,07:30pm,1,Low Threat,0,0.5," the rooms had a black and white tint/theme to them + went into the room and there was a camera and flashing lights with one woman + there was a man in a top hat who stood in the corner + it was the shortest of the sections and the least scary +",1,95.62,82.98,75.94,4.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,2,0,2,2,0,0,0,8,0,0,0,0,0,0,8,0,0,2,2,0,0,0,0,0,0,0,0,0,0,32,0,2,20,10,0,0,0,0,NA,36.36,37.55,NA,4,2,1,3,1,1,50,50,0,100,100,0,100,50,0,0,50,50,50,50,50,1,0,0,6,0,0,0,0,0,0,0,0,1,7,1,8,0.875,7,0.857142857,51,24 +499,1089,DevilsDen,Immediate,Control,Baseline,0,07:30pm,3,High Threat,0,0.8," waited in line an there was a lady at the beginning explaining how it was going to go. anyone with lights would go in alone + we walked in initially and there was man working off to the left + we came around a corner and the area opened up to a section that was outside a man was outside with a chainsaw hiding in the back right corner and turned it on to chase up + we then entered a long hallway with doors and windows on either side, nothing popped out for the time being, but there were various loud noises of bangs of the windows and loud gaslike explosions + area slightly opened up to multiple actors coming up with various hammers etc, there were variations of hammer, axe, mallet + we rounded the corner to the left to open up to the longest hallway and smoke came out making it hard to see + after the smoke we saw 3 actors with various equipment that came up and scared us + that was ~about~ the end after we finished the long hallway",1,96.42,82.29,99,6.03,5.03,3.91,1.12,0,6.15,0.56,5.59,1.12,1.12,0.56,0.56,0,2.79,0,1.68,0,1.68,0.56,0,0.56,0.56,0,0,0,8.38,1.12,0,0.56,0,0,0,7.26,0,0,0.56,1.12,0,0,0,0,0,0,0,0.56,0,6.15,29.61,0,5.59,20.67,2.23,2.23,0.56,0,6.71,-8.48,-0.23,-28.86,3.66,2,1,3,3,4,2,16.67,100,0,33.33,4.76,100,57.14,85.71,0,60.41,50,0,100,0,0,6,2,0,17,0,0,0,0,0,0,0,0,1,25,1,26,0.961538462,25,0.68,180,24 +500,1089,DevilsDen,Delay,Control,Baseline,0,07:30pm,3,High Threat,1,0.2," lady at the beginning was making people go in alone + we entered and there was a man with a tool in a room + we walked into an outside section and there was a man with a chainsaw, he turned it on and chased us until we walked back inside + there was anothe room with a man + then went into a dark hallway where there were cells/rooms on each side + after that we entered into a long wide hallway + smoke ejected and we lost sight + 23 people came up to scare us in that section + that was about the end",1,86.52,99,99,4.56,7,7,0,0,1,0,1,0,1,0,0,0,0,0,2,0,2,1,0,1,1,0,0,0,13,1,0,1,0,0,0,12,0,0,1,4,0,0,0,0,0,0,0,0,0,5,34,0,9,24,2,0,0,0,5,NA,33.67,31.14,NA,2,3,1,4,1,1,50,100,75,0,25,0,50,100,0,50,50,50,50,50,50,7,0,0,7,0,0,0,0,0,0,0,0,1,14,1,15,0.933333333,14,0.5,101,24 +501,1089,GhostlyGrounds,Delay,Control,Baseline,0,07:30pm,3,High Threat,0,0.8," entered into the Ghostly Grounds through a bus + there were people popping out of different rows + after the bus we went into an inside section + there was a jail cell off to the right on one side with people in it + there was a light room with bodies hanging from the ceiling and swaying, within that room there were other people coming along to scare you + we walked across a section that had moving pieces in a dark room that moved you back and forth + there was a section where a man was hidden in a small wall with a window and he popped out back and forth on each side scaring the groups",1,97.65,82.85,99,5.58,1.77,1.77,0,0,1.77,0,1.77,0,0,0,0,0,1.77,0,1.77,0,1.77,1.77,0,1.77,1.77,0,0,0,6.19,0,0,0,0,0,0,6.19,0,0,0,1.77,0,0,0,0,0,0,0,0.88,0,7.96,33.63,0,6.19,25.66,2.65,0,0,0,8.84,NA,90.18,64.2,NA,1,4,1,4,1,1,100,70.67,41.33,0,46,0,31.21,62.41,100,34.75,50,50,50,50,50,6,2,0,3,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.272727273,114,24 +502,1090,Infirmary,Immediate,Control,Baseline,0,07:30pm,4,Low Threat,0,0.6,"colorful, highlighter, neon, clowns, loud music, glasses, gogo dancers, tubes, moderately scary, bright, tunnel with strobe lights, ",1,95.53,73.71,1,95.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.65,11.76,5.88,5.88,0,5.88,5.88,0,0,0,5.88,0,0,0,0,0,0,5.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.41,0,0,0,17.65,11.76,0,0,0,NA,4.96,NA,NA,5,1,1,1,1,1,0,0,0,0,100,50,50,50,50,50,50,50,50,50,50,0,1,0,9,1,0,0,0,0,0,0,0,0,11,0,11,1,10,0.9,17,23 +503,1090,Infirmary,Delay,Control,Baseline,0,07:30pm,4,Low Threat,1,0.4,"Neon lights, glasses, spiders, clowns, Gogo dancers, tube of lights, paint splatters, ",1,97.04,84.23,3.81,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.33,0,0,0,0,0,0,8.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,8.33,0,16.67,8.33,0,0,0,NA,-11.67,NA,NA,4,1,1,1,1,1,0,0,0,100,0,50,50,50,50,50,50,50,50,50,50,0,0,0,7,0,0,0,0,0,0,0,0,0,7,0,7,1,7,1,12,23 +504,1090,Asylum,Delay,Control,Baseline,0,07:30pm,4,Low Threat,0,0,"Doctors, skull with teeth, scary dentist",1,99,40.06,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.67,0,16.67,16.67,0,16.67,16.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,-11.67,NA,NA,2,1,1,1,1,1,0,100,0,0,0,50,50,50,50,50,50,50,50,50,50,0,0,0,2,1,0,0,0,0,0,0,0,0,3,0,3,1,2,1,6,23 +505,1090,DevilsDen,Delay,Control,Baseline,0,07:30pm,5,High Threat,0,0.8,"Chain saws, hammers, ",1,89.52,40.06,1,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,1,2,1,3,23 +506,1090,GhostlyGrounds,Immediate,Control,Baseline,0,07:30pm,5,High Threat,0,0.8,"Entering through a bus, random objects and bodies in the bus, shaky box, steam, shaky floors, framed portraits, bodies hanging from the ceiling, guy in mask popping up from the walls, ",1,99,59.25,97.57,20.23,0,0,0,0,3.23,0,3.23,0,0,0,3.23,0,0,0,0,0,0,0,0,0,0,0,0,0,3.23,0,0,0,0,0,0,3.23,0,0,0,3.23,0,0,0,0,0,0,0,0,0,0,29.03,0,9.68,19.35,0,0,0,0,0,-24.59,38.2,-58.26,-53.71,4,1,1,3,2,2,57.14,66.67,0,100,100,100,0,0,0,0,100,0,0,0,0,0,1,0,9,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.9,31,23 +507,1090,GhostlyGrounds,Delay,Control,Baseline,0,07:30pm,5,High Threat,1,0.4,"Bus, stairs, shaky floors, potato pouches",1,89.52,40.06,99,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.33,0,16.67,16.67,0,0,0,0,0,NA,NA,NA,NA,1,1,1,1,1,1,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,0,1,0,2,0,0,0,0,1,0,0,0,0,3,1,4,0.75,3,0.666666667,6,23 +508,1091,Infirmary,Delay,Goal-assigned,Baseline,2,08:30pm,1,Low Threat,0,0.4,"In the Infirmary section, we were given glasses and began to walk through the attraction. The whole section was filled with bright colors and flashing lights. There were large spiders on the walls as well as other props and decorations. Clowns roamed the halls as we walked through. We came to a spinning tunnel and walked through it. We gave our glasses back at the end of the section.",1,94.33,95.64,82.12,65.92,7.25,7.25,0,0,1.45,0,1.45,0,0,0,0,0,1.45,0,2.9,2.9,0,0,0,0,0,0,0,0,8.7,1.45,0,0,0,0,0,7.25,0,0,0,0,0,0,0,0,1.45,0,0,0,0,2.9,24.64,0,7.25,11.59,5.8,0,0,1.45,2.9,NA,66.55,9.41,NA,5,5,1,2,1,1,88.64,0,59.09,88.64,100,0,76.47,0,0,100,50,50,50,50,50,5,2,0,5,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.416666667,69,21 +509,1091,Asylum,Immediate,Goal-assigned,Baseline,2,08:30pm,1,Low Threat,0,0.75,"It was pretty dark, but otherwise not very scary. It was a lot shorter than the other parts of the haunted house and the people popping around the corners definitely made me uneasy.",1,45.12,1,86.68,1,0,0,0,0,27.27,0,27.27,0,3.03,0,3.03,3.03,18.18,0,9.09,0,9.09,6.06,0,6.06,6.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.06,6.06,0,0,3.03,3.03,0,0,0,6.06,-45.54,-30.64,-54.76,-51.23,3,1,1,1,3,2,0,25,100,58.33,29.17,100,50,0,4.17,33.33,100,0,50,0,58.33,0,0,0,4,1,0,0,0,0,0,0,0,0,5,0,5,1,4,1,33,21 +510,1091,Asylum,Delay,Goal-assigned,Baseline,2,08:30pm,1,Low Threat,1,0.25,We entered the prison where we encountered several actors and props. We then made our way through the halls where we encountered a detective with several photos pinned to the wall and what appeared to be either a therapists room or a dentists office.,1,71.44,99,66.42,3.56,13.64,11.36,0,2.27,6.82,0,6.82,0,2.27,0,2.27,0,4.55,0,2.27,0,2.27,0,0,0,0,0,0,0,20.45,4.55,0,0,0,0,0,15.91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.91,0,2.27,11.36,2.27,0,0,0,0,-30.02,-37.35,2.62,-55.32,4,2,5,1,3,1,0,50,50,100,62.5,50,100,0,50,12.5,0,0,0,0,100,3,0,0,3,0,0,0,0,0,0,0,0,1,6,1,7,0.857142857,6,0.5,44,21 +511,1091,DevilsDen,Delay,Goal-assigned,Share,2,08:30pm,2,High Threat,0,0.8,We walked into the Devil's Den where we saw a bunch of actors with axes and other tools. We then walked outside and went back into the Devil's Den where we saw a bunch of old power tools like a saw with an amputated arm on it.,1,98.03,98.95,91.07,20.23,10.64,8.51,0,2.13,2.13,0,2.13,0,0,0,0,0,2.13,0,0,0,0,0,0,0,0,0,0,0,10.64,0,0,0,0,0,0,10.64,0,0,0,0,0,0,0,0,0,0,0,0,0,4.26,25.53,0,6.38,12.77,6.38,0,0,0,4.26,NA,36.49,0.36,NA,5,2,1,2,5,1,40.91,0,54.55,9.09,100,65.38,100,38.46,38.46,0,50,50,50,50,50,3,0,0,4,0,0,0,0,0,0,0,0,0,7,0,7,1,7,0.571428571,47,21 +512,1091,GhostlyGrounds,Immediate,Goal-assigned,Test,2,08:30pm,2,High Threat,0,0.8,The Ghostly Grounds section started out on a dark bus with a flashing strobe light. There were both mannequins and people in the seats and it was difficult to distinguish between the two because of the flashing light. Then we went into the jailhouse where there were people and props moving around in cages placed in the hall that we had to walk around. Then we went up some stairs and walked around several corners where people jumped out at us. We walked along a pathway with moving floor panels and then we eventually went back downstairs. ,1,88.03,92.97,99,10.03,6.25,6.25,0,0,3.13,0,3.13,0,1.04,0,0,0,1.04,0,1.04,0,1.04,0,0,0,0,0,0,0,6.25,0,0,0,0,0,0,6.25,0,0,0,0,2.08,0,0,0,0,0,0,0,0,8.33,36.46,0,9.38,21.88,5.21,0,0,2.08,8.33,46.35,43.4,64.7,30.94,2,4,2,4,1,1,56.67,100,66.67,0,33.33,0,75.9,51.81,100,100,0,100,0,0,0,7,1,0,7,0,0,0,0,0,0,0,0,0,15,0,15,1,15,0.466666667,96,21 +513,1091,GhostlyGrounds,Delay,Goal-assigned,Test,2,08:30pm,2,High Threat,1,0.2,"We walked into a bus with blackedout windows with a strobe light flashing inside. There were mannequins and actors in the seats of the bus, and it was difficult to tell the difference between the two because of the flashing light. The actors would pop out as we walked by and we exited the bus through the back. We then entered the prison where we walked by several cages with props in them. As we moved through the hallway we then encountered actors who were staying around the cages that were surrounded by moss/plants. Afterwards, we went up a flight of stairs and continued onto a section where the floor moved as we walked on it. Eventually, we went down another flight of stairs which led to the exit of the attraction.",1,96.13,98.68,97.09,6.97,9.02,7.52,0,1.5,5.26,0,5.26,0,1.5,0.75,0,0,2.26,0,1.5,0,1.5,0,0,0,0,0,0,0,12.78,1.5,0,0,0,0,0.75,11.28,0,0,0,0,0,0,0,0,0,0,0,0,0,3.01,26.32,0,8.27,15.04,3.01,0,0,0,3.01,35.32,54.41,20.62,30.94,2,3,2,4,1,1,62.86,100,25.71,0,38.57,0,0,100,7.69,42.31,0,100,0,0,0,10,1,0,12,1,0,0,0,0,0,0,0,0,24,0,24,1,23,0.52173913,133,21 +514,1092,Infirmary,Immediate,Goal-assigned,Baseline,2,08:30pm,2,Low Threat,0,0.6,"They gave us 3d glasses and we walked through a highlight colored area. It seemed clown relate. Bright colors. About 3 rooms to walk through. Very few jump scares. The first room was open with 2 actors, one which was carrying a bucket which he scraped across the floor. ",1,82.8,90.06,97.09,20.23,4.08,4.08,0,0,8.16,0,8.16,4.08,0,0,2.04,0,4.08,0,4.08,2.04,2.04,2.04,0,2.04,2.04,0,0,0,12.24,2.04,0,0,0,0,0,10.2,0,0,0,2.04,0,0,0,0,0,0,0,0,0,4.08,28.57,0,10.2,12.24,6.12,0,0,0,4.08,5.56,27.28,-41.55,30.94,5,1,2,2,2,1,42.86,0,85.71,0,100,100,0,0,66.67,40.74,0,100,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.5,49,21 +515,1092,Infirmary,Delay,Goal-assigned,Baseline,2,08:30pm,2,Low Threat,1,0.4,Clowns and glow paint. Spiders. ,1,39.7,40.06,1,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,20,0,0,0,0,NA,NA,21.68,NA,1,2,1,1,1,1,50,50,50,50,50,0,100,0,0,0,50,50,50,50,50,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,1,3,1,5,21 +516,1092,Asylum,Delay,Goal-assigned,Baseline,2,08:30pm,2,Low Threat,0,0.25,There were clowns and bright glow colors,1,2.35,40.06,24.32,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.29,14.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.14,0,0,14.29,42.86,0,0,0,0,NA,NA,-54.75,NA,1,1,1,1,3,1,50,50,50,50,50,100,50,0,0,0,50,50,50,50,50,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,1,2,1,7,21 +517,1092,DevilsDen,Immediate,Goal-assigned,Share,2,08:30pm,4,High Threat,0,0.6,"There were a lot of people with axes. We went through a room with 2 men, one on top of a balcony swinging a weapon. Everyone was wearing red. People were snarling like zombies. It was dark. There was a butcher. There were a lot of jumpscares. ",1,94.26,84.86,27.91,20.23,2.13,2.13,0,0,2.13,2.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.38,0,0,0,0,0,0,6.38,0,0,0,2.13,0,0,0,0,0,0,0,0,0,6.38,19.15,0,4.26,10.64,4.26,0,0,0,6.38,NA,46.72,-13.85,NA,2,4,1,4,2,1,60,100,44.44,0,66.67,67.5,0,50,100,75,50,50,50,50,50,1,1,0,7,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.777777778,47,21 +518,1092,DevilsDen,Delay,Goal-assigned,Share,2,08:30pm,4,High Threat,1,0.4,walking through a jail cell tunnel with lots of fog and people walking around,1,99,40.06,72.58,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,21.43,0,14.29,7.14,0,0,0,0,7.14,NA,54.24,21.68,NA,1,4,1,2,1,1,100,0,100,0,75,0,0,0,100,0,50,50,50,50,50,1,0,0,2,0,0,0,0,0,0,0,0,0,3,0,3,1,3,0.666666667,14,21 +519,1092,GhostlyGrounds,Delay,Goal-assigned,Test,2,08:30pm,3,High Threat,0,0.2,We walked onto a bus where people would jump and scare us. There were strobe lights and fog,1,10.19,99,77.17,1,11.11,11.11,0,0,5.56,0,5.56,0,0,5.56,0,0,0,0,5.56,0,5.56,5.56,0,5.56,5.56,0,0,0,11.11,0,0,0,0,0,0,11.11,0,0,0,0,0,0,0,0,0,0,0,0,0,5.56,33.33,0,11.11,16.67,5.56,0,0,0,5.56,NA,90.96,60.85,NA,1,4,1,2,1,1,100,0,0,0,0,0,60,60,100,20,50,50,50,50,50,2,1,0,2,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.4,18,21 +520,1093,Infirmary,Immediate,Goal-assigned,Baseline,2,08:30pm,3,Low Threat,0,0.2,"the glasses were handed to you and taken at the end. everything was neon. I got jump scared twice and laughed at once. there were jump scare people. everything was trippy . there were orange spiders with long legs. there were neon oil cans. there were railings sometimes. it went around in a triangle shape thing. it was mostly orange, yellow, green, pink, and little purple. person behind me laughed at e when i got jump scared. the people giving out and collecting glasses were (presumably) female. everything was blurry with the glasses, but cool. the orange rectangles on the ground were raised more than the rest of them in the last part of the neon hallway. the floor was uneven there. i liked the spinning tunnel with the dots. our tour guide (Angelique) was no help with indicating when there was people cause she was uneffected by everything. There was a nother hallway thing after the spinny tunnel, then some other sections, then the hallway with the rectangle floor thing.",1,60.82,33.4,86.18,37.12,1.18,1.18,0,0,10,2.94,6.47,0.59,0.59,0,1.18,0,2.94,0,4.71,2.94,1.76,2.94,1.18,1.76,1.76,0,0,0,5.88,2.35,1.18,0,0,0,1.18,3.53,0,0,1.18,0,0,0,2.35,0,0,0,0,0,0,3.53,19.41,0.59,3.53,10,4.71,0,0.59,2.35,3.53,-10.24,-25.71,-37.2,32.2,4,5,3,1,4,1,0,0,50,100,50,85.71,71.43,14.29,0,100,0,0,100,100,100,9,1,0,19,2,0,0,0,0,0,0,0,0,31,0,31,1,29,0.655172414,170,21 +521,1093,Infirmary,Delay,Goal-assigned,Baseline,2,08:30pm,3,Low Threat,1,0.2,"This was the first section with all the neon. They gave you glasses towards the start on the inside. there were giant neon snakes and spiders. The glasses made everything loopy which was fun. there were neon dressed people walking through. Definitely got jump scared a few times in this one more than i expected to tbh (like 3 times). there was one point where the rectangles on the floor moved. and another where orange rectangles were raised more than the others in a thinner hallway. there were railings at one point and cool neon stuff to look at on the side. the walls were very neon and i think there were a few specific setups. a lot of polka dots at some points. i think there were clowns. it looped around and the end was viewable where you started there was a peRson on the box at the end directing you to drop your glasses in a bin. when i got jump scared once, the person behind me laughed. this one was scary, but in a fun scary way. A woman gave out glasses at the start. i think there was also a little something before the glasses but i dont remember what. i think some of the actors had tutus on",1,77.55,32.16,97.65,20.23,0,0,0,0,9.39,0.94,7.51,2.82,0.47,0,0.47,0.47,3.29,0.47,3.76,1.88,1.88,3.29,1.41,1.88,1.88,0,0,0,5.63,1.41,0,0,0,0,0.47,4.23,0,0,0.47,0,0,0,0.94,0,0,0,0,0,0,4.69,16.43,0.47,2.82,11.74,1.41,0,0.47,0.94,4.69,-19.38,-15.95,-20.89,-21.3,4,5,5,1,2,4,0,43.75,0,100,100,92.31,0,92.31,76.37,100,16.28,48.84,48.84,0,100,3,1,0,19,4,0,0,0,0,0,0,0,5,27,5,32,0.84375,23,0.826086957,213,21 +522,1093,Asylum,Delay,Goal-assigned,Baseline,2,08:30pm,1,Low Threat,0,0.5,"there were cages, and a few different sets. there was one with a reporter who for some reason made me think the actor was either from Brooklyn or was Jewish (Im also Jewish). Dont know exactly why this popped into mind. I told this thought to the person in front of me. There was also a doctor set up. I think the actor there said something about teeth so i think it was a creepy dentists office. The path was sorta thin and zig zagged into different rooms. I expected a lot of jump scares from behind those walls but dont think there were any. There were a couple other actors in the middle of one hall. The guy was scaring people and the girl was creepy but dressed up sorta fancy 1920s style with a headband or something. It wasnt that long of a section I dont think, but not that short either.",1,45.12,2.24,99,8.22,0,0,0,0,18.83,0,18.83,5.19,1.95,0,4.55,0.65,7.79,0,3.9,1.3,2.6,2.6,0,2.6,2.6,0,0,0,5.84,1.3,0,0,0,0,1.3,4.55,0,0,0.65,0.65,0,0,0,0,0,0,0,0,0,1.95,13.64,0,0.65,12.99,0,0,0,0,1.95,-19.95,-0.01,-42.83,-17,2,5,5,5,3,4,29.41,100,29.41,100,0,90.23,45.11,0,45.11,100,31.58,94.74,31.58,0,100,4,0,0,12,2,0,0,0,1,0,1,0,4,18,6,24,0.75,16,0.75,154,21 +523,1093,DevilsDen,Delay,Goal-assigned,Share,2,08:30pm,2,High Threat,0,0.6,"this one occurred after we passed through the first bar area. was a bit sad we couldnt stop to get a drink and check it out to be honest. It looked very cool and foggy. There was also a worker in front of that that seemed a bit stressed and asked us to ""please not touch her candy people"". Definitely seemed like shed delt with that a few too many times that day. Anyways, the line was long and swung by the potta porties. there was a man with a whale shirt in front of us in line. The lady who let us in had a cool outfit, a shaved head, and some sort of large prop tool in her hand. I think this was one of the medium scary ones. tbh I remember more from outside of it, then from inside. I dont think there were too many actors in this one. Maybe one jump scare. Also a big open foggy hallway in this one. I think this one was more dark. there were also schoool/gym locker things right at the start which i found odd.",1,64.38,59.05,80.57,9.87,3.19,2.66,0,0.53,10.11,0,10.11,4.26,0,0.53,2.66,2.13,1.6,0.53,4.26,1.6,2.66,2.13,0,2.13,1.6,0,0.53,0,7.45,1.6,0.53,1.06,0,0,0.53,6.38,0,0,1.6,0.53,0,0,0.53,0,0,0,0,0,0.53,5.85,15.96,0.53,1.6,11.17,1.06,0,1.6,0.53,6.38,-17.46,24.09,-50.23,-26.25,3,1,5,5,2,3,49.32,49.32,100,78.08,0,100,0,0,44.14,78.38,16.23,48.68,0,50,100,1,1,0,5,2,4,0,0,6,3,0,0,1,9,14,23,0.391304348,7,0.714285714,188,21 +524,1093,GhostlyGrounds,Immediate,Goal-assigned,Test,2,08:30pm,3,High Threat,0,0.8,"i think this was the one with the bus???? the bus was lit up purple there were people in the seats but there was a strobe light so i couldnt tell if any of the were real. i think i saw an arm move. there was a cool smokey green light thing, cages with people, and a smokey hallway at some point. ",1,65.54,2.59,69.74,44.38,0,0,0,0,14.52,3.23,11.29,3.23,0,1.61,3.23,1.61,3.23,0,1.61,1.61,0,0,0,0,0,0,0,0,1.61,1.61,0,0,0,0,1.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.06,20.97,0,1.61,8.06,9.68,0,1.61,0,8.06,35.46,75.08,24,7.29,1,3,4,3,4,3,100,100,0,0,59.09,17.31,40.38,100,0,0,92.31,92.31,0,100,0,0,1,0,5,1,0,0,0,1,1,0,0,0,7,2,9,0.777777778,6,0.833333333,62,21 +525,1093,GhostlyGrounds,Delay,Goal-assigned,Test,2,08:30pm,3,High Threat,1,0.8,"The Ghostly Grounds started out with the bus. I think it was the last section. The people in the bus i think were mostly real but also wasnt sure and it freaked me out a bit. got separated from the group momentarily. Our group formed a people chain while we walked through because my friend was scared. she grabbed the back of my sweatshirt and i thought that was funny. There was a cool green strobe light thing and a bunch of fog. There was also a bit more of an open hallway at one point and a lot of fog. There were also strobe lights in the really foggy room. I wiggled my arms while walking through so it would look cool. I also snuck up behind my brother when it was dark and scared him. very funny. Someone tried to scare the tour guide while we were walking but they were unaffected by it. I also got jump scared a couple times while walking through, despite trying to keep my composure cause i was the line leader for a bit and the tour guide was no help for indicating where the actors were hiding.",1,45.8,26.18,89.82,34.68,4.1,2.56,1.03,0.51,9.23,0.51,8.72,1.54,1.03,1.03,1.03,1.03,2.56,0,5.13,3.08,2.05,3.08,1.03,2.05,2.05,0,0,0,8.21,2.05,1.54,0,0,0,0,6.15,0.51,0,0.51,1.03,0,0,1.54,0,0,0,0,0.51,0,7.69,16.92,1.03,2.56,9.23,3.08,0,1.54,1.54,8.2,6.3,59.17,24.7,-64.97,1,4,1,2,5,2,100,0,85.71,0,71.43,18.18,63.64,9.09,100,0,100,0,0,0,33.33,15,1,0,3,5,1,1,0,3,1,1,1,1,24,9,33,0.727272727,19,0.157894737,195,21 +526,1094,Infirmary,Delay,Goal-assigned,Baseline,2,08:30pm,1,Low Threat,0,0.4,"I remember this section being very colorful and kind of fun. It was not at all scary to me, but rather really fun. I remember putting the classes on and everything looking like it was popping out at me. I remember there being a lot of clowns. There was also a sliding walkway that was fun. This attraction feels like a fun house",1,29.12,1.6,94.6,97.05,0,0,0,0,19.05,3.17,15.87,6.35,0,0,4.76,1.59,3.17,4.76,9.52,7.94,1.59,7.94,6.35,1.59,1.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.11,14.29,0,3.17,6.35,3.17,0,1.59,0,11.11,-23.81,-40.44,-7.32,-23.66,3,1,1,1,5,3,0,50,100,81.25,27.08,100,100,46.67,86.67,0,100,66.67,0,72.22,36.11,1,0,0,4,4,0,0,0,0,0,0,0,0,9,0,9,1,5,0.8,63,22 +527,1094,Asylum,Immediate,Goal-assigned,Baseline,2,08:30pm,1,Low Threat,0,0.75,"old time movie theme. surprisingly bight. Audio aspects like a woman in a red dress opening her fan. large theme reals. 1920s/ 1930s aspects and themes like flappers. I want to say that there was relevant music but I dont remember. Was not a very long attraction, it seemed to go by pretty quickly. +",1,55.25,8.59,92.16,20.23,0,0,0,0,12.96,0,12.96,5.56,0,1.85,3.7,0,3.7,1.85,1.85,0,0,1.85,0,0,0,0,0,0,5.56,1.85,0,0,0,0,1.85,3.7,0,0,3.7,0,0,1.85,0,0,0,0,0,0,0,11.11,16.67,0,3.7,9.26,1.85,3.7,0,1.85,11.11,18.04,-5.68,47.64,12.16,5,4,4,1,1,1,0,83.33,0,0,100,0,14.29,42.86,100,31.43,0,0,0,100,55,0,0,0,8,0,0,0,0,0,0,0,0,2,8,2,10,0.8,8,1,54,22 +528,1094,Asylum,Delay,Goal-assigned,Baseline,2,08:30pm,1,Low Threat,1,0.25,I remember the theme being old Hollywood. There was a woman sitting with a fan that she snapped when you walked by. The set up was like the behind the scenes of a dressing room from a movie set. ,1,98.64,81.78,81.58,20.23,0,0,0,0,2.56,0,2.56,2.56,0,0,0,0,0,2.56,0,0,0,0,0,0,0,0,0,0,7.69,0,0,0,0,0,0,7.69,0,0,5.13,0,0,0,0,0,0,0,0,0,0,2.56,15.38,0,2.56,12.82,0,0,0,0,2.56,-31.67,-25.49,-15.8,-53.71,4,1,1,1,5,2,0,50,25,100,60.71,100,66.67,100,33.33,0,100,0,0,0,0,1,0,0,4,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.8,39,22 +529,1094,DevilsDen,Immediate,Goal-assigned,Share,2,08:30pm,4,High Threat,0,0.4,I remember this being my least favorite attraction because it was the scariest to me. It was one of the special or scarier sections of the night and apart of that reason is that it was significantly darker and ominous. It was a lot harder to predict the placement and actions of the actors. a lot of the sets in this attraction were a lot gorier and overall bloodier. The actors also got a lot closer to me in this attraction which added to the fear factor,1,74.08,13.19,51.97,1.05,0,0,0,0,9.2,0,9.2,2.3,2.3,0,1.15,0,3.45,1.15,5.75,1.15,4.6,4.6,0,4.6,4.6,0,0,0,2.3,0,0,0,0,0,0,2.3,0,0,0,0,0,0,1.15,0,0,0,0,0,0,2.3,8.05,0,0,6.9,1.15,0,0,1.15,2.3,-51.51,-47.33,-52.24,-54.95,4,1,5,1,4,4,0,68.92,75.68,100,75.68,100,56.03,15.52,0,15.52,94.44,47.22,50,0,100,1,0,0,6,1,0,0,0,0,3,0,0,0,8,3,11,0.727272727,7,0.857142857,87,22 +530,1094,DevilsDen,Delay,Goal-assigned,Share,2,08:30pm,4,High Threat,1,0.8,Gruesome scenes and loud noises. This one was scarier to me than the others because of how dark it was. I was harder to predict what was coming next within the attraction. Actors also god a lot closer to me in this attraction,1,43.84,4.93,96.19,1,0,0,0,0,11.63,0,11.63,2.33,4.65,0,0,0,4.65,0,4.65,0,4.65,2.33,0,2.33,2.33,0,0,0,2.33,0,0,0,0,0,0,2.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.28,0,2.33,9.3,2.33,4.65,0,0,0,21.67,-19.5,12.49,72.02,2,3,2,1,4,1,0,100,25,56.25,84.38,38.46,58.97,100,0,23.08,0,100,50,56.25,0,1,0,0,3,0,0,0,0,0,2,0,0,0,4,2,6,0.666666667,4,0.75,43,22 +531,1094,GhostlyGrounds,Delay,Goal-assigned,Test,2,08:30pm,2,High Threat,0,0.4,I do not really have any recollection of Ghostly Grounds. I suppose for that reason it wasn’t that scary. I don’t remember this part being particularly dark either which helped with it not being as scary,1,1,1,99,1.98,2.86,2.86,0,0,34.29,0,34.29,8.57,2.86,0,11.43,5.71,17.14,5.71,8.57,2.86,5.71,5.71,0,5.71,5.71,0,0,0,2.86,2.86,2.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.86,2.86,0,0,0,2.86,0,0,0,2.86,6.58,-6.66,-23.13,49.54,2,1,2,1,2,5,0,100,0,0,100,100,0,75,75,25,50,100,50,50,0,0,0,0,1,0,0,0,0,0,0,0,0,3,1,3,4,0.25,1,1,37,22 +532,1095,Infirmary,Immediate,Control,Baseline,0,08:30pm,2,Low Threat,0,1,"We had to put on these 3d glasses. They made all the colors more vibrant. There were a bunch of spiders on the walls and the display pipes. The primary colors were blue, orange, green, and yellow. There were 4 different actors, one of them had a creepy cloak with 3 faces on it. There was a dude on stilts, at the beginning of the attraction there were two women dancing on poles. Finally, there was this room where the walls were spinning and the 3d glasses made it a little harder to balance than normal. We received the glasses from a lady in a clown costume and there were various display clowns around. ",1,88.27,74.98,45.82,11.33,1.75,1.75,0,0,5.26,0.88,4.39,0,1.75,0,0,0,2.63,0,0.88,0,0.88,0.88,0,0.88,0.88,0,0,0,7.89,1.75,0,0.88,0,0,0,7.02,0,0.88,1.75,0.88,1.75,0,0.88,0,0,0,0,0,0,0,20.18,0,2.63,10.53,7.02,0,0,2.63,0,-5.24,40.21,-0.61,-55.32,3,4,5,2,5,1,66.67,0,100,16.67,89.39,73.81,73.81,21.43,100,0,0,0,0,0,100,1,2,0,14,0,0,0,0,0,0,0,0,0,17,0,17,1,17,0.823529412,114,21 +533,1095,Infirmary,Delay,Control,Baseline,0,08:30pm,2,Low Threat,1,1,"There were 2 women dancing on poles when we came in, someone gave us the 3d glasses, and then we walked past some drapes into a sewer like setting. There were extremely vibrant colors and a bunch of big spiders everywhere along the walls and pipes. There was a man on stilts who attempted to scare us, a weird room with colorful spikes, and another actor who was draped in a cloak with three frowning faces on it. Also a room that spun with weird polka dots, we also crossed a bridge at one point. I liked Infirmary. ",1,71.21,97.11,66.12,34.6,5.1,5.1,0,0,4.08,1.02,3.06,0,0,0,1.02,1.02,1.02,0,3.06,2.04,1.02,1.02,0,1.02,1.02,0,0,0,13.27,2.04,0,0,0,0,0,11.22,0,0,1.02,1.02,0,0,0,0,0,0,0,0,2.04,3.06,17.35,0,5.1,10.2,2.04,0,0,0,5.1,-28.98,-37.74,-37.64,-11.56,3,1,4,1,5,1,0,33.33,100,75.44,40.35,100,16.48,37.36,43.96,0,0,0,0,100,100,6,1,0,6,2,0,0,0,0,0,0,0,0,15,0,15,1,13,0.461538462,98,21 +534,1095,Asylum,Delay,Control,Baseline,0,08:30pm,1,Low Threat,0,0,"It was modeled after a movie set, a creepy movie set. I vaguely remember a few old school typewriters on some desks, a few directors chairs, and those weird things where someone makes a clacking sound and then the director says ""action"". There were also a few actors trying to scare us unsuccessfully. I distinctly remember liking ""Asylum"" the least. ",1,65.02,68.76,37.69,1.32,8.2,1.64,3.28,3.28,11.48,0,11.48,3.28,1.64,1.64,3.28,1.64,1.64,3.28,6.56,1.64,4.92,3.28,0,3.28,3.28,0,0,0,9.84,1.64,0,0,0,0,1.64,8.2,0,0,0,0,0,0,1.64,0,0,0,0,0,1.64,1.64,6.56,0,1.64,3.28,0,1.64,0,1.64,3.28,18.64,63.99,14.35,-22.43,2,3,2,3,2,3,88.46,100,0,50,50,35.38,0,100,60,20,92.31,100,0,100,100,1,0,0,6,3,0,0,0,0,0,0,0,0,10,0,10,1,7,0.857142857,61,21 +535,1095,DevilsDen,Immediate,Control,Baseline,0,08:30pm,3,High Threat,0,0.6,"There was a lady who made some girl go first before us alone b/c she had one of the necklaces on. There was a guy with a sledgehammer who scared us by launching the hammer at our faces and then pulling back at the last second. Then there was a dude who tried to scare us with his chainsaw. Nex,t some dude came out of the darkness with a cinderblock and faked hitting us with it. Then we walked through some machine parts, like a chop shop area, some lady came out of nowhere and scared me. There was a disembodied head who was just covered in teeth along with some nurse lady. There was a man with a saw of some kind who was fake sleeping and then he got up and tried to scare us. There was also a weird wall of flesh thing that we had to walk through and it shook with our weight. ",1,73.88,99,45.52,1,6.88,5.63,1.25,0,1.88,0.63,1.25,0,0.63,0,0,0,0.63,0,4.38,0,4.38,2.5,0,2.5,2.5,0,0,0,18.13,3.13,0,1.88,0,1.25,0,16.25,0,1.25,3.13,3.75,1.25,0,0.63,0,0,0,0,0,0.63,3.13,15,0,5,9.38,1.25,0,0,1.88,3.76,-16.93,14.59,-10.07,-55.32,3,5,5,5,3,1,33.33,33.33,100,33.33,0,42.86,42.86,0,71.43,100,0,0,0,0,100,11,0,0,10,0,0,0,0,3,0,0,0,0,21,3,24,0.875,21,0.476190476,160,21 +536,1095,DevilsDen,Delay,Control,Baseline,0,08:30pm,3,High Threat,1,0.8,"We were accosted by some dude who swung a sledgehammer at us, then there was a guy who was revving has chainsaw at us, and finally of the three initial actors there was a man who almost hit me with a cinderblock. Everyone was wearing prison outfits. There was another man who was lying down and scared us by getting up suddenly with some kind of saw in his hand. Along with that came some sort of weird flesh wall that we all had to walk into and a bunch of air cannons positioned to scare us by blowing air loudly at our feet and heads. ",1,68.03,99,41.82,1,7.55,6.6,0,0.94,8.49,1.89,4.72,0,0,0,2.83,0,1.89,0,3.77,0,3.77,1.89,0,1.89,1.89,0,0,0,16.98,0,0,0,0,0,0,16.98,0,0.94,0,4.72,1.89,0,0.94,0,0,0,0,0,0.94,0,13.21,0,2.83,8.49,0.94,0.94,0,2.83,0.94,1.02,-14.53,-13.34,30.94,2,1,4,1,5,1,0,100,8.33,54.17,100,100,76.92,92.31,46.15,0,0,0,0,100,0,9,0,0,7,0,0,0,0,0,0,0,0,0,16,0,16,1,16,0.4375,106,21 +537,1095,GhostlyGrounds,Delay,Control,Baseline,0,08:30pm,2,High Threat,0,0.8,"It was the last attraction. I was tired and hungry at this point so I dont remember much. We had to get on a bus with strobe lights on it. Afterwards we walked into some room, and all I remember is that towards the end we walked through this really long hallway that was apart of the main housing cells of the old prison. ",1,52.84,49.35,93.71,1,6.25,4.69,0,1.56,7.81,1.56,6.25,3.13,0,0,0,1.56,1.56,3.13,4.69,0,4.69,1.56,0,1.56,0,0,0,0,4.69,0,0,0,0,0,0,4.69,0,0,0,0,4.69,0,1.56,1.56,0,1.56,0,0,0,3.13,12.5,0,3.13,7.81,1.56,0,0,9.37,3.13,9.12,-11.55,-4.84,43.76,5,1,2,1,5,1,0,85.71,0,42.86,100,100,73.91,100,73.91,0,0,100,0,100,0,2,1,0,1,0,1,0,0,0,1,3,0,1,4,6,10,0.4,4,0.25,64,21 +538,1096,Infirmary,Delay,Goal-assigned,Baseline,1,06:15pm,2,Low Threat,0,0.6,"I remember wearing 3d glasses, I remember a lot of neon colors, I remember walking through a tunnel and the walls were moving around you. I remember everything looking trippy because of the glasses",1,79.1,12.77,99,20.23,0,0,0,0,17.65,2.94,14.71,11.76,2.94,0,0,0,0,11.76,0,0,0,0,0,0,0,0,0,0,2.94,0,0,0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.65,0,5.88,5.88,5.88,0,0,0,0,-24.48,-26.63,1.83,-48.64,3,4,1,1,2,3,0,66.67,100,33.33,77.78,33.33,0,0,100,5.56,100,50,0,50,58.33,1,1,0,4,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.666666667,34,18 +539,1096,Asylum,Immediate,Goal-assigned,Baseline,1,06:15pm,1,Low Threat,0,0.5,"a man standng at a cash register when we first waked through banging down on the table, a man speaking deliriously, a women getting ready for a show, + +",1,99,99,8.95,75.77,3.57,3.57,0,0,0,0,0,0,0,0,0,0,0,0,3.57,3.57,0,0,0,0,0,0,0,0,17.86,3.57,0,0,0,0,3.57,14.29,0,0,3.57,7.14,0,0,3.57,0,0,0,0,0,0,3.57,10.71,0,0,3.57,3.57,3.57,0,3.57,3.57,NA,41.24,21.68,NA,3,2,1,2,1,1,66.67,0,100,6.67,46.67,0,100,0,0,0,50,50,50,50,50,1,0,0,4,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.8,28,18 +540,1096,Asylum,Delay,Goal-assigned,Baseline,1,06:15pm,1,Low Threat,1,0.5,"I remember a man banging on a type writer when we first entered. I remember a lady getting ready to preform, I remember going down a ramp and getting chased by someone with a chainsaw. ",1,95.41,85.08,99,20.23,2.86,2.86,0,0,11.43,0,11.43,8.57,0,0,2.86,0,0,8.57,0,0,0,0,0,0,0,0,0,0,14.29,2.86,0,2.86,0,0,0,14.29,0,0,2.86,2.86,0,0,5.71,0,0,0,0,0,0,0,14.29,0,8.57,2.86,0,2.86,0,5.71,0,29.89,69.81,14.07,5.78,1,2,1,2,3,2,100,0,66.67,66.67,100,33.33,100,0,66.67,33.33,100,0,100,100,0,1,0,0,2,0,2,0,0,0,0,0,0,0,3,2,5,0.6,3,0.666666667,35,18 +541,1096,DevilsDen,Delay,Goal-assigned,Test,1,06:15pm,3,High Threat,0,0.8,"I remember someone going frantic when first walking in. I remember walking through bodies hanging upside down with 2 people standing in the corners. I remember people jumping through bars. I remember going upstairs and seeing big creatures by the steps, I remember ",1,89.52,4.93,99,3.38,0,0,0,0,13.95,0,13.95,11.63,0,0,2.33,0,0,11.63,2.33,0,2.33,2.33,0,2.33,2.33,0,0,0,2.33,0,0,0,0,0,0,2.33,0,0,0,0,0,0,0,0,0,0,0,0,0,6.98,30.23,0,13.95,13.95,2.33,0,0,0,6.98,-22.49,-17.1,-38.79,-11.56,2,1,4,1,2,1,0,100,50,6.25,62.5,100,0,0,62.5,6.25,0,0,0,100,100,3,0,0,5,0,0,0,0,0,0,0,0,1,8,1,9,0.888888889,8,0.625,43,18 +542,1096,GhostlyGrounds,Immediate,Goal-assigned,Share,1,06:15pm,4,High Threat,0,0.8,"peope jumping out from the cages, bodys hanging from the ceiling and 2 peope standing in each corner, entering on a school bus, going up and down stairs, people in cages",1,99,40.06,99,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.45,32.26,0,9.68,22.58,0,0,0,0,6.45,NA,53.14,12.16,NA,4,2,1,3,1,1,78.57,50,0,100,50,0,100,0,0,100,50,50,50,50,50,1,1,0,4,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.666666667,31,18 +543,1096,GhostlyGrounds,Delay,Goal-assigned,Share,1,06:15pm,4,High Threat,1,0.8,I remember walking through the hallway with empty cells on each side. I remember a lot of fog. I remember people popping out of the cells and following us. I remember the weird noises that they would make,1,92.7,25.84,97.49,1,2.63,2.63,0,0,15.79,0,15.79,10.53,2.63,2.63,0,0,0,10.53,5.26,0,5.26,0,0,0,0,0,0,0,5.26,0,0,0,0,0,0,5.26,0,0,0,0,0,0,0,2.63,0,0,0,0,2.63,7.89,13.16,0,2.63,7.89,0,2.63,0,2.63,10.52,42.17,65.07,21.07,40.37,1,4,4,4,1,5,100,46.15,100,0,0,0,0,0,100,100,87.5,87.5,87.5,100,0,0,0,0,1,0,3,0,0,2,0,0,0,0,1,5,6,0.166666667,1,1,38,18 +544,1097,Infirmary,Immediate,Goal-assigned,Baseline,1,06:15pm,2,Low Threat,0,0.8,"Bright colors, 3d glasses, spiders, moving tunnel, +",1,89.52,40.06,24.32,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.29,14.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.86,0,14.29,0,28.57,0,0,0,0,NA,NA,NA,NA,1,1,1,1,1,1,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,4,1,4,1,7,18 +545,1097,Infirmary,Delay,Goal-assigned,Baseline,1,06:15pm,2,Low Threat,1,0.8,"bright colors +spiders +3d glasses +girls painting +spinny tunnel +",1,89.52,92.24,1,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.11,11.11,0,0,0,0,0,0,0,0,11.11,0,0,0,0,0,0,11.11,0,0,11.11,0,0,0,0,0,0,0,0,0,0,0,22.22,0,0,0,22.22,0,0,0,0,NA,NA,NA,NA,1,1,1,1,1,1,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,0,1,0,4,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.8,9,18 +546,1097,Asylum,Delay,Goal-assigned,Baseline,1,06:15pm,1,Low Threat,0,0.25,"jail cells +m’en screaming +chain saw +thé color red +cut off limbs +",1,96.67,40.06,1,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.77,0,0,0,23.08,7.69,0,0,0,NA,4.96,NA,NA,5,1,1,1,1,1,0,0,0,0,100,50,50,50,50,50,50,50,50,50,50,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,18 +547,1097,DevilsDen,Delay,Goal-assigned,Test,1,06:15pm,4,High Threat,0,0.6,"hanging bodies +smoke +",1,89.52,40.06,99,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.33,0,0,33.33,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,1,2,1,3,18 +548,1097,GhostlyGrounds,Immediate,Goal-assigned,Share,1,06:15pm,5,High Threat,0,0.4,"SCary ass people +bodies from the ceiling +up and down stairs +school bus +people in cages +",1,99,11.66,54.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.5,0,6.25,6.25,0,6.25,6.25,0,0,6.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.5,18.75,0,0,18.75,0,0,0,0,12.5,NA,-20.34,21.68,NA,2,3,1,1,1,1,0,100,100,0,50,0,0,100,0,0,50,50,50,50,50,1,1,0,3,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.6,16,18 +549,1097,GhostlyGrounds,Delay,Goal-assigned,Share,1,06:15pm,5,High Threat,1,0.6,"a man at a computer +moving floor +cages +school bus +upstairs +red +foliage +air guns +tunnel +waiting in line +",1,99,70.59,99,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.26,0,0,0,0,0,0,5.26,0,0,0,5.26,0,0,0,0,0,0,0,0,0,0,31.58,0,5.26,21.05,5.26,0,0,0,0,NA,88.26,NA,NA,1,1,1,2,1,1,100,0,0,0,44.44,50,50,50,50,50,50,50,50,50,50,1,2,0,6,0,0,1,0,0,0,0,0,0,9,1,10,0.9,9,0.666666667,19,18 +550,1098,Infirmary,Immediate,Goal-assigned,Baseline,1,06:15pm,2,Low Threat,0,1,there was a spinning tunnel. there were clowns. they had us wear glasses. the ground felt like it moved,1,22.98,98.27,93.14,20.23,5.26,5.26,0,0,5.26,0,5.26,5.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10.53,0,0,0,0,0,0,10.53,0,0,0,0,0,0,0,0,0,0,0,0,0,5.26,26.32,0,10.53,10.53,0,0,5.26,0,5.26,26.97,56.07,-6.11,30.94,1,3,4,2,4,1,100,0,0,100,0,66.67,66.67,100,0,44.44,0,0,0,100,0,1,1,0,2,0,0,0,0,0,0,0,0,0,4,0,4,1,4,0.5,19,18 +551,1098,Infirmary,Delay,Goal-assigned,Baseline,1,06:15pm,2,Low Threat,1,0.8,there we people standing on platforms. they gave us the glasses there were large spiders. we walked through a spinning tube. there was a clown at the end. there were walls covered in poka dots.,1,72.76,99,97.09,20.23,8.57,8.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.29,2.86,0,0,0,0,0,11.43,0,0,0,0,0,0,0,0,0,0,0,0,0,5.71,25.71,0,5.71,20,0,0,0,0,5.71,NA,-20.21,-27.46,NA,4,1,1,1,3,1,0,0,50,100,0,100,100,0,50,50,50,50,50,50,50,1,1,0,5,0,0,0,0,0,0,0,0,0,7,0,7,1,7,0.714285714,35,18 +552,1098,Asylum,Delay,Goal-assigned,Baseline,1,06:15pm,3,Low Threat,0,0.5,there was a scientist talking crazy. a mirror people get ready in before plays or movies. like a dressing room. but nobody was sitting in it. this may have been the one with the man on the type writer. ,1,85.57,26.18,81.58,91.4,0,0,0,0,15.38,7.69,7.69,0,0,0,5.13,0,5.13,0,7.69,5.13,0,2.56,0,0,0,0,0,0,7.69,2.56,0,0,0,0,2.56,5.13,0,0,0,2.56,0,0,2.56,0,0,0,0,0,2.56,12.82,12.82,0,0,12.82,0,0,0,2.56,15.38,38.83,36.56,18.03,61.88,5,4,3,3,5,1,28,28,0,28,100,40,20,60,100,0,0,0,100,100,0,0,0,0,6,0,0,0,0,0,0,0,0,0,6,0,6,1,6,1,39,18 +553,1098,DevilsDen,Immediate,Goal-assigned,Test,1,06:15pm,4,High Threat,0,0.6,there was a man with chainsaw they were growling. there was a man typing in the beginning . we walked down a ramp. ,1,89.52,99,95.15,1,4.55,4.55,0,0,0,0,0,0,0,0,0,0,0,0,4.55,0,4.55,0,0,0,0,0,0,0,22.73,4.55,0,0,0,0,4.55,18.18,0,0,0,9.09,0,0,0,0,0,0,0,0,0,0,27.27,0,4.55,18.18,0,4.55,0,0,0,NA,62.3,1.24,NA,4,2,1,2,5,1,80,0,50,100,100,66.67,100,41.67,41.67,0,50,50,50,50,50,1,0,0,2,0,0,0,0,1,0,0,0,0,3,1,4,0.75,3,0.666666667,22,18 +554,1098,DevilsDen,Delay,Goal-assigned,Test,1,06:15pm,4,High Threat,1,0.6,there was bodies hanging. and a man who chased us with a chainsaw. it smelled like gas. a man writing on a type writer. ,1,94.18,99,15.38,20.23,4.17,4.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,4.17,0,0,0,0,4.17,20.83,0,0,0,8.33,0,0,0,0,0,0,0,0,0,4.17,12.5,0,4.17,8.33,0,0,0,0,4.17,NA,-23.39,-44.8,NA,5,1,1,1,4,1,0,40,80,40,100,100,66.67,33.33,0,0,50,50,50,50,50,1,0,0,3,0,0,0,0,1,0,0,0,0,4,1,5,0.8,4,0.75,24,18 +555,1098,GhostlyGrounds,Delay,Goal-assigned,Share,1,06:15pm,5,High Threat,0,0.4,there were men in a cage. one ran and jumped out at us. i cannot remember much about this attraction. ,1,39.7,40.06,99,20.23,5,5,0,0,10,0,10,5,0,5,0,0,5,5,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,0,0,0,5,0,0,0,0,0,0,0,0,0,5,25,0,10,15,0,0,0,0,5,16.73,31.79,-12.55,30.94,3,4,4,4,2,1,50,50,100,0,50,66.67,0,33.33,100,33.33,0,0,0,100,0,1,0,0,2,0,0,0,0,0,0,0,0,1,3,1,4,0.75,3,0.666666667,20,18 +556,1099,Infirmary,Delay,Goal-assigned,Baseline,1,08:30pm,1,Low Threat,0,0.5,"Delerium was the first Section of the tour I believe. The first thing I remember was walking through a section that was almost like a ballet studio, there were bright neon lights/lasers shining back and forth, it was a smoke filled room with the layer falling just above an arm rest, and there were mirrors on either side. After walking through there I remember walking through a room where people kept running past us on either side. Then, I remember being handed 3D glasses and going through a section that again was filled with very bright neon colors with pictures and objects that popped off the walls even more. There was a large spider on the wall somewhere in that section. At the end we walked through a tube that was spinning on a platform that was slanted making it very difficult to walk. I felt dizzy and as if the platform (bridge) was shaking a little. I thought I was going to fall over.",1,74.61,21.3,99,37.57,1.2,1.2,0,0,7.83,0,7.83,3.61,0.6,0,1.81,0,1.81,1.81,2.41,1.81,0.6,0,0,0,0,0,0,0,1.2,0,0,0,0,0,0,1.2,0,0,0,0,0,0,0,0,1.2,0,0,0,0,1.81,24.1,0,6.02,15.06,3.01,0,1.2,1.2,1.81,4.95,-0.58,39.63,-24.21,4,2,2,3,1,4,19.85,75,0,100,50,0,100,100,22.73,100,97.06,100,100,0,100,5,1,0,10,0,1,0,0,1,0,1,0,0,16,3,19,0.842105263,16,0.625,166,23 +557,1099,Asylum,Immediate,Goal-assigned,Baseline,1,08:30pm,1,Low Threat,0,0.75,"First walking in was a clothing rack on the right. Then we walked into a room with a man mouthing whatever was being said on a loud speaker, some type of news story. There was also a type writer directly in front of him. After exiting that room we walked immediately to the left and walked around a woman in a red dress singing (high pitched, like an opera). After there was a cut out section of the wall she was able to walk in and out of the room. After that I remember walking around and a guy kept saying to the girl in from of me who he scared and she screamed a little cry and the guy kept saying ""I got you didnt I, I got you good, I know I got you"", then she started to laugh and say ""yeah you did, you got me."" After that we had walked outside and awaited the next.",1,79.57,92.68,94.72,28.64,2.52,1.89,0.63,0,1.89,0,1.89,1.26,0,0,0,0,0.63,0.63,3.14,1.89,1.26,2.52,1.26,1.26,0.63,0,0.63,0,17.61,5.03,0,0,0,0,5.03,12.58,0,0,3.14,3.14,0,0,2.52,0,0,0,0,0,0,3.77,21.38,0,4.4,13.21,0.63,3.14,0,2.52,3.77,30.76,58.5,16.4,17.37,3,5,5,5,1,1,77.45,66.18,100,43.64,0,0,11.79,0,58.94,100,0,96.88,96.88,0,100,9,1,0,9,0,0,0,0,0,0,0,0,0,19,0,19,1,19,0.473684211,159,23 +558,1099,Asylum,Delay,Goal-assigned,Baseline,1,08:30pm,1,Low Threat,1,0.5,"I remember first walking in to the right there was a coat rack that had some costumes, black and white. Then when we walked into the first room it was gray and there was a man standing behind a desk at the other corner of the room. It was almost like a monochromatic scene, there was an announcement being played on a loudspeaker that he was mouthing (but not saying himself). There was also a typewriter on the desk in front of him and he was smacking some metal object to jump scare people. After leaving that room and entering the other there was a woman in a red dress singing opera music and she was going back and forth between that room and another. We had to walk around her cage in the center. I do not recall anything off the top of my head after this. I think there may have been a dentist chair and a head with a bunch of teeth all over it in this section but am not entirely sure when or where it was in relation to the others, or if it was even in ""Asylum"".",1,48.63,21.33,96.81,27.02,1.55,1.55,0,0,10.82,0.52,10.31,2.06,0,0,3.09,0.52,6.19,1.03,1.55,1.03,0.52,0.52,0,0.52,0.52,0,0,0,5.67,0.52,0,0,0,0,0.52,5.15,0,0,1.55,2.58,1.03,0,0.52,0,0,0,0,0,0,3.61,21.65,0,3.61,14.95,2.06,1.03,0,1.55,3.61,9.71,13.5,8.27,7.35,2,4,4,3,3,3,33.33,100,0,66.67,75.44,33.33,50,0,100,91.23,33.33,66.67,0,100,68.42,5,1,0,16,0,0,0,0,0,0,0,0,4,22,4,26,0.846153846,22,0.727272727,194,23 +559,1099,DevilsDen,Immediate,Goal-assigned,Test,1,08:30pm,3,High Threat,0,0.75,"Machine shop was definitely the scariest. When we first walked in there someone swung a sledgehammer directly at the girl in front of me and she shrieked. We continued walking through and there was another person swinging something smaller like a hammer or mallet, not as bad as the sledgehammer. After we stepped outside and there was a woman who ran up besides us with a chainsaw, but just before we stepped outside I could smell gas to the left (still inside), so I figured something like that was going to happen. I remember seeing a couple other area there than included different limbs and heads cut off their bodies.",1,56.07,61.66,99,5.35,4.55,4.55,0,0,13.64,0,13.64,1.82,0,0.91,3.64,0.91,7.27,0.91,1.82,0,1.82,1.82,0,1.82,0.91,0,0,0,10.91,0,0,0,0,0,0,10.91,0,0,2.73,0,0,0,0,0,0,0,0,0,0,2.73,20.91,0,6.36,12.73,0.91,0.91,0,0,2.73,-2.42,25.13,39.02,-71.42,3,2,5,2,1,2,42.86,0,100,28.57,14.29,0,100,25,100,0,50,0,0,50,100,9,0,0,4,2,0,0,0,0,0,0,0,3,15,3,18,0.833333333,13,0.307692308,110,23 +560,1099,DevilsDen,Delay,Goal-assigned,Test,1,08:30pm,3,High Threat,1,0.75,"The Devil's Den was the scariest I felt. I remember first walking in and a character swinging a sledge hammer at my girlfriend who was in front of me. I remembered this most because I was genuinely concerned something was going to happen and I was going to be stepping in. It was also a shock because I dont remember anything the character looked like outside of a black figure and the sledgehammer. Afterwards we continued through and I could smell gasoline/exhaust fumes of what I believed to be a chainsaw (I got this from my background with this). Immediately after smelling this we stepped outside and a shorter woman bent over came running up the ramp towards the inside revving a chainsaw. Afterwards we continued on back inside of another building and I remember walking around and through some box where a guy scared us in then came right back around and scared us coming out. I remember this cause again, it was a jump scare right in my girlfriends face so I thought I was going to get defensive and then the character started laughing saying ""I got you didnt I"" and she responded ""yeah you did"" and he kept repeating this and them going back and forth saying he really got her and she said yes you did. Then there was also a table saw somewhere in this section where someones hand had been chopped off. I remember it being the darkest overall of the exhibits in terms of lighting throughout, if there was any light at all it was a pale white LED rather than bright lights like Infirmary, golden lights like in Asylum, and a mixture of both golden lights with just more colorful content (i.e. gory bloodsoaked or items, people, etc.) throughout the Ghostly Grounds.",1,48,42.01,94.94,10.41,2.98,2.32,0,0.66,10.93,0.66,10.26,2.98,1.66,0.33,2.32,0.66,1.66,1.99,3.31,0.99,1.99,1.99,0.33,1.32,1.32,0,0,0,8.28,1.66,0,0,0,0,1.66,6.62,0,0.66,1.99,0.99,0,0,1.66,0,0,0,0,0,0,4.64,18.87,0,3.31,10.6,4.97,0,0.33,1.66,4.64,0.81,33.89,-1.66,-29.8,2,4,1,4,5,2,49.79,100,57.43,0,70.19,61.62,12.44,45.45,100,0,100,0,51.11,17.22,0.28,16,0,0,15,3,0,0,0,0,1,4,0,3,34,8,42,0.80952381,31,0.483870968,303,23 +561,1099,GhostlyGrounds,Delay,Goal-assigned,Share,1,08:30pm,2,High Threat,0,0.4,"The Ghostly Grounds I remember walking into and seeing the X and thinking it was going to be very scary, but ended up not being as scary as the other section of the tour marked X, I forget the name of that one but think it was the Wood Shop or something like that. Anyways with the Ghostly Grounds I dont remember too too much unfortunately, I think the other sections stood out a little more. I think with the Ghostly Grounds the memories I have are as follows: there was a room that we entered that was bright and gory, had bodies hung upside down that were moving. I also remember going up and down floors in the Ghostly Grounds which was unique compared to the other sections. One section we went through was a cell block and I remember a box flashing with bright lights and banging around as if something was in it, all inside a cage to the right of the tour, as well as an air blast cannon that hit around my right calf. There was also a guy running back and forth through the cells bars which I was kind of amazed as to how he fit through while running so fast, thinking if it were me Id get stuck or bang my head going through which made me laugh a little. ",1,55.5,3.12,99,20.23,0.89,0.89,0,0,15.18,0.45,14.73,4.46,0.89,0.45,3.57,0,6.7,2.68,4.46,2.23,2.23,1.79,0.89,0.89,0.89,0,0,0,2.68,0.45,0,0,0,0,0.45,2.23,0,0,0,0.89,0,0,0.45,0,0,0,0,0,0.45,4.02,17.41,0,4.02,10.27,2.23,0.89,0,0.45,4.47,-6.76,30.71,3.92,-54.93,4,5,1,5,4,3,54.76,43.44,20.82,100,0,36.97,73.95,73.95,0,100,100,50,0,0,26.7,5,1,0,12,5,0,0,0,1,0,0,0,8,23,9,32,0.71875,18,0.666666667,224,23 +562,1100,Infirmary,Immediate,Goal-assigned,Baseline,1,06:15pm,3,Low Threat,0,0.4,"trippy and very colorful +hard to see +clowns +spinny +3d glasses",1,71.44,40.06,1,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,9.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,27.27,0,0,0,18.18,0,9.09,0,9.09,NA,-11.67,-58.26,NA,3,1,1,1,2,1,0,0,100,0,0,100,0,0,0,0,50,50,50,50,50,0,0,0,6,0,0,0,0,0,0,0,0,0,6,0,6,1,6,1,11,18 +563,1100,Infirmary,Delay,Goal-assigned,Baseline,1,06:15pm,3,Low Threat,1,0.6,"clowns +trippy +walk through circle +3d glasses +painting +colorful +wobbly bridge ",1,97.37,40.06,50.45,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,9.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.27,0,18.18,0,9.09,0,0,0,0,NA,-11.67,NA,NA,2,1,1,1,1,1,0,100,0,0,0,50,50,50,50,50,50,50,50,50,50,0,1,0,4,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.8,11,18 +564,1100,Asylum,Delay,Goal-assigned,Baseline,1,06:15pm,2,Low Threat,0,0.25,"jump scare +air gun +spider +flashing lights ",1,89.52,40.06,24.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.57,0,28.57,14.29,0,14.29,14.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.86,0,14.29,0,28.57,0,0,0,0,NA,NA,NA,NA,1,1,1,1,1,1,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,1,0,0,1,0,0,0,0,2,0,0,0,0,2,2,4,0.5,2,0.5,7,18 +565,1100,DevilsDen,Immediate,Goal-assigned,Test,1,06:15pm,5,High Threat,0,0.4,"chainsaw +growl +bloody +",1,89.52,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66.67,0,66.67,0,0,0,0,0,0,33.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.33,0,0,0,0,33.33,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,1,3,1,3,18 +566,1100,DevilsDen,Delay,Goal-assigned,Test,1,06:15pm,5,High Threat,1,0.6,"guy with chainsaw +bloody +body parts +air shooter +desk +jump scare +bus ",1,97.04,6.61,39.59,1,0,0,0,0,8.33,0,8.33,0,0,0,0,0,8.33,0,16.67,0,16.67,8.33,0,8.33,8.33,0,0,8.33,8.33,0,0,0,0,0,0,8.33,0,0,0,8.33,0,0,0,0,0,0,0,0,0,0,8.33,0,8.33,0,0,0,0,0,0,NA,90.96,NA,NA,1,1,1,2,1,1,100,0,0,0,0,50,50,50,50,50,50,50,50,50,50,1,1,0,5,0,0,0,0,0,0,0,0,0,7,0,7,1,7,0.714285714,12,18 +567,1100,GhostlyGrounds,Delay,Goal-assigned,Share,1,06:15pm,5,High Threat,0,0.6,"lots of jump scares +walk through bus +up stairs +",1,99,40.06,99,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.11,0,11.11,11.11,0,11.11,11.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.33,0,22.22,11.11,0,0,0,0,0,NA,47.82,NA,NA,1,1,1,2,1,1,100,0,100,100,0,50,50,50,50,50,50,50,50,50,50,2,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,1,3,0,9,18 +568,1101,Infirmary,Delay,Control,Baseline,0,07:30pm,3,Low Threat,0,0.8,"The first room of Infirmary looked like a wicked art studio with glow in the dark neon paint everywhere. There was an easel and a female actor who laughed incredibly loudly as we walked past. Next we walked into a larger room with multiple actors, one female actor was dancing on a high surface, and we were handed 3D glasses. we kept moving through a hallway and several actors dressed as clowns popped out to scare us. There were spiders on the walls of some of the hallways. There was a small hallway/tunnel with lights that spun around. ",1,94.08,99,64.74,10.27,5.05,5.05,0,0,2.02,1.01,1.01,0,0,0,0,1.01,0,0,3.03,1.01,2.02,2.02,1.01,1.01,1.01,0,0,0,15.15,3.03,0,0,0,1.01,1.01,12.12,0,0,2.02,0,0,0,0,0,0,0,0,0,0,3.03,23.23,0,5.05,13.13,4.04,1.01,0,0,3.03,NA,63.63,65.73,NA,5,2,1,3,1,1,55.34,36.89,0,36.89,100,0,100,66.67,100,73.68,50,50,50,50,50,5,2,0,8,0,0,0,0,0,0,0,0,0,15,0,15,1,15,0.533333333,99,20 +569,1101,Asylum,Immediate,Control,Baseline,0,07:30pm,2,Low Threat,0,0.5,"we started with a man on the phone banging his hand on the desk. We passes him and ran into a lady with a black wig and a red robe standing in front of a mirror. We continued walking and she came around the corner and opened a fan in our faces. Continuing on we walked into a hallway with a bunch of strobe lights and electricity sounds. There were a bunch of signs, but I cant remember what they said. ",1,94.83,97.57,61.67,20.23,6.17,6.17,0,0,3.7,0,3.7,1.23,0,1.23,0,0,2.47,1.23,0,0,0,0,0,0,0,0,0,0,16.05,3.7,0,1.23,0,0,2.47,13.58,0,0,2.47,3.7,0,0,0,0,0,0,0,0,0,0,23.46,0,6.17,11.11,3.7,2.47,0,0,0,-11.38,41.15,-19.98,-55.32,4,5,5,5,2,1,72.94,80,60,100,0,29.41,0,33.33,0,100,0,0,0,0,100,5,1,0,7,0,0,0,0,0,0,0,0,1,13,1,14,0.928571429,13,0.538461538,81,20 +570,1101,Asylum,Delay,Control,Baseline,0,07:30pm,2,Low Threat,1,0.5,"When we walked into Asylum there was an oldstyle office with an actor yelling through a telephone. As we kept walking we entered a room with a large chair and a vanity. There was a female actor in a red robe with black hair. She looked at us and then turned to the mirror on the vanity. We walked past her, but she came around a second corner and flipped her large fan open with a loud noise. We then went into a loud and dark hallway with strobe lights and what sounded like tasers going off. There were lots of signs on the walls of this attraction, I think they mightve said ""backstage"" There was a dentists chair with an actor in a tiled room. ",1,92.42,97.7,55.61,12.07,4.72,4.72,0,0,2.36,0,2.36,0.79,0,0,0.79,0,0.79,0,0.79,0,0.79,0,0,0,0,0,0,0,15.75,3.94,0,0,0,1.57,2.36,11.81,0,0,3.94,0,0,0,0.79,0,0,0,0,0,0,2.36,24.41,0,6.3,10.24,3.94,3.94,0,0.79,2.36,28.39,53.1,38.76,-6.67,3,4,3,4,1,1,89.74,89.74,100,0,100,0,78.13,18.75,100,18.75,0,0,100,0,100,4,2,0,11,0,1,1,0,1,0,0,0,0,17,3,20,0.85,17,0.647058824,127,20 +571,1101,DevilsDen,Immediate,Control,Baseline,0,07:30pm,4,High Threat,0,0.4,"Walking in, there was a man hiding in the shadows of the entrance. We kept walking and one f the people in front of us turned out to be an actor. He scared us but we kept walking. I think we walked past a butcher man sawing at a table. We walked through a hallway of human body parts. There was a man with a chainsaw who chased us in the outside portion. The outside had a bunch of of down trees, like the chainsaw man had cut them down beforehand. ",1,99,99,93.28,9.61,7.69,7.69,0,0,3.3,0,3.3,1.1,0,0,0,0,2.2,0,1.1,0,1.1,1.1,0,1.1,1.1,0,0,0,17.58,0,0,0,0,0,0,17.58,0,0,0,5.49,0,0,0,0,0,0,0,1.1,0,3.3,24.18,0,7.69,14.29,2.2,0,0,0,4.4,32.3,20.84,14.17,61.88,5,2,2,3,3,1,22.81,33.33,0,66.67,100,26.32,100,0,33.33,0,0,100,100,0,0,7,1,0,4,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.333333333,91,20 +572,1101,DevilsDen,Delay,Control,Baseline,0,07:30pm,4,High Threat,1,0.8,"As soon as we entered the Devil's Den, there was an actor hiding in the shadows who popped out and scared us. Then, right after, there was an actor who we thought was just a person in the group ahead of us who turned around and scared us. We kept moving and went into an outside corridor that had a bunch of branches and logs on the other side of the railing, like a foresting place. There was a man leaning against the wall who didnt move right as we were walking past. But he fired up his chainsaw and chased us to the end of the outside corridor. Continuing on there were a lot of machines and actors with body parts in front of them. We had to walk through a moving box that looked like it was made out of human flesh, and an actor appeared on both sides to scare us. There was also a small hallway bathed in red light that had a variety of body parts just hanging from hooks on the walls. ",1,89.52,97.88,88.44,5.98,6.18,5.62,0,0.56,5.06,0,5.06,0.56,0.56,0,0,0,3.93,0,1.69,0,1.69,1.69,0,1.69,1.69,0,0,0,14.04,0,0,0,0,0,0,14.04,0,0,0,1.69,1.12,0,0,0,0,0,0,0.56,0,4.49,21.35,0,5.06,12.92,3.37,0,0,1.12,5.05,-33.67,-20.09,-41.31,-39.62,2,1,5,1,5,2,0,100,25,32.86,7.14,100,30.69,48.02,17.82,0,97.22,0,97.22,0,100,13,1,0,13,0,0,0,0,0,0,0,0,0,27,0,27,1,27,0.481481481,178,20 +573,1101,GhostlyGrounds,Delay,Control,Baseline,0,07:30pm,4,High Threat,0,0.8,"We started by walking through a bus that had some scattered passengers. We left the bus and entered a cage walkway. there was a loud crash when we walked through the cage. When when got inside the building, there was a man/creature working at some kind of machine. As we were moving past him, he slammed his hand against the machine, startling us. We then began to walk through what looked like a cell block or research center with a bunch of cages with various creatures in them. There were vines/plants hanging from up above. At the beginning of the walk, most of the creatures were animatronic, but as we got farther in, there were more actors. Once we walked through the cage room, there was a very dark room with bodies hanging upsidedown from chains in the ceiling. There were strobe lights that were blinking at such a rate that it was incredibly hard to see. After we walked through that room, there was a small room where a female actor was waiting to scare us. I remember walking up and down some stairs that were dark. ",1,83.55,93.21,93.14,9.95,5.79,5.26,0.53,0,5.26,0,4.21,0.53,0,0,0.53,0.53,2.63,0.53,1.58,0,1.05,1.05,0,0.53,0.53,0,0,0,9.47,0,0,0,0,0,0,9.47,0,0,0.53,2.11,0,0,1.05,0,0,0,0,0,0.53,1.05,22.11,0,5.26,13.16,2.63,0.53,0.53,1.05,1.58,5.44,11.73,-24.12,28.71,3,5,2,2,3,1,28.57,0,100,28.57,0,57.14,57.14,0,42.86,100,0,100,50,0,50,13,3,0,22,0,0,0,0,0,0,0,0,0,38,0,38,1,38,0.578947368,190,20 +574,1102,Infirmary,Immediate,Control,Baseline,0,07:30pm,2,Low Threat,0,0.8,"spider, clowns, neon, spin tube, glasses, mod lady at the beginning, there were easels, paintings on the wall, spirals, splatter, paint, green, orange, yellow, dara got motion sick, tyler vibes, there was a painting on the wall at the beginning, ",1,98.55,54.96,89.39,2.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5,0,2.5,2.5,0,2.5,0,0,0,0,2.5,2.5,0,2.5,0,0,0,2.5,0,0,2.5,0,0,0,2.5,0,0,0,0,0,0,0,27.5,0,7.5,12.5,7.5,2.5,0,2.5,0,NA,-6.59,30.66,NA,5,2,1,1,1,1,0,60,20,0,100,0,100,0,100,0,50,50,50,50,50,0,0,0,16,0,1,0,0,0,0,0,0,1,16,2,18,0.888888889,16,1,40,19 +575,1102,Infirmary,Delay,Control,Baseline,0,07:30pm,2,Low Threat,1,0.8,It was clown themed. There was a mod sixties girl at the beginning. There were easels and paint splatter. They gave out 3D glasses. I could not get the glasses to stay on my face. There were alot of neon spiders. Everything was neon. There was a room we went through that was spinning as we walked across a platform. ,1,54.7,59.9,89.39,20.23,3.33,3.33,0,0,5,1.67,3.33,0,0,1.67,0,0,1.67,0,0,0,0,0,0,0,0,0,0,0,8.33,1.67,0,0,0,0,0,6.67,0,0,1.67,0,0,0,1.67,0,0,0,0,0,0,6.67,20,0,6.67,13.33,0,1.67,0,1.67,6.67,NA,54,43.36,NA,5,3,1,2,1,1,66.67,0,66.67,33.33,100,0,0,100,100,0,50,50,50,50,50,3,1,0,7,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.636363636,60,19 +576,1102,Asylum,Delay,Control,Baseline,0,07:30pm,3,Low Threat,0,0.5,Everything was in grey scale. All of the actors had face makeup to look like they were in black and white. A lot of men were in suits. There was a dentists chair. There was a guy that was a detective. There was a pin up woman with a fan and a nice robe. There was narration of some sort of killer being on the loose. ,1,93.12,86.82,13.81,20.23,1.52,0,0,1.52,6.06,3.03,3.03,0,0,0,3.03,0,0,0,3.03,1.52,1.52,0,0,0,0,0,0,0,10.61,1.52,0,0,1.52,0,0,9.09,0,0,1.52,3.03,0,0,0,0,0,0,0,0,0,3.03,19.7,1.52,0,12.12,6.06,0,1.52,0,3.03,NA,18.44,14.19,NA,4,3,1,3,4,1,35.71,50,0,100,50,23.81,33.33,100,0,33.33,50,50,50,50,50,0,0,0,9,0,0,0,0,0,0,0,0,0,9,0,9,1,9,1,66,19 +577,1102,DevilsDen,Delay,Control,Baseline,0,07:30pm,4,High Threat,0,1,Dara was in front. There was a guy with long black hair that asked if I was hiding and I said no. We went outside briefly and there was a man with a chainsaw that followed us down the ramp. The women at the front had white contacts in. it was all very orange. There were a lot of rattling cages and chains. ,1,56.86,67.92,84.92,20.23,3.17,3.17,0,0,4.76,3.17,1.59,0,0,0,1.59,0,1.59,0,0,0,0,0,0,0,0,0,0,0,11.11,3.17,0,0,0,0,3.17,7.94,0,0,1.59,3.17,0,0,0,0,0,0,0,1.59,0,3.17,23.81,0,1.59,15.87,6.35,0,0,0,4.76,NA,26.32,20.22,NA,3,2,1,2,4,1,50,0,100,83.33,29.17,15.79,100,36.84,0,45.61,50,50,50,50,50,5,0,0,6,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.545454545,63,19 +578,1102,GhostlyGrounds,Immediate,Control,Baseline,0,07:30pm,5,High Threat,0,0.8,"bus, no one jumped at us in the bus, there was an accessible bypass, I was in th front behind steve, there was a big demon room it was on the second floor of one of the halls, there was a lot of strobing, there were hanging bodies and we couldnt see, there were a lot of things in cages, there was a guy in a tube with two heads, there was a big red cube at the start, there was a guy in a smiley mask wih long nails tapping, ",1,87.94,59.68,81.58,35.85,2.2,2.2,0,0,3.3,2.2,1.1,0,0,1.1,0,0,0,0,1.1,1.1,0,1.1,1.1,0,0,0,0,0,5.49,1.1,0,0,0,0,0,4.4,0,0,0,2.2,0,0,0,0,0,0,0,0,0,5.49,24.18,0,1.1,20.88,2.2,0,0,0,5.49,NA,15.26,7.9,NA,2,3,1,3,5,1,43.42,100,0,100,50,52.63,28.57,100,42.86,0,50,50,50,50,50,1,2,0,12,0,0,0,0,0,0,0,0,0,15,0,15,1,15,0.8,91,19 +579,1102,GhostlyGrounds,Delay,Control,Baseline,0,07:30pm,5,High Threat,1,0.8,The Ghostly Grounds started with a school bus that we walked through with strobing lights. I was in front behind steve. There was a cryogenic type tube with a monster hanging out the front of it. We kept having to choose sides of a cage to walk along. There was a room with very disorienting strobing lights and bodies hanging from the ceiling. There was a demon room that had a big puppet hanging from the ceiling and we were on the second floor of one of the penitentiary hallways. We had to go down stairs after that room and I was going so fast dara couldnt keep up. The end was a long hallway with strobing lights and smoke.,1,94.21,64.86,90.08,31.82,3.36,3.36,0,0,1.68,0,1.68,0.84,0,0.84,0,0,0,0,0.84,0.84,0,0,0,0,0,0,0,0,4.2,0.84,0,0,0,0.84,0,3.36,0,0,0,0,3.36,0,0,0,0,0.84,0,0,0,5.88,21.85,0,4.2,15.97,2.52,0,0,4.2,5.88,25.48,29.34,-14.77,61.88,2,5,2,5,2,1,65.67,100,31.34,100,0,46,0,69,23,100,0,100,100,0,0,4,4,0,6,0,0,0,0,3,0,0,0,0,14,3,17,0.823529412,14,0.428571429,119,19 +580,1103,Infirmary,Delay,Control,Baseline,0,07:30pm,4,Low Threat,0,0.4,"I remember seeing the spiders along the walls through the 3d glasses. They looked very orange and vibrant. I also remember the tunnel that we walked through. It was very dark with faint lights, and it made you feel like you were spinning. ",1,43.84,93.3,53.52,3.38,2.33,2.33,0,0,9.3,0,9.3,6.98,2.33,0,0,0,0,4.65,2.33,0,2.33,0,0,0,0,0,0,0,9.3,0,0,0,0,0,0,9.3,0,0,0,0,0,0,0,0,0,0,0,0,0,4.65,20.93,0,4.65,2.33,11.63,0,2.33,0,4.65,56.11,84.33,99.09,-15.1,1,4,3,5,1,2,100,25,50,28.13,0,0,57.14,85.71,100,100,50,0,100,0,56.25,0,1,0,7,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.875,43,19 +581,1103,Asylum,Immediate,Control,Baseline,0,07:30pm,1,Low Threat,0,0.75,"I cannot remember which section was the ""Asylum"" section. ",1,3.8,1,99,20.23,0,0,0,0,30,0,30,10,0,10,0,0,20,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,20,0,0,20,0,0,0,10,10,-7.65,-11.67,-42.24,30.94,4,1,2,1,4,1,0,0,0,100,0,100,50,50,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,10,19 +582,1103,Asylum,Delay,Control,Baseline,0,07:30pm,1,Low Threat,1,0.25,I remember a man with a chainsaw coming up to me. I also remember passing through a room with a scary women and she yelled something. I remember passing through a room with a scary detective trying to figure out something but Im not entirely sure if that was part of Asylum or the asylum one. ,1,83.89,1.83,99,1,1.75,0,1.75,0,24.56,0,24.56,8.77,0,1.75,7.02,1.75,8.77,5.26,3.51,0,3.51,3.51,0,3.51,3.51,0,0,0,8.77,1.75,0,0,0,0,1.75,7.02,0,0,3.51,1.75,0,0,1.75,0,0,0,0,0,0,3.51,12.28,0,5.26,7.02,0,1.75,0,1.75,3.51,44.48,79.72,1.48,52.24,1,4,4,4,3,5,100,64.52,77.42,0,0,37.5,37.5,0,100,100,45.83,91.67,50,100,0,1,0,0,3,0,1,0,0,0,0,0,1,1,4,3,7,0.571428571,4,0.75,57,19 +583,1103,DevilsDen,Delay,Control,Baseline,0,07:30pm,5,High Threat,0,0.6,I dont remember which section was Devil's Den and what occurred during it. I remember a man with a mallet coming after me but I forget if he was in the Devil's Den section or not. ,1,14.43,1,99,20.23,0,0,0,0,22.22,0,22.22,5.56,0,0,5.56,0,13.89,8.33,0,0,0,0,0,0,0,0,0,0,5.56,0,0,0,0,0,0,5.56,0,0,0,5.56,0,0,0,0,0,0,0,0,0,0,11.11,0,2.78,11.11,0,0,0,0,0,2.46,-13.25,-0.11,20.72,3,4,4,1,3,3,0,25,100,0,50,58.33,66.67,0,100,33.33,43.75,50,0,100,0,1,0,0,1,0,0,0,0,0,0,0,0,3,2,3,5,0.4,2,0.5,36,19 +584,1103,GhostlyGrounds,Immediate,Control,Baseline,0,07:30pm,5,High Threat,0,0.6,"In the Ghostly Grounds section, I remember walking in and seeing different people locked in jail cells. I remember walking past a men in a box getting electrocuted. There was also people hanging upside down towards the end of the Ghostly Grounds section. ",1,98.46,16.2,99,20.23,0,0,0,0,7.32,0,7.32,4.88,0,0,0,0,2.44,4.88,0,0,0,0,0,0,0,0,0,0,2.44,0,0,0,0,0,0,2.44,0,0,0,2.44,0,0,2.44,0,0,0,0,0,0,4.88,31.71,0,4.88,24.39,2.44,0,0,2.44,4.88,16.4,43.62,-4.99,10.57,5,4,3,4,3,2,53.33,20,60,0,100,59.26,33.33,0,100,0,88.89,0,100,100,0,1,0,0,5,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.833333333,41,19 +585,1103,GhostlyGrounds,Delay,Control,Baseline,0,07:30pm,5,High Threat,1,0.4,"I remember walking in at first and a man came up to each of us and said ""normal"" to act like we were people entering a mental hospital. I remember walking in and seeing a crazy man on a keyboard. Then, I remember the electric box that was shaking like crazy and there was screaming coming from inside. Then I remember walking past the jail cells and seeing people screaming from inside. Lastly, the hanging bodies I remember vividly because it was the scariest and I remember having to touch them as I walked by which freaked me out because they were everywhere. ",1,69.84,34.53,99,10.58,1.94,1.94,0,0,10.68,0.97,9.71,5.83,1.94,0,0,0,0.97,5.83,2.91,0,0.97,2.91,0,0.97,0.97,0,0,0,6.8,0.97,0,0,0,0,0.97,5.83,0,0,0,1.94,1.94,0,0,0,0,0,0,0,0,4.85,21.36,0,6.8,9.71,2.91,1.94,0.97,1.94,4.85,43.38,82,17.25,30.89,1,5,4,3,1,1,100,50,0,56.25,30,0,26.49,39.74,16.56,100,0,0,90.91,100,100,8,0,0,6,2,0,0,0,0,0,0,0,0,16,0,16,1,14,0.428571429,103,19 +586,1104,Infirmary,Delay,Control,Baseline,0,07:30pm,2,Low Threat,0,0.8,At the beginning there was a lady standing on like a table and she was handing out the 3D glasses. There were a lot of hallways and stuff that had bright stuff on them and there were a few people that would randomly pop out of like the corner or something and do a little scare or something. There was that tunnel that was twisting I was straight tripping in there. I feel like the walls moved at some point but I cant remember if thats true. ,1,34.44,9.86,86.26,20.23,0,0,0,0,13.79,0,13.79,2.3,0,2.3,6.9,0,5.75,1.15,2.3,1.15,1.15,1.15,0,1.15,1.15,0,0,0,3.45,1.15,0,1.15,0,0,0,3.45,0,0,2.3,0,0,0,0,0,0,0,0,0,0,8.05,17.24,0,2.3,12.64,1.15,0,1.15,0,8.05,36.92,85.44,67.16,-41.84,1,2,5,4,1,1,100,18.07,43.37,0,0,0,100,69.41,90.59,69.41,0,0,25,0,100,2,1,0,8,0,0,0,0,0,0,0,0,1,11,1,12,0.916666667,11,0.727272727,87,19 +587,1104,Asylum,Immediate,Control,Baseline,0,07:30pm,2,Low Threat,0,0.25,there was the actresses in the red dresses and they were getting ready and I think there was a guy at a bar like preparing something. there was a person with those weird black and white clampy things that they use in the movies and the whole thing was generally movie themed. like it was backstage and they were getting ready and stuff. ,1,29.12,82.74,24.32,70.15,0,0,0,0,6.35,0,6.35,1.59,1.59,0,3.17,0,0,0,3.17,3.17,0,0,0,0,0,0,0,0,9.52,0,0,0,0,0,0,9.52,0,0,1.59,1.59,0,0,3.17,0,0,0,0,0,1.59,6.35,12.7,0,0,7.94,4.76,0,0,3.17,7.94,34.81,53.11,7.6,43.72,4,5,4,5,1,1,92.31,92.31,61.54,100,0,0,0,38.71,16.13,100,0,92.31,0,100,0,0,0,0,9,1,0,0,0,0,0,0,0,0,10,0,10,1,9,1,63,19 +588,1104,Asylum,Delay,Control,Baseline,0,07:30pm,2,Low Threat,1,1,I remember there was the ladies in red dresses that were getting ready. They had those things that they use in movies with the black and white diagonal stripes. They had a man on a typewriter I think and I believe there was also a bathtub at some point I dont think anyone was inside of it though. There were some people sitting in those directors chairs I think. And there were more people too im just not sure what they were doing. ,1,4.79,26.95,97.45,37.57,1.2,0,0,1.2,12.05,0,12.05,6.02,1.2,0,3.61,0,2.41,1.2,1.2,1.2,0,0,0,0,0,0,0,0,9.64,1.2,0,1.2,0,0,0,9.64,0,0,1.2,1.2,0,0,1.2,0,0,0,0,0,0,3.61,15.66,0,0,12.05,3.61,0,0,1.2,3.61,-3.79,13.94,-21.36,-3.95,2,5,3,5,2,2,40,100,60,63.75,0,51.61,0,51.61,45.16,100,33.33,0,100,35.42,70.83,0,0,0,9,0,0,0,0,0,0,0,0,1,9,1,10,0.9,9,1,83,19 +589,1104,DevilsDen,Delay,Control,Baseline,0,07:30pm,4,High Threat,0,1,There was a guy at the beginning with a chainsaw and he ran after us and it was awful. there was a big loud machine too and i think there were some people standing around it. There were a lot of people with like big knives and machines and stuff and they were coming after us. Thats all I remember. ,1,15.41,84.23,89.39,6.08,3.33,3.33,0,0,5,1.67,3.33,3.33,0,0,0,0,0,1.67,1.67,0,1.67,1.67,0,1.67,0,0,0,0,8.33,0,0,0,0,0,0,8.33,0,0,0,3.33,0,0,0,0,0,0,0,0,0,8.33,15,0,3.33,11.67,0,1.67,0,0,8.33,27.63,79.75,9.81,-6.67,1,5,3,3,4,1,100,25,0,50,0,16.67,50,66.67,0,100,0,0,100,0,100,2,0,0,7,1,0,0,0,0,0,0,0,2,10,2,12,0.833333333,9,0.777777778,60,19 +590,1104,GhostlyGrounds,Immediate,Control,Baseline,0,07:30pm,4,High Threat,0,0.8,it started on the school bus and we walked through it and there were people sitting in every other seat on both sides but they did not move. we walked through some passage ways with scary people and then we walked up some stairs and there were scary people and then we walked down the stairs and saw more scary things. At some point we walked through these long hallways with gates and stuff on either side and some doors and stuff and the people like swung through them. and then we walked through the room with all the hanging meat people but that happened before we walked up the stairs. then we just walked through some more rooms with scary people and that was the end. ,1,54.82,87.93,96.81,1.52,6.3,6.3,0,0,5.51,1.57,3.94,0,0,0,0,0,3.94,0,3.15,0,3.15,3.15,0,3.15,3.15,0,0,0,7.87,0,0,0,0,0,0,7.87,0,0,0,0,0,0,0,0,0,0,0,0,0,6.3,19.69,0,7.87,11.02,0.79,0,0,0,6.3,-1.73,38.7,-5.48,-38.42,3,2,3,2,3,2,61.73,0,100,100,100,57.26,100,0,44.44,44.44,96.15,0,100,0,100,6,3,0,7,3,0,0,0,0,0,0,1,2,19,3,22,0.863636364,16,0.4375,127,19 +591,1104,GhostlyGrounds,Delay,Control,Baseline,0,07:30pm,4,High Threat,1,0.2,At the beginning there was a school bus and there were a bunch of people just sitting there super still. Then we walked through some hallways with some scary people in them. There was that big machine thing that was loud at the beginning too. Then there was that long corridor with all the gates and stuff and there was people hanging from the gates and running through them and stuff and there were vines and things all around. Then there was the meat locker with the hanging bodies that were swinging in front of us but they were screaming not to touch us. There was also stairs in this one and some stuff and the stop and then we walked back down them and there was a little more and then it was over. Lots of jumping people in this one. ,1,20.42,75.91,96.56,20.23,2.82,2.82,0,0,2.82,1.41,1.41,0,0,0,0,0,1.41,0,1.41,0.7,0.7,0.7,0,0.7,0.7,0,0,0,5.63,0,0,0,0,0,0,5.63,0,0,0,0,0,0,0,0,0,0,0,0,0,6.34,23.24,0,3.52,17.61,0,1.41,0.7,0,6.34,59.1,70.5,75.87,30.94,1,2,4,2,1,1,100,0,60.71,8.93,60.71,0,100,88.39,88.39,62.5,0,0,0,100,0,6,2,0,11,1,0,0,0,0,0,0,0,6,20,6,26,0.769230769,19,0.578947368,142,19 +592,1105,Infirmary,Immediate,Control,Baseline,0,07:30pm,3,Low Threat,0,0.6,"In Infirmary there was a bunch of clowns, there was neon paint everywhere. We had to walk through a spinning tunnel that made me dizzy. There was a black wall with neon polka dots painted on and there was a person camouflaged with the same pattern hiding in the corner. There was a clown dressed in neon with hula hoops around his neck wearing neon pink and green. There were two girl clowns on carnival stands. ",1,85.45,63.42,70.28,20.23,1.32,1.32,0,0,3.95,1.32,2.63,0,1.32,0,0,0,1.32,0,0,0,0,0,0,0,0,0,0,0,5.26,0,0,0,0,0,0,5.26,0,0,1.32,1.32,2.63,0,0,0,0,0,0,1.32,0,0,26.32,0,2.63,17.11,5.26,0,1.32,2.63,1.32,NA,28.47,-52.46,NA,4,1,1,5,4,1,55,60,60,100,0,100,43.84,21.92,0,43.84,50,50,50,50,50,1,1,0,12,0,0,0,0,0,0,0,0,0,14,0,14,1,14,0.857142857,76,18 +593,1105,Infirmary,Delay,Control,Baseline,0,07:30pm,3,Low Threat,1,0.6,The Infirmary section was all neon colors and polkadots. There was a bunch of clowns and circus things. There was two clowns on raised platforms. There was a clown at the exit with hulahoops on his neck. There was a spinning tube thing we had to walk through. There also was a black room with rainbow polkadots and a camouflaged person in the corner that jumped out. ,1,78.91,74.15,59.19,20.23,1.49,1.49,0,0,1.49,1.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.48,0,0,0,0,0,0,4.48,0,0,0,1.49,2.99,0,0,0,0,0,0,0,0,1.49,23.88,0,5.97,14.93,2.99,0,0,2.99,1.49,17.55,14.53,7.17,30.94,3,4,4,2,5,1,29.55,0,100,36.36,100,66.07,89.29,25,100,0,0,0,0,100,0,1,2,1,9,0,0,0,0,0,0,0,0,0,13,0,13,1,13,0.692307692,67,18 +594,1105,Asylum,Delay,Control,Baseline,0,07:30pm,2,Low Threat,0,0.5,In the Asylum section it looked like a run down office with monsters and blood everywhere. Someone in the corner was banging something on the desk so loud. This one wasnt as scary as the others.,1,85.33,14.33,73.75,2.35,0,0,0,0,13.51,2.7,10.81,0,0,0,5.41,0,5.41,0,2.7,0,2.7,2.7,0,2.7,2.7,0,0,0,2.7,0,0,0,0,0,0,2.7,0,0,0,0,0,0,2.7,0,0,0,0,0,0,5.41,24.32,0,2.7,13.51,2.7,5.41,0,2.7,5.41,NA,-11.22,50.89,NA,5,3,1,1,1,1,0,70,20,20,100,0,0,100,100,52.94,50,50,50,50,50,0,0,0,5,0,0,0,0,0,1,0,0,0,5,1,6,0.833333333,5,1,37,18 +595,1105,DevilsDen,Immediate,Control,Baseline,0,07:30pm,4,High Threat,0,0.4," There was a lady with white eyes dressed in red who had an axe stopping people in line to get in. All the character in this section had tools like hammers, chainsaws, and axes. When we turned the corner there was a man with a chainsaw shouting and chasing after us. It was dark and bloody in this one. I would say that this was the second most scary one we went through tonight.",1,70.49,87.96,65.19,2.35,4.05,4.05,0,0,2.7,1.35,1.35,0,0,1.35,0,0,0,0,2.7,0,2.7,1.35,0,1.35,1.35,0,0,1.35,10.81,4.05,0,1.35,0,0,2.7,8.11,0,0,1.35,1.35,0,0,1.35,0,0,0,0,0,0,4.05,21.62,0,2.7,12.16,5.41,1.35,0,1.35,4.05,NA,55.44,21.38,NA,2,4,1,4,2,1,66.67,100,66.67,0,4.76,25,0,50,100,85.71,50,50,50,50,50,2,0,0,7,0,0,0,0,0,0,1,0,0,9,1,10,0.9,9,0.777777778,75,18 +596,1105,DevilsDen,Delay,Control,Baseline,0,07:30pm,4,High Threat,1,0.4,In the Devil's Den section every monster had a tool to scary us with like one had a hammer and one had an axe that he put right in our faces. There was a monster that chased us with a chainsaw in the outside part. At the end there were bodies that were hanging in a meat locker that were swinging back and forth.,1,89.52,87.7,75.23,6.65,4.69,4.69,0,0,3.13,1.56,1.56,0,0,0,0,0,1.56,0,1.56,0,1.56,1.56,0,1.56,1.56,0,0,0,6.25,0,0,0,0,0,0,6.25,0,0,0,1.56,0,0,0,0,0,0,0,0,0,4.69,20.31,0,4.69,15.63,0,0,0,0,4.69,NA,27.39,41.9,NA,4,5,1,5,1,1,47.83,21.74,21.74,100,0,0,87.8,87.8,29.27,100,50,50,50,50,50,3,0,0,5,0,0,0,0,3,0,0,0,0,8,3,11,0.727272727,8,0.625,64,18 +597,1105,GhostlyGrounds,Delay,Control,Baseline,0,07:30pm,5,High Threat,0,0.8,"The Ghostly Grounds was one of the scarier ones it had bloody vampires. I dont really remember a lot about this section, I know it was one of the sections with a bloody X meaning it was extra scary. To get into this section we had to walk through a bus and there were scary people sitting inside the bus jumping out at us. ",1,81.45,31.19,84.92,1,3.17,3.17,0,0,6.35,0,6.35,4.76,0,0,0,1.59,0,1.59,7.94,0,7.94,4.76,0,4.76,4.76,0,0,3.17,3.17,0,0,0,0,0,0,3.17,0,0,0,0,3.17,0,1.59,0,1.59,0,0,0,0,6.35,15.87,0,3.17,12.7,0,0,0,6.35,6.35,24.06,15.44,3.15,53.59,3,2,2,2,3,1,33.33,0,100,77.78,77.78,50,100,0,58.33,31.25,0,100,50,0,0,2,2,0,2,2,0,0,0,0,0,1,0,1,8,2,10,0.8,6,0.333333333,63,18 +598,1106,Infirmary,Immediate,Control,Baseline,0,08:30pm,4,Low Threat,0,0.6,"we walked into a black lit room with colorful paintings on the walls. there was a woman on a elevated platform telling us to keep our masks up, and she had a lil skeleton doll she was wielding. we were then handed some glasses that enhanced the effect of the blacklight paint, and we turned a corner and walked into a circle tube that spun and made it feel as if we were falling down. I felt a bit nauseous in the tube, and we walked out on the other side, through various different rooms where folks were popping out and SPOOKIN. We continued through the path and uhh reached the lady on the platform again and exited into the next section",1,89.52,95.74,98.59,20.23,6.56,6.56,0,0,6.56,0,6.56,2.46,1.64,0,0.82,0,3.28,0,3.28,1.64,1.64,1.64,0,1.64,0.82,0,0,0,11.48,1.64,0,0.82,0,0,0.82,10.66,0.82,0,3.28,0,0,0,0,0,0,0,0,0,0,3.28,24.59,0,5.74,16.39,2.46,0,1.64,0,3.28,74.18,73.89,55.26,93.4,1,2,3,3,1,1,100,17.24,0,86.21,86.21,0,100,76.79,32.14,17.26,0,96,100,100,0,11,2,0,5,1,0,0,0,0,0,0,0,0,19,0,19,1,18,0.277777778,122,24 +599,1106,Infirmary,Delay,Control,Baseline,0,08:30pm,4,Low Threat,1,0.8,"We walked in to a blacklit room and there was a woman standing on a table coaching us on Covid restrictions. There was an art wall behind her, all glowed up. We were handed glasses that enhanced the effects. We turned the corner and walked through until we entered a spinning dark tube, very disorienting! We continued forward and there were plenty of pop outs, I remember a spider? Eventually we came back around and handed our glasses back ",1,68.71,99,98.63,20.23,12.66,10.13,0,2.53,3.8,1.27,2.53,2.53,1.27,0,0,0,0,1.27,2.53,1.27,1.27,0,0,0,0,0,0,0,12.66,0,0,0,0,0,0,12.66,0,0,2.53,0,0,0,0,0,1.27,1.27,0,0,0,2.53,26.58,0,7.59,16.46,2.53,0,0,2.54,2.53,48.99,91.66,26.85,28.45,1,5,5,4,1,1,100,50,50,0,3.33,0,57.69,28.85,28.85,100,0,0,93.75,93.75,100,6,1,0,5,1,1,1,0,1,0,0,0,0,13,3,16,0.8125,12,0.416666667,79,24 +600,1106,Asylum,Delay,Control,Baseline,0,08:30pm,3,Low Threat,0,0.5,"This one had tons of actors, playing detectives and whatnot. I remember film clapper. Yeah I really do not have much memory of this one at all honestly. ~~~~~~~~~~~~~~~~~~ ",1,26.1,9.23,24.32,75.77,0,0,0,0,21.43,3.57,17.86,3.57,0,0,0,7.14,3.57,7.14,3.57,3.57,0,0,0,0,0,0,0,0,7.14,0,0,0,0,0,0,7.14,0,0,0,0,0,0,0,10.71,0,0,0,0,0,0,0,0,0,0,0,0,0,10.71,0,46.33,61.89,33.52,43.58,4,3,4,2,1,1,83.33,0,0,100,100,0,0,100,40,40,0,83.33,0,100,0,0,0,0,4,0,0,0,0,0,0,0,0,1,4,1,5,0.8,4,1,28,24 +601,1106,DevilsDen,Immediate,Control,Baseline,0,08:30pm,4,High Threat,0,0.2,"was this the bus one? no that was the uhhhhhh cavalry ?? OH wait this was the one where the lady got real mad at the couple in front of us because she wanted to split them up because they had the lil necklace jawns, but they didnt want to be split so they kept trying to stay together, and she told them if they didnt take off their neckalces theyd have to be split up. they finally dropped the necklaces and she let us in. at some point we walked up a flight of stairs and there were moving platforms on the ground? there was lots of loud banging and machine noises, pops and whatnot. I remember the stairs were at the end of the the thang. I remember this one was far lighter than the Infirmary section, which aided me in being slightly less scared. ",1,52.45,56.4,57.62,4.34,3.42,2.74,0.68,0,13.7,2.05,11.64,1.37,1.37,2.05,0.68,0.68,6.16,1.37,2.05,0,2.05,1.37,0,1.37,0.68,0.68,0,0,12.33,2.05,0.68,0.68,0,0,0.68,10.96,0,0,2.74,0,1.37,1.37,1.37,0.68,0,0,0,0,0,2.74,13.7,0,2.74,8.9,0,2.05,0,4.79,2.74,41.3,67.77,41.74,14.4,5,3,2,2,5,1,68.33,0,25,25,100,18.89,66.67,100,22.22,0,0,100,0,33.33,66.67,8,0,0,3,1,1,0,0,2,0,0,0,2,12,5,17,0.705882353,11,0.272727273,146,24 +602,1106,DevilsDen,Delay,Control,Baseline,0,08:30pm,4,High Threat,1,0.6,"There were flashing lights, a bunch of loud air spurts plenty of whirring machinery. There were sliding floor panels, among other things. Lots of folks popping out, lots of jump scares. I believe there were hanging bodies, like a meat locker, rocky style. Oh!! This was the one where the door lady was very aggressive and nearly kicked a couple out after they refused to be split up. She asked them to take off their necklaces if they didn’t want to be split, and they tried to pocket the necklace, which she did NOT like. She ended up grabbing them, causing a scene, which is most of my memory from this occasion ",1,67.11,34.96,82.24,1,1.79,0,0.89,0.89,13.39,1.79,11.61,0.89,0.89,0.89,1.79,0,7.14,0.89,5.36,0.89,4.46,1.79,0,1.79,0.89,0.89,0,0,12.5,3.57,0,0.89,1.79,0,0.89,9.82,0.89,0,3.57,0,0,0.89,1.79,0,0.89,0,0,0,0,4.46,18.75,0,2.68,11.61,1.79,1.79,0.89,3.57,4.46,-10.47,-18.25,15.33,-28.49,3,5,5,1,2,1,0,0,100,36.99,5.48,15.38,0,35.66,67.83,100,0,47.83,0,0,100,8,0,0,7,0,0,1,0,1,0,0,0,3,15,5,20,0.75,15,0.466666667,113,24 +603,1106,GhostlyGrounds,Delay,Control,Baseline,0,08:30pm,4,High Threat,0,0.4,"The Ghostly Grounds was the last one? We walked through a metal box, oh it was a school bus! and honestly that’s most of what I remember, all the events sort of blur together at this point. I recall some cages with dead bodies, which I figured would be live people about to jump out, but it turns out they were just props. This one had the least amount of live action, and I recall it being the tightest squeeze space wise. I was a bit desensitized to the scares at this point, so I was talking it a little less seriously, maybe that hampered my memory. ",1,51.58,13.48,68.36,20.23,1.89,1.89,0,0,13.21,0.94,12.26,3.77,0,0.94,2.83,1.89,1.89,3.77,1.89,0.94,0.94,0.94,0,0.94,0.94,0,0,0,2.83,0.94,0,0,0,0,0.94,1.89,0,0,0,0,0,0,0,0.94,0,0,0,0,0,4.72,11.32,0,3.77,4.72,0.94,0,1.89,0.94,4.72,40.4,64.56,12.49,44.15,2,3,2,3,2,1,77.27,100,0,0,0,17.05,0,100,25,75,0,100,50,100,100,2,0,0,4,3,0,0,0,0,0,1,0,4,9,5,14,0.642857143,6,0.666666667,107,24 +604,1107,Infirmary,Immediate,Control,Baseline,0,08:30pm,2,Low Threat,0,0.8,"There were a lot of wall art I remember flourescent, neon graffitiish art that was lit up thanks to the black light. The art was reminiscent of a comic or superhero series. There was a woman dancing on the table, and loud music and popping sounds (sorry I am having trouble typing lol) The most notable experience was this tunnel where the walls kept rotating, and as we tried to traverse it, you felt dizzy. The tunnel was dark, and there was neon dots/spots that were disorienting since everything was moving. That was pretty dope. I also remember we had to wear these 3D glasses but they kept falling off, which interrupted my ~viewing experience~ Overall I thoroughly enjoyed this one. ",1,31.41,40.06,61.1,58.75,2.46,1.64,0.82,0,9.84,0.82,9.02,2.46,0.82,0,1.64,0,2.46,2.46,4.1,3.28,0.82,0.82,0.82,0,0,0,0,0,8.2,4.1,1.64,0.82,0,0,1.64,4.1,0,0,0.82,0,1.64,0,0,0,0,0.82,0,0.82,0,1.64,17.21,0,3.28,6.56,4.1,2.46,1.64,2.46,2.46,47.24,91.13,53.64,-3.04,1,4,4,4,1,2,100,74.47,53.19,0,0,0,30.77,35.9,100,51.92,32,0,33.33,100,66.67,4,0,0,14,3,0,0,0,0,0,0,0,1,21,1,22,0.954545455,18,0.777777778,122,26 +605,1107,Infirmary,Delay,Control,Baseline,0,08:30pm,2,Low Threat,1,0.6,"neon grattifi/wall mural art adorned the walls; everything glowed, like at an indoor golfing place +someone was dancing on a platform and waving something at us +we were given 3D glasses +we wandered into hallways with polka dots. we also were in a room with neon green light, everything was foggy, and it was like we were wading through horizontal green water +various designs jumped out at you because of the 3D art +we entered a moving cylinder/tunnel. the glasses and dots were disorienting as the cylinder revolved around us, making us feel dizzy +saw a spider art I think +various air guns were being shot at us, things were dark +not too sure what else happened? +gave glasses back",1,65.02,94.5,71.87,20.23,7.38,7.38,0,0,9.84,1.64,8.2,1.64,1.64,0,1.64,0,3.28,0,0,0,0,0,0,0,0,0,0,0,10.66,1.64,0,0,0,0,0,9.02,0,0,0,0,0,0,0,0,0,0.82,0,0,0,7.38,21.31,0,5.74,9.84,4.92,0,1.64,0.82,7.38,20.98,40.43,18.21,4.29,4,5,5,5,1,1,76,95.2,80,100,0,0,46.45,51.61,3.23,100,0,32,33.33,66.67,100,6,1,0,6,0,1,0,0,2,0,0,0,1,13,4,17,0.764705882,13,0.461538462,122,26 +606,1107,Asylum,Delay,Control,Baseline,0,08:30pm,1,Low Threat,0,0.25,"everything was movie themed, old Hollywood I think? +a man was yelling at us a question to get our attention; I think he was waving around a newspaper +newspaper on the table as we began the tour +large reclined couch +man in suit and zombie/ghost makeup +one of those ""action"" clicky things used in filming +it wasnt too scary! +men in top hats?",1,74.65,87.7,75.23,6.65,4.69,4.69,0,0,9.38,1.56,7.81,4.69,1.56,0,1.56,0,1.56,0,1.56,0,1.56,1.56,0,1.56,1.56,0,0,0,14.06,3.13,0,0,0,0,3.13,10.94,0,0,0,6.25,0,0,1.56,0,0,0,0,0,0,1.56,14.06,1.56,3.13,7.81,0,1.56,0,1.56,1.56,-8.24,-17.4,-22.09,14.78,3,2,2,1,3,3,0,33.33,100,0,5.56,75,100,0,25,83.33,33.33,100,0,0,0,2,0,0,8,1,0,0,0,0,0,0,0,0,11,0,11,1,10,0.8,64,26 +607,1107,DevilsDen,Delay,Control,Baseline,0,08:30pm,4,High Threat,0,0.6,"Maybe a red room with skulls and body parts in it? +People lunging and scaring you +Random people coming to chase you for some time +I think I remember a chainsaw +Body parts hanging around the ceiling? +Everything was so dark/fastpaced/scary, its hard to remember it was all a blur",1,64.84,40.06,97.38,1,0,0,0,0,17.31,3.85,13.46,5.77,0,0,3.85,0,3.85,3.85,3.85,0,3.85,3.85,0,3.85,3.85,0,0,0,3.85,0,0,0,0,0,0,3.85,0,0,0,0,0,0,0,0,0,0,0,0,0,5.77,21.15,0,5.77,9.62,5.77,0,1.92,0,5.77,26.08,72.78,4.36,1.11,1,5,3,2,1,4,100,0,60,60,60,0,0,21.43,21.43,100,45.45,45.45,100,0,50,3,0,0,8,1,0,0,0,0,0,0,0,2,12,2,14,0.857142857,11,0.727272727,52,26 +608,1107,GhostlyGrounds,Immediate,Control,Baseline,0,08:30pm,5,High Threat,0,0.8,"Ghostly Grounds began as we waited in line by a silver school bus. Thumping sounds came from within, which as a little freaky tbh. It was soon our turn to board, and we ascended some stairs to go into the bus. There were flashing lights and motionless figures, heads down, hair covering their faces, sitting in the seats. I tried to leave as quickly as possible, praying none of them would jump out. We then entered a different room. For some reason Im totally blanking on what happens next? Im not sure, but I think several creepy figures followed us as we entered a series of small rooms. I think I remember some dismembered body parts, smoky rooms, and loud popping sounds. I also remember some people/figurines in cages, people whod come out from around dark corners, and I think we went upstairs at one point too. The floors would be moving and thered be more jump scares. Im not 100% sure if Im confusing this with another section of the tour, tbh? There were also some hanging plants/cloth from the ceiling. ",1,53.82,28.08,99,6.23,4.37,3.83,0.55,0,13.66,0.55,13.11,5.46,0.55,1.09,2.73,0.55,4.37,1.09,1.64,0,1.64,1.64,0,1.64,1.09,0,0,0,5.46,0,0,0,0,0,0,5.46,0,0,0,0,0,0,0,0,0,0,0,0,0,4.37,21.86,0,6.56,12.57,1.64,2.19,0,0,4.37,50.48,83.28,22.09,46.08,1,5,3,4,1,1,100,100,17.71,0,21.14,0,18.56,55.67,23.71,100,0,16.67,100,51.39,51.39,9,1,0,14,2,0,0,0,0,0,0,0,3,26,3,29,0.896551724,24,0.583333333,183,26 +609,1107,GhostlyGrounds,Delay,Control,Baseline,0,08:30pm,5,High Threat,1,0.6,"Thudding inside a silvery bus +Heads bowed and sitting in the school bus seats. Dark, foggy, flashing lights. Thudding sounds and felt like something was going to lunge at you +There was an operating booth/some electrical box upon entry into the building portion +A thudding box inside a cage +Things hanging from the ceiling (like rags, plants, or something dark and grey) +Medical procedures being done/having been done on mannequins, one lying down and covered in rags like a zombie +arm coming out of someones chest +(all of these mannequins were in barred boxes) +Actors waiting to lunge at you from the corners +Navigating dark and creepy hallways ",1,96.43,66.75,43.89,11.07,0,0,0,0,6.36,0.91,5.45,0.91,0,0,3.64,0,0.91,0,0.91,0,0.91,0.91,0,0.91,0.91,0,0,0,3.64,0,0,0,0,0,0,3.64,0,0,0,0,0,0,0,0,0,0,0,0,0,3.64,23.64,0,2.73,11.82,5.45,3.64,0.91,0,3.64,-4.19,-29.63,70.77,-53.71,2,2,1,1,1,2,0,100,50,100,100,0,100,75,100,75,100,0,0,0,0,2,1,0,21,1,0,0,0,0,0,0,1,1,25,2,27,0.925925926,24,0.875,110,26 +610,1108,Infirmary,Delay,Control,Baseline,0,08:30pm,2,Low Threat,0,0.6,Delerium was the first section (I think). we went in and they gave us 3D glasses and we walked through a thing that was bright/neon colored. THere was a woman standing up high looking down on us. Lots of objects that felt like were coming out at us. There was a tunnel that spun around us as we walked through and felt a bit disorienting,1,63.17,99,98.58,42.71,10.61,10.61,0,0,4.55,0,4.55,4.55,0,0,0,0,0,0,1.52,1.52,0,0,0,0,0,0,0,0,15.15,1.52,0,0,0,0,0,13.64,0,0,1.52,0,0,0,0,0,0,1.52,0,0,0,6.06,30.3,0,7.58,16.67,4.55,0,3.03,1.52,6.06,-37.54,-16.67,-24.75,-71.2,3,1,5,1,3,2,0,4.55,100,36.36,68.18,100,77.78,0,77.78,38.89,46.43,0,0,50,100,3,0,0,6,0,0,0,0,0,0,1,0,0,9,1,10,0.9,9,0.666666667,66,24 +611,1108,Asylum,Immediate,Control,Baseline,0,08:30pm,3,Low Threat,0,0.75,"I dont remember which one was called Asylum. I think it was the second one. In which case, it was right after delerium with the 3d glasses. There werent that many people jumping out at us on this one. I remember walking through rooms where there was someone talking on the phone, he said something about being chained up. there were other people walking around, mostly seeming to be minding their own business. there were a few people with weapons that walked by our group but didnt step in the middle of us from what I remember. It was a bit of a convoluted path walking through the little rooms. I dont think Asylum took us through any of the original cells. ",1,53.75,26.9,98.27,31.3,4.03,3.23,0,0.81,13.71,0,13.71,4.84,0,0,4.03,0,4.84,2.42,0.81,0.81,0,0,0,0,0,0,0,0,9.68,3.23,0,0,0,0,3.23,6.45,0,0,0,0.81,0,0,2.42,0,0,0,0,0,0,5.65,16.13,0,4.84,11.29,0,0,0,2.42,5.65,-15.37,-35.45,6.78,-17.43,5,1,1,1,5,2,0,23.08,46.15,69.23,100,100,100,100,100,0,100,0,0,100,4.17,4,0,0,5,0,2,0,0,2,0,2,0,1,9,7,16,0.5625,9,0.555555556,124,24 +612,1108,Asylum,Delay,Control,Baseline,0,08:30pm,3,Low Threat,1,0.5,"There was a woman who was getting ready in front of a mirror/vanity. There was a man who was around a desk with an old rotary phone on it. +Thatss all I can remember",1,79.45,85.08,80.49,65.27,0,0,0,0,8.57,2.86,5.71,2.86,0,2.86,0,0,0,2.86,2.86,2.86,0,0,0,0,0,0,0,0,17.14,5.71,0,0,0,2.86,2.86,11.43,0,0,2.86,2.86,0,0,2.86,0,0,0,0,0,0,2.86,14.29,0,0,14.29,0,0,0,2.86,2.86,-36.28,-26.09,-27.42,-55.32,2,1,5,1,2,1,0,100,50,100,0,100,0,100,0,100,0,0,0,0,100,0,0,0,4,0,0,0,0,0,0,0,0,1,4,1,5,0.8,4,1,35,24 +613,1108,DevilsDen,Delay,Control,Baseline,0,08:30pm,3,High Threat,0,0.2,The only thing I remember from the Devil's Den is the long hallway we walked through and there were the old cells from the asylum on either side and there were some people walking through in costume,1,85.33,40.06,98.19,20.23,2.7,2.7,0,0,10.81,5.41,5.41,2.7,0,0,0,0,2.7,2.7,0,0,0,0,0,0,0,0,0,0,2.7,0,0,0,0,0,0,2.7,0,0,0,0,0,0,0,0,0,0,0,0,0,5.41,18.92,0,5.41,13.51,0,0,0,0,5.41,24.2,83.61,1.07,-12.08,1,3,4,2,2,2,100,0,28.57,28.57,28.57,70,0,100,100,20,87.5,0,0,100,0,1,0,0,3,0,0,0,0,0,0,0,0,0,4,0,4,1,4,0.75,37,24 +614,1108,GhostlyGrounds,Immediate,Control,Baseline,0,08:30pm,5,High Threat,0,0.8,"Ghostly Grounds started with us walking through a school bus with bodies in some of the seats. then we went back outside and then into an area with some cells/people walking by us. then we walked into a room where there were multiple bodies hanging upside down and swinging as we walked through them. there were some jump scares through this too. after that, we went through a small passageway where the floor moved. after that we went through a hallway with some of the old cells. finally, we went through a path with bars where we could have gone through multiple paths, but we all walked through the middle one. ",1,89.52,99,99,11.13,9.01,9.01,0,0,2.7,0.9,1.8,0,0,0.9,0,0,0.9,0,0.9,0,0.9,0.9,0,0.9,0.9,0,0,0,9.91,0,0,0,0,0,0,9.91,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7,27.93,0,11.71,16.22,0,0,0,0,2.7,3.46,48.94,16.76,-55.32,4,3,5,2,4,1,82.61,0,0,100,0,17.39,25,100,0,25,0,0,0,0,100,7,2,0,2,0,1,1,0,1,0,0,0,0,11,3,14,0.785714286,11,0.181818182,111,24 +615,1108,GhostlyGrounds,Delay,Control,Baseline,0,08:30pm,5,High Threat,1,0.6,"The Ghostly Grounds was the last section we walked through. We started in a school bus and then walked through and there were dead beings/people in the seats. after we exited, we walked through a hallway and then there was a room with dead bodies hanging upside down, maybe 68 of them? they were swinging as we walked through. there was also a cell type thing we walked through after that. And then we went through this area where the floor moved under us and it was pretty dark",1,45.71,99,99,20.23,8.99,8.99,0,0,2.25,0,2.25,0,0,0,2.25,0,0,0,0,0,0,0,0,0,0,0,0,0,11.24,0,0,0,0,0,0,11.24,0,0,0,0,0,0,0,0,0,0,0,0,0,2.25,25.84,0,8.99,15.73,1.12,0,0,0,2.25,50.69,40.58,49.62,61.88,2,5,3,5,1,1,64.58,100,29.17,64.58,0,0,0,86.44,86.44,100,0,0,100,100,0,8,2,0,4,0,0,0,0,0,0,1,0,1,14,2,16,0.875,14,0.285714286,89,24 +616,1109,Infirmary,Delay,Control,Baseline,0,08:30pm,1,Low Threat,0,0.4,"Trippy glasses, elevated dancer, neon colors, spiders, bugs ",1,89.52,94.84,15.38,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.5,0,0,0,0,0,0,12.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,12.5,12.5,0,0,0,0,NA,NA,NA,NA,1,1,1,1,1,1,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,5,1,5,1,8,22 +617,1109,Asylum,Immediate,Control,Baseline,0,08:30pm,3,Low Threat,0,0.75,"nothing unfortunately, sorry. The title sounds like a movie. ",1,98.16,2.75,1,20.23,0,0,0,0,11.11,11.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.11,11.11,11.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.11,11.11,0,0,0,0,11.11,0,0,11.11,NA,-16.5,-58.26,NA,2,1,1,1,2,1,0,100,0,100,0,100,0,0,0,0,50,50,50,50,50,0,0,0,1,0,0,0,0,0,0,0,0,2,1,2,3,0.333333333,1,1,9,22 +618,1109,Asylum,Delay,Control,Baseline,0,08:30pm,3,Low Threat,1,0.75,"Old fashioned film setting, vocal actors",1,89.52,98.75,99,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.67,0,0,0,0,0,0,16.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,1,1,1,1,1,1,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,1,2,1,6,22 +619,1109,DevilsDen,Immediate,Control,Baseline,0,08:30pm,4,High Threat,0,0.6,"When we first walked in, a large man with a hammer swung at my face. ",1,96.08,96.04,99,20.23,6.67,6.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.33,0,0,0,0,0,0,13.33,0,0,0,6.67,0,0,0,0,0,0,0,0,0,0,20,0,13.33,6.67,0,0,0,0,0,NA,-27.29,-58.12,NA,2,1,1,1,2,1,0,100,50,50,50,100,0,0,0,50,50,50,50,50,50,2,0,0,1,0,0,0,0,0,0,0,0,0,3,0,3,1,3,0.333333333,15,22 +620,1109,DevilsDen,Delay,Control,Baseline,0,08:30pm,4,High Threat,1,0.6,"Big guy swung a hammer at me and stopped it right in front of my face, long hallway at the end",1,97.56,16.63,99,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.76,0,0,0,0,0,0,4.76,0,0,0,4.76,0,0,0,0,0,0,0,0,0,14.29,19.05,0,4.76,14.29,0,0,0,0,14.29,NA,-3.87,50.07,NA,5,2,1,1,1,1,0,16.67,16.67,16.67,100,0,100,50,50,0,50,50,50,50,50,2,0,0,3,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.6,21,22 +621,1109,GhostlyGrounds,Delay,Control,Baseline,0,08:30pm,4,High Threat,0,0.6,Scary bus,1,89.52,40.06,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,50,50,0,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,0,1,0,0,1,0,0,0,0,0,0,0,0,2,0,2,1,1,0,2,22 +622,1110,Infirmary,Delay,Control,Baseline,0,08:30pm,2,Low Threat,0,0.6,"I think Infirmary might have been the first of the haunted houses. If so, I remember walking in and seeing a woman dancing on a table. We were given 3d glasses and walked through a series of room, up some stairs, and into a tunnel that made me dizzy. We ended up back where the girl was dancing and deposited our glasses. That was the end of the house. Additional features included lots of neon colors and graffiti.",1,80.69,69.89,87.13,8.34,3.85,3.85,0,0,6.41,0,6.41,2.56,1.28,0,2.56,0,1.28,1.28,1.28,0,1.28,0,0,0,0,0,0,0,8.97,2.56,0,0,0,0,0,6.41,0,0,2.56,0,0,0,0,0,0,0,0,0,0,2.56,17.95,0,5.13,8.97,2.56,0,1.28,0,2.56,-20.87,5.47,-14.38,-53.71,3,4,1,4,5,2,22.41,48.28,100,0,55.17,91.25,35,35,100,0,100,0,0,0,0,6,1,0,3,1,1,0,0,0,0,1,0,0,11,2,13,0.846153846,10,0.3,78,24 +623,1110,Asylum,Immediate,Control,Baseline,0,08:30pm,3,Low Threat,0,0,"We walked into a room and a girl was dancing. We then were given glasses. We next walked into another room that led to a spiralized room that made me feel dizzy. I can remember after that walking other various rooms with jumpscares, etc. I can remember at the end walking to the place we entered from and dropping of our glasses.",1,69.92,83.23,99,20.23,9.68,8.06,0,1.61,16.13,0,16.13,4.84,3.23,3.23,0,0,4.84,3.23,0,0,0,0,0,0,0,0,0,0,11.29,1.61,0,0,0,0,0,9.68,0,0,1.61,0,0,0,0,0,0,0,0,0,0,3.23,25.81,0,9.68,12.9,0,0,3.23,0,3.23,25.3,53.73,-31.41,53.59,5,1,3,3,2,1,58.97,58.97,0,66.67,100,100,0,80.56,8.33,8.33,0,0,100,50,0,4,0,0,0,0,2,2,0,1,1,0,0,1,4,7,11,0.363636364,4,0,62,24 +624,1110,Asylum,Delay,Control,Baseline,0,08:30pm,3,Low Threat,1,0.5,I remember in Asylum being confronted by a person with a hammer and that there were many different themed rooms. In one of them there was a detective telling me to not say anything and in another there was a woman saying she used to be a star and that she killed the director. ,1,61.45,50.89,63.35,1,3.64,0,0,3.64,10.91,0,10.91,1.82,1.82,0,1.82,0,5.45,1.82,3.64,0,3.64,1.82,0,1.82,0,0,0,0,20,7.27,0,0,1.82,0,5.45,12.73,0,0,5.45,0,0,0,1.82,0,0,0,0,0,0,1.82,12.73,0,0,12.73,0,0,0,1.82,1.82,33.86,74.09,81.19,-53.71,1,4,1,2,1,2,100,0,50,0,50,0,50,75,100,50,100,0,0,0,0,2,2,0,3,0,0,0,0,0,0,0,0,0,7,0,7,1,7,0.428571429,55,24 +625,1110,DevilsDen,Immediate,Control,Baseline,0,08:30pm,3,High Threat,0,0.4,"I remember the person who gave us entrance to it was very spirited. When we entered there was an assortment of rooms involving various scenes (i.e. butcher, dentist, etc.). I believe this was one of the shorter parts of the haunted house. A specific memory I have is of passing the couple that entered before us. There was also a room, I believe, that had a bunch of fogs it was more of a hallway.",1,51.7,55.96,90.46,20.23,4,4,0,0,9.33,0,9.33,4,0,0,0,0,2.67,2.67,2.67,1.33,1.33,1.33,1.33,0,0,0,0,0,8,1.33,0,0,0,0,0,6.67,0,0,0,0,0,0,0,0,0,0,0,0,0,2.67,10.67,0,4,6.67,0,0,0,0,2.67,-13.82,-22.95,-29.82,11.3,3,1,3,1,3,2,0,0,100,66.67,66.67,100,16.67,0,100,50,33.33,0,100,33.33,33.33,2,3,0,4,0,0,0,0,0,0,1,0,1,9,2,11,0.818181818,9,0.444444444,76,24 +626,1110,DevilsDen,Delay,Control,Baseline,0,08:30pm,3,High Threat,1,0.6,I remember there were many rooms with jump scares. I also can remember there being a butcher and limbs hanging from the ceiling of one of the rooms. ,1,67.11,9.23,99,1,0,0,0,0,10.71,0,10.71,7.14,0,3.57,0,0,0,7.14,3.57,0,3.57,3.57,0,3.57,3.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.43,0,3.57,17.86,0,0,0,0,0,-10.94,-26.09,-14.9,8.17,5,1,1,1,4,4,0,27.78,27.78,66.67,100,100,100,100,0,0,100,100,100,0,0,1,0,0,2,0,0,1,0,1,0,0,0,0,3,2,5,0.6,3,0.666666667,28,24 +627,1110,GhostlyGrounds,Delay,Control,Baseline,0,08:30pm,2,High Threat,0,0.2,"I barely remember anything from Ghostly Grounds. I remember there being a lot of fog in one of the rooms and there was a long room that we walked through at the end, I believe.",1,79.1,24.36,99,20.23,2.94,2.94,0,0,14.71,0,14.71,8.82,0,0,5.88,0,0,5.88,0,0,0,0,0,0,0,0,0,0,2.94,0,0,0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,0,0,0,0,2.94,20.59,0,2.94,17.65,0,0,0,0,2.94,-31.51,-10.6,-31.16,-52.77,5,1,5,1,5,3,0,40,80,0,100,100,29.41,29.41,64.71,0,85.71,85.71,0,0,100,1,1,0,1,0,0,0,0,0,0,0,0,1,3,1,4,0.75,3,0.333333333,34,24 +628,1111,Infirmary,Immediate,Goal-assigned,Baseline,2,06:15pm,3,Low Threat,0,0.8,"it was bright, lots of colors, a girl was dancing at the entrance, there was a spider lookig insect thing, we had glasses on that made it blurry, we walked thru a hallway that looked like it was spinning, there were clowns i think, ",1,45.12,86.82,50.45,55.62,4.55,4.55,0,0,4.55,0,4.55,2.27,2.27,0,0,0,0,0,2.27,2.27,0,0,0,0,0,0,0,0,9.09,2.27,0,0,0,0,0,6.82,0,0,2.27,0,0,0,0,0,0,0,0,0,0,2.27,22.73,0,6.82,6.82,9.09,0,0,0,2.27,-5.8,42.3,-4.37,-55.32,2,5,5,5,2,1,66.67,100,33.33,66.67,0,27.59,0,82.76,0,100,0,0,0,0,100,1,1,0,8,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.8,44,25 +629,1111,Infirmary,Delay,Goal-assigned,Baseline,2,06:15pm,3,Low Threat,1,0.8,I remember this being very bright colored almost like neon glow in the dark. There was a woman dancing at the entrance with no eyeballs in 60s garb. There was a giant spider that was neon. I remember crossing some sort of spinning trippy bridge with glasses on. There were clowns I think. ,1,75.29,13.48,96.75,49.04,0,0,0,0,13.21,1.89,11.32,5.66,0,0,5.66,0,0,3.77,1.89,1.89,0,0,0,0,0,0,0,0,3.77,1.89,0,0,0,0,0,1.89,0,0,1.89,0,0,0,0,0,0,0,0,0,0,3.77,26.42,0,5.66,11.32,9.43,0,0,0,3.77,-35.48,-23.94,-33,-49.49,2,1,4,1,2,2,0,100,60,22,44,100,0,33.33,80,43.33,90.91,0,0,100,100,2,0,0,9,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.818181818,53,25 +630,1111,Asylum,Delay,Goal-assigned,Baseline,2,06:15pm,2,Low Threat,0,0.75,"I think I remember it being an abandoned news media place. There was a dead movie star in a vanity area, a glamorous person. There was a guy with a loud typewriter contraption. All I remember was the woman in a robe by a vanity basically and the guy with the typewriter who had a hat on. There were a lot of flickering lights. Interestingly, I only really remember the very beginning which I think were those two parts. The rest of honestly a blur for me. I remember walking through more, but cant exactly describe specifically what the other actors were. ",1,81.16,7.61,93.5,33.97,0,0,0,0,16.67,0.98,15.69,5.88,0,0.98,0,2.94,5.88,3.92,2.94,1.96,0.98,0,0,0,0,0,0,0,9.8,3.92,0,0,0,1.96,1.96,5.88,0,0,0.98,1.96,0,0,0,0,0,0,0,0,0.98,0.98,10.78,0,0.98,6.86,1.96,0.98,0,0,1.96,-22.43,-7.04,10.23,-70.48,3,4,5,4,2,2,13.49,61.11,100,0,16.67,29.41,0,38.24,100,100,46.51,0,2.33,51.16,100,2,1,0,7,0,0,0,0,0,0,0,0,4,10,4,14,0.714285714,10,0.7,102,25 +631,1111,DevilsDen,Immediate,Goal-assigned,Share,2,06:15pm,4,High Threat,0,0.2,"we saw an lot of people in cages, a shaky bridge with body parts, we walked up anddownn a couple set of stairs, there was someone with an chainsaw , someone with a wrench,",1,99,97.86,50.45,20.23,6.06,6.06,0,0,9.09,0,9.09,0,0,0,6.06,0,3.03,0,0,0,0,0,0,0,0,0,0,0,12.12,0,0,0,0,0,0,12.12,0,0,0,0,0,0,0,0,0,0,0,0,0,3.03,18.18,0,6.06,9.09,3.03,0,0,0,3.03,NA,70.08,11.58,NA,5,4,1,2,2,1,66.67,0,0,22.22,100,28.57,0,28.57,100,33.33,50,50,50,50,50,0,1,0,3,0,1,0,0,0,0,0,0,0,4,1,5,0.8,4,0.75,33,25 +632,1111,DevilsDen,Delay,Goal-assigned,Share,2,06:15pm,4,High Threat,1,0.6,"I remember walking in and being chased by a guy with a chainsaw pretty quickly which scared me a lot. Then a guy chased me with a wrench for a bit. I remember the shaky bridge thing with I think body parts. I remember the guy on top who almost mock dropped something above us. I forget what it was exactly, some sort of steel bar. I remember there being a lot of cages I think. ",1,74.45,10.72,99,8.11,1.32,1.32,0,0,19.74,0,19.74,7.89,0,0,6.58,1.32,2.63,6.58,1.32,0,1.32,1.32,0,1.32,1.32,0,0,0,7.89,1.32,0,0,0,0,0,6.58,0,0,0,3.95,0,0,0,0,0,0,0,0,0,1.32,11.84,0,6.58,5.26,0,0,0,0,1.32,26.04,60.05,19.77,-1.72,2,4,3,4,2,2,67.19,100,25,0,25,15,0,20,100,40,31.25,0,100,33.33,66.67,5,1,0,7,0,0,0,0,0,0,0,0,1,13,1,14,0.928571429,13,0.538461538,76,25 +633,1111,GhostlyGrounds,Delay,Goal-assigned,Test,2,06:15pm,5,High Threat,0,0.8,"This one is a total blur honestly. I think it was the one last one I went through. I actually think this one was with the cages. I even forget the theme of this one I think it was some sort of weird science experiment gone wrong, like experiments being done on people or something. I want to say I remember some kind of radioactive trash can. I barely remember who scared me during this one. I think at this point, I was scared for so long that I basically just blocked it out. ",1,30.18,1,91.07,1.45,0,0,0,0,24.47,2.13,20.21,6.38,2.13,2.13,5.32,2.13,2.13,3.19,3.19,0,3.19,2.13,0,2.13,2.13,0,0,0,3.19,2.13,0,0,0,1.06,1.06,1.06,0,0,0,0,0,1.06,0,0,0,0,0,0,2.13,4.26,5.32,0,2.13,2.13,1.06,0,0,1.06,6.39,33.4,37.38,8.82,53.99,2,5,2,3,1,1,50,100,0,0,58.33,0,28.13,0,28.13,100,0,100,33.33,100,37.04,0,0,0,2,0,0,0,0,1,0,1,0,7,2,9,11,0.181818182,2,1,94,25 +634,1112,Infirmary,Immediate,Goal-assigned,Baseline,2,06:15pm,2,Low Threat,0,0.4,"There were lots of neon colors including pink, green, yellow, orange. A girl was dancing at the entrance. They gave us 3D glasses. There was a bridge with lots of colors spiraling in the beginning. I remember there was one jump scare. There were loud sounds and clown I think. +",1,74.19,63.73,96.32,4.56,2,2,0,0,4,0,4,4,0,0,0,0,0,2,2,0,2,2,0,2,2,0,0,0,10,4,0,0,0,0,0,6,0,0,2,0,0,0,0,0,0,0,0,0,0,2,34,0,4,14,12,4,0,0,2,19.29,39.62,29.8,-11.56,2,5,4,5,1,1,66.67,100,100,66.67,0,0,0,50,50,100,0,0,0,100,100,2,2,0,10,0,0,0,0,0,0,0,0,0,14,0,14,1,14,0.714285714,50,18 +635,1112,Infirmary,Delay,Goal-assigned,Baseline,2,06:15pm,2,Low Threat,1,0.4,"Infirmary had very bright neon colors like pink, green, blue, yellow, and orange. When walking in I saw a girl dancing on an elevated surface with white eyes. After, a guy handed out 3D glasses. We walked past a room and then into a tunnel that was black with white spiraling lights. Then we walked over this wooden path that wasnt very stable. Many dots.",1,74.95,67.13,99,43.1,3.08,3.08,0,0,1.54,0,1.54,0,0,0,0,0,1.54,0,1.54,1.54,0,0,0,0,0,0,0,0,7.69,1.54,0,0,0,0,0,6.15,0,0,1.54,1.54,0,0,0,0,0,0,0,0,0,3.08,40,0,6.15,13.85,20,0,0,0,3.08,NA,-34.67,-20.67,NA,2,5,1,1,3,1,0,100,80,60,20,40,20,0,60,100,50,50,50,50,50,3,1,0,13,0,0,0,0,0,0,0,0,0,17,0,17,1,17,0.764705882,65,18 +636,1112,Asylum,Delay,Goal-assigned,Baseline,2,06:15pm,3,Low Threat,0,0.5,There was a lady who was dressed up. There was a person who came out of the lockers. There was a guy banging on the table with a hammer. There was a man with mail.,1,95.41,99,63.35,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,5.71,0,2.86,0,0,2.86,17.14,0,0,2.86,5.71,0,0,0,0,0,0,0,0,0,2.86,22.86,0,2.86,17.14,0,2.86,0,0,2.86,NA,-36.84,-38.33,NA,3,1,1,1,4,1,0,33.33,100,100,33.33,100,75,50,0,50,50,50,50,50,50,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,5,1,5,1,35,18 +637,1112,DevilsDen,Delay,Goal-assigned,Share,2,06:15pm,4,High Threat,0,1,There was a man with a chainsaw. It was very dark and there were lots of flashing lights. There was a man that jumped out of a locker and some people who jump scared me. We walked up stairs and then the floors shook.,1,51.97,86.82,95.15,3.56,2.27,2.27,0,0,0,0,0,0,0,0,0,0,0,0,2.27,0,2.27,2.27,0,2.27,2.27,0,0,0,9.09,0,0,0,0,0,0,9.09,0,0,0,4.55,0,0,0,0,0,0,0,0,0,4.55,29.55,0,9.09,13.64,6.82,0,0,0,4.55,NA,47.94,4.25,NA,3,4,1,4,5,1,75,25,100,0,56.25,63.64,63.64,27.27,100,0,50,50,50,50,50,1,0,0,4,0,1,0,0,1,0,0,0,0,5,2,7,0.714285714,5,0.8,44,18 +638,1112,GhostlyGrounds,Immediate,Goal-assigned,Test,2,06:15pm,4,High Threat,0,0.8,There was a school us that was very narrow and dark. Then we walked into a place that had lots of cages and people reaching their hands out of them. It was very dark and there were some flashing lights. There were floor boards that moved when walking over them. There were figures hung upsidedown by ropes on the ceiling. There were blows of air that were upper loud coming out of the walls.,1,27.81,87.96,99,20.23,2.7,2.7,0,0,1.35,0,1.35,1.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.76,0,0,0,0,0,0,6.76,0,0,0,0,0,0,0,0,0,0,0,0,0,5.41,33.78,0,6.76,22.97,5.41,1.35,0,0,5.41,NA,23.15,-19.8,NA,5,3,1,3,4,1,46.67,93.33,0,93.33,100,83.33,16.67,100,0,4.76,50,50,50,50,50,0,2,0,10,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.833333333,74,18 +639,1112,GhostlyGrounds,Delay,Goal-assigned,Test,2,06:15pm,4,High Threat,1,0.8,There was a school bus that was very narrow and dark and there was a person who jump scared us. We walked to a box that shook and there was a bright light in it. There were air guns that made loud noises. There were people hanging upside down in a dark room.,1,27.3,92.68,93.37,5.02,3.77,3.77,0,0,1.89,0,1.89,0,1.89,0,0,0,0,0,5.66,1.89,3.77,1.89,0,1.89,1.89,0,0,0,7.55,0,0,0,0,0,0,7.55,0,0,0,0,0,0,0,0,0,0,0,0,0,3.77,37.74,0,5.66,20.75,7.55,3.77,0,0,3.77,NA,-6.58,-15.27,NA,5,1,1,1,5,1,0,0,86.96,4.35,100,100,100,47.37,57.89,0,50,50,50,50,50,2,2,0,5,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.555555556,53,18 +640,1113,Infirmary,Delay,Goal-assigned,Baseline,1,08:30pm,3,Low Threat,0,0.25,"The overall atmosphere was extremely psychedelics, full of bright neon colors and loud music. Halfway through we were given 3D glasses and the colors popped out of the walls. There were lots of twists and turns and strategic mirrors. I cant remember anything noteworthy about the characters but there were I think clowns and people in more neon. The overall atmosphere was more twisted than scary. ",1,58.76,12.22,79.84,20.23,3.03,1.52,1.52,0,13.64,0,13.64,3.03,0,1.52,1.52,1.52,4.55,1.52,3.03,1.52,1.52,1.52,0,1.52,1.52,0,0,0,1.52,0,0,0,0,0,0,1.52,0,0,0,0,0,0,0,0,1.52,0,0,0,0,3.03,21.21,0,4.55,9.09,4.55,3.03,0,1.52,3.03,16.25,-11.11,38.79,21.07,2,4,4,1,5,1,0,100,6.67,6.67,53.33,19.64,25,75,100,0,0,0,0,100,33.33,2,0,0,8,1,0,0,0,0,0,0,0,1,11,1,12,0.916666667,10,0.8,66,23 +641,1113,Asylum,Immediate,Goal-assigned,Baseline,1,08:30pm,3,Low Threat,0,0.75,"There were multiple rooms, each of which had a different ""take ____"" with a number on the door. It was dark and dusty. The pretense were that they were shooting commercials, but creepy ones. There was toothpaste and soap. There were bloodstains on the walls. Early on, someone announced that someone had gone missing. There were adverts and articles pasted to the walls but we were going too fast to read them. The people there were dressed in lab coats and things with the clear plastic fake masks. There were fake oldtimey movie cameras. One actress was in a chair in one of the rooms kind of singing. It was probably the least scary of the four. No one jumped out at me particularly. All the rooms were just concrete. There were spiderwebs on things. ",1,59.36,44.48,69.28,3.67,0.75,0.75,0,0,9.7,2.24,7.46,0,0,0,3.73,0,2.99,0,3.73,0.75,2.99,1.49,0,1.49,1.49,0,0,0,5.97,1.49,0,0,0,1.49,0,4.48,0,0,0.75,0,0,0,0.75,0,0,0,0,0,0,2.99,17.16,0,2.99,12.69,0.75,0.75,0,0.75,2.99,42.99,68.99,-8.77,68.76,5,2,4,2,4,1,93.69,0,46.85,93.69,100,75,100,87.5,0,92.79,0,50,50,100,51.92,3,0,0,14,1,0,0,0,0,1,0,0,0,18,1,19,0.947368421,17,0.823529412,135,23 +642,1113,Asylum,Delay,Goal-assigned,Baseline,1,08:30pm,3,Low Threat,1,0.75,"Asylum was set up like an oldtimey movie set. There were people dressed up as characters doing different kinds of commercials. At the beginning, an actor said into a speaker that a doctor was missing. Some commercials were for soap and toothpaste. There was a lady in a long red dress sitting on a chair. There were posters on the walls that were part of it but I couldnt stop to read them. Everything was sort of sepia toned. We went through a series of small rooms. There were oldtimey cameras and lots of things had spiderwebs on them. ",1,86.52,40.06,56.35,20.23,1,1,0,0,8,1,7,0,0,1,2,0,4,0,0,0,0,0,0,0,0,0,0,0,6,2,0,1,0,0,1,5,0,0,1,0,0,0,1,0,0,0,0,0,0,5,14,0,1,12,1,0,0,1,5,-0.35,-18.81,33.87,-16.1,2,4,1,1,1,2,0,100,50,0,25,0,0,20,100,60,100,0,0,100,0,1,0,0,13,0,0,0,0,0,0,0,0,1,14,1,15,0.933333333,14,0.928571429,100,23 +643,1113,DevilsDen,Delay,Goal-assigned,Test,1,08:30pm,4,High Threat,0,0.5,"The lighting was red and there was a lot of fog or smoke. The decoration is industrial. There was at one point a man who ran very close by us with a chainsaw. There were people screaming. There were lots of limbs everywhere, including a sort of cube of bloody limbs. There was a cage we had to pass through. Lots of characters were holding axes, and had sort of stringy hair. ",1,79.79,72.07,30.29,7.66,2.78,2.78,0,0,8.33,1.39,6.94,0,0,0,6.94,0,1.39,0,1.39,0,1.39,0,0,0,0,0,0,1.39,5.56,0,0,0,0,0,0,5.56,0,0,0,1.39,2.78,0,0,0,0,0,0,0,0,2.78,16.67,0,2.78,11.11,1.39,1.39,0,2.78,2.78,NA,22.71,14.03,NA,4,2,1,2,5,1,42.42,0,54.55,100,9.09,64.1,100,76.92,38.46,0,50,50,50,50,50,2,0,0,11,0,0,0,0,0,0,0,0,0,13,0,13,1,13,0.846153846,72,23 +644,1113,GhostlyGrounds,Immediate,Goal-assigned,Share,1,08:30pm,4,High Threat,0,0.6,"This one was probably the scariest of the lot. We entered through a bus. There were strobe lights which are the worst and people kind of running up to you. We walked through a very strobey room with fake corpses strung up and I was just trying not to bump into them. At some point there was a moving floor. There were people in cages hissing and making other weird noises. There were lots of animatronics in cages and behind windows too. There were vines hung up on the ceiling. We went up the stairs to a huge room with some kind of monster in it but we just turned around and went in another direction instead of going right past it. Some dude didnt have his mask on right and an actor broke character to tell him. The animatronics were mostly zombies and the like, dead and decomposed people. The guy at the beginning made a loud noise with some wooden sticks.",1,86.78,58.33,79.7,1,3.07,2.45,0.61,0,10.43,0,9.2,0,1.23,0.61,2.45,0,4.91,0,3.68,0,3.68,0.61,0,0.61,0.61,0,0,0,7.98,1.23,0,0,0,0.61,0.61,6.75,0,0.61,0,2.45,0,0,0,0,0,0,0,0,0.61,4.29,20.86,0,4.91,12.88,0.61,2.45,0,0,4.9,16.91,46.73,10.57,-6.57,3,4,4,4,5,2,73.77,47.54,100,0,81.15,58.33,70.45,34.09,100,0,72.73,0,0,100,0,5,3,0,12,2,0,0,0,0,0,0,0,0,22,0,22,1,20,0.6,163,23 +645,1113,GhostlyGrounds,Delay,Goal-assigned,Share,1,08:30pm,4,High Threat,1,0.6,"The Ghostly Grounds section started in a bus. The person at the very beginning made a very loud banging noise. There was a ""meat locker"" section where fake bodies were hanging from the ceiling and I was afraid of touching one. We went up some stairs and there was a long, twisty, mazelike section with lots of cages and real people and automatons within the cages. Some of the automatons were waving, while others were having their heads chopped up or something else grotesque. We were waiting by one particular cage for a while and the actor was running back and forth hissing. He saw one person had their mask off and told them to put it back on. We went down some stairs and up others. There was a moving floor. We went into this room with a lot of huge things and colored lights but we immediately turned around and exited into a row with actual prison cells.",1,75.29,75.68,95.84,5.02,3.77,3.14,0,0.63,5.66,0,5.66,0,0.63,0,1.26,0.63,3.77,0,3.14,0.63,2.52,0.63,0,0.63,0.63,0,0,0,8.81,1.26,0,0,0,0.63,0.63,7.55,0,0,0,0.63,0,0,0,0,0,0,0,0,0,3.14,25.16,0,5.66,14.47,1.89,2.52,0.63,0,3.14,46.24,79.68,66.65,-7.62,1,4,5,4,1,1,100,40,40,0,85.81,0,40,80,100,22.58,0,0,96.88,0,100,7,3,0,18,1,0,0,0,0,0,0,0,0,29,0,29,1,28,0.642857143,159,23 +646,1114,Infirmary,Immediate,Goal-assigned,Baseline,2,06:15pm,1,Low Threat,0,0.4,"Infirmary had alot of neon colors and bright lights. We wore these special glasses that made our vision blurry and wonky. I saw bright orange neon spiders on the walls, and the workers wore neon clothing. There were a lot of sound effects going on along with wind and fog blowing. The walls were covered with neon graffiti. There was a room with different color dots that was spinning around us and made it hard to walk.",1,77.73,76.62,32.28,61.07,5.19,3.9,0,1.3,5.19,0,5.19,1.3,3.9,0,0,0,1.3,0,2.6,2.6,0,0,0,0,0,0,0,0,5.19,0,0,0,0,0,0,5.19,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3,25.97,0,3.9,7.79,11.69,1.3,1.3,0,1.3,-12.47,-34.71,-33.63,30.94,3,5,3,1,3,1,0,46.15,100,50.77,50.77,89.58,58.33,0,66.67,100,0,0,100,0,0,2,1,0,11,0,0,0,0,0,0,0,0,0,14,0,14,1,14,0.785714286,77,19 +647,1114,Infirmary,Delay,Goal-assigned,Baseline,2,06:15pm,1,Low Threat,1,0.2,"neon lights +3d glasses +clowns +girl dancing +moving tunnel +music +first room",1,89.52,84.23,89.39,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.67,8.33,0,0,0,0,0,8.33,0,0,8.33,0,0,0,0,0,0,0,0,0,0,0,41.67,0,16.67,8.33,8.33,8.33,0,0,0,NA,NA,NA,NA,1,1,1,1,1,1,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,1,1,0,4,0,0,0,0,0,0,1,0,0,6,1,7,0.857142857,6,0.666666667,12,19 +648,1114,Asylum,Delay,Goal-assigned,Baseline,2,06:15pm,2,Low Threat,0,0.5,"Actors and Actresses +Director gone missing +Newspapers +Backstage +Old Hollywood feel +Dentist office +Teeth head +",1,77.34,99,63.35,20.23,6.67,0,0,6.67,6.67,0,6.67,6.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,20,0,0,6.67,0,0,0,0,0,0,0,0,0,0,6.67,13.33,0,6.67,0,0,0,6.67,0,6.67,NA,NA,-58.26,30.94,1,1,4,1,2,1,50,50,50,50,50,100,0,0,0,0,0,0,0,100,0,0,0,0,7,0,0,0,0,0,0,0,0,0,7,0,7,1,7,1,15,19 +649,1114,DevilsDen,Immediate,Goal-assigned,Share,2,06:15pm,2,High Threat,0,0.4,There was a news report going on saying someone was murdered. There were cameras around and the workers had old fashion costumes on. There was a dental office with one of the workers holding a drill. ,1,85.2,84.23,39.59,2.17,5.56,0,0,5.56,2.78,0,2.78,0,0,0,2.78,0,0,0,2.78,0,2.78,0,0,0,0,0,0,0,16.67,8.33,0,0,2.78,0,5.56,8.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.89,0,2.78,11.11,0,0,0,0,0,NA,32.42,25.18,NA,4,2,1,2,5,1,37.5,0,0,100,100,43.75,100,50,50,0,50,50,50,50,50,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,5,0,0,0,36,19 +650,1114,DevilsDen,Delay,Goal-assigned,Share,2,06:15pm,2,High Threat,1,0.8,"Last room +Bus +Strobe lights +",1,89.52,40.06,99,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,20,20,0,0,0,0,NA,NA,NA,NA,1,1,1,1,1,1,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,0,1,0,1,0,0,0,0,0,0,1,0,0,2,1,3,0.666666667,2,0.5,25,19 +651,1114,GhostlyGrounds,Delay,Goal-assigned,Test,2,06:15pm,3,High Threat,0,0.4,"People with metal weapons (chainsaws, manchettes, ect...) +Multiple rooms +People hanging in cages +Supposed to go one person at a time +Long hallway +Strobe lights +",1,99,63.73,35.01,20.23,0,0,0,0,8,0,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,20,24,0,4,20,4,0,0,0,20,NA,19.81,NA,30.94,3,1,3,2,1,1,50,0,100,100,0,50,50,50,50,50,0,0,100,0,0,1,0,0,7,0,0,0,0,0,0,0,0,1,8,1,9,0.888888889,8,0.875,5,19 +652,1115,Infirmary,Delay,Goal-assigned,Baseline,2,06:15pm,1,Low Threat,0,0,"Bright colors +moving floor +smoke +dancing on tables +3d glasses +clowns +loud noises and pops +",1,89.52,40.06,63.35,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.33,6.67,6.67,0,0,0,0,0,0,0,6.67,6.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.67,0,13.33,6.67,13.33,13.33,0,0,0,NA,-11.67,-9.59,NA,3,5,1,1,1,1,0,0,100,0,0,0,0,0,0,100,50,50,50,50,50,1,0,0,7,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.875,15,20 +653,1115,Asylum,Immediate,Goal-assigned,Baseline,2,06:15pm,1,Low Threat,0,0,"famous director gone missing +actors and actresses +pictures of old men that change into monsters +newspaper in the beginning +girl n a dressing room",1,98.55,99,97.72,83,8.33,0,4.17,8.33,4.17,0,4.17,0,4.17,0,0,0,0,0,4.17,4.17,0,0,0,0,0,0,0,0,20.83,0,0,0,0,0,0,20.83,0,0,8.33,4.17,0,0,0,0,0,0,0,0,0,4.17,16.67,0,4.17,12.5,0,0,0,0,4.17,NA,-37.35,43.36,NA,4,2,1,1,1,1,0,50,50,100,62.5,0,100,100,0,0,50,50,50,50,50,2,0,0,4,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.666666667,24,20 +654,1115,Asylum,Delay,Goal-assigned,Baseline,2,06:15pm,1,Low Threat,1,0.5,"Second one +actors and actresses +director missing and maybe a murderer +newspapers +red rooms +",1,56.86,99,2.36,1,7.14,0,0,7.14,7.14,0,7.14,0,0,0,7.14,0,0,0,7.14,0,7.14,0,0,0,0,0,0,0,28.57,7.14,0,0,7.14,0,0,21.43,0,0,7.14,0,0,0,0,0,0,0,0,0,0,0,14.29,0,0,7.14,7.14,0,0,0,0,18.94,-11.67,37.55,30.94,4,3,3,1,1,1,0,0,0,100,0,0,50,100,0,0,0,0,100,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,5,1,6,0.833333333,5,1,14,20 +655,1115,DevilsDen,Immediate,Goal-assigned,Share,2,06:15pm,2,High Threat,0,0.4,"women with white eyes in the beginning +men with weapons (chainsaw, machete, mallet, ect...) +strobe lights +people hanging from the ceilings +fence material doors +",1,99,84.23,39.59,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.33,0,0,0,0,0,0,8.33,0,0,4.17,4.17,0,0,0,0,0,0,0,0,0,4.17,25,0,0,12.5,12.5,0,0,0,4.17,NA,47.82,NA,NA,1,1,1,3,1,1,100,100,0,100,0,50,50,50,50,50,50,50,50,50,50,0,0,0,8,0,0,0,0,0,0,0,0,1,8,1,9,0.888888889,8,1,24,20 +656,1115,DevilsDen,Delay,Goal-assigned,Share,2,06:15pm,2,High Threat,1,0.8,"Third one +marked with an x (scary) +people with weapons +long tunnel +strobe lights +wearing flannels +bodys hanging from cages +",1,99,40.06,7.03,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,5,5,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,15,0,0,10,5,0,0,0,10,NA,58.08,NA,NA,1,1,1,4,1,1,100,100,100,0,100,50,50,50,50,50,50,50,50,50,50,0,1,0,4,0,0,0,0,1,0,1,0,0,5,2,7,0.714285714,5,0.8,20,20 +657,1115,GhostlyGrounds,Delay,Goal-assigned,Test,2,06:15pm,3,High Threat,0,0.4,"Last one +Strobe lights +Scary one marked with an X +Monsters +",1,99,40.06,5.07,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,0,9.09,9.09,0,9.09,9.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,0,0,0,9.09,0,0,0,0,NA,-11.67,NA,NA,4,1,1,1,1,1,0,0,0,100,0,50,50,50,50,50,50,50,50,50,50,0,0,0,2,0,0,0,0,0,0,2,0,0,2,2,4,0.5,2,1,11,20 +658,1116,Infirmary,Immediate,Goal-assigned,Baseline,1,08:30pm,2,Low Threat,0,0.4,"Small spaces with 3D glasses to make things less distinguishable and pop more. The colors were amazing and it was quite ""trippy"". there was so much going on that it was almst overwhelming. Some jump scares and the costumes were really cool. lots of cool pattrens on the walls and i think t added to te experience the fact that it was harder to see. The green smoke was really cool, and the jumpscares got me there. +",1,45.12,20.1,17.57,61.07,0,0,0,0,7.79,0,7.79,1.3,1.3,0,1.3,2.6,1.3,0,7.79,5.19,2.6,3.9,1.3,2.6,2.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3,1.3,0,0,0,0,0,2.6,15.58,0,2.6,5.19,3.9,0,3.9,2.6,2.6,31.01,54.59,33.22,5.22,3,2,4,2,1,2,90.91,0,100,100,100,0,100,18.1,33.33,33.33,46.88,0,0,100,0,3,0,0,8,3,0,0,0,0,0,0,0,1,14,1,15,0.933333333,11,0.727272727,77,20 +659,1116,Infirmary,Delay,Goal-assigned,Baseline,1,08:30pm,2,Low Threat,1,0.4,"If i remember correctly, Infirmary being the first one, this was the one with the crazy colors and cool designs. There was an intro in the beginning, and then sort of a warm up before receiving the 3D glasses and seeing the elevated neon dancers. I remember slightly before that, there was a green room that looked elevated but it was just a light with smoke. I loved the visuals in this section and distractions from scares, leaving you more susceptible to being scared and off guard. ",1,76.81,27.51,86.26,20.23,1.15,0,0,1.15,9.2,2.3,6.9,2.3,0,0,3.45,0,2.3,2.3,5.75,2.3,2.3,4.6,1.15,2.3,2.3,0,0,0,3.45,1.15,0,0,0,0,0,2.3,0,0,0,0,0,0,1.15,0,0,0,0,0,0,1.15,20.69,1.15,1.15,10.34,5.75,0,2.3,1.15,1.15,-17.01,6.93,-18.94,-39.01,2,4,1,4,2,2,21.54,100,27.69,0,27.69,85,0,55,100,55,100,0,52.94,52.94,52.94,7,1,0,7,1,0,0,0,0,0,0,0,1,16,1,17,0.941176471,15,0.466666667,87,20 +660,1116,Asylum,Delay,Goal-assigned,Baseline,1,08:30pm,1,Low Threat,0,0.75,"I am having a really hard time recalling Asylum, I think for the reason that it was not as scary to me, and because it was one of the shorter experiences. Honestly, im having trouble remembering anything at all, even how it started",1,12.37,1.08,89.39,1,0,0,0,0,27.27,2.27,25,11.36,6.82,0,2.27,4.55,2.27,4.55,4.55,0,4.55,2.27,0,2.27,2.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.27,0,0,0,0,2.27,0,4.55,2.27,0,0,0,0,0,2.27,2.27,6.82,-14.12,-36.78,-2.56,-3.01,2,3,2,1,4,4,0,100,100,100,12.5,50,50,100,0,90.62,50,100,50,0,56.25,0,0,0,0,0,0,0,0,0,0,0,0,5,0,5,5,0,0,0,44,20 +661,1116,DevilsDen,Delay,Goal-assigned,Test,1,08:30pm,2,High Threat,0,0.8,"Lots of scary people wielding weapons. More of a dimly lit area that was green i believe. Kind of a rusty vibe and a lot of characters talking to themselves, Not as scary as the others ",1,95.3,6.61,22.12,1,0,0,0,0,13.89,0,13.89,2.78,0,0,5.56,0,5.56,0,8.33,0,8.33,5.56,0,5.56,5.56,0,0,0,5.56,2.78,0,0,0,0,2.78,2.78,0,0,0,0,0,0,0,0,0,0,0,0,0,2.78,8.33,0,0,2.78,5.56,0,0,0,2.78,31.55,32.42,31.29,30.94,4,5,3,2,1,1,37.5,0,0,100,100,0,66.67,33.33,33.33,100,0,0,100,0,0,0,0,0,4,1,0,0,0,1,1,0,0,0,5,2,7,0.714285714,4,1,36,20 +662,1116,GhostlyGrounds,Immediate,Goal-assigned,Share,1,08:30pm,3,High Threat,0,1,"the school bus started with flashing lights and people jumping. very enclosed area it made it more scary. then the walk into the side of the building which was riddled wth scary people. lots of jump scares, as this was the scariest out of the 4 for me. people hiding in places i didnt expect, and sometime it was hard to tell who was real and who wasnt, which defiently added to the thrill. earlier into the Ghostly Grounds there was an outside part with a chainsawguy which was creepy. there was many broken and worn rooms to walk passed. This whole section was more enclosed which is scary. lots of people wielding weapons throughout this scene. going up and down stairs also added to the effect for sure",1,79.97,9.52,97.44,1,0.78,0,0,0.78,8.59,0,8.59,0.78,1.56,0,0.78,0.78,5.47,0,6.25,0.78,5.47,5.47,0.78,4.69,4.69,0,0,0,3.13,1.56,0,0,0.78,0,0.78,1.56,0,0,0,0,0,0,0,0,0,0,0,0.78,0,5.47,21.09,0,4.69,13.28,2.34,0,0.78,0,6.25,17.74,50.35,40.46,-37.61,2,3,5,3,1,1,66.67,100,0,6.67,76,0,0,100,62.29,2.86,0,0,32.05,0,100,4,2,0,5,5,0,0,0,0,1,0,0,0,16,1,17,0.941176471,11,0.454545455,128,20 +663,1116,GhostlyGrounds,Delay,Goal-assigned,Share,1,08:30pm,3,High Threat,1,0.6,"first we got on the schoolbus which was very tight, and the lights were flashing. There were figures on the bus that jumped at you and some figures who were just still. after we got off the back of the bus we went into the building and around windy corridors. There was a man outside for a second with a chainsaw. There was the loud shaky box with the creature inside of it shaking around. I remember a man on the ceiling that was dropping something which was making a loud noise. At the end, there was the kaleidoscope hall with the real cells that housed prisoners during the time the ESP was functioning.",1,91.74,78.98,58.46,5.65,3.51,2.63,0,0.88,7.02,0,7.02,2.63,0.88,0,0.88,0.88,1.75,0.88,1.75,0,1.75,0,0,0,0,0,0,0,6.14,0,0,0,0,0,0,6.14,0,0,0,1.75,0,0,1.75,0,0,0,0,0,0,3.51,16.67,0,2.63,8.77,1.75,2.63,0.88,1.75,3.51,-4.37,-30.36,-13.69,30.94,3,2,4,1,5,1,0,60,100,40,67.27,82.81,100,14.06,48.44,0,0,0,0,100,0,3,1,0,9,0,0,0,0,5,0,3,0,0,13,8,21,0.619047619,13,0.692307692,114,20 +664,1117,Infirmary,Delay,Control,Baseline,0,07:30pm,3,Low Threat,0,0.4,"I remember Infirmary being filled with psychedelic patterns & lots of black light. I immediately noticed how neon the orange card I was holding in my hand had become. I remember they had us put on 3D glasses and walk through a corridor that made the drawings on the walls pop out. I remember there was a tunnel that resembled a hamster wheel and we had to walk through it. There were gogo dancers as well that were creepy because they were rocking slowly from side to side & I remember thinking how unsettling that was. Otherwise, this section didnt feel scary. I remember something popping out at me towards the end maybe but I cant be sure.",1,28.28,7.79,99,5.8,1.72,1.72,0,0,17.24,0,17.24,8.62,3.45,0.86,2.59,0,3.45,4.31,3.45,0.86,2.59,2.59,0,2.59,2.59,0,0,0,4.31,0,0,0,0,0,0,4.31,0,0,0,0,1.72,0,0,0,0.86,0,0,0,0,4.31,18.1,0.86,4.31,9.48,2.59,0,0.86,2.58,4.31,0.08,8.21,59.56,-67.52,3,5,5,4,1,2,27.78,66.67,100,0,33.33,0,43.31,43.31,62.2,100,18.33,0,0,40,100,4,2,0,7,3,0,0,0,0,0,0,0,1,16,1,17,0.941176471,13,0.538461538,116,25 +665,1117,Asylum,Immediate,Control,Baseline,0,07:30pm,1,Low Threat,0,0.25,I honestly remember very little from this second one other than that it was the shortest one and I didnt find it scary at all. I am really struggling to come up with one specific memory.,1,33.38,1,98.75,1,2.78,0,0,2.78,25,2.78,22.22,5.56,0,0,0,5.56,8.33,5.56,5.56,0,5.56,2.78,0,2.78,2.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.56,8.33,0,2.78,5.56,0,0,0,0,5.56,5.56,23.47,30.46,-37.26,5,2,5,3,5,4,29.17,66.67,0,33.33,100,65.63,100,100,100,0,43.75,50,50,0,100,0,0,0,0,1,0,0,0,0,0,0,0,3,1,3,4,0.25,0,0,36,25 +666,1117,Asylum,Delay,Control,Baseline,0,07:30pm,1,Low Threat,1,0.25,"I am wracking my brain to try and remember what happened in the Asylum section. Its name suggests that this one might have been the movie set, so I vaguely remember a directors chair & a creepy dentist. The dentists chair had a skill with maybe teeth in it? I remember being really freaked out by that. I also remember seeing a typewriter and a woman in a red dress. It was really dirty by design I think. Other than that, I dont really remember anything. ",1,33.73,6.98,76.46,3.38,3.49,0,2.33,1.16,18.6,0,18.6,6.98,0,1.16,4.65,3.49,2.33,5.81,2.33,0,2.33,1.16,0,1.16,1.16,0,0,0,4.65,1.16,0,0,0,0,1.16,3.49,0,0,1.16,0,0,0,1.16,0,0,0,0,0,0,4.65,8.14,0,0,5.81,2.33,0,0,1.16,4.65,-18.54,-1.58,-7.44,-46.59,4,5,5,2,3,1,20.83,0,75,100,0,13.33,40,0,0,100,0,10,10,10,100,0,0,0,6,1,0,0,0,0,0,0,0,4,7,4,11,0.636363636,6,1,86,25 +667,1117,DevilsDen,Delay,Control,Baseline,0,07:30pm,5,High Threat,0,0.4,Devil's Den was really creepy there was a woman outside who was only letting people in one by one if they had glowsticks around their neck. There were lots of cogs & tools all over the place in this one. The worst part was the man with the chainsaw he chased me down a ramp and I remember cringing from the sound.,1,81.13,59.57,80.96,1,0,0,0,0,8.2,1.64,6.56,1.64,0,0,1.64,1.64,3.28,1.64,4.92,0,4.92,3.28,0,3.28,1.64,0,0,0,9.84,0,0,0,0,0,0,9.84,0,0,1.64,3.28,0,0,0,0,0,0,0,0,0,3.28,18.03,0,1.64,14.75,0,1.64,0,0,3.28,-55.22,-52.01,-58.33,-55.32,3,1,5,1,3,1,0,53.57,100,100,100,100,28.89,0,0,0,0,0,0,0,100,2,0,0,7,2,0,0,0,0,0,0,0,0,11,0,11,1,9,0.777777778,61,25 +668,1117,GhostlyGrounds,Immediate,Control,Baseline,0,07:30pm,4,High Threat,0,0.4,I remember the Ghostly Grounds started with a bus with skeletons sitting in each of the seats. There was a man waiting at the back of the bus & I knew he was going to jump out and scare me but then even when he did it still made me jump. I remember right when we walked in there was a contortionist who was writhing around on the ground. There was a wooden floor that wobbled left and right when you stepped on it.,1,48.44,54.61,99,3.01,1.22,1.22,0,0,6.1,0,6.1,3.66,1.22,0,0,0,1.22,2.44,2.44,0,2.44,1.22,0,1.22,1.22,0,0,0,7.32,0,0,0,0,0,0,7.32,0,0,0,3.66,0,0,0,0,0,0,0,0,0,6.1,20.73,0,7.32,13.41,0,0,0,0,6.1,51.65,65.5,47.83,41.62,1,3,3,3,1,5,100,83.16,0,71.58,17.89,0,27.91,100,40.7,50.58,94.12,94.12,100,100,0,3,1,0,4,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.5,82,25 +669,1117,GhostlyGrounds,Delay,Control,Baseline,0,07:30pm,4,High Threat,1,0.4,"I remember the Ghostly Grounds started by walking through an old bus & there were skeletons sitting in each of the seats. I assumed one of the skeletons would be a real person ready to jump out so I was bracing myself to be scared the whole time. In reality, there was a man hiding behind the last seat of the bus, so thats when I got jumpy. The only other thing that sticks out besides the bus is the ""meat market"" towards the end where there were pigs. There were also bodies hanging from the ceiling in burlap sacks, and they were swinging from side to side. I remember being really creeped out because I couldnt see anyone from my group and was worried that I would get trapped in the bodies.",1,67.19,14.54,97.55,3.5,0,0,0,0,11.45,1.53,9.92,2.29,0.76,2.29,1.53,1.53,1.53,1.53,2.29,0,2.29,2.29,0,2.29,2.29,0,0,0,3.82,0,0,0,0,0,0,3.82,0,0,0,0.76,0,0,1.53,0,0,0,0,0.76,0,5.34,18.32,0,2.29,14.5,1.53,0,0,1.53,6.1,16.15,64.97,52.93,-69.46,3,5,5,5,1,2,93.33,60,100,60,0,0,38.91,51.13,51.13,100,96.3,0,0,50,100,5,2,0,7,4,0,0,0,0,0,0,0,1,18,1,19,0.947368421,14,0.5,131,25 +670,1118,Infirmary,Delay,Control,Baseline,0,07:30pm,2,Low Threat,0,0.4,There were clowns and bright colors everywhere. The bright colors make it more vivd in my mind. We walked through a spinning tunnel. the glasses we put on made the walls 3d. when we first walked in there were just 4 or so clowns standing in a room.,1,55.95,84.23,99,96.74,6.25,6.25,0,0,10.42,2.08,8.33,0,4.17,0,2.08,0,2.08,0,6.25,6.25,0,0,0,0,0,0,0,0,6.25,0,0,0,0,0,0,6.25,0,0,0,0,0,0,0,0,0,0,0,0,0,2.08,35.42,0,8.33,18.75,8.33,0,0,0,2.08,NA,-16.17,-19.71,NA,3,4,1,1,3,1,0,33.33,100,3.7,40.74,87.1,58.06,0,100,67.74,50,50,50,50,50,3,0,0,4,0,0,0,0,0,0,0,0,0,7,0,7,1,7,0.571428571,48,19 +671,1118,Asylum,Immediate,Control,Baseline,0,07:30pm,1,Low Threat,0,0,there was a pa or radio spitting out old timey news and there was a man at the front that was like a cinema worker. i remember it being short. There was a man around the first turn with a lot of makeup on.,1,89.52,53.63,95.15,20.23,2.27,0,0,2.27,4.55,0,4.55,2.27,0,0,2.27,0,2.27,2.27,0,0,0,0,0,0,0,0,0,0,9.09,2.27,0,0,0,0,2.27,6.82,0,0,0,4.55,0,0,0,0,0,0,0,0,0,6.82,15.91,0,2.27,13.64,0,0,0,0,6.82,21.82,22.86,11.66,30.94,5,4,3,3,5,1,28.57,57.14,0,57.14,100,75,75,75,100,0,0,0,100,0,0,0,2,0,5,0,0,0,0,0,0,0,0,1,7,1,8,0.875,7,0.714285714,44,19 +672,1118,Asylum,Delay,Control,Baseline,0,07:30pm,1,Low Threat,1,0.5,There was a man outside dressed in movie theater attire. there was an old radio sound inside. I think it was telling old news. There was an empty dentist chair. there was a thing on the wall that said backstage. there was a mirror.,1,65.33,40.06,99,3.56,0,0,0,0,2.27,0,2.27,2.27,0,0,0,0,0,0,2.27,0,2.27,0,0,0,0,0,0,0,9.09,6.82,0,0,0,0,6.82,2.27,0,0,0,2.27,0,0,0,2.27,0,0,0,0,0,0,25,0,0,22.73,0,2.27,0,2.27,0,49.8,56.69,61.76,30.94,1,3,3,3,1,1,100,50,0,100,6.25,0,50,100,50,68.75,0,0,100,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,6,0,6,1,6,1,44,19 +673,1118,DevilsDen,Immediate,Control,Baseline,0,07:30pm,3,High Threat,0,0.4,There was a person at a table meant to be welding and next to them there was a shelf that kept moving. There was a man on the way out standing up high on a platform. on the way in there was a man with a chainsaw. after the chainsaw man there was a person to my left that jumped out and scared me. There was a man that told one of us to pull our mask up and that kind of took away from the immersion.,1,96.21,90.41,98.3,9.24,2.3,2.3,0,0,3.45,0,3.45,1.15,0,0,2.3,0,0,0,1.15,0,1.15,1.15,0,1.15,1.15,0,0,0,11.49,1.15,0,0,0,0,1.15,10.34,0,0,0,4.6,0,0,1.15,0,0,0,0,0,0,3.45,25.29,0,3.45,21.84,0,0,0,1.15,3.45,-25.34,22.78,-22.96,-75.83,3,4,5,4,2,2,41.67,65.28,100,0,50,90.67,0,28,100,28,47.22,0,0,0,100,2,0,0,5,1,0,0,0,0,0,0,0,0,8,0,8,1,7,0.714285714,87,19 +674,1118,DevilsDen,Delay,Control,Baseline,0,07:30pm,3,High Threat,1,1,there was a man on the way out on an elevated ledge and a man who yelled at us for masks,1,99,99,84.92,20.23,4.76,4.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.81,4.76,0,0,0,0,4.76,19.05,0,0,0,9.52,0,0,0,0,0,0,0,0,0,4.76,28.57,0,0,23.81,0,4.76,0,0,4.76,NA,18.17,-32.38,NA,2,1,1,3,2,1,30,100,0,0,50,100,0,62.5,62.5,62.5,50,50,50,50,50,1,0,0,3,0,0,0,0,0,0,0,0,0,4,0,4,1,4,0.75,21,19 +675,1118,GhostlyGrounds,Delay,Control,Baseline,0,07:30pm,3,High Threat,0,0,we walked through a bus. there were moving floors after some stairs. pictures on the walls after those stairs but before the moving floor. people behind cages and bad animatronics in a long hallway.,1,95.53,57.59,99,1.85,2.94,2.94,0,0,2.94,0,2.94,0,0,0,0,0,2.94,0,2.94,0,2.94,2.94,0,2.94,0,0,0,0,2.94,0,0,0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,0,0,0,0,5.88,29.41,0,8.82,20.59,0,0,0,0,5.88,-3.47,-10.22,-31.13,30.94,3,1,3,1,5,1,0,0,100,0,33.33,100,33.33,66.67,33.33,0,0,0,100,0,0,0,2,0,5,0,0,0,0,0,0,0,0,0,7,0,7,1,7,0.714285714,34,19 +676,1119,Infirmary,Delay,Control,Baseline,0,07:30pm,1,Low Threat,0,0.8,"The Infirmary room was cool, you wore 3D Goggles which made everything pop out. There were characters wearing fluorescent paint one of whom would jump out from behind a wall. There was a section in which you had to walk over a bridge but it felt like the entire section was spinning. There were characters dancing on poles, and there was also a character dressed in a top hat and a costume that resembled a ring leader. ",1,77.73,63.13,97.09,39.1,1.3,0,0,1.3,9.09,1.3,7.79,1.3,1.3,1.3,0,0,3.9,0,1.3,1.3,0,0,0,0,0,0,0,0,6.49,1.3,0,0,0,0,0,5.19,0,0,0,0,2.6,0,0,0,0,0,0,0,0,3.9,28.57,0,5.19,19.48,1.3,0,2.6,2.6,3.9,12.35,-16.57,0.04,53.59,3,4,3,1,5,1,0,90,100,4,100,72.5,35,60,100,0,0,0,100,50,0,2,1,0,8,1,0,0,0,0,0,0,0,0,12,0,12,1,11,0.727272727,77,18 +677,1119,Asylum,Immediate,Control,Baseline,0,07:30pm,2,Low Threat,0,0.5,"Asylum featured an exhibit focused around cinema. It was set in the 1940s with old film cameras, actors who dressed for the period, and an oldish sounding soundtrack. One of the actresses was dressed as a movie star, and another one may have been a detective. There were air cannons being shot at peoples legs. I remember seeing newspapers and old cups of coffee. It was not that scary, I cannot recall an actor approaching me during this section.",1,65.65,26.5,63.35,8.55,0,0,0,0,7.5,0,7.5,2.5,0,1.25,1.25,0,3.75,2.5,1.25,0,1.25,1.25,0,1.25,1.25,0,0,0,7.5,0,0,0,0,0,0,7.5,0,0,1.25,0,0,0,1.25,0,0,0,0,0,0,2.5,11.25,1.25,1.25,5,1.25,2.5,0,1.25,2.5,46.64,85.5,22.21,32.2,1,5,3,4,1,1,100,100,33.33,0,0,0,0,83.33,33.33,100,0,0,100,100,100,0,0,0,9,1,0,0,0,0,0,0,0,2,10,2,12,0.833333333,9,1,80,18 +678,1119,Asylum,Delay,Control,Baseline,0,07:30pm,2,Low Threat,1,0,"Asylum centered around a 1940s setting. There was a bathtub, a radio, a cup of coffee, a directors chair, and one of the things used to signal the start of the scene. There was an actress who had her own room with a lounge chair. The actress would jump out of a hidden panel in the wall. Furthermore, there was a dentists chair with tools nearby. ",1,99,80.84,19.76,42.34,2.99,0,0,2.99,2.99,0,2.99,0,1.49,1.49,0,0,0,0,1.49,1.49,0,0,0,0,0,0,0,0,7.46,0,0,0,0,0,0,7.46,0,0,4.48,0,0,0,1.49,0,0,0,0,1.49,0,4.48,16.42,0,1.49,13.43,1.49,0,0,1.49,5.97,NA,13.16,13.08,NA,4,3,1,3,4,1,32.14,32.14,0,100,0,21.43,21.43,100,0,25,50,50,50,50,50,2,0,0,9,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.818181818,67,18 +679,1119,DevilsDen,Delay,Control,Baseline,0,07:30pm,3,High Threat,0,0.8,"The Devil's Den had a section with bright flashing strobe lights which were heavily disorienting. There were power tools, and people would run up to you with saws and whatnot. There was a section which was outside in which a man ran past me with a chainsaw that was turned on. There was an area that seemed to be a carpenters room.",1,69.92,31.06,97.57,44.38,1.61,0,0,1.61,8.06,0,8.06,1.61,0,1.61,1.61,0,4.84,0,1.61,1.61,0,0,0,0,0,0,0,0,3.23,0,0,0,0,0,0,3.23,0,0,0,1.61,0,0,0,0,0,1.61,0,0,0,1.61,27.42,0,4.84,16.13,4.84,0,1.61,1.61,1.61,29.18,25.92,70.71,-9.08,3,3,5,2,1,1,42.86,0,100,53.57,100,0,82.76,100,55.17,55.17,0,92.31,0,0,100,2,1,0,8,0,0,0,0,0,0,0,0,1,11,1,12,0.916666667,11,0.727272727,62,18 +680,1119,GhostlyGrounds,Immediate,Control,Baseline,0,07:30pm,2,High Threat,0,0.8,"The Ghostly Grounds was a seeming maze of random people being dismembered or mutilated. There were bright flashing lights during one section. There were a lot more jumpscares. There was a box that would violently rattle, as well as a floor that sounded like it was getting banged on from below. There were also individuals wielding fake weapons. The are in which we could walk through was pretty narrow, ",1,46.7,48.8,46.57,20.23,1.47,1.47,0,0,10.29,0,10.29,1.47,0,2.94,5.88,0,2.94,0,5.88,2.94,2.94,1.47,0,1.47,0,1.47,0,0,4.41,1.47,0,0,0,1.47,0,2.94,0,0,0,0,0,0,1.47,0,0,0,0,0,0,4.41,20.59,0,1.47,13.24,4.41,1.47,0,1.47,4.41,18.32,31.72,55.85,-32.62,3,4,1,2,1,2,50,0,100,61.54,61.54,0,0,72.22,100,100,100,0,0,53.85,0,2,0,0,8,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.8,68,18 +681,1119,GhostlyGrounds,Delay,Control,Baseline,0,07:30pm,2,High Threat,1,0.6,"The Ghostly Grounds featured a room in which two monsters were shown, one looked devilish. There was a meat locker that had hanging meat/limbs as well as strobe lights. There were mutilated bodies in cages, screaming sounds, and a box that was violently shaking. There were also air guns throughout. I remember two staircases one that went up, and one that went down (In that order). We entered the section through a school bus.",1,59.12,40.06,87,20.23,2.7,1.35,0,1.35,2.7,0,2.7,1.35,0,0,0,0,1.35,1.35,2.7,1.35,1.35,1.35,0,1.35,0,1.35,0,0,1.35,0,0,0,0,0,0,1.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.68,0,4.05,16.22,2.7,2.7,0,0,0,44.71,35.36,67.84,30.94,5,2,4,3,1,1,29.79,29.79,0,0,100,0,100,100,100,10.71,0,0,0,100,0,0,3,0,11,0,0,0,0,0,0,1,0,0,14,1,15,0.933333333,14,0.785714286,74,18 +682,1120,Infirmary,Immediate,Control,Baseline,0,07:30pm,3,Low Threat,0,1,"Everything was vivid, neon colors. We put on 3d glasses at the beginning of the section and walked through sections that had 3D images popping out at us. There was a 3D spider perched on top of one of the exhibits. There was a long hallway that spun around you while you walked over a bridge that felt like it was moving while we walked. There was one room that had tons of polka dots and there were several people dressed as clowns. The actors used high pitched voices through a lot of the exhibit and a lot of manic laughter. There were also sections that looked like graffiti everywhere but the graffiti was in bright, neon colors. ",1,77.08,84.73,80.61,45.75,2.54,2.54,0,0,4.24,1.69,2.54,0.85,0.85,0,0,0,0.85,0,1.69,1.69,0,0.85,0.85,0,0,0,0,0,5.93,0.85,0,0,0,0,0.85,5.08,0,0,0,0,0,0,0,0,0,0,0,0,0,4.24,26.27,0,5.08,13.56,5.08,1.69,0.85,0,4.24,2.27,29.25,6,-28.44,2,3,5,3,4,1,60,100,0,86.09,23.48,32.35,32.35,100,0,58.82,0,0,47.92,0,100,5,2,0,10,0,0,0,0,0,0,0,0,0,17,0,17,1,17,0.588235294,118,NA +683,1120,Infirmary,Delay,Control,Baseline,0,07:30pm,3,Low Threat,1,0.8,"I remember the polka dots room, the 3d glasses, a clown painter, and a green fog",1,98.55,11.66,54.55,20.23,0,0,0,0,6.25,0,6.25,6.25,0,0,0,0,0,6.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.5,0,0,6.25,6.25,0,0,0,0,-9.69,42.24,-17.61,-53.71,2,4,1,4,2,2,75,100,100,0,100,75,0,0,100,0,100,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,4,0,4,1,4,0.75,16,NA +684,1120,Asylum,Delay,Control,Baseline,0,07:30pm,4,Low Threat,0,0.5,I do not remember anything from Asylum. I dont remember which it was. ,1,1,1,99,20.23,0,0,0,0,35.71,0,35.71,14.29,0,0,7.14,0,14.29,14.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,0,0,0,0,0,0,7.14,0,0,0,0,0,0,0,7.14,7.14,-5.46,-11.67,-48.48,43.76,2,1,2,1,2,1,0,100,0,0,0,100,0,0,50,100,0,100,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,2,0,0,0,14,NA +685,1120,DevilsDen,Delay,Control,Baseline,0,07:30pm,5,High Threat,0,0.8,"The only thing I currently remember from the Devil's Den section was the chainsaws and the big machine that looks like its meant to chop a finger off. It was also dimly lit and I remember people whispering something about the ""machine"".",1,63.81,16.63,39.59,20.23,0,0,0,0,14.29,4.76,9.52,7.14,0,0,2.38,0,0,4.76,0,0,0,0,0,0,0,0,0,0,2.38,2.38,0,0,0,0,2.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,9.52,0,0,2.38,4.76,2.38,0,0,7.14,19.35,80.18,-0.14,-21.99,1,4,3,4,2,2,100,46.67,60,0,60,40,0,10,100,10,88.89,0,100,100,100,0,0,0,6,0,0,0,0,0,0,0,0,0,6,0,6,1,6,1,42,NA +686,1120,GhostlyGrounds,Immediate,Control,Baseline,0,07:30pm,4,High Threat,0,0.8,"During the Ghostly Grounds section there were a lot of cages that had actors in them. We first walked through a large blue bus in order to enter the exhibit. The bus was full of ""corpses"" and had flashing lights and fog throughout it. When we got off the bus. there were a lot of areas that had people making zombie type noises and acting in general like zombies. The Ghostly Grounds section had people at the entrance who sectioned people off using an axe and told them who could go through. The Ghostly Grounds section also had a lot of puffs of air that were meant to startle people.",1,89.52,84.51,40.7,10.86,2.8,1.87,0,0.93,3.74,0,3.74,0.93,1.87,0.93,0,0,0,0,1.87,0,0.93,0.93,0,0,0,0,0,0,7.48,0.93,0,0,0,0,0.93,6.54,0,0,0,0,0,0,0.93,0,0.93,0,0,0,0,5.61,17.76,0,2.8,12.15,2.8,0.93,0,1.86,5.61,7.22,91.19,-14.2,-55.32,1,3,5,3,4,1,100,43.24,0,0,59.46,86.36,86.36,100,0,100,0,0,0,0,100,5,1,0,8,0,0,0,0,0,0,0,0,0,14,0,14,1,14,0.571428571,107,NA +687,1120,GhostlyGrounds,Delay,Control,Baseline,0,07:30pm,4,High Threat,1,0.2,"The only thing I remember from Ghostly Grounds were actors in cages, corpses in bus seats, and having to go up stairs with a puff of air at the top of the stairs and a wiggly floor afterwards.",1,99,40.06,94.68,20.23,0,0,0,0,8.11,5.41,2.7,2.7,0,0,0,0,0,2.7,0,0,0,0,0,0,0,0,0,0,2.7,0,0,0,0,0,0,2.7,0,0,0,0,5.41,0,0,0,0,0,0,0,0,2.7,16.22,0,2.7,16.22,0,0,0,5.41,2.7,-43.41,-24.25,-52.28,-53.71,3,1,1,1,4,2,0,0,100,100,11.11,100,25,28.57,0,28.57,100,0,0,0,0,1,1,0,4,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.666666667,37,NA +688,1122,Infirmary,Immediate,Control,Baseline,0,07:30pm,2,Low Threat,0,0.6,"spiders, they were all wearing aprons, and sort of dressed up like clowns. also vibrent colors. it was susposed to be 3D. my glasses kept falling off. they all had some crazy wigs on. there was also a spinning tunnel. ",1,39.7,54.96,28.56,20.23,0,0,0,0,10,5,5,0,0,0,5,0,0,0,2.5,0,0,2.5,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5,12.5,0,5,7.5,2.5,0,0,0,2.5,-15.04,-22.89,-15.57,-6.67,2,1,2,1,2,1,0,100,50,50,100,100,0,100,100,66.67,0,100,0,0,100,1,1,0,6,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.75,40,18 +689,1122,Infirmary,Delay,Control,Baseline,0,07:30pm,2,Low Threat,1,0.6,"There were vibrant colors, most people were dressed with some sort of painting in mind. I also remember them being dressed as clowns. They gave us 3D glasses for the section. There were spiders and snakes. There was also a spinning tunnel before it. This section also had air jets that blew at your feet. I remember some of them had neon orange wigs on. ",1,19.94,81.78,52.48,43.1,1.54,1.54,0,0,7.69,0,7.69,3.08,0,0,3.08,0,0,3.08,1.54,1.54,0,0,0,0,0,0,0,0,9.23,1.54,0,0,0,0,0,7.69,0,0,0,0,0,0,0,0,0,0,0,0,0,3.08,13.85,0,1.54,9.23,3.08,0,0,0,3.08,33.95,4.96,43.36,53.54,5,2,2,1,1,1,0,0,0,0,100,0,100,100,0,0,0,100,50,50,50,2,1,0,7,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.7,65,18 +690,1122,Asylum,Delay,Control,Baseline,0,07:30pm,1,Low Threat,0,0.75,This one was the lamest. There was not many scary things. it was basically walking through a bunch of rooms where there were props that did not really move and actors who just stood there. In the very beginning there was a dude at a desk who was talking into a mic explaining that we were all going to be apart of a movie. I do remember towards the beginning there was a bloody bathtub. There was also a dentist and a head with a bunch of teeth all over it. Also a table with pictures and stuff.,1,44.56,34.25,87.61,1.66,1.02,1.02,0,0,8.16,2.04,6.12,2.04,0,0,2.04,2.04,3.06,1.02,3.06,0,3.06,1.02,0,1.02,1.02,0,0,1.02,7.14,2.04,0,0,0,0,1.02,5.1,0,1.02,0,1.02,0,0,0,0,0,0,0,0,0,0,16.33,0,2.04,14.29,0,0,0,0,0,13.19,29.22,9.6,0.73,5,2,4,2,5,2,37.25,0,74.51,80.39,100,40.16,100,25.2,15.75,0,47.5,0,47.5,100,50,2,1,0,9,0,0,0,0,0,0,0,0,2,12,2,14,0.857142857,12,0.75,98,18 +691,1122,DevilsDen,Immediate,Control,Baseline,0,07:30pm,3,High Threat,0,0.6,"Starting off with the man who ran at us with the cinder bloc. then moved on to the man with the chainsaw. After that I think we went into the main part. Most of the people have a crowbar/pipe. One guy asked me to stand there because they ""needed a blood splatter on the door. At the end there was a long tunnel with smoke in it no people really. ",1,98.6,79.09,90.52,20.23,2.82,2.82,0,0,8.45,1.41,7.04,1.41,1.41,1.41,0,1.41,1.41,0,0,0,0,0,0,0,0,0,0,0,11.27,1.41,0,0,0,0,1.41,9.86,0,0,0,4.23,1.41,0,0,0,0,0,0,0,0,7.04,15.49,0,5.63,9.86,0,1.41,0,1.41,7.04,26.07,35.49,-1.05,43.76,2,5,2,3,3,1,53.33,100,0,33.33,0,26.67,33.33,0,66.67,100,0,100,0,100,0,4,1,0,3,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.375,71,18 +692,1122,DevilsDen,Delay,Control,Baseline,0,07:30pm,3,High Threat,1,0.6,This one was cool. Before the entrance there was a lady who was making people with the glow sticks go in alone. In the beginning there was a man who ran from a dark hallway with a cinder block. Then right after there was a man with a chain saw who would yell and start it. After that there were actors with blunt objects who threatened to hit you. One talked to me directly and told me to stand here this wall needs blood on it and then he swung a pipe at my head. ,1,67.62,84.54,76.52,9.95,1.05,0,0,1.05,3.16,0,3.16,0,1.05,2.11,0,0,0,0,3.16,1.05,2.11,0,0,0,0,0,0,0,15.79,5.26,0,1.05,1.05,0,3.16,10.53,0,0,1.05,3.16,1.05,0,0,0,0,0,0,1.05,0,5.26,18.95,0,3.16,11.58,3.16,1.05,1.05,1.05,6.31,NA,28.24,-8.42,NA,2,5,1,4,2,1,40,100,40,0,20,60,0,80,80,100,50,50,50,50,50,8,0,0,10,1,0,0,0,0,0,0,0,0,19,0,19,1,18,0.555555556,95,18 +693,1122,GhostlyGrounds,Delay,Control,Baseline,0,07:30pm,3,High Threat,0,0.6,"This one was the scariest. It started with a bus that had people/bodies sitting in the seats. The worst part of it all was the strobe lights that made it hard to see all the time. After that There were like cages with stuff hanging from the sealing. Then there was a long hallway with strobe lights where actors would walk up to you and try to scare you. Then towards there end there was a cool section that was like a u shaped hallway. In this section someone stood behind a sliding window, the actor would slam the window down and scream. At the end of the u the floor slid back and forth. The end of this section was a hallway like the one with the strobe lights but there were no actors and no strobe lights. ",1,88.51,72.87,76.73,3.99,0.71,0,0.71,0,9.29,4.29,5,0,0.71,2.14,0.71,0,1.43,0,3.57,0.71,2.86,1.43,0,1.43,1.43,0,0,0,5.71,0,0,0,0,0,0,5.71,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,23.57,0,2.86,15,3.57,0.71,1.43,0,7.14,-9.69,18.62,7.63,-55.32,4,3,5,3,4,1,40,40,0,100,0,42.86,71.43,100,0,71.43,0,0,0,0,100,4,2,0,12,3,0,1,0,0,0,1,0,0,21,2,23,0.913043478,18,0.666666667,140,18 +694,1123,Infirmary,Delay,Control,Baseline,0,07:30pm,1,Low Threat,0,0.6,Two dancers on top of stages. Clowns. Neon paint. Big spiders. Circle moving tunnel. Checkerboard pattern. ,1,98.55,75.49,15.38,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.25,0,0,0,0,0,0,6.25,0,0,0,0,0,0,0,0,0,0,0,0,0,6.25,12.5,0,6.25,6.25,0,0,0,0,6.25,NA,62.74,NA,NA,2,1,1,3,1,1,75,100,0,0,0,50,50,50,50,50,50,50,50,50,50,0,1,0,5,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.833333333,16,18 +695,1123,Asylum,Immediate,Control,Baseline,0,07:30pm,2,Low Threat,0,0.5,"decapitated head with teeth all over +woman in red dress sitting on couch +doctor is missing, +news host narrating to old camera with desk in front an old phone on top +dentist chair +satan picture +room with desk and messy papers and notes had water stains on many of the notes +on the notes was the narrating script of what the talk host was saying",1,99,67.13,21.89,1,0,0,0,0,1.54,1.54,0,0,0,0,0,0,0,0,4.62,0,4.62,0,0,0,0,0,0,0,10.77,6.15,0,0,0,0,6.15,4.62,0,0,1.54,3.08,0,0,0,0,0,0,0,0,0,1.54,15.38,0,0,10.77,4.62,0,0,0,1.54,NA,67.61,8.12,NA,1,5,1,2,1,1,100,0,0,100,100,0,0,0,50,100,50,50,50,50,50,0,1,0,11,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.916666667,65,18 +696,1123,Asylum,Delay,Control,Baseline,0,07:30pm,2,Low Threat,1,0.25,Camera man. Actress missing. Bathtub. Dentist chair. Head with teeth in it. Desk with lamp and papers. Announcer. ,1,95.3,92.24,1.17,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.11,0,0,0,0,0,0,11.11,0,0,5.56,5.56,0,0,0,0,0,0,0,0,0,0,5.56,0,0,5.56,0,0,0,0,0,NA,-22.05,9.2,NA,3,5,1,1,1,1,0,0,100,66.67,0,0,0,75,0,100,50,50,50,50,50,0,0,0,7,0,0,0,0,0,0,0,0,0,7,0,7,1,7,1,18,18 +697,1123,DevilsDen,Delay,Control,Baseline,0,07:30pm,2,High Threat,0,0.8,Cinder block. Chain saw man. Lumber Jack guy. ,1,89.52,99,1,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,25,0,0,0,25,0,0,0,0,0,0,0,0,0,0,12.5,0,0,0,12.5,0,0,0,0,NA,NA,NA,NA,1,1,1,1,1,1,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,1,3,1,8,18 +698,1123,GhostlyGrounds,Immediate,Control,Baseline,0,07:30pm,3,High Threat,0,0.6,"blue bus entrance, women in first seat scaring people mannequins in the seats, bodies hanging upside down, creature in a box, body opened up to the right, leaves and vines hanging from the ceiling, mannequin shifting side to side, lot of screaming and yelling, body parts on walls",1,99,40.06,94.8,4.22,0,0,0,0,2.08,0,2.08,0,0,0,0,0,2.08,0,2.08,0,2.08,2.08,0,2.08,2.08,0,0,0,4.17,2.08,0,0,0,0,2.08,2.08,0,0,2.08,0,0,0,0,0,0,0,0,0,0,4.17,31.25,0,0,25,2.08,4.17,0,0,4.17,NA,-28.44,11.12,NA,2,5,1,1,1,1,0,100,50,58.33,30.56,0,0,90,0,100,50,50,50,50,50,1,1,0,8,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.8,48,18 +699,1123,GhostlyGrounds,Delay,Control,Baseline,0,07:30pm,3,High Threat,1,0.6,Blue school bus. Meat locker. Moving creature in box. Jail bars. Ivy vines. Control box. Bodies hanging in meat locker. Moving floor. ,1,97.37,40.06,95.15,20.23,4.55,0,0,4.55,4.55,0,4.55,0,4.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.82,0,9.09,18.18,4.55,0,0,0,0,NA,-16.4,NA,NA,4,1,1,1,1,1,0,80,0,100,0,50,50,50,50,50,50,50,50,50,50,0,3,0,6,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.666666667,22,18 +700,1124,Infirmary,Immediate,Control,Baseline,0,07:30pm,2,Low Threat,0,0.5,I remember the neon paint and the glasses that made it 3D. I remember the actors walking by and giant spiders. I remember being a little off center because of the 3D glasses and feeling ike I was going to knock in to the set or the actors/props. I remember not being very afraid of the actors and reminding myself that they couldnt touch me which put me more at ease. I rated section a two only because I was jump scared a few times by sounds but nothing really crazy.,1,50.78,1,96.69,1.34,0,0,0,0,17.39,1.09,16.3,5.43,3.26,1.09,1.09,1.09,4.35,5.43,4.35,0,3.26,3.26,0,2.17,2.17,0,0,0,4.35,0,0,0,0,0,0,4.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10.87,0,4.35,3.26,0,1.09,2.17,0,0,6.22,27.88,14.88,-24.08,3,4,2,4,3,4,44.74,44.74,100,0,25,17.11,17.11,0,100,50,66.67,100,35.19,0,70.37,1,0,0,5,4,0,0,0,0,0,1,0,1,10,2,12,0.833333333,6,0.833333333,92,22 +701,1124,Infirmary,Delay,Control,Baseline,0,07:30pm,2,Low Threat,1,0.75,I remember Infirmary being our first section so I was a little nervous going into it because I had never been to a haunted house. I remember walking in and they handed us glasses to wear. There was neon paint and two actors acting like mental patients painting. There was neon paint that felt like it was jumping out at me because of the 3D glasses which was disorienting to me. I had to take them off a handful of times just to prevent getting dizzy or knocking into something. I remember some of the actors looked like clowns. I also remember large neon spiders on the walls ,1,52.48,25.13,96.01,2.17,1.85,1.85,0,0,11.11,0.93,10.19,4.63,1.85,0,1.85,0,1.85,3.7,2.78,0,2.78,0.93,0,0.93,0.93,0,0,0,6.48,0,0,0,0,0,0,6.48,0,0,0,0,1.85,0,1.85,0,0,0.93,0,0.93,0,4.63,13.89,0,3.7,7.41,0.93,0,1.85,4.63,5.56,-37.49,-22.03,-38.83,-51.61,4,1,5,1,5,2,0,0,30.43,100,68.12,100,26.06,26.06,46.48,0,46.67,0,46.67,2.22,100,3,0,0,8,1,0,0,0,0,0,2,0,0,12,2,14,0.857142857,11,0.727272727,108,22 +702,1124,Asylum,Delay,Control,Baseline,0,07:30pm,2,Low Threat,0,0.25,I remember that it was a series of old hollywood style movie sets. I remember walking past a woman on the phone twirling her hair and that there were many posters and other movie set like props around. I remember one of the actors scaring the girl in front of me and then walking through a room with a bed and a lady singing and swinging out her fan very fast to scare people. I believe that room was called the Diva. I remember not thinking it was very scary or that the actors weren’t jumping at people very much like in the other rooms. ,1,75.12,13.3,99,4.95,0,0,0,0,10.48,0,10.48,5.71,0,0,0.95,0,4.76,3.81,3.81,0.95,2.86,2.86,0,2.86,2.86,0,0,0,8.57,2.86,0,0.95,0,0,1.9,6.67,0,0,4.76,0,0,0,0,0,0,0,0,0,0,5.71,15.24,0,5.71,8.57,0,0.95,0,0,5.71,5.49,25.87,13.5,-22.9,3,5,1,2,3,3,42.86,0,100,14.29,28.57,20,80,0,60,100,100,50,0,100,50,2,1,0,7,2,0,0,0,0,0,0,0,0,12,0,12,1,10,0.7,106,22 +703,1124,DevilsDen,Delay,Control,Baseline,0,07:30pm,4,High Threat,0,0.5,"I remember being in line and noticing this line was longer than other as well as taking mental note of the red X at the sign for the Ghostly Grounds. Once we started the section we walked through a grey prison bus. The lights were flashing and i remember seeing bodies in the seats. I remember being nervous the bodies would jump at me and I was trying to see if they were props or actors but it was so hard to see. I then remember walking through a few different rooms, one had a shifting floor and I had to walk up and down stairs. I remember walking through a room with many cages with foliage and vines all around. There were a few actors scaring people and myself and I was stopped for a little next a loud banging box and the sound was scary/unsettling to me. I then remember going to a freezer room with bodies hanging from the ceiling. Again the lights were flashing and it was very dark so it was hard to see and I was scared of knocking into one of the “bodies” or the scare actor that was in the room. He came up on my side and growled in my ear. I remember screaming and regretting it because since he got a reaction out of me he would follow me. I kept looking straight focusing on making my way out of the room without bumping into him or the prop bodies but he scared me again before I left the room. ",1,68.01,8.83,98.12,1,1.54,0.77,0.38,0.38,11.15,0.38,10.77,3.08,1.54,1.54,1.92,0,3.85,2.69,4.62,0.38,4.23,3.08,0,3.08,2.69,0,0.38,0,4.23,0,0,0,0,0,0,4.23,0,0,0,1.92,0.77,0,0.77,0,0,0,0,0,0,2.31,22.31,0.77,2.69,11.15,4.62,2.31,0.77,1.54,2.31,20.19,69.4,40.87,-49.69,1,2,1,2,1,4,100,0,50,83.33,50,0,100,30,60,70,100,75,50,0,100,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,22 +704,1124,GhostlyGrounds,Immediate,Control,Baseline,0,07:30pm,5,High Threat,0,0.6,"I remember entering through the bus. It was hard to see and I was really nervous that the people in the seats were real and were going to jump out at me. I then remember going to trhough the section with cages and trying to figure out if the people inside were real or props. I couldnt see very well and I was afraid of the actors being too close and that I would accidentally touch them, I tried to hold my arms behind me just in case so I wouldnt fold them in front of me and mess with the heart monitor. I remember going up and down stairs and through a section with swinging bodies and actors walking through. I was trying not to react too much so the actors would not target me more but I screamed at one and he followed me through growling in my ear that was the only time I audibly screamed/laughed in any section. ",1,44.45,1.15,93.29,2.97,1.84,0,1.84,0,14.11,1.23,12.88,3.07,0.61,3.68,1.84,1.84,3.07,1.84,4.91,1.23,3.68,1.84,0.61,1.23,1.23,0,0,0,4.29,0.61,0,0,0,0,0.61,3.68,0,0,0,0.61,0,0,0,0,0,0,0,0,0,6.13,17.79,0,3.07,9.2,1.23,3.07,1.23,0,6.13,3.47,38.82,-3.19,-25.21,4,3,4,3,4,3,75.29,75.29,0,100,2.94,48.18,35.22,100,0,66.8,96.97,96.97,0,100,100,10,3,0,3,3,0,0,0,0,0,1,1,0,19,2,21,0.904761905,16,0.1875,163,22 +705,1124,GhostlyGrounds,Delay,Control,Baseline,0,07:30pm,5,High Threat,1,0.4,I remember it was the first section we went to that had a red X. People in line seemed a little more nervous which probably made me anticipate more scares. Two young girls who went in in front of us ran out to take their glow necklaces off indicating they didn’t want any extra scares. There was as a scare actor at the entrance that was separating groups but knew we were part of the study and mentioned something to us about it. I then remember lots of chain saw sounds and body parts. I don’t remember many of the specific rooms but I could hear people in front of me screaming so I felt like I was anticipating a lot. ,1,57.55,26.6,98.76,1.27,3.31,3.31,0,0,16.53,0,16.53,4.96,0.83,1.65,3.31,0,5.79,2.48,3.31,0,3.31,3.31,0,3.31,3.31,0,0,0,9.09,0.83,0,0,0,0,0.83,8.26,0,0,0.83,0,0,0.83,0.83,0,0.83,0,0,0,0,4.13,19.83,0.83,2.48,10.74,2.48,2.48,0.83,2.49,4.13,-4.77,21.94,-0.53,-35.71,2,3,4,3,2,2,40,100,0,50,50,61.33,0,100,83.33,66.67,96,0,66.67,100,100,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,22 \ No newline at end of file diff --git a/datasets/frightnight_practice.csv b/datasets/frightnight_practice.csv index a8775af..170192f 100644 --- a/datasets/frightnight_practice.csv +++ b/datasets/frightnight_practice.csv @@ -23,24 +23,24 @@ PID,Section,Stage,Group,Condition,Code,Time_HH,Fear.rating,Repeat,TOAccuracy,Rec 1004,DevilsDen,Delay,Control,Baseline,0,08:30pm,2,0,0.6,"I remember seeing cages, a desk, not sure if the Devil's Den included the dental equipment but I do recall seeing that. A man wielding a chainsaw.",1,75.62,1,92.16,20.23,0,0,0,0,22.22,0,22.22,7.41,0,0,11.11,0,11.11,7.41,0,0,0,0,0,0,0,0,0,0,3.7,0,0,0,0,0,0,3.7,0,0,0,3.7,0,0,0,0,0,0,0,0,0,0,7.41,0,0,0,7.41,0,0,0,0,36.61,36.32,27.28,46.24,5,4,3,4,5,5,41.67,41.67,50,0,100,27.78,55.56,33.33,100,0,83.33,83.33,100,100,0,0,0,0,3,0,0,0,0,0,0,0,0,2,3,2,5,0.6,3,1,27,22 1004,GhostlyGrounds,Immediate,Control,Baseline,0,08:30pm,2,0,0.8,Went through a bus at the beginning. Ended up going through a strobe light and seeing a false door with a hand popping up. Saw cages and robotic humanlike decoration. I remember going upstairs. At the end we went through a long hallway.,1,99,67.32,99,20.23,2.33,2.33,0,0,4.65,0,4.65,2.33,0,0,0,0,0,2.33,0,0,0,0,0,0,0,0,0,0,4.65,0,0,0,0,0,0,4.65,0,0,0,0,0,0,0,0,0,0,0,0,0,4.65,27.91,0,9.3,11.63,6.98,0,0,0,4.65,71.1,85.24,84.37,43.68,1,4,4,4,1,1,100,48.39,48.39,0,58.06,0,88.89,88.89,100,100,0,88.89,0,100,0,2,2,0,3,0,0,0,0,0,0,0,0,0,7,0,7,1,7,0.428571429,43,22 1004,GhostlyGrounds,Delay,Control,Baseline,0,08:30pm,2,1,0.4,"I remember entering in the bus, platform moving, cages, we went upstairs at a point and saw hanging props. I also recall a false door opening and someone attempting to grab individuals.",1,78.28,75.49,99,20.23,3.13,3.13,0,0,12.5,0,12.5,6.25,0,0,3.13,0,0,6.25,0,0,0,0,0,0,0,0,0,0,9.38,0,0,0,0,0,0,9.38,0,0,0,0,0,0,3.13,0,0,0,0,0,0,0,31.25,0,9.38,15.63,3.13,0,3.13,3.13,0,33.18,68.9,15.65,15,1,3,4,3,1,2,100,100,0,58.33,58.33,0,0,100,12.5,100,28.57,0,0,100,0,2,1,0,4,0,0,0,0,0,0,0,0,0,7,0,7,1,7,0.571428571,32,22 -1005,Infirmary,Immediate,Role-assignment,Baseline,2,08:30pm,2,0,0.8,"A room with green lights and mist where you couldnt see under the mist and people were reaching their hands out, that went into an art room with lots of neon art on the walls and an artist. Then it went into a room with two pretty ladies dancing on tables, another woman gave us 3D glasses and we went in. There were giant spiders in the hallway, all still bright neon art on the walls. That led to a spinning area with polka dots. This went into another neon artsy kinda hallway but there were actors there this time. Then into a hallway that was like the spinning area, all dark with polka dot lights, and there was an actor that blended into the wall. That led out of there on the other side of the beginning room and the dancing ladies were dead(?) or turned off(?).",1,90.42,67.74,98.19,29.32,2.7,1.35,0,1.35,8.11,1.35,6.76,0,1.35,0.68,2.03,0,3.38,0,0.68,0.68,0,0,0,0,0,0,0,0,8.78,3.38,0,1.35,0,0,0,6.76,0,0,2.03,0,0,0,0,0,0,0,0,0,0,6.08,28.38,0,6.76,18.24,4.05,0,0,0,6.08,31.02,51.44,10.67,30.94,5,4,4,4,2,1,67.14,39.52,67.14,0,100,18.47,0,0,100,4.46,0,0,0,100,0,3,6,0,8,0,1,1,0,1,0,0,0,1,17,4,21,0.80952381,17,0.470588235,148,21 -1005,Infirmary,Delay,Role-assignment,Baseline,2,08:30pm,2,1,0.8,"Entering Infirmary there was an area with smoke and a green light that you couldnt see underneath the smoke. Then it went into an artists room that was covered in paintings. Then it went into a room with dancing ladies on tables, and someone gave us 3D glasses. From there we went through some giant spiders and into a huge spinning tube thing that we had to walk through. The inside was filled with polka dots. From there we walked down another long hallway still with lots of colors on the walls and down which then turned into a hallway that had the same black space and polka dots on the walls like from the spinning tube. Out of there was a giant cobra snake statue. Walking past that was back to the dancing ladies on the other side.",1,93.66,76.53,99,20.23,2.88,2.88,0,0,4.32,0,4.32,0,0,0.72,0.72,0,2.88,0,0,0,0,0,0,0,0,0,0,0,8.63,3.6,0,1.44,0,0,0,6.47,0,0,1.44,0,1.44,0,0,0,0.72,0,0,0,0,5.76,29.5,0,8.63,17.27,3.6,0,0,2.16,5.76,NA,-30.39,-30.23,NA,4,1,1,1,5,1,0,0,66.67,100,77.78,100,47.06,73.53,20.59,0,50,50,50,50,50,3,6,0,8,0,0,0,0,0,0,0,0,0,17,0,17,1,17,0.470588235,139,21 -1005,Asylum,Delay,Role-assignment,Baseline,2,08:30pm,2,0,0.5,We walked through what seemed to be news rooms where there was a single reporter at the desk and an overhead noise of phones ringing as well as the kind of stuff you hear on movie sets like quiet on set. There was another room with a fancy woman at a backstage mirror getting ready. Around her was I think a set for a dentist commercial or some kind of commercial where there was a camera pointed towards a chair and there was a creepy surgeon or health person selling the product. ,1,93.34,53.04,67.7,35.66,1.09,1.09,0,0,11.96,0,7.61,2.17,0,0,3.26,0,5.43,0,5.43,3.26,2.17,1.09,0,1.09,1.09,0,0,0,8.7,2.17,0,0,0,0,2.17,6.52,0,0,2.17,0,0,0,1.09,0,0,0,0,0,0,2.17,16.3,0,1.09,10.87,0,4.35,0,1.09,2.17,14.68,33.84,-19.2,29.41,3,4,4,4,2,3,57.89,89.47,100,0,66.67,73.47,0,3.06,100,22.45,31.58,63.16,0,100,0,0,2,0,6,0,0,0,0,0,0,0,0,2,8,2,10,0.8,8,0.75,92,21 -1005,DevilsDen,Delay,Role-assignment,Share,2,08:30pm,4,0,1,The Devil's Den had people holding hammers and tools and there were factory type machines all around. I dont remember much from the shop besides at the end there was a giant machine and we had to walk through it to continue. The staff was saying to sacrifice to the machine and the inside of the machine was horrific it was made of bodies and flesh. ,1,84.76,40.06,39.59,6.9,3.03,1.52,1.52,0,6.06,1.52,4.55,1.52,1.52,0,0,0,1.52,1.52,3.03,0,1.52,3.03,0,1.52,1.52,0,0,0,4.55,1.52,0,0,0,0,1.52,3.03,0,0,0,0,3.03,0,0,0,0,0,0,0,0,1.52,9.09,0,1.52,7.58,0,0,0,3.03,1.52,-3.16,-26.96,-13.45,30.94,2,3,2,1,4,1,0,100,40.85,100,60.56,66.07,25,100,0,50,0,100,0,0,0,2,0,0,6,1,0,0,0,0,0,0,0,1,9,1,10,0.9,8,0.75,66,21 -1005,GhostlyGrounds,Immediate,Role-assignment,Test,2,08:30pm,4,0,0.8,"Walked into a bus that was foggy and had dead body props and people props. This led to a little caged walkway where a man dragged something loudly along the gate. This went into an intro kinda room with an actor holding bones. It then went into another room with a lot of cages/prison cells with several different scary things inside. One of the last cages was a box that was shaking a lot. The prison cells went on for a while, with fake leaves or something hanging from most surfaces, and actors following/scaring us. That area ended when we went outside, where there was a man with a chainsaw who chased us down the ramp. We went back inside and went through more cells before going up a staircase. At the top of the staircase was devil. It was massive. Then we went down the stairs and it basically ended there.",1,90.39,82.18,96.22,1.37,5.19,3.25,0,1.95,4.55,0,4.55,0,0.65,0,2.6,0,1.95,0,3.25,0,3.25,1.3,0,1.3,1.3,0,0,0,7.14,0.65,0,0,0,0.65,0,6.49,0,0,0,1.3,0,0,0,0,0,0,0,0,0,1.3,21.43,0,7.14,13.64,0,0.65,0,0,1.3,-6.79,-15.28,2.57,-7.65,5,4,5,1,2,1,0,90,90,0,100,42.86,0,42.86,100,61.43,0,96.77,0,0,100,8,3,0,13,0,0,0,0,0,0,0,0,0,24,0,24,1,24,0.541666667,154,21 -1005,GhostlyGrounds,Delay,Role-assignment,Test,2,08:30pm,4,1,0.4,"To get to the Ghostly Grounds we walked through a bus that had actors and body parts in the seats. Exiting the bus, there was a short gated section to walk through into the building. There was a man outside the gates banging on the chains. Inside was an entrance room with another actor and then we were brought into an area with a lot of cages and prisons. There were actors in long black cloaks and scary masks. It then went into a freezer holding hanging bodies. From there it went to more prison bars and actors. That ended by going out to a stretch with a chainsaw man. The chainsaw man chases you down the ramp and then you reenter into another area. This area you climb the stairs and at the top is the devil. Then down the stairs is the end.",1,97.34,88.72,99,4.22,3.47,1.39,0.69,1.39,2.08,0,2.08,0,0,0,0,0,2.08,0,2.08,0,2.08,0.69,0,0.69,0.69,0,0,0,9.03,0.69,0,0,0,0,0,8.33,0,0,0,2.08,0,0,0.69,0,0,0,0,0,0,2.08,25.69,0,5.56,19.44,0.69,0.69,0,0.69,2.08,NA,28.98,-1.79,NA,2,5,1,3,4,1,66.67,100,0,100,9.52,18.67,56,18.67,0,100,50,50,50,50,50,4,7,0,9,0,0,0,0,0,0,0,0,0,20,0,20,1,20,0.45,144,21 +1005,Infirmary,Immediate,Goal-assigned,Baseline,2,08:30pm,2,0,0.8,"A room with green lights and mist where you couldnt see under the mist and people were reaching their hands out, that went into an art room with lots of neon art on the walls and an artist. Then it went into a room with two pretty ladies dancing on tables, another woman gave us 3D glasses and we went in. There were giant spiders in the hallway, all still bright neon art on the walls. That led to a spinning area with polka dots. This went into another neon artsy kinda hallway but there were actors there this time. Then into a hallway that was like the spinning area, all dark with polka dot lights, and there was an actor that blended into the wall. That led out of there on the other side of the beginning room and the dancing ladies were dead(?) or turned off(?).",1,90.42,67.74,98.19,29.32,2.7,1.35,0,1.35,8.11,1.35,6.76,0,1.35,0.68,2.03,0,3.38,0,0.68,0.68,0,0,0,0,0,0,0,0,8.78,3.38,0,1.35,0,0,0,6.76,0,0,2.03,0,0,0,0,0,0,0,0,0,0,6.08,28.38,0,6.76,18.24,4.05,0,0,0,6.08,31.02,51.44,10.67,30.94,5,4,4,4,2,1,67.14,39.52,67.14,0,100,18.47,0,0,100,4.46,0,0,0,100,0,3,6,0,8,0,1,1,0,1,0,0,0,1,17,4,21,0.80952381,17,0.470588235,148,21 +1005,Infirmary,Delay,Goal-assigned,Baseline,2,08:30pm,2,1,0.8,"Entering Infirmary there was an area with smoke and a green light that you couldnt see underneath the smoke. Then it went into an artists room that was covered in paintings. Then it went into a room with dancing ladies on tables, and someone gave us 3D glasses. From there we went through some giant spiders and into a huge spinning tube thing that we had to walk through. The inside was filled with polka dots. From there we walked down another long hallway still with lots of colors on the walls and down which then turned into a hallway that had the same black space and polka dots on the walls like from the spinning tube. Out of there was a giant cobra snake statue. Walking past that was back to the dancing ladies on the other side.",1,93.66,76.53,99,20.23,2.88,2.88,0,0,4.32,0,4.32,0,0,0.72,0.72,0,2.88,0,0,0,0,0,0,0,0,0,0,0,8.63,3.6,0,1.44,0,0,0,6.47,0,0,1.44,0,1.44,0,0,0,0.72,0,0,0,0,5.76,29.5,0,8.63,17.27,3.6,0,0,2.16,5.76,NA,-30.39,-30.23,NA,4,1,1,1,5,1,0,0,66.67,100,77.78,100,47.06,73.53,20.59,0,50,50,50,50,50,3,6,0,8,0,0,0,0,0,0,0,0,0,17,0,17,1,17,0.470588235,139,21 +1005,Asylum,Delay,Goal-assigned,Baseline,2,08:30pm,2,0,0.5,We walked through what seemed to be news rooms where there was a single reporter at the desk and an overhead noise of phones ringing as well as the kind of stuff you hear on movie sets like quiet on set. There was another room with a fancy woman at a backstage mirror getting ready. Around her was I think a set for a dentist commercial or some kind of commercial where there was a camera pointed towards a chair and there was a creepy surgeon or health person selling the product. ,1,93.34,53.04,67.7,35.66,1.09,1.09,0,0,11.96,0,7.61,2.17,0,0,3.26,0,5.43,0,5.43,3.26,2.17,1.09,0,1.09,1.09,0,0,0,8.7,2.17,0,0,0,0,2.17,6.52,0,0,2.17,0,0,0,1.09,0,0,0,0,0,0,2.17,16.3,0,1.09,10.87,0,4.35,0,1.09,2.17,14.68,33.84,-19.2,29.41,3,4,4,4,2,3,57.89,89.47,100,0,66.67,73.47,0,3.06,100,22.45,31.58,63.16,0,100,0,0,2,0,6,0,0,0,0,0,0,0,0,2,8,2,10,0.8,8,0.75,92,21 +1005,DevilsDen,Delay,Goal-assigned,Share,2,08:30pm,4,0,1,The Devil's Den had people holding hammers and tools and there were factory type machines all around. I dont remember much from the shop besides at the end there was a giant machine and we had to walk through it to continue. The staff was saying to sacrifice to the machine and the inside of the machine was horrific it was made of bodies and flesh. ,1,84.76,40.06,39.59,6.9,3.03,1.52,1.52,0,6.06,1.52,4.55,1.52,1.52,0,0,0,1.52,1.52,3.03,0,1.52,3.03,0,1.52,1.52,0,0,0,4.55,1.52,0,0,0,0,1.52,3.03,0,0,0,0,3.03,0,0,0,0,0,0,0,0,1.52,9.09,0,1.52,7.58,0,0,0,3.03,1.52,-3.16,-26.96,-13.45,30.94,2,3,2,1,4,1,0,100,40.85,100,60.56,66.07,25,100,0,50,0,100,0,0,0,2,0,0,6,1,0,0,0,0,0,0,0,1,9,1,10,0.9,8,0.75,66,21 +1005,GhostlyGrounds,Immediate,Goal-assigned,Test,2,08:30pm,4,0,0.8,"Walked into a bus that was foggy and had dead body props and people props. This led to a little caged walkway where a man dragged something loudly along the gate. This went into an intro kinda room with an actor holding bones. It then went into another room with a lot of cages/prison cells with several different scary things inside. One of the last cages was a box that was shaking a lot. The prison cells went on for a while, with fake leaves or something hanging from most surfaces, and actors following/scaring us. That area ended when we went outside, where there was a man with a chainsaw who chased us down the ramp. We went back inside and went through more cells before going up a staircase. At the top of the staircase was devil. It was massive. Then we went down the stairs and it basically ended there.",1,90.39,82.18,96.22,1.37,5.19,3.25,0,1.95,4.55,0,4.55,0,0.65,0,2.6,0,1.95,0,3.25,0,3.25,1.3,0,1.3,1.3,0,0,0,7.14,0.65,0,0,0,0.65,0,6.49,0,0,0,1.3,0,0,0,0,0,0,0,0,0,1.3,21.43,0,7.14,13.64,0,0.65,0,0,1.3,-6.79,-15.28,2.57,-7.65,5,4,5,1,2,1,0,90,90,0,100,42.86,0,42.86,100,61.43,0,96.77,0,0,100,8,3,0,13,0,0,0,0,0,0,0,0,0,24,0,24,1,24,0.541666667,154,21 +1005,GhostlyGrounds,Delay,Goal-assigned,Test,2,08:30pm,4,1,0.4,"To get to the Ghostly Grounds we walked through a bus that had actors and body parts in the seats. Exiting the bus, there was a short gated section to walk through into the building. There was a man outside the gates banging on the chains. Inside was an entrance room with another actor and then we were brought into an area with a lot of cages and prisons. There were actors in long black cloaks and scary masks. It then went into a freezer holding hanging bodies. From there it went to more prison bars and actors. That ended by going out to a stretch with a chainsaw man. The chainsaw man chases you down the ramp and then you reenter into another area. This area you climb the stairs and at the top is the devil. Then down the stairs is the end.",1,97.34,88.72,99,4.22,3.47,1.39,0.69,1.39,2.08,0,2.08,0,0,0,0,0,2.08,0,2.08,0,2.08,0.69,0,0.69,0.69,0,0,0,9.03,0.69,0,0,0,0,0,8.33,0,0,0,2.08,0,0,0.69,0,0,0,0,0,0,2.08,25.69,0,5.56,19.44,0.69,0.69,0,0.69,2.08,NA,28.98,-1.79,NA,2,5,1,3,4,1,66.67,100,0,100,9.52,18.67,56,18.67,0,100,50,50,50,50,50,4,7,0,9,0,0,0,0,0,0,0,0,0,20,0,20,1,20,0.45,144,21 1006,Infirmary,Delay,Control,Baseline,0,06:15pm,4,0,0.6,"Glow in the dark lights, clown with a hatchet, person wearing all black and polka dots, paintings, 3d glasses, moving floor, bridge, ",1,98.87,66.75,20.79,20.23,0,0,0,0,4.55,4.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.55,0,0,0,0,0,0,4.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.82,0,4.55,9.09,18.18,0,0,0,0,NA,79.29,21.68,NA,1,3,1,3,1,1,100,100,0,0,0,0,0,100,0,0,50,50,50,50,50,0,1,0,7,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.875,22,19 1006,Asylum,Immediate,Control,Baseline,0,06:15pm,1,0,0.5,"Entrance there was a man with a movie clicker thing, dentist with a drill and a head made of teeth, detective man, pretty lady with a makeup stand, receptionist twirling phone cord, ",1,98.55,94.84,15.38,20.23,3.13,0,0,3.13,6.25,0,6.25,0,3.13,0,3.13,0,0,0,0,0,0,0,0,0,0,0,0,0,15.63,6.25,0,3.13,0,0,3.13,12.5,0,0,3.13,6.25,0,0,0,0,0,0,0,0,0,3.13,12.5,0,3.13,9.38,0,0,0,0,3.13,NA,69.96,-38.91,NA,1,1,1,5,4,1,100,66.67,77.78,77.78,0,100,50,58.33,0,0,50,50,50,50,50,0,0,0,7,0,0,0,0,0,0,0,0,0,7,0,7,1,7,1,32,19 1006,Asylum,Delay,Control,Baseline,0,06:15pm,1,1,0.25,"Guy shouting ""remember your lines"" with little movie clicker thing, lady with a red dress at a makeup table, receptionist on the phone, detective, dentist with head made of teeth, directors chair, ",1,99,99,1.63,20.23,6.25,0,0,6.25,6.25,0,6.25,3.13,3.13,0,0,0,0,3.13,0,0,0,0,0,0,0,0,0,0,21.88,9.38,0,3.13,0,0,6.25,15.63,0,0,3.13,3.13,0,0,0,0,0,0,0,0,0,0,9.38,0,0,3.13,3.13,3.13,0,0,0,-39.44,-28.05,-36.58,-53.71,4,1,1,1,3,2,0,40,53.33,100,6.67,100,100,0,0,0,100,0,0,0,0,0,1,0,7,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.875,32,19 1006,DevilsDen,Delay,Control,Baseline,0,06:15pm,3,0,1,"Short woman out front with an axe, man with a chainsaw, larger man with a chainsaw, clanging walkway, industrial machinery, shouting about vampires, ",1,99,95.64,4.38,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.39,4.35,0,0,0,0,4.35,13.04,0,0,4.35,8.7,0,0,0,0,0,0,0,0,0,4.35,13.04,0,0,8.7,0,4.35,0,0,4.35,NA,53.22,NA,NA,2,1,1,4,1,1,66.67,100,66.67,0,41.67,50,50,50,50,50,50,50,50,50,50,0,2,0,6,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.75,23,19 1006,GhostlyGrounds,Immediate,Control,Baseline,0,06:15pm,3,0,0.8,"Animatronics that look like the lizard people from doctor who, 2 men who looked like extras from Cats (2020), school bus that said Ghostly Grounds, flashing room with upside down bodies, shaking cage Electricity?, people missing limbs",1,97.04,84.23,1.17,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.11,2.78,0,0,0,0,2.78,8.33,0,0,0,2.78,0,0,0,0,0,0,0,0,0,13.89,13.89,2.78,0,5.56,8.33,0,0,0,13.89,NA,50.43,9.91,NA,4,2,1,2,4,1,87.5,0,50,100,0,43.75,100,50,0,0,50,50,50,50,50,0,1,0,5,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.833333333,36,19 1006,GhostlyGrounds,Delay,Control,Baseline,0,06:15pm,3,1,0.2,"Schoolbus that said Ghostly Grounds, flashing lights with mannequins in the seats, meat freezer with bodies hanging from the ceiling, medical experiments (electric box, guy with arm cut off), person jumping out of a cage, giant lizard animatronics, stairs, moving floor, ambulance, ",1,99,68.54,26.35,20.23,0,0,0,0,2.44,0,2.44,0,2.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.32,2.44,0,0,0,0,2.44,4.88,0,0,0,2.44,0,0,0,0,0,0,0,0,0,2.44,19.51,0,4.88,9.76,4.88,0,0,0,2.44,-3.83,15.83,-58.26,30.94,4,1,3,5,2,1,44.44,75,50,100,0,100,0,0,0,0,0,0,100,0,0,0,1,0,11,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.916666667,41,19 -1007,Infirmary,Immediate,Role-assignment,Baseline,2,06:15pm,3,0,0.75,"Not as scary as other sections, Being first introduced to the bangs and sparks spooked me for a little at first, There werent as many actors or animatronics to scare me so I was more calm for this section than others, ",1,41.16,1,97.82,1,0,0,0,0,17.07,0,17.07,0,0,0,2.44,0,14.63,0,9.76,2.44,7.32,9.76,2.44,7.32,7.32,0,0,0,2.44,0,0,0,0,0,0,2.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.32,0,0,7.32,0,0,0,0,0,-14,14.64,-1.32,-55.32,2,4,5,4,2,1,38.89,100,100,0,50,33.33,0,0,100,50,0,0,0,0,100,0,0,0,2,2,0,0,0,0,1,0,0,0,4,1,5,0.8,2,1,41,19 -1007,Infirmary,Delay,Role-assignment,Baseline,2,06:15pm,3,1,0.5,Neon colors and 3d glasses. Giant neon spider and animals on walls. ,1,73.36,40.06,3.81,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.67,0,0,8.33,8.33,0,0,0,0,NA,4.96,-14.28,NA,5,4,1,1,2,1,0,0,0,0,100,66.67,0,0,100,0,50,50,50,50,50,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,4,1,4,1,12,19 -1007,Asylum,Delay,Role-assignment,Baseline,2,06:15pm,2,0,0.5,Woman doing makeup in front of the mirror. Newspapers scattered over desk and man in the room that appeared to be investigator. Papers put up about soap scandal,1,99,91.33,89.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.57,0,3.57,0,0,0,0,0,0,0,14.29,3.57,0,0,0,3.57,0,10.71,0,0,3.57,3.57,0,0,0,0,0,0,0,0,0,0,28.57,0,3.57,21.43,3.57,0,0,0,0,NA,50,5.53,NA,5,3,1,4,2,1,66.67,66.67,66.67,0,100,50,0,100,60,0,50,50,50,50,50,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,4,1,4,1,28,19 -1007,DevilsDen,Delay,Role-assignment,Share,2,06:15pm,3,0,0.75,Super loud sections. Man with teeth cover head. actor at forge with bones inside. ,1,99,97.11,24.32,98.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,7.14,0,0,0,0,0,0,0,0,14.29,0,0,0,0,0,0,14.29,0,0,0,7.14,0,0,0,0,0,0,0,0,0,0,21.43,0,0,14.29,0,7.14,0,0,0,NA,-16.82,NA,NA,4,1,1,1,1,1,0,50,0,100,75,50,50,50,50,50,50,50,50,50,50,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,4,1,4,1,14,19 -1007,GhostlyGrounds,Immediate,Role-assignment,Test,2,06:15pm,4,0,1,"Was one of the more scary sections, The flashing lights that makes the actors movements erratic was one of the things that affected me the most. The shaky/sliding floors and the long hallways with props that go off into the distance was great, The section felt longer and I wasnt sure when Id get out, The actors seemed more lively and to interact more with us, ",1,87.33,31.7,94.36,42.34,1.49,1.49,0,0,10.45,0,10.45,2.99,4.48,1.49,1.49,0,1.49,0,4.48,2.99,1.49,2.99,1.49,1.49,1.49,0,0,0,4.48,0,0,0,0,0,0,4.48,0,0,0,0,0,0,1.49,0,0,0,0,0,0,8.96,20.9,0,4.48,13.43,2.99,0,1.49,1.49,8.96,34.34,43.42,31.51,28.09,3,4,4,4,1,1,67.86,67.86,100,0,75,0,67.24,3.45,100,3.45,0,46.43,0,100,50,1,0,0,4,3,0,0,0,0,1,0,0,0,8,1,9,0.888888889,5,0.8,67,19 -1007,GhostlyGrounds,Delay,Role-assignment,Test,2,06:15pm,4,1,0.4,Bus entrance with flashing lights and bodies inside and an actor. Sliding floors and the meat hanging racks with swaying bodies. Huge ghosts hanging from sealing going off into long hallway,1,99,59.25,99,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.23,0,0,0,0,0,0,3.23,0,0,0,0,0,0,0,0,0,0,0,0,0,3.23,38.71,0,9.68,22.58,6.45,0,0,0,3.23,NA,-18.92,-7.02,NA,2,2,1,1,4,1,0,100,100,12.5,100,85.71,100,100,0,0,50,50,50,50,50,0,0,0,8,0,0,0,0,0,0,0,0,0,8,0,8,1,8,1,31,19 +1007,Infirmary,Immediate,Goal-assigned,Baseline,2,06:15pm,3,0,0.75,"Not as scary as other sections, Being first introduced to the bangs and sparks spooked me for a little at first, There werent as many actors or animatronics to scare me so I was more calm for this section than others, ",1,41.16,1,97.82,1,0,0,0,0,17.07,0,17.07,0,0,0,2.44,0,14.63,0,9.76,2.44,7.32,9.76,2.44,7.32,7.32,0,0,0,2.44,0,0,0,0,0,0,2.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.32,0,0,7.32,0,0,0,0,0,-14,14.64,-1.32,-55.32,2,4,5,4,2,1,38.89,100,100,0,50,33.33,0,0,100,50,0,0,0,0,100,0,0,0,2,2,0,0,0,0,1,0,0,0,4,1,5,0.8,2,1,41,19 +1007,Infirmary,Delay,Goal-assigned,Baseline,2,06:15pm,3,1,0.5,Neon colors and 3d glasses. Giant neon spider and animals on walls. ,1,73.36,40.06,3.81,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.67,0,0,8.33,8.33,0,0,0,0,NA,4.96,-14.28,NA,5,4,1,1,2,1,0,0,0,0,100,66.67,0,0,100,0,50,50,50,50,50,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,4,1,4,1,12,19 +1007,Asylum,Delay,Goal-assigned,Baseline,2,06:15pm,2,0,0.5,Woman doing makeup in front of the mirror. Newspapers scattered over desk and man in the room that appeared to be investigator. Papers put up about soap scandal,1,99,91.33,89.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.57,0,3.57,0,0,0,0,0,0,0,14.29,3.57,0,0,0,3.57,0,10.71,0,0,3.57,3.57,0,0,0,0,0,0,0,0,0,0,28.57,0,3.57,21.43,3.57,0,0,0,0,NA,50,5.53,NA,5,3,1,4,2,1,66.67,66.67,66.67,0,100,50,0,100,60,0,50,50,50,50,50,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,4,1,4,1,28,19 +1007,DevilsDen,Delay,Goal-assigned,Share,2,06:15pm,3,0,0.75,Super loud sections. Man with teeth cover head. actor at forge with bones inside. ,1,99,97.11,24.32,98.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,7.14,0,0,0,0,0,0,0,0,14.29,0,0,0,0,0,0,14.29,0,0,0,7.14,0,0,0,0,0,0,0,0,0,0,21.43,0,0,14.29,0,7.14,0,0,0,NA,-16.82,NA,NA,4,1,1,1,1,1,0,50,0,100,75,50,50,50,50,50,50,50,50,50,50,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,4,1,4,1,14,19 +1007,GhostlyGrounds,Immediate,Goal-assigned,Test,2,06:15pm,4,0,1,"Was one of the more scary sections, The flashing lights that makes the actors movements erratic was one of the things that affected me the most. The shaky/sliding floors and the long hallways with props that go off into the distance was great, The section felt longer and I wasnt sure when Id get out, The actors seemed more lively and to interact more with us, ",1,87.33,31.7,94.36,42.34,1.49,1.49,0,0,10.45,0,10.45,2.99,4.48,1.49,1.49,0,1.49,0,4.48,2.99,1.49,2.99,1.49,1.49,1.49,0,0,0,4.48,0,0,0,0,0,0,4.48,0,0,0,0,0,0,1.49,0,0,0,0,0,0,8.96,20.9,0,4.48,13.43,2.99,0,1.49,1.49,8.96,34.34,43.42,31.51,28.09,3,4,4,4,1,1,67.86,67.86,100,0,75,0,67.24,3.45,100,3.45,0,46.43,0,100,50,1,0,0,4,3,0,0,0,0,1,0,0,0,8,1,9,0.888888889,5,0.8,67,19 +1007,GhostlyGrounds,Delay,Goal-assigned,Test,2,06:15pm,4,1,0.4,Bus entrance with flashing lights and bodies inside and an actor. Sliding floors and the meat hanging racks with swaying bodies. Huge ghosts hanging from sealing going off into long hallway,1,99,59.25,99,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.23,0,0,0,0,0,0,3.23,0,0,0,0,0,0,0,0,0,0,0,0,0,3.23,38.71,0,9.68,22.58,6.45,0,0,0,3.23,NA,-18.92,-7.02,NA,2,2,1,1,4,1,0,100,100,12.5,100,85.71,100,100,0,0,50,50,50,50,50,0,0,0,8,0,0,0,0,0,0,0,0,0,8,0,8,1,8,1,31,19 1008,Infirmary,Immediate,Control,Baseline,0,08:30pm,3,0,0.6,"there was a lot of neon color mostly bright green. There were fake gogo dancers with pigtails and black Chelsea boots. It was the least scary besides the Ghostly Grounds because the Ghostly Grounds sucked. There was fake radioactive splatter on the wall. There was fake glow in the dark and hula hoops. everybody wore masks. most of clothing of actors was white to show off neon. wore 3D glasses. held tabbis hand the whole time like my life depended on it. threw away glasses in bin when man in black suit and white button down and plain white face paint w glasses told me to at the end ",1,90.75,45.59,40.7,1,0.93,0,0,0.93,4.67,0.93,3.74,0,1.87,0,1.87,0,0.93,0,5.61,0.93,4.67,0.93,0,0.93,0.93,0,0,0,8.41,3.74,0,0,0,2.8,0.93,3.74,0,0,0,0.93,0,0,0,0,0,0,0,0,0,2.8,22.43,0,1.87,10.28,10.28,0.93,0,0,2.8,-14.16,-29.4,-44.02,30.94,3,1,2,1,4,1,0,91.3,100,36.23,68.12,100,74.07,27.16,0,0,0,100,0,0,0,5,0,0,12,1,0,0,0,0,2,0,0,0,18,2,20,0.9,17,0.705882353,107,21 1008,Infirmary,Delay,Control,Baseline,0,08:30pm,3,1,0.2,Girls with pigtails and dark hair at the end. Black boots that I asked them about where they got them and they didn’t answer because they weren’t allowed to respond. Neon splatters on the wall. Was handed 3D glasses halfway through by one of the more mildly dressed guys with white makeup. Spinning tube that you had to walk through. Neon everywhere. Toxic waste barrels and old large batteries along the walls. People hid behind doors because it was the first attraction we entered. Squeezing Tabbi’s hand like there was no tomorrow. Guy in black suit and white makeup with black glasses and dirty blond hair collecting 3D glasses at the very end right before the exit. He was polite and asked us to deposit our glasses right in one spot. ,1,71.27,84.45,40.49,12.29,3.05,2.29,0,0.76,7.63,1.53,6.11,0.76,3.05,0,0.76,0,1.53,0,2.29,0.76,1.53,0,0,0,0,0,0,0,14.5,4.58,0.76,0.76,0,0,3.05,9.92,0,0,0.76,2.29,1.53,0,1.53,0,0,0,0,0.76,0,3.82,16.79,0,3.05,7.63,5.34,0.76,0.76,3.06,4.58,-22.41,1.42,-35.26,-33.41,2,1,1,4,2,2,17.04,100,40,0,60,100,0,60.77,43.41,43.41,100,0,51.92,0,0,6,2,0,12,1,0,0,0,0,0,1,0,0,21,1,22,0.954545455,20,0.6,134,21 @@ -54,37 +54,37 @@ PID,Section,Stage,Group,Condition,Code,Time_HH,Fear.rating,Repeat,TOAccuracy,Rec 1009,DevilsDen,Delay,Control,Baseline,0,06:15pm,5,0,0.8,"Loud sounds, brutish movements and people cloaked in red overalls. I remember a big man running around with a chainsaw, lots of hissing and the clang of metal on metal. I remember thinking the sound design of the place was very good. We had to enter the tour individually and there was a red mist around the entrance. From the start I was very wary of dark corners because of how dark they seemed. Severally people appeared from those corners, sometimes they would charge rapidly then run right past or suddenly stop. ",1,80.04,46.49,94.98,20.23,1.09,1.09,0,0,9.78,0,9.78,5.43,2.17,1.09,3.26,0,1.09,2.17,2.17,1.09,1.09,1.09,1.09,0,0,0,0,0,5.43,0,0,0,0,0,0,4.35,0,0,0,1.09,2.17,0,0,0,0,0,0,1.09,0,8.7,22.83,1.09,4.35,6.52,5.43,5.43,0,2.17,9.79,37.75,42.28,44.06,26.91,2,3,4,5,1,3,66.36,100,53.27,71.03,0,0,0,100,80.41,100,47.37,94.74,0,100,0,3,0,0,10,1,0,0,0,0,0,1,0,0,14,1,15,0.933333333,13,0.769230769,92,19 1009,GhostlyGrounds,Immediate,Control,Baseline,0,06:15pm,4,0,0.8,"The Ghostly Grounds was very heavy on dead bodies and animatronics. There were a lot of cages and robotics shaking very violently. At one point some character runs out from a cage, seemingly right through the bars and that made me jump. The human element to it made it especially fun an dscary. I can still hear the screeches and ",1,77.08,30.62,7.47,20.23,0,0,0,0,8.47,0,8.47,1.69,3.39,1.69,1.69,0,0,0,3.39,1.69,1.69,3.39,1.69,1.69,0,1.69,0,0,1.69,0,0,0,0,0,0,1.69,0,0,0,0,0,0,0,0,0,0,0,0,0,6.78,10.17,0,3.39,3.39,0,1.69,1.69,0,6.78,-6.71,-17.38,-33.71,30.94,3,5,3,1,3,1,0,33.33,100,0,6.06,89.8,22.45,0,89.8,100,0,0,100,0,0,1,0,0,7,2,0,0,0,0,0,0,0,0,10,0,10,1,8,0.875,59,19 1009,GhostlyGrounds,Delay,Control,Baseline,0,06:15pm,4,1,0.6,"The Ghostly Grounds was the last part of the tour. The Ghostly Grounds was a journey through some sort of mass burial area. It started with us walking into a bus with skeletons that had head wounds. I remember really being intrigued by the design of the skeletons and the lay out of the bus. Some time after we left the bus we walked through an area of cells containing robots in several grotesque and painful positions shaking and jerking violently. Here someone ran right through the cell and that really shook me because I thought all the cells were hard metal cages. There was also a box in a cage hat rattled and jerked towards the end of this section. Somewhere there were bodies hanging down from the ceiling as well and there was only one person in that section. There was a sliding floor section as well and that was unsettling just because of how unsafe it felt in an environment where you are already on your toes, trying to anticipate the next scare. There was also the the hall with the interesting portraits where there was a hole in the wall that someone popped their face out of. Very scary stuff ",1,78.97,68.93,92.96,4.64,1.98,1.49,0.5,0,8.42,0.5,7.92,1.98,1.49,0.5,2.97,0.99,0.5,0.5,4.95,1.49,3.47,2.48,0,2.48,1.49,0.5,0,0,4.46,0,0,0,0,0,0,4.46,0,0,0,0,0,0,0,0,0,0,0,0.99,0.99,2.48,21.29,0.5,3.47,16.34,0,0,1.49,0,4.46,43.81,72.58,33.97,24.88,1,4,3,3,2,2,100,100,0,27.15,81.46,21.22,0,89.12,100,78.25,32.52,0,100,66.67,33.33,2,5,0,13,10,0,0,0,0,0,1,0,0,30,1,31,0.967741935,20,0.65,202,19 -1010,Infirmary,Delay,Role-assignment,Baseline,1,08:30pm,2,0,0.2,"Again I dont remember which section Infirmary was. I am going to guess that it is the one where we walked down a hallway that had strobes and dark chambers. This section was not very scary, but it was funny since my friend was attacked by a monster. He then jumped and yelled. While this was not scary it was a highlight of the time spent in the place. I think that the walk down the hallway was funny not really scary. ",1,14.55,1.87,98.7,3.01,2.44,1.22,0,1.22,14.63,2.44,12.2,3.66,1.22,0,3.66,2.44,6.1,1.22,7.32,2.44,4.88,6.1,2.44,3.66,3.66,0,0,0,4.88,2.44,0,0,1.22,0,1.22,2.44,0,0,0,1.22,0,0,0,0,0,0,0,0,0,6.1,14.63,0,3.66,8.54,1.22,1.22,0,0,6.1,-20.64,-9.34,-24.96,-27.62,5,1,3,1,5,2,0,0,35.85,35.85,100,100,57.33,68,45.33,0,94.12,0,100,0,50,3,0,0,0,4,0,1,0,1,2,0,0,1,7,5,12,0.583333333,3,0,82,18 -1010,Asylum,Immediate,Role-assignment,Baseline,1,08:30pm,1,0,0.5,it was a Devil's Den where they had arching electricity behind glass. There was a man with a chain saw that tried to scare us. Once we entered there was a man with a fake brick that scared me. I there was high pressure air that scared me. they had a large box that we walked through and it shook violently. There was also moving plate at the bottom of our feet making it challenging to walk. There was a man that was on a railing that was just staring off into the distance. ,1,39.08,91.15,71.66,1,6.38,4.26,2.13,0,2.13,0,2.13,0,1.06,0,0,0,0,0,5.32,0,5.32,4.26,0,4.26,3.19,1.06,0,0,10.64,1.06,0,0,0,1.06,0,9.57,0,0,0,3.19,0,0,0,0,0,0,0,0,1.06,1.06,18.09,0,5.32,11.7,1.06,0,0,0,2.12,37.5,70.51,11.05,30.94,5,3,4,3,2,1,69.23,46.15,0,46.15,100,25,0,100,25,34.72,0,0,0,100,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,18 -1010,Asylum,Delay,Role-assignment,Baseline,1,08:30pm,1,1,0.5,I dont remember that Asylum was. I am going to guess that it was the one with the women that were dancing on large platforms. We were also given goggles that made us see 3D objects with different light refractions that we are not used to. This made me feel woozy and disoriented. I this was the least scary part of the haunted house since I just felt off the whole time and couldnt loose myself to the moment.,1,26.1,11.66,54.55,2.86,3.75,3.75,0,0,17.5,2.5,15,5,5,1.25,1.25,0,3.75,1.25,2.5,0,2.5,1.25,0,1.25,1.25,0,0,0,6.25,1.25,0,0,0,0,0,5,0,0,1.25,0,0,0,1.25,0,0,2.5,0,0,0,6.25,7.5,0,1.25,0,2.5,0,3.75,3.75,6.25,-33.65,-6.85,-52.61,-41.51,5,1,1,1,4,3,0,33.33,0,33.33,100,100,25,25,0,0,100,50,0,100,100,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,18 -1010,DevilsDen,Immediate,Role-assignment,Test,1,08:30pm,3,0,0.4,"The Devil's Den had a man in the beginning that was trying to scare us with a chain saw. Then once we walked in there was a man with a fake brick that jumped at me. once we entered the shop there was arching electricity and high pressure air that was used to scare us. There was also noises of arching and rattling within machines. Many machines were broken and looked like they were about to fall apart. They also had sub panel that was made to look like it was falling part with was scary,",1,49.68,87.7,75.23,1,5.21,4.17,1.04,0,5.21,0,5.21,0,2.08,1.04,0,0,2.08,0,6.25,0,6.25,3.13,0,3.13,3.13,0,0,0,9.38,1.04,0,0,0,1.04,0,8.33,0,0,0,2.08,0,0,0,0,0,0,0,0,0,4.17,17.71,1.04,5.21,10.42,3.13,1.04,0,0,4.17,32.62,80.2,24.34,-6.67,1,3,3,3,1,1,100,64.52,0,43.01,0,0,29.41,100,5.88,76.47,0,0,100,0,100,4,1,0,11,1,0,0,0,0,0,0,0,0,17,0,17,1,16,0.6875,96,18 -1010,DevilsDen,Delay,Role-assignment,Test,1,08:30pm,3,1,0.8,When we entered the Machine shop there was a man with a brick who scared me. There was arcing electricity that scared me since I in the past I almost died from this. There was also high pressure air that was shot at us to simulate gunshots. There was a large box that we walked through that shook violently. There were many more machines that looked like they were falling apart or were about to explode. This made the place have an eerie feel to the section. ,1,31.31,60.57,97.26,1,3.45,3.45,0,0,6.9,0,6.9,1.15,2.3,0,2.3,0,2.3,0,5.75,0,5.75,4.6,0,4.6,3.45,1.15,0,0,6.9,0,0,0,0,0,0,6.9,0,0,0,1.15,0,0,0,0,0,0,0,0,0,5.75,19.54,0,4.6,12.64,1.15,1.15,1.15,0,5.75,19.64,49.65,-0.31,9.58,5,2,2,4,5,1,55.56,55.56,40,0,100,79.01,100,44.44,66.67,0,0,100,0,0,52.94,3,1,0,7,1,0,0,0,0,0,1,0,0,12,1,13,0.923076923,11,0.636363636,87,18 -1010,GhostlyGrounds,Delay,Role-assignment,Share,1,08:30pm,2,0,1,I dont remember which section the Ghostly Grounds was. I will guess that it is the section that had the school bus. This was scary since we walked through a bus that had dead bodys that looked like they were going to stand up at any second. I thought we were walking through the show the walking dead. It made me feel like zombies are real. I had to remind myself that this is fake and I should not worry.,1,19.62,8.15,90.41,1,2.53,2.53,0,0,16.46,0,16.46,5.06,2.53,1.27,2.53,1.27,2.53,2.53,3.8,0,3.8,2.53,0,2.53,2.53,0,0,0,5.06,1.27,0,0,0,1.27,0,3.8,0,0,0,0,2.53,0,0,0,0,0,0,0,0,5.06,12.66,0,3.8,5.06,2.53,0,1.27,2.53,5.06,-16.32,2.54,-43.06,-8.43,2,5,1,5,3,5,31.82,100,65.91,65.91,0,70.59,35.29,0,0,100,100,50,50,50,0,0,1,0,5,3,0,0,0,0,0,0,0,1,9,1,10,0.9,6,0.833333333,79,18 -1011,Infirmary,Delay,Role-assignment,Baseline,1,07:30pm,2,0,0.4,"The two ladies dancing, the ""swamp"" area with the fog and the green light and all the hands coming out over the surface, the narrow tunnels and the constant banging, the spinning tunnel, having a hard time seeing because of the glasses, very narrow passages and people hiding in the corners",1,99,51.75,83.69,20.23,0,0,0,0,3.92,1.96,1.96,0,1.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.92,3.92,0,1.96,0,0,0,1.96,0,0,1.96,0,0,0,0,0,0,0,0,1.96,0,7.84,31.37,0,5.88,15.69,7.84,1.96,1.96,0,9.8,40.82,58.37,33.16,30.94,2,2,4,5,1,1,81.82,100,100,50,0,0,100,8.33,100,100,0,0,0,100,0,0,1,0,5,0,0,1,0,3,0,0,1,0,6,5,11,0.545454545,6,0.833333333,51,19 -1011,Asylum,Immediate,Role-assignment,Baseline,1,07:30pm,1,0,0.75,"The box that looked like flesh, the lady next to the fire, the man swinging the crowbar, the man swinging the chainsaw, the man with the wrench, the cut trees in the outdoor area, the man snarling ",1,99,96.25,55.76,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.51,2.7,0,2.7,0,0,0,13.51,0,0,2.7,10.81,0,0,0,0,0,0,0,0,0,2.7,21.62,0,5.41,13.51,2.7,0,0,0,2.7,NA,-35.12,-58.26,NA,2,1,1,1,2,1,0,100,71.43,71.43,71.43,100,0,0,0,0,50,50,50,50,50,3,1,0,4,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.5,37,19 -1011,Asylum,Delay,Role-assignment,Baseline,1,07:30pm,1,1,0,"The man with the typewriter, the man speaking on the phone, the woman in the bedroom, the man at the dentist chair",1,99,99,1,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.27,9.09,0,0,0,0,9.09,18.18,0,0,4.55,13.64,0,0,0,0,0,0,0,0,0,0,4.55,0,0,4.55,0,0,0,0,0,NA,79.29,NA,NA,1,1,1,3,1,1,100,100,0,0,0,50,50,50,50,50,50,50,50,50,50,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,4,1,4,1,22,19 -1011,DevilsDen,Delay,Role-assignment,Test,1,07:30pm,3,0,0.6,"The man with the chainsaw, the downed trees, the long hallway at the end, the woman by the oven, the man overhead above the door",1,99,94.01,35.01,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,12,0,0,4,8,0,0,0,0,0,0,0,0,0,4,12,0,0,12,0,0,0,0,4,NA,47.82,NA,NA,1,1,1,2,1,1,100,0,100,100,0,50,50,50,50,50,50,50,50,50,50,0,1,0,4,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.8,25,19 -1011,GhostlyGrounds,Immediate,Role-assignment,Share,1,07:30pm,4,0,0.8,"The swinging flesh models, the man screaming behind he bars, the man chasing you in the strobe light section, the rattling box, the man at the control desk, the rising and falling animatronic, the twitching back and forth animatronic, the ominous blue tube",1,99,96.76,53.52,3.38,2.33,0,0,2.33,2.33,0,2.33,0,2.33,0,0,0,0,0,2.33,0,2.33,2.33,0,2.33,2.33,0,0,0,11.63,0,0,0,0,0,0,11.63,0,0,0,9.3,0,0,0,0,0,0,0,0,0,4.65,25.58,0,9.3,11.63,4.65,2.33,0,0,4.65,NA,48.51,-18.23,NA,3,5,1,5,3,1,65.22,65.22,100,39.13,0,44.44,44.44,0,50,100,50,50,50,50,50,1,1,0,7,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.777777778,43,19 -1011,GhostlyGrounds,Delay,Role-assignment,Share,1,07:30pm,4,1,0.8,"The shaking box, the bus, the wax figures and the one actor on the bus, the moving animatronics, the room with the strobe lights and the actor who I had a hard time seeing, the hanging meat props, the control panel, the weird blue tube, the moving floor",1,99,64.67,26.04,20.23,2.08,0,0,2.08,8.33,4.17,4.17,2.08,2.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.25,0,0,0,0,0,0,6.25,0,0,0,0,0,0,0,0,0,0,0,0,2.08,2.08,18.75,0,4.17,6.25,6.25,0,2.08,0,4.16,NA,71.68,6.9,NA,1,3,1,5,2,1,100,100,43.75,62.5,0,25,0,100,0,0,50,50,50,50,50,0,3,0,8,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.727272727,48,19 -1012,Infirmary,Delay,Role-assignment,Baseline,1,07:30pm,3,0,0.2,I actually think I remember nothing from this section. Except for the 3d glasses and the one room with neon painted spiders. I feel like there was also a section with mirrors and a moving floor however I am unsure. ,1,54.7,1,99,20.23,0,0,0,0,25,7.5,17.5,7.5,0,0,2.5,2.5,5,2.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,17.5,0,2.5,12.5,0,0,2.5,0,5,-39.1,-14.76,-48.83,-53.71,2,1,1,1,2,2,0,100,0,33.33,0,100,0,0,50,75,100,0,0,0,0,1,2,0,0,0,0,0,0,1,0,0,0,2,3,3,6,0.5,3,0,40,21 -1012,Asylum,Immediate,Role-assignment,Baseline,1,07:30pm,2,0,0.25,there were multiple rooms filled with haunted move sets the actors used loud noises and lunging to scare the participants. I remember in particular a detective but not much else. it was one of the scarier attractions of the night. There was also someone with a chainsaw and that felt very real. ,1,70.09,20.31,97.38,1,0,0,0,0,17.31,0,17.31,3.85,1.92,0,1.92,1.92,7.69,1.92,7.69,0,7.69,3.85,0,3.85,3.85,0,0,0,7.69,0,0,0,0,0,0,7.69,0,0,0,0,0,0,0,0,1.92,0,0,0,0,3.85,19.23,0,3.85,9.62,0,3.85,1.92,1.92,3.85,1.84,-13.44,13.69,5.26,4,3,3,1,1,1,0,0,8.33,100,8.33,0,0,100,5.71,100,0,45.45,100,0,100,1,1,0,2,1,0,0,0,1,1,0,0,1,5,3,8,0.625,4,0.5,52,21 -1012,Asylum,Delay,Role-assignment,Baseline,1,07:30pm,2,1,0.5,"During this section, it is way harder to remember stuff without being prompted. In the next section when I am given the names of events that happen I realize that I remember those things. Anyways, I do not remember much from the Asylum section except for the detective and the lady in red. I feel like somebody was also making loud noises to startle people using the thing that is used to indicate the start of a scene. ",1,68.71,11.43,97.66,8.44,0,0,0,0,17.72,0,17.72,6.33,5.06,0,1.27,0,3.8,3.8,2.53,0,1.27,1.27,0,0,0,0,0,0,5.06,1.27,0,1.27,0,0,0,5.06,0,0,1.27,0,0,0,1.27,0,0,0,0,0,0,6.33,13.92,1.27,0,7.59,1.27,2.53,1.27,1.27,6.33,54.28,55.73,30.92,76.18,5,2,2,2,5,5,90,0,90,30,100,47.37,100,73.68,47.37,0,50,100,100,100,0,1,0,0,2,0,0,0,0,0,0,1,0,3,3,4,7,0.428571429,3,0.666666667,79,21 -1012,DevilsDen,Immediate,Role-assignment,Test,1,07:30pm,4,0,0.6,I remember there being a lot of tools being carried by the actors. I remember one of them was wearing a uniform with the name Cameron on it. I remember being a lot of machines with dismembered limbs. I also remember there was someone waiting up top that attacked from above and made a loud noise. bleep bloop. ,1,84,40.06,92,1.05,1.72,0,0,1.72,10.34,0,10.34,6.9,1.72,0,1.72,0,0,6.9,3.45,0,3.45,0,0,0,0,0,0,0,8.62,1.72,0,0,1.72,0,0,6.9,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72,13.79,0,1.72,8.62,0,3.45,0,0,1.72,34.08,62.07,0.16,40.01,1,4,4,4,5,5,100,100,100,0,75,55.56,25,25,100,0,45.83,45.83,45.83,100,0,1,0,0,8,0,0,0,0,0,0,0,0,1,9,1,10,0.9,9,0.888888889,58,21 -1012,DevilsDen,Delay,Role-assignment,Test,1,07:30pm,4,1,0.6,"I remember being scared to go around corners, and I remember very vividly the section where the guy was standing up top and dropped the gate down. I also remember the part outside where there was a guy with a chainsaw. I also remember waiting in line and there was a big guy with a beard and a hammer who was yelling at every one. I also remember that there was a section with machines with body parts in them. I also remember someone lunging towards me with a crowbar. I was very concentrated in making sure I wouldnt get scared so I do not remember everything that happened. ",1,33.93,6.76,99,5.27,0,0,0,0,14.68,1.83,12.84,7.34,0,0.92,0.92,0,2.75,6.42,1.83,0,1.83,1.83,0,1.83,1.83,0,0,0,6.42,0.92,0,0,0,0,0.92,5.5,0,0,0,2.75,0,0,0.92,0,0,0,0,0,0,2.75,23.85,1.83,2.75,18.35,0.92,0.92,0,0.92,2.75,16.08,30.6,13.82,3.81,2,5,2,5,1,3,59.22,100,79.61,79.61,0,0,22.11,0,44.21,100,50,100,0,100,78.57,3,3,0,3,2,0,0,0,0,0,0,0,2,11,2,13,0.846153846,9,0.333333333,109,21 -1012,GhostlyGrounds,Delay,Role-assignment,Share,1,07:30pm,5,0,0.8,I remember walking in on the bus. I also remember walking through the section with strobe lights and bodies hanging from the ceiling. I also remember there was a section that was sort of cage like and there was someone inside but they could also get out and I didnt think that they could so when they jumped outside of the cage I was scared. I remember there was an employee following my group as we walked out and I kept turning around to make sure that they didnt run up on me from behind. ,1,25.46,14.81,99,9.95,1.05,1.05,0,0,14.74,0,14.74,5.26,0,2.11,3.16,0,3.16,4.21,1.05,0,1.05,1.05,0,1.05,1.05,0,0,0,8.42,0,0,0,0,0,0,8.42,0,0,0,0,0,0,1.05,0,0,0,0,0,0,4.21,24.21,2.11,6.32,14.74,1.05,0,0,1.05,4.21,38.43,75.11,46.72,-6.53,5,3,1,3,1,4,80,40,0,60,100,0,36.36,100,27.27,18.18,100,50,100,0,0,5,3,0,2,2,0,0,0,0,0,0,0,0,12,0,12,1,10,0.2,95,21 -1013,Infirmary,Immediate,Role-assignment,Baseline,1,07:30pm,2,0,0.6,We had to wear these distortion goggles. Things were in neon colors. We has to walk though a blacked out tunnel than spun with neon paint. There was a scare actor wearing a neon afro. There was a big neon green pipe. The glasses we had to wear were white with black lettering on the side that said Halloween Nights. There was only two scare actors in that section. ,1,72.44,85.5,55.19,1.92,4.35,4.35,0,0,2.9,0,2.9,0,0,0,0,0,2.9,0,2.9,0,2.9,2.9,0,2.9,2.9,0,0,0,8.7,1.45,0,0,0,0,1.45,7.25,0,0,0,0,8.7,0,0,0,0,0,0,0,0,2.9,20.29,0,2.9,11.59,5.8,0,0,8.7,2.9,-10.44,-7.36,-54.9,30.94,2,1,2,5,3,1,23.53,100,49.02,100,0,100,20,0,20,67.69,0,100,0,0,0,1,1,0,10,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.833333333,69,19 -1013,Infirmary,Delay,Role-assignment,Baseline,1,07:30pm,2,1,0.4,"This was the first section we went through. We were given white glasses that distorted our vision. The white glasses said Halloween Nights in black on the side. When we entered, we were met with an array of neon lights. I remember upon entrance to the first walkway, to the right, there was a window/mirror where I saw a scare actor in a colored afro scaring one of the other visitors and it was met with her scream. As we progressed, the walls were covered in neon colors and psychedelic patterns. It is also important to note that at the beginning of this section, there were two girls in red, white, and black outfits dancing on an elevated platform. Anyways, after the first walkway, we entered a tunnel that was blacked out and spinning with neon dots scattered throughout it. After this, there was one more walkway until it was over and I remember it being narrow. It was similar to the first walkway where the walls were bright and psychedelic. Right before we left, on the left near the entrance of the spinning tunnel that was next to where we exit, there was a large neon green pipe coming from the ground. I remember this being kinda disorienting but not very scary. Once we left, we walked past those dancing girls again and handed our glasses back to the guy working. More specifically, we put them in a black bucket. The person monitoring the collection of the glasses was in a dark suit with a hat and white makeup that made his face look emaciated. ",1,76.3,87.67,87.08,25.04,5.24,4.87,0.37,0,3.37,0,3.37,1.12,0.37,0,0.37,0,1.5,1.12,2.62,1.5,1.12,1.12,0,1.12,1.12,0,0,0,9.74,1.87,0,0,0,0,0.37,7.87,0,0,1.12,0.75,0,0,0.37,0,0,0.37,0,0,0,1.87,23.22,0.37,3.75,13.11,6.37,0.37,0,0.74,1.87,55.51,68.4,67.06,31.08,1,3,4,3,1,1,100,27.89,0,73.47,0,0,69.13,100,53.04,6.09,0,0,0.61,100,0.61,10,2,0,23,1,0,0,0,0,0,1,0,1,36,2,38,0.947368421,35,0.657142857,267,19 -1013,Asylum,Delay,Role-assignment,Baseline,1,07:30pm,1,0,0.75,"The Asylum section of the tour was when we had to walk through a series of scenes. One of the first scenes was a woman in a red dress by a bed. I remember flashing lights and dark rooms. I want to say that there were hanging bodies that were dangling by chains. I remember in one of the later rooms, there was a big generatorlooking machine. It was not really scary, just more dark and walking through various scenes. I also think there was a man in a white lab coat. I remember it feeling short in duration, like no more than 3 minutes and it was not that scary. ",1,71.85,9.23,92.08,5.5,0.89,0.89,0,0,11.61,0.89,9.82,4.46,0,0.89,1.79,1.79,3.57,2.68,1.79,0,1.79,1.79,0,1.79,1.79,0,0,0,3.57,0.89,0,0,0,0,0.89,2.68,0,0,0.89,0.89,1.79,0.89,0.89,0,0,0,0,0,0,3.57,17.86,0,1.79,9.82,5.36,0,0.89,3.57,3.57,51.23,93.13,56.37,4.2,1,4,5,5,1,1,100,56.58,45.39,30.26,0,0,30.99,35.21,100,67.61,0,31.88,33.33,66.67,100,2,0,0,7,1,0,0,0,3,0,0,1,0,10,4,14,0.714285714,9,0.777777778,112,19 -1013,DevilsDen,Delay,Role-assignment,Test,1,07:30pm,4,0,0.4,"I remember Devil's Den being the scariest. I do not really remember the first half of the tour, but I want to say that we walked around this corner where I saw a painting that looked like someone screaming, but painted in what was supposed to be made to look like blood. I want to say we also had to walk up and down stairs toward the end. I also want to say that right before this, we had to walk through a forrest of cells with one of the first cells on the right being a fake prisoner coming out of a chamber thing. The next one on the left was a skeleton looking man in a suit on the ground with his torso all ripped apart. The last cell was a scare actor. It was on the left side. He was dressed in all black with a purple cape and he would walk around the cell making noises and screams. As we were walking around, he would reach out his hand where he had a glove on with sharp claws/nails. I remember that the woman before us was stopped because he reached his hand right in front of her face. ",1,84,71.39,40.17,2.95,2.96,2.46,0,0.49,10.34,0.99,9.36,1.48,1.48,3.45,1.48,0.99,1.97,1.48,2.46,0,2.46,0.99,0,0.99,0.99,0,0,0,10.84,1.97,0,0,0,0.49,1.48,8.87,0,0,0.99,4.43,1.97,1.48,0,0,0,0,0,0,0,3.94,17.73,0.49,3.94,10.84,2.96,1.48,0,3.45,3.94,-35.82,-26.46,-28.96,-52.03,3,5,1,1,3,3,0,46.15,100,25,17.12,97.01,82.09,0,69.4,100,100,75,0,0,51.25,7,4,0,13,1,0,0,0,0,0,0,0,1,25,1,26,0.961538462,24,0.541666667,203,19 -1013,GhostlyGrounds,Immediate,Role-assignment,Share,1,07:30pm,5,0,0.8,There was a guy with a chain saw. We walked past dangling bodies. There was a guy in a cell with long nail like things on his hands. We had to walk through this forest type of thing that had two bodies handing upon exit and a person below on the right hand side in a cape. We had to turn a corner with this strange painting depicting an abborition screaming. ,1,97.09,96.91,41.26,20.23,4.23,4.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.86,0,0,0,0,0,0,9.86,0,0,0,4.23,5.63,0,0,0,0,0,0,0,1.41,5.63,19.72,0,4.23,12.68,1.41,1.41,0,5.63,7.04,NA,-17.69,-21.65,NA,4,3,1,1,4,1,0,52.38,4.76,100,28.57,91.67,50,100,0,50,50,50,50,50,50,1,1,0,7,1,0,0,0,0,0,0,0,0,10,0,10,1,9,0.777777778,71,19 -1013,GhostlyGrounds,Delay,Role-assignment,Share,1,07:30pm,5,1,0.8,"I remember Ghostly Grounds being scary. I want to say that is the one where we had to enter through a bus. There was a worker monitoring our enterance and she was wearing a black cape with red underneath. The bus was short but it felt long. There was a fast flashing light that would completely blackout the bus every other second. There was mannequins dressed in scary costumes scattered on the bus seats meant to disguise scare actors that would jump out at you when you passed them. After leaving the bus, we entered the building where the next thing I remember is a blacked out hallway with people coming out and scaring us. They would blend in with dark corners. I also remember that there was a moving floorway at one point that we were unprepared for. In order to leave this part of the tour, we had to walk down one of the cellblocks where it was foggy and there were scare actors following us and making weird noises and jumping out at us. ",1,62.1,91.52,85.15,1.11,5.68,4.55,0,1.14,9.66,1.7,7.95,2.84,0.57,2.27,0,0.57,1.7,1.7,3.41,0,3.41,2.84,0,2.84,2.84,0,0,0,9.66,0.57,0,0,0,0,0.57,9.09,0,0,0.57,0,2.27,0.57,0,0,0,0,0,0,0.57,4.55,21.02,0,6.25,11.36,2.84,0.57,0.57,2.84,5.12,13.73,15.66,-51.5,77.03,3,1,2,2,2,5,38.89,0,100,100,50,100,0,0,38.3,76.6,48.61,100,100,100,0,4,2,1,11,2,3,0,0,2,0,1,0,0,20,6,26,0.769230769,18,0.611111111,176,19 -1014,Infirmary,Immediate,Role-assignment,Baseline,1,07:30pm,3,0,0.4,"I remember bright colors, wearing 3D glasses, jump scares, walking through shaking tunnels, neon lights, dancers, music, upbeat, not so scary, narrow hallways, painted neon faces +1010,Infirmary,Delay,Goal-assigned,Baseline,1,08:30pm,2,0,0.2,"Again I dont remember which section Infirmary was. I am going to guess that it is the one where we walked down a hallway that had strobes and dark chambers. This section was not very scary, but it was funny since my friend was attacked by a monster. He then jumped and yelled. While this was not scary it was a highlight of the time spent in the place. I think that the walk down the hallway was funny not really scary. ",1,14.55,1.87,98.7,3.01,2.44,1.22,0,1.22,14.63,2.44,12.2,3.66,1.22,0,3.66,2.44,6.1,1.22,7.32,2.44,4.88,6.1,2.44,3.66,3.66,0,0,0,4.88,2.44,0,0,1.22,0,1.22,2.44,0,0,0,1.22,0,0,0,0,0,0,0,0,0,6.1,14.63,0,3.66,8.54,1.22,1.22,0,0,6.1,-20.64,-9.34,-24.96,-27.62,5,1,3,1,5,2,0,0,35.85,35.85,100,100,57.33,68,45.33,0,94.12,0,100,0,50,3,0,0,0,4,0,1,0,1,2,0,0,1,7,5,12,0.583333333,3,0,82,18 +1010,Asylum,Immediate,Goal-assigned,Baseline,1,08:30pm,1,0,0.5,it was a Devil's Den where they had arching electricity behind glass. There was a man with a chain saw that tried to scare us. Once we entered there was a man with a fake brick that scared me. I there was high pressure air that scared me. they had a large box that we walked through and it shook violently. There was also moving plate at the bottom of our feet making it challenging to walk. There was a man that was on a railing that was just staring off into the distance. ,1,39.08,91.15,71.66,1,6.38,4.26,2.13,0,2.13,0,2.13,0,1.06,0,0,0,0,0,5.32,0,5.32,4.26,0,4.26,3.19,1.06,0,0,10.64,1.06,0,0,0,1.06,0,9.57,0,0,0,3.19,0,0,0,0,0,0,0,0,1.06,1.06,18.09,0,5.32,11.7,1.06,0,0,0,2.12,37.5,70.51,11.05,30.94,5,3,4,3,2,1,69.23,46.15,0,46.15,100,25,0,100,25,34.72,0,0,0,100,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,18 +1010,Asylum,Delay,Goal-assigned,Baseline,1,08:30pm,1,1,0.5,I dont remember that Asylum was. I am going to guess that it was the one with the women that were dancing on large platforms. We were also given goggles that made us see 3D objects with different light refractions that we are not used to. This made me feel woozy and disoriented. I this was the least scary part of the haunted house since I just felt off the whole time and couldnt loose myself to the moment.,1,26.1,11.66,54.55,2.86,3.75,3.75,0,0,17.5,2.5,15,5,5,1.25,1.25,0,3.75,1.25,2.5,0,2.5,1.25,0,1.25,1.25,0,0,0,6.25,1.25,0,0,0,0,0,5,0,0,1.25,0,0,0,1.25,0,0,2.5,0,0,0,6.25,7.5,0,1.25,0,2.5,0,3.75,3.75,6.25,-33.65,-6.85,-52.61,-41.51,5,1,1,1,4,3,0,33.33,0,33.33,100,100,25,25,0,0,100,50,0,100,100,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,18 +1010,DevilsDen,Immediate,Goal-assigned,Test,1,08:30pm,3,0,0.4,"The Devil's Den had a man in the beginning that was trying to scare us with a chain saw. Then once we walked in there was a man with a fake brick that jumped at me. once we entered the shop there was arching electricity and high pressure air that was used to scare us. There was also noises of arching and rattling within machines. Many machines were broken and looked like they were about to fall apart. They also had sub panel that was made to look like it was falling part with was scary,",1,49.68,87.7,75.23,1,5.21,4.17,1.04,0,5.21,0,5.21,0,2.08,1.04,0,0,2.08,0,6.25,0,6.25,3.13,0,3.13,3.13,0,0,0,9.38,1.04,0,0,0,1.04,0,8.33,0,0,0,2.08,0,0,0,0,0,0,0,0,0,4.17,17.71,1.04,5.21,10.42,3.13,1.04,0,0,4.17,32.62,80.2,24.34,-6.67,1,3,3,3,1,1,100,64.52,0,43.01,0,0,29.41,100,5.88,76.47,0,0,100,0,100,4,1,0,11,1,0,0,0,0,0,0,0,0,17,0,17,1,16,0.6875,96,18 +1010,DevilsDen,Delay,Goal-assigned,Test,1,08:30pm,3,1,0.8,When we entered the Machine shop there was a man with a brick who scared me. There was arcing electricity that scared me since I in the past I almost died from this. There was also high pressure air that was shot at us to simulate gunshots. There was a large box that we walked through that shook violently. There were many more machines that looked like they were falling apart or were about to explode. This made the place have an eerie feel to the section. ,1,31.31,60.57,97.26,1,3.45,3.45,0,0,6.9,0,6.9,1.15,2.3,0,2.3,0,2.3,0,5.75,0,5.75,4.6,0,4.6,3.45,1.15,0,0,6.9,0,0,0,0,0,0,6.9,0,0,0,1.15,0,0,0,0,0,0,0,0,0,5.75,19.54,0,4.6,12.64,1.15,1.15,1.15,0,5.75,19.64,49.65,-0.31,9.58,5,2,2,4,5,1,55.56,55.56,40,0,100,79.01,100,44.44,66.67,0,0,100,0,0,52.94,3,1,0,7,1,0,0,0,0,0,1,0,0,12,1,13,0.923076923,11,0.636363636,87,18 +1010,GhostlyGrounds,Delay,Goal-assigned,Share,1,08:30pm,2,0,1,I dont remember which section the Ghostly Grounds was. I will guess that it is the section that had the school bus. This was scary since we walked through a bus that had dead bodys that looked like they were going to stand up at any second. I thought we were walking through the show the walking dead. It made me feel like zombies are real. I had to remind myself that this is fake and I should not worry.,1,19.62,8.15,90.41,1,2.53,2.53,0,0,16.46,0,16.46,5.06,2.53,1.27,2.53,1.27,2.53,2.53,3.8,0,3.8,2.53,0,2.53,2.53,0,0,0,5.06,1.27,0,0,0,1.27,0,3.8,0,0,0,0,2.53,0,0,0,0,0,0,0,0,5.06,12.66,0,3.8,5.06,2.53,0,1.27,2.53,5.06,-16.32,2.54,-43.06,-8.43,2,5,1,5,3,5,31.82,100,65.91,65.91,0,70.59,35.29,0,0,100,100,50,50,50,0,0,1,0,5,3,0,0,0,0,0,0,0,1,9,1,10,0.9,6,0.833333333,79,18 +1011,Infirmary,Delay,Goal-assigned,Baseline,1,07:30pm,2,0,0.4,"The two ladies dancing, the ""swamp"" area with the fog and the green light and all the hands coming out over the surface, the narrow tunnels and the constant banging, the spinning tunnel, having a hard time seeing because of the glasses, very narrow passages and people hiding in the corners",1,99,51.75,83.69,20.23,0,0,0,0,3.92,1.96,1.96,0,1.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.92,3.92,0,1.96,0,0,0,1.96,0,0,1.96,0,0,0,0,0,0,0,0,1.96,0,7.84,31.37,0,5.88,15.69,7.84,1.96,1.96,0,9.8,40.82,58.37,33.16,30.94,2,2,4,5,1,1,81.82,100,100,50,0,0,100,8.33,100,100,0,0,0,100,0,0,1,0,5,0,0,1,0,3,0,0,1,0,6,5,11,0.545454545,6,0.833333333,51,19 +1011,Asylum,Immediate,Goal-assigned,Baseline,1,07:30pm,1,0,0.75,"The box that looked like flesh, the lady next to the fire, the man swinging the crowbar, the man swinging the chainsaw, the man with the wrench, the cut trees in the outdoor area, the man snarling ",1,99,96.25,55.76,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.51,2.7,0,2.7,0,0,0,13.51,0,0,2.7,10.81,0,0,0,0,0,0,0,0,0,2.7,21.62,0,5.41,13.51,2.7,0,0,0,2.7,NA,-35.12,-58.26,NA,2,1,1,1,2,1,0,100,71.43,71.43,71.43,100,0,0,0,0,50,50,50,50,50,3,1,0,4,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.5,37,19 +1011,Asylum,Delay,Goal-assigned,Baseline,1,07:30pm,1,1,0,"The man with the typewriter, the man speaking on the phone, the woman in the bedroom, the man at the dentist chair",1,99,99,1,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.27,9.09,0,0,0,0,9.09,18.18,0,0,4.55,13.64,0,0,0,0,0,0,0,0,0,0,4.55,0,0,4.55,0,0,0,0,0,NA,79.29,NA,NA,1,1,1,3,1,1,100,100,0,0,0,50,50,50,50,50,50,50,50,50,50,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,4,1,4,1,22,19 +1011,DevilsDen,Delay,Goal-assigned,Test,1,07:30pm,3,0,0.6,"The man with the chainsaw, the downed trees, the long hallway at the end, the woman by the oven, the man overhead above the door",1,99,94.01,35.01,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,12,0,0,4,8,0,0,0,0,0,0,0,0,0,4,12,0,0,12,0,0,0,0,4,NA,47.82,NA,NA,1,1,1,2,1,1,100,0,100,100,0,50,50,50,50,50,50,50,50,50,50,0,1,0,4,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.8,25,19 +1011,GhostlyGrounds,Immediate,Goal-assigned,Share,1,07:30pm,4,0,0.8,"The swinging flesh models, the man screaming behind he bars, the man chasing you in the strobe light section, the rattling box, the man at the control desk, the rising and falling animatronic, the twitching back and forth animatronic, the ominous blue tube",1,99,96.76,53.52,3.38,2.33,0,0,2.33,2.33,0,2.33,0,2.33,0,0,0,0,0,2.33,0,2.33,2.33,0,2.33,2.33,0,0,0,11.63,0,0,0,0,0,0,11.63,0,0,0,9.3,0,0,0,0,0,0,0,0,0,4.65,25.58,0,9.3,11.63,4.65,2.33,0,0,4.65,NA,48.51,-18.23,NA,3,5,1,5,3,1,65.22,65.22,100,39.13,0,44.44,44.44,0,50,100,50,50,50,50,50,1,1,0,7,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.777777778,43,19 +1011,GhostlyGrounds,Delay,Goal-assigned,Share,1,07:30pm,4,1,0.8,"The shaking box, the bus, the wax figures and the one actor on the bus, the moving animatronics, the room with the strobe lights and the actor who I had a hard time seeing, the hanging meat props, the control panel, the weird blue tube, the moving floor",1,99,64.67,26.04,20.23,2.08,0,0,2.08,8.33,4.17,4.17,2.08,2.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.25,0,0,0,0,0,0,6.25,0,0,0,0,0,0,0,0,0,0,0,0,2.08,2.08,18.75,0,4.17,6.25,6.25,0,2.08,0,4.16,NA,71.68,6.9,NA,1,3,1,5,2,1,100,100,43.75,62.5,0,25,0,100,0,0,50,50,50,50,50,0,3,0,8,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.727272727,48,19 +1012,Infirmary,Delay,Goal-assigned,Baseline,1,07:30pm,3,0,0.2,I actually think I remember nothing from this section. Except for the 3d glasses and the one room with neon painted spiders. I feel like there was also a section with mirrors and a moving floor however I am unsure. ,1,54.7,1,99,20.23,0,0,0,0,25,7.5,17.5,7.5,0,0,2.5,2.5,5,2.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,17.5,0,2.5,12.5,0,0,2.5,0,5,-39.1,-14.76,-48.83,-53.71,2,1,1,1,2,2,0,100,0,33.33,0,100,0,0,50,75,100,0,0,0,0,1,2,0,0,0,0,0,0,1,0,0,0,2,3,3,6,0.5,3,0,40,21 +1012,Asylum,Immediate,Goal-assigned,Baseline,1,07:30pm,2,0,0.25,there were multiple rooms filled with haunted move sets the actors used loud noises and lunging to scare the participants. I remember in particular a detective but not much else. it was one of the scarier attractions of the night. There was also someone with a chainsaw and that felt very real. ,1,70.09,20.31,97.38,1,0,0,0,0,17.31,0,17.31,3.85,1.92,0,1.92,1.92,7.69,1.92,7.69,0,7.69,3.85,0,3.85,3.85,0,0,0,7.69,0,0,0,0,0,0,7.69,0,0,0,0,0,0,0,0,1.92,0,0,0,0,3.85,19.23,0,3.85,9.62,0,3.85,1.92,1.92,3.85,1.84,-13.44,13.69,5.26,4,3,3,1,1,1,0,0,8.33,100,8.33,0,0,100,5.71,100,0,45.45,100,0,100,1,1,0,2,1,0,0,0,1,1,0,0,1,5,3,8,0.625,4,0.5,52,21 +1012,Asylum,Delay,Goal-assigned,Baseline,1,07:30pm,2,1,0.5,"During this section, it is way harder to remember stuff without being prompted. In the next section when I am given the names of events that happen I realize that I remember those things. Anyways, I do not remember much from the Asylum section except for the detective and the lady in red. I feel like somebody was also making loud noises to startle people using the thing that is used to indicate the start of a scene. ",1,68.71,11.43,97.66,8.44,0,0,0,0,17.72,0,17.72,6.33,5.06,0,1.27,0,3.8,3.8,2.53,0,1.27,1.27,0,0,0,0,0,0,5.06,1.27,0,1.27,0,0,0,5.06,0,0,1.27,0,0,0,1.27,0,0,0,0,0,0,6.33,13.92,1.27,0,7.59,1.27,2.53,1.27,1.27,6.33,54.28,55.73,30.92,76.18,5,2,2,2,5,5,90,0,90,30,100,47.37,100,73.68,47.37,0,50,100,100,100,0,1,0,0,2,0,0,0,0,0,0,1,0,3,3,4,7,0.428571429,3,0.666666667,79,21 +1012,DevilsDen,Immediate,Goal-assigned,Test,1,07:30pm,4,0,0.6,I remember there being a lot of tools being carried by the actors. I remember one of them was wearing a uniform with the name Cameron on it. I remember being a lot of machines with dismembered limbs. I also remember there was someone waiting up top that attacked from above and made a loud noise. bleep bloop. ,1,84,40.06,92,1.05,1.72,0,0,1.72,10.34,0,10.34,6.9,1.72,0,1.72,0,0,6.9,3.45,0,3.45,0,0,0,0,0,0,0,8.62,1.72,0,0,1.72,0,0,6.9,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72,13.79,0,1.72,8.62,0,3.45,0,0,1.72,34.08,62.07,0.16,40.01,1,4,4,4,5,5,100,100,100,0,75,55.56,25,25,100,0,45.83,45.83,45.83,100,0,1,0,0,8,0,0,0,0,0,0,0,0,1,9,1,10,0.9,9,0.888888889,58,21 +1012,DevilsDen,Delay,Goal-assigned,Test,1,07:30pm,4,1,0.6,"I remember being scared to go around corners, and I remember very vividly the section where the guy was standing up top and dropped the gate down. I also remember the part outside where there was a guy with a chainsaw. I also remember waiting in line and there was a big guy with a beard and a hammer who was yelling at every one. I also remember that there was a section with machines with body parts in them. I also remember someone lunging towards me with a crowbar. I was very concentrated in making sure I wouldnt get scared so I do not remember everything that happened. ",1,33.93,6.76,99,5.27,0,0,0,0,14.68,1.83,12.84,7.34,0,0.92,0.92,0,2.75,6.42,1.83,0,1.83,1.83,0,1.83,1.83,0,0,0,6.42,0.92,0,0,0,0,0.92,5.5,0,0,0,2.75,0,0,0.92,0,0,0,0,0,0,2.75,23.85,1.83,2.75,18.35,0.92,0.92,0,0.92,2.75,16.08,30.6,13.82,3.81,2,5,2,5,1,3,59.22,100,79.61,79.61,0,0,22.11,0,44.21,100,50,100,0,100,78.57,3,3,0,3,2,0,0,0,0,0,0,0,2,11,2,13,0.846153846,9,0.333333333,109,21 +1012,GhostlyGrounds,Delay,Goal-assigned,Share,1,07:30pm,5,0,0.8,I remember walking in on the bus. I also remember walking through the section with strobe lights and bodies hanging from the ceiling. I also remember there was a section that was sort of cage like and there was someone inside but they could also get out and I didnt think that they could so when they jumped outside of the cage I was scared. I remember there was an employee following my group as we walked out and I kept turning around to make sure that they didnt run up on me from behind. ,1,25.46,14.81,99,9.95,1.05,1.05,0,0,14.74,0,14.74,5.26,0,2.11,3.16,0,3.16,4.21,1.05,0,1.05,1.05,0,1.05,1.05,0,0,0,8.42,0,0,0,0,0,0,8.42,0,0,0,0,0,0,1.05,0,0,0,0,0,0,4.21,24.21,2.11,6.32,14.74,1.05,0,0,1.05,4.21,38.43,75.11,46.72,-6.53,5,3,1,3,1,4,80,40,0,60,100,0,36.36,100,27.27,18.18,100,50,100,0,0,5,3,0,2,2,0,0,0,0,0,0,0,0,12,0,12,1,10,0.2,95,21 +1013,Infirmary,Immediate,Goal-assigned,Baseline,1,07:30pm,2,0,0.6,We had to wear these distortion goggles. Things were in neon colors. We has to walk though a blacked out tunnel than spun with neon paint. There was a scare actor wearing a neon afro. There was a big neon green pipe. The glasses we had to wear were white with black lettering on the side that said Halloween Nights. There was only two scare actors in that section. ,1,72.44,85.5,55.19,1.92,4.35,4.35,0,0,2.9,0,2.9,0,0,0,0,0,2.9,0,2.9,0,2.9,2.9,0,2.9,2.9,0,0,0,8.7,1.45,0,0,0,0,1.45,7.25,0,0,0,0,8.7,0,0,0,0,0,0,0,0,2.9,20.29,0,2.9,11.59,5.8,0,0,8.7,2.9,-10.44,-7.36,-54.9,30.94,2,1,2,5,3,1,23.53,100,49.02,100,0,100,20,0,20,67.69,0,100,0,0,0,1,1,0,10,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.833333333,69,19 +1013,Infirmary,Delay,Goal-assigned,Baseline,1,07:30pm,2,1,0.4,"This was the first section we went through. We were given white glasses that distorted our vision. The white glasses said Halloween Nights in black on the side. When we entered, we were met with an array of neon lights. I remember upon entrance to the first walkway, to the right, there was a window/mirror where I saw a scare actor in a colored afro scaring one of the other visitors and it was met with her scream. As we progressed, the walls were covered in neon colors and psychedelic patterns. It is also important to note that at the beginning of this section, there were two girls in red, white, and black outfits dancing on an elevated platform. Anyways, after the first walkway, we entered a tunnel that was blacked out and spinning with neon dots scattered throughout it. After this, there was one more walkway until it was over and I remember it being narrow. It was similar to the first walkway where the walls were bright and psychedelic. Right before we left, on the left near the entrance of the spinning tunnel that was next to where we exit, there was a large neon green pipe coming from the ground. I remember this being kinda disorienting but not very scary. Once we left, we walked past those dancing girls again and handed our glasses back to the guy working. More specifically, we put them in a black bucket. The person monitoring the collection of the glasses was in a dark suit with a hat and white makeup that made his face look emaciated. ",1,76.3,87.67,87.08,25.04,5.24,4.87,0.37,0,3.37,0,3.37,1.12,0.37,0,0.37,0,1.5,1.12,2.62,1.5,1.12,1.12,0,1.12,1.12,0,0,0,9.74,1.87,0,0,0,0,0.37,7.87,0,0,1.12,0.75,0,0,0.37,0,0,0.37,0,0,0,1.87,23.22,0.37,3.75,13.11,6.37,0.37,0,0.74,1.87,55.51,68.4,67.06,31.08,1,3,4,3,1,1,100,27.89,0,73.47,0,0,69.13,100,53.04,6.09,0,0,0.61,100,0.61,10,2,0,23,1,0,0,0,0,0,1,0,1,36,2,38,0.947368421,35,0.657142857,267,19 +1013,Asylum,Delay,Goal-assigned,Baseline,1,07:30pm,1,0,0.75,"The Asylum section of the tour was when we had to walk through a series of scenes. One of the first scenes was a woman in a red dress by a bed. I remember flashing lights and dark rooms. I want to say that there were hanging bodies that were dangling by chains. I remember in one of the later rooms, there was a big generatorlooking machine. It was not really scary, just more dark and walking through various scenes. I also think there was a man in a white lab coat. I remember it feeling short in duration, like no more than 3 minutes and it was not that scary. ",1,71.85,9.23,92.08,5.5,0.89,0.89,0,0,11.61,0.89,9.82,4.46,0,0.89,1.79,1.79,3.57,2.68,1.79,0,1.79,1.79,0,1.79,1.79,0,0,0,3.57,0.89,0,0,0,0,0.89,2.68,0,0,0.89,0.89,1.79,0.89,0.89,0,0,0,0,0,0,3.57,17.86,0,1.79,9.82,5.36,0,0.89,3.57,3.57,51.23,93.13,56.37,4.2,1,4,5,5,1,1,100,56.58,45.39,30.26,0,0,30.99,35.21,100,67.61,0,31.88,33.33,66.67,100,2,0,0,7,1,0,0,0,3,0,0,1,0,10,4,14,0.714285714,9,0.777777778,112,19 +1013,DevilsDen,Delay,Goal-assigned,Test,1,07:30pm,4,0,0.4,"I remember Devil's Den being the scariest. I do not really remember the first half of the tour, but I want to say that we walked around this corner where I saw a painting that looked like someone screaming, but painted in what was supposed to be made to look like blood. I want to say we also had to walk up and down stairs toward the end. I also want to say that right before this, we had to walk through a forrest of cells with one of the first cells on the right being a fake prisoner coming out of a chamber thing. The next one on the left was a skeleton looking man in a suit on the ground with his torso all ripped apart. The last cell was a scare actor. It was on the left side. He was dressed in all black with a purple cape and he would walk around the cell making noises and screams. As we were walking around, he would reach out his hand where he had a glove on with sharp claws/nails. I remember that the woman before us was stopped because he reached his hand right in front of her face. ",1,84,71.39,40.17,2.95,2.96,2.46,0,0.49,10.34,0.99,9.36,1.48,1.48,3.45,1.48,0.99,1.97,1.48,2.46,0,2.46,0.99,0,0.99,0.99,0,0,0,10.84,1.97,0,0,0,0.49,1.48,8.87,0,0,0.99,4.43,1.97,1.48,0,0,0,0,0,0,0,3.94,17.73,0.49,3.94,10.84,2.96,1.48,0,3.45,3.94,-35.82,-26.46,-28.96,-52.03,3,5,1,1,3,3,0,46.15,100,25,17.12,97.01,82.09,0,69.4,100,100,75,0,0,51.25,7,4,0,13,1,0,0,0,0,0,0,0,1,25,1,26,0.961538462,24,0.541666667,203,19 +1013,GhostlyGrounds,Immediate,Goal-assigned,Share,1,07:30pm,5,0,0.8,There was a guy with a chain saw. We walked past dangling bodies. There was a guy in a cell with long nail like things on his hands. We had to walk through this forest type of thing that had two bodies handing upon exit and a person below on the right hand side in a cape. We had to turn a corner with this strange painting depicting an abborition screaming. ,1,97.09,96.91,41.26,20.23,4.23,4.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.86,0,0,0,0,0,0,9.86,0,0,0,4.23,5.63,0,0,0,0,0,0,0,1.41,5.63,19.72,0,4.23,12.68,1.41,1.41,0,5.63,7.04,NA,-17.69,-21.65,NA,4,3,1,1,4,1,0,52.38,4.76,100,28.57,91.67,50,100,0,50,50,50,50,50,50,1,1,0,7,1,0,0,0,0,0,0,0,0,10,0,10,1,9,0.777777778,71,19 +1013,GhostlyGrounds,Delay,Goal-assigned,Share,1,07:30pm,5,1,0.8,"I remember Ghostly Grounds being scary. I want to say that is the one where we had to enter through a bus. There was a worker monitoring our enterance and she was wearing a black cape with red underneath. The bus was short but it felt long. There was a fast flashing light that would completely blackout the bus every other second. There was mannequins dressed in scary costumes scattered on the bus seats meant to disguise scare actors that would jump out at you when you passed them. After leaving the bus, we entered the building where the next thing I remember is a blacked out hallway with people coming out and scaring us. They would blend in with dark corners. I also remember that there was a moving floorway at one point that we were unprepared for. In order to leave this part of the tour, we had to walk down one of the cellblocks where it was foggy and there were scare actors following us and making weird noises and jumping out at us. ",1,62.1,91.52,85.15,1.11,5.68,4.55,0,1.14,9.66,1.7,7.95,2.84,0.57,2.27,0,0.57,1.7,1.7,3.41,0,3.41,2.84,0,2.84,2.84,0,0,0,9.66,0.57,0,0,0,0,0.57,9.09,0,0,0.57,0,2.27,0.57,0,0,0,0,0,0,0.57,4.55,21.02,0,6.25,11.36,2.84,0.57,0.57,2.84,5.12,13.73,15.66,-51.5,77.03,3,1,2,2,2,5,38.89,0,100,100,50,100,0,0,38.3,76.6,48.61,100,100,100,0,4,2,1,11,2,3,0,0,2,0,1,0,0,20,6,26,0.769230769,18,0.611111111,176,19 +1014,Infirmary,Immediate,Goal-assigned,Baseline,1,07:30pm,3,0,0.4,"I remember bright colors, wearing 3D glasses, jump scares, walking through shaking tunnels, neon lights, dancers, music, upbeat, not so scary, narrow hallways, painted neon faces ",1,64.84,7.93,81.58,20.23,0,0,0,0,7.69,0,7.69,3.85,0,0,0,0,3.85,3.85,15.38,7.69,7.69,11.54,3.85,7.69,7.69,0,0,0,3.85,0,0,0,0,0,0,3.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.92,0,7.69,3.85,11.54,3.85,0,0,0,-22.59,-11.67,-2.39,-53.71,2,4,1,1,2,2,0,100,0,0,0,41.67,0,0,100,0,100,0,0,0,0,2,2,0,6,1,0,0,0,0,0,0,0,0,11,0,11,1,10,0.6,26,19 -1014,Infirmary,Delay,Role-assignment,Baseline,1,07:30pm,3,1,0,"I remember bright neon lights, strobe lights, polka dots, a shaky tunnel, people dancing on the tables, an artist hiding in the corner and then pushing art canvas directly towards us, 3D glasses, narrow sides and walkways, jump scares after the first shaking tunnel, a spinning tunnel and almost lost balance ",1,93.97,63.27,83.69,4.72,1.96,1.96,0,0,3.92,0,3.92,1.96,0,0,1.96,0,0,1.96,5.88,1.96,3.92,1.96,0,1.96,1.96,0,0,0,5.88,1.96,0,0,0,0,0,3.92,0,0,0,0,0,0,0,0,0,0,0,1.96,0,1.96,23.53,0,9.8,5.88,7.84,0,0,0,3.92,-23.06,-22.68,7.22,-53.71,2,3,1,1,2,2,0,100,35.29,35.29,2.94,30.3,0,100,33.33,66.67,100,0,0,0,0,4,2,0,8,0,0,0,0,0,0,0,0,0,14,0,14,1,14,0.571428571,51,19 -1014,Asylum,Delay,Role-assignment,Baseline,1,07:30pm,1,0,0.25,"I remember polka dots and it was brighter than the first tour we went on. It Was not too scary and I cant remember too much from it other than we were crowded while walking and it was noisy, no one really scared me",1,1,1,98.07,1,4.55,4.55,0,0,22.73,4.55,18.18,4.55,0,2.27,0,2.27,11.36,4.55,11.36,0,11.36,4.55,0,4.55,4.55,0,0,0,4.55,0,0,0,0,0,0,4.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.36,0,4.55,2.27,2.27,2.27,0,0,0,21.06,31.32,52.22,-20.36,2,4,1,5,1,2,50,100,50,50,0,0,0,50,100,81.25,100,0,50,50,0,1,0,0,4,1,0,0,0,0,0,0,0,1,6,1,7,0.857142857,5,0.8,44,19 -1014,DevilsDen,Immediate,Role-assignment,Test,1,07:30pm,4,0,0.2,"I remember loud noises, jump scares, large machines, tooth electric chair, teeth filled out head, crates shattering, long tunnel, flashing lights, many people talking to themselves and screaming at us, and narrow hallways",1,78.71,74.59,71.27,1,3.03,3.03,0,0,3.03,0,3.03,3.03,0,0,0,0,0,3.03,6.06,0,6.06,3.03,0,3.03,3.03,0,0,0,9.09,3.03,0,0,0,0,3.03,6.06,0,0,0,0,0,0,0,0,3.03,0,0,0,0,9.09,30.3,0,3.03,12.12,6.06,9.09,0,3.03,9.09,-27.41,-16.34,-12.18,-53.71,4,4,1,1,2,2,0,85.71,0,100,100,42.86,0,0,100,100,100,0,0,0,0,2,1,0,8,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.727272727,33,19 -1014,DevilsDen,Delay,Role-assignment,Test,1,07:30pm,4,1,0.4,"I remember the long tunnel at the end of that specific ""house"" and people jumping out to scare us, and the loud noises, the major slam of the crate near the beginning, also the chainsaw being flashed in our faces when we walked in. I remember people jumping out as I walked through the halls. I cant remember if I saw the tooth coated head in this Devil's Den or that Was another house ",1,80.1,14.33,99,1,4.05,4.05,0,0,9.46,0,9.46,4.05,0,1.35,2.7,0,5.41,4.05,4.05,0,4.05,1.35,0,1.35,1.35,0,0,0,4.05,0,0,0,0,0,0,4.05,0,0,0,0,0,0,0,0,0,0,0,0,0,6.76,21.62,0,6.76,9.46,2.7,2.7,0,0,6.76,12.3,19.54,22.87,-5.52,2,3,1,5,2,2,38.24,100,38.24,38.24,0,25,0,100,75,83.93,100,0,50,100,0,6,1,0,2,0,0,0,0,0,0,0,0,2,9,2,11,0.818181818,9,0.222222222,74,19 -1014,GhostlyGrounds,Delay,Role-assignment,Share,1,07:30pm,5,0,0.6,"Walking into the bus, being scared by the man on the seat, dark bus, the series of stair ways to get to the next room, people scaring me from gated and non gated ""cells"", a dead body prosthetic laying on the ground. I also remember little windows with fire and limbs hanging. We walked on a shaky floor and felt I was going to fall. ",1,98.49,40.06,97.78,1.63,1.54,1.54,0,0,3.08,0,3.08,3.08,0,0,0,0,0,1.54,3.08,0,3.08,3.08,0,3.08,3.08,0,0,0,3.08,0,0,0,0,0,0,3.08,0,0,0,1.54,0,0,1.54,0,0,0,0,0,0,3.08,20,0,7.69,12.31,1.54,0,1.54,1.54,3.08,37.73,87.28,11.51,14.4,1,5,4,3,2,1,100,75,0,25,25,25,0,50,75,100,0,0,0,100,50,2,2,0,8,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.666666667,65,19 +1014,Infirmary,Delay,Goal-assigned,Baseline,1,07:30pm,3,1,0,"I remember bright neon lights, strobe lights, polka dots, a shaky tunnel, people dancing on the tables, an artist hiding in the corner and then pushing art canvas directly towards us, 3D glasses, narrow sides and walkways, jump scares after the first shaking tunnel, a spinning tunnel and almost lost balance ",1,93.97,63.27,83.69,4.72,1.96,1.96,0,0,3.92,0,3.92,1.96,0,0,1.96,0,0,1.96,5.88,1.96,3.92,1.96,0,1.96,1.96,0,0,0,5.88,1.96,0,0,0,0,0,3.92,0,0,0,0,0,0,0,0,0,0,0,1.96,0,1.96,23.53,0,9.8,5.88,7.84,0,0,0,3.92,-23.06,-22.68,7.22,-53.71,2,3,1,1,2,2,0,100,35.29,35.29,2.94,30.3,0,100,33.33,66.67,100,0,0,0,0,4,2,0,8,0,0,0,0,0,0,0,0,0,14,0,14,1,14,0.571428571,51,19 +1014,Asylum,Delay,Goal-assigned,Baseline,1,07:30pm,1,0,0.25,"I remember polka dots and it was brighter than the first tour we went on. It Was not too scary and I cant remember too much from it other than we were crowded while walking and it was noisy, no one really scared me",1,1,1,98.07,1,4.55,4.55,0,0,22.73,4.55,18.18,4.55,0,2.27,0,2.27,11.36,4.55,11.36,0,11.36,4.55,0,4.55,4.55,0,0,0,4.55,0,0,0,0,0,0,4.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.36,0,4.55,2.27,2.27,2.27,0,0,0,21.06,31.32,52.22,-20.36,2,4,1,5,1,2,50,100,50,50,0,0,0,50,100,81.25,100,0,50,50,0,1,0,0,4,1,0,0,0,0,0,0,0,1,6,1,7,0.857142857,5,0.8,44,19 +1014,DevilsDen,Immediate,Goal-assigned,Test,1,07:30pm,4,0,0.2,"I remember loud noises, jump scares, large machines, tooth electric chair, teeth filled out head, crates shattering, long tunnel, flashing lights, many people talking to themselves and screaming at us, and narrow hallways",1,78.71,74.59,71.27,1,3.03,3.03,0,0,3.03,0,3.03,3.03,0,0,0,0,0,3.03,6.06,0,6.06,3.03,0,3.03,3.03,0,0,0,9.09,3.03,0,0,0,0,3.03,6.06,0,0,0,0,0,0,0,0,3.03,0,0,0,0,9.09,30.3,0,3.03,12.12,6.06,9.09,0,3.03,9.09,-27.41,-16.34,-12.18,-53.71,4,4,1,1,2,2,0,85.71,0,100,100,42.86,0,0,100,100,100,0,0,0,0,2,1,0,8,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.727272727,33,19 +1014,DevilsDen,Delay,Goal-assigned,Test,1,07:30pm,4,1,0.4,"I remember the long tunnel at the end of that specific ""house"" and people jumping out to scare us, and the loud noises, the major slam of the crate near the beginning, also the chainsaw being flashed in our faces when we walked in. I remember people jumping out as I walked through the halls. I cant remember if I saw the tooth coated head in this Devil's Den or that Was another house ",1,80.1,14.33,99,1,4.05,4.05,0,0,9.46,0,9.46,4.05,0,1.35,2.7,0,5.41,4.05,4.05,0,4.05,1.35,0,1.35,1.35,0,0,0,4.05,0,0,0,0,0,0,4.05,0,0,0,0,0,0,0,0,0,0,0,0,0,6.76,21.62,0,6.76,9.46,2.7,2.7,0,0,6.76,12.3,19.54,22.87,-5.52,2,3,1,5,2,2,38.24,100,38.24,38.24,0,25,0,100,75,83.93,100,0,50,100,0,6,1,0,2,0,0,0,0,0,0,0,0,2,9,2,11,0.818181818,9,0.222222222,74,19 +1014,GhostlyGrounds,Delay,Goal-assigned,Share,1,07:30pm,5,0,0.6,"Walking into the bus, being scared by the man on the seat, dark bus, the series of stair ways to get to the next room, people scaring me from gated and non gated ""cells"", a dead body prosthetic laying on the ground. I also remember little windows with fire and limbs hanging. We walked on a shaky floor and felt I was going to fall. ",1,98.49,40.06,97.78,1.63,1.54,1.54,0,0,3.08,0,3.08,3.08,0,0,0,0,0,1.54,3.08,0,3.08,3.08,0,3.08,3.08,0,0,0,3.08,0,0,0,0,0,0,3.08,0,0,0,1.54,0,0,1.54,0,0,0,0,0,0,3.08,20,0,7.69,12.31,1.54,0,1.54,1.54,3.08,37.73,87.28,11.51,14.4,1,5,4,3,2,1,100,75,0,25,25,25,0,50,75,100,0,0,0,100,50,2,2,0,8,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.666666667,65,19 1015,Infirmary,Delay,Control,Baseline,0,07:30pm,2,0,0.25,Infirmary started where they gave you 3d glasses that you had to wear and everything was neon and bright there was 3d spiders everywhere on the wall you walked down this one hall and a clown with a hammer came was trying to scare you and there were other people trying to scare you I remember that you had to walk through this narrow hallway and someone was on the outside of the railing trying to scare you and at the end you had to give your glasses back. There was also a guy with three heads trying to scare you also. ,1,43.77,99,21.25,1.85,3.92,0,3.92,0,8.82,1.96,6.86,0.98,0,3.92,0.98,0,0.98,0.98,4.9,0.98,3.92,3.92,0,3.92,3.92,0,0,0,14.71,1.96,0,0,0,0,0,12.75,0,0,0,0.98,5.88,0,0,0,0,0,0,0,0,3.92,13.73,0,2.94,9.8,0.98,0,0,5.88,3.92,-30.17,-30.3,-32.92,-27.3,4,1,5,1,2,1,0,67.57,43.24,100,43.24,100,0,78.57,18.57,63.57,0,0,50,0,100,9,1,0,6,0,0,0,0,0,0,0,0,0,16,0,16,1,16,0.375,102,18 1015,Asylum,Immediate,Control,Baseline,0,07:30pm,1,0,0.5,"Asylum wasnt scary as I thought it was going to be they didnt have many actors being scary the one I remember is the girl in the red dress, there was a lot of sounds happening, to me it wasnt dark as I thought it was going to be as well. I know it was a lot of walking and wasnt much of scaring. ",1,19.94,1,88.07,1.63,0,0,0,0,15.38,3.08,12.31,6.15,0,0,0,0,6.15,1.54,6.15,1.54,4.62,4.62,0,4.62,4.62,0,0,0,4.62,0,0,0,0,0,0,4.62,0,0,1.54,0,0,0,1.54,0,0,0,0,0,0,4.62,9.23,0,1.54,3.08,3.08,1.54,0,1.54,4.62,-18.77,-16.93,-14.13,-25.26,3,4,1,1,3,3,0,0,100,33.33,33.33,75,50,0,100,50,100,100,0,100,100,2,0,0,2,1,0,0,0,0,1,0,1,0,5,2,7,0.714285714,4,0.5,65,18 1015,Asylum,Delay,Control,Baseline,0,07:30pm,1,1,1,"Asylum started with a person in the reception table and then you walk into a place with a lady in a red dress who talks to you, there was also a long hallway you have to walk down. There was a lot of air guns that went off. I remember something jumped out of a fridge. ",1,96.28,96.86,98.26,20.23,0,0,0,0,3.51,0,3.51,1.75,0,0,1.75,0,0,1.75,0,0,0,0,0,0,0,0,0,0,12.28,3.51,0,1.75,0,0,1.75,10.53,0,0,1.75,0,3.51,0,1.75,0,0,0,0,0,0,7.02,24.56,0,7.02,15.79,1.75,0,0,5.26,7.02,14.04,28.23,20.56,-6.67,2,3,3,3,2,1,47.62,100,0,57.14,57.14,18.03,0,100,40.98,40.98,0,0,100,0,100,2,2,0,2,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.333333333,57,18 @@ -97,12 +97,12 @@ PID,Section,Stage,Group,Condition,Code,Time_HH,Fear.rating,Repeat,TOAccuracy,Rec 1016,DevilsDen,Immediate,Control,Baseline,0,08:30pm,4,0,0.4,"the Devil's Den was very dark upon entering, and by the second person I was singled out from the group and not allowed to pass and let other participants go past because the person wouldnt let me by. if it werent for that person, I dont believe I would have found this section as scary as I did. it was hard to see and the strobe lights definitely added to my fear as we continued to walk through the section. ",1,43.4,5.84,92.99,2.86,2.5,1.25,0,1.25,13.75,0,13.75,2.5,2.5,2.5,1.25,1.25,5,0,2.5,0,2.5,2.5,0,2.5,2.5,0,0,0,8.75,1.25,0,0,0,0,0,7.5,0,0,0,0,0,0,0,0,0,0,0,0,0,6.25,15,0,5,6.25,3.75,0,1.25,0,6.25,52,38.3,41.74,75.96,5,3,2,3,5,1,33.33,33.33,0,0,100,28.57,42.86,100,71.43,0,0,100,100,100,100,5,0,0,2,1,0,0,0,0,1,0,0,0,8,1,9,0.888888889,7,0.285714286,80,22 1016,DevilsDen,Delay,Control,Baseline,0,08:30pm,4,1,0.4,"The Devil's Den part of the tour was definitely more scary, as the person at the front was only letting people in a few at a time. The workers were yelling more and walking more like zombies, making it clear that they wanted to scare you and not seem human while doing so. it was very dark upon entering, and being singled out from the group was burned into my memory. It was interesting being at the back of the group, as I felt that anyone could come up and scare me and I wouldnt have any protection against them. the metal grate at the end of the section was dropped right as i walked through, and i mustve had scared eyes because the workers seemed to pick up on the fact that i was very jumpy and scared. even without seeing my full facial expressions, these people knew i was scared and did their jobs very well.",1,52.24,29.54,65.08,2.78,1.27,0,0,1.27,11.39,0,11.39,2.53,1.27,2.53,2.53,1.27,2.53,0.63,5.06,1.27,3.8,3.8,0,3.8,3.8,0,0,0,7.59,0.63,0,0,0,0,0.63,6.96,0,0,0,0,0,0.63,0,0,0.63,0,0,0.63,0.63,5.7,13.29,0,3.8,6.96,1.9,0.63,0.63,1.26,6.96,47.94,62.72,49.7,31.39,1,3,4,2,1,1,100,0,50,79.03,1.61,0,90.91,100,39,95.31,0,0,93.94,100,100,5,0,0,6,6,0,0,0,0,1,0,0,0,17,1,18,0.944444444,11,0.545454545,158,22 1016,GhostlyGrounds,Delay,Control,Baseline,0,08:30pm,5,0,0.4,"The Ghostly Grounds section was scary, having to enter through a school bus with a very narrow walk way down the middle. these actors got very up in your face, although they didnt touch any of us it seemed like they were about to every time they got close. i remember having a lot more eye contact during this section, with the workers who seemed to be looking into my soul. there was one point during this section that i found myself not moving forward, but i quickly started walking again once i realized how long it had been since i moved. ",1,43.21,29.11,99,10.43,1.98,0.99,0,0.99,12.87,0.99,11.88,5.94,1.98,0,2.97,0,3.96,0.99,0.99,0,0.99,0.99,0,0.99,0.99,0,0,0,10.89,1.98,0,0,0,0,1.98,8.91,0,0,0,0,1.98,0,1.98,0,0,0,0,0,0,3.96,22.77,0,4.95,13.86,2.97,0,0.99,3.96,3.96,43.1,75.3,34.03,19.97,1,2,5,5,1,1,100,30.22,75.54,30.22,0,0,100,14.04,75.44,87.72,0,66.67,33.33,66.67,100,7,1,0,1,2,0,0,0,0,0,0,0,0,11,0,11,1,9,0.111111111,101,22 -1017,Infirmary,Immediate,Role-assignment,Baseline,2,06:15pm,3,0,0,The laser light right away with the hands popping out was so rad! I actually got really scared! I also couldnt see too well and that added some serious anxiety. Being at the end of the line was always a bit tough because they would sneak up behind me out of nowhere. I also thought that the loud banging was a bit scary as well. The uncertinty had me feeling a bit tense in the upper trap region of my back as well. Lots of rad things going on ,1,59.21,7.56,78.52,3.64,0,0,0,0,10.11,2.25,7.87,2.25,1.12,2.25,0,2.25,0,0,8.99,3.37,5.62,3.37,0,3.37,3.37,0,0,0,2.25,1.12,0,0,0,0,0,1.12,0,0,0,0,0,0,1.12,0,0,0,0,0,0,6.74,20.22,0,1.12,12.36,2.25,2.25,2.25,1.12,6.74,50.33,48.83,43.86,58.31,5,2,3,2,5,5,42.5,0,42.5,42.5,100,16.05,100,100,16.05,0,50,50,100,100,0,1,0,0,6,5,0,0,0,0,0,0,0,1,12,1,13,0.923076923,7,0.857142857,89,23 -1017,Infirmary,Delay,Role-assignment,Baseline,2,06:15pm,3,1,0,The very first thing I remember with Infirmary was the room where we first walked in. The green light that was waist high and the smoke with hands coming out from underneath it was very scary and did not expect any of that. After that I remember walking through a circular shape the room as it looked like it was spinning clockwise. From there I remember walking through a clown room that was very scary. The smoke was also very disorienting as I was getting a little confused on where to go. This also was really tough to see exactly the corners and where characters would be popping up. ,1,52.92,21.05,93.81,2.23,0.92,0.92,0,0,8.26,0,8.26,2.75,0,0.92,1.83,1.83,0.92,2.75,2.75,0,2.75,2.75,0,2.75,1.83,0,0,0,0.92,0,0,0,0,0,0,0.92,0,0,0,0,0,0,0.92,0,0,0.92,0,0,0,5.5,20.18,0,5.5,12.84,3.67,0,0,1.84,5.5,12.53,-11.21,-4.56,53.36,2,5,4,1,3,1,0,100,0,0,11.9,41.18,82.35,0,41.18,100,0,0,50,100,2.38,0,2,0,4,2,0,1,0,2,2,0,0,0,8,5,13,0.615384615,6,0.666666667,109,23 -1017,Asylum,Delay,Role-assignment,Baseline,2,06:15pm,2,0,0.5,Asylum was one of my favorites because it really brought me back to the 1950 setting. The main thing I remember is the man reenacting a news real and him scaring the living crap out of us as we walked by. He did a really good job staying in character and looking directly into the camera as if he was actually being filmed. Another highlight that really stood out was the woman in the room after the cameraman. She seem to be having some sort of panic attack about what she wants to wear to her event. Immediately after I remember seeing the woman put make up on her face and being very concerned on the way that she looked. This was very scary because she kept looking at me through the mirror as she was putting make up on. The entire vibe and this Asylum was my favorite of the entire experience strictly because it matched the vibe of the eastern state penitentiary so well. ,1,67.11,67.92,15.38,13.81,1.19,1.19,0,0,11.31,0,11.31,1.79,2.98,0.6,2.38,2.98,1.19,1.19,5.36,1.79,2.38,3.57,0.6,2.38,2.38,0,0,0.6,10.71,1.79,0,0,0,0.6,0.6,8.93,0,0,5.36,2.38,0,0.6,1.19,0,0,0,0,0,0,5.36,13.1,0,2.38,8.33,2.38,0,0,1.79,5.36,-14.45,-31.66,4.71,-16.4,3,2,1,1,3,2,0,40,100,45.45,24.85,50,100,0,59.09,7.58,100,0,100,3.03,3.03,3,0,0,6,1,0,0,0,0,2,2,0,0,10,4,14,0.714285714,9,0.666666667,168,23 -1017,DevilsDen,Immediate,Role-assignment,Share,2,06:15pm,3,0,0.5,The Devil's Den was intense! the chainsaw man was the first thing that came into mind. I think it was the smell of the tgasoline that actually got me as well. Lots of banging on the metal tables were also really tough on the ears. I did actually feel my heartbeat beat out of my chest when the loud banging was going on. Very impressed with all of the art and decor to be honest actually! I was very impressed to with the decor to be honest! Very impressive work Eastern State! The hammer and tools were actually jarring as well,1,66.64,15.93,21.97,95.66,0.99,0,0.99,0,14.85,0.99,13.86,1.98,0,0,0,10.89,0,0,5.94,5.94,0,0,0,0,0,0,0,0,3.96,2.97,0,0,0,0,0,0.99,0,0,0,0.99,0,0,0.99,0,0,0,0,0,0,2.97,9.9,0,1.98,2.97,0,3.96,0.99,0.99,2.97,23.73,-20.48,28.73,62.93,2,4,2,1,5,1,0,100,19.23,100,19.23,33.33,50,50,100,0,0,100,100,4.55,4.55,0,0,0,5,3,0,0,0,0,0,0,1,3,8,4,12,0.666666667,5,1,101,23 -1017,DevilsDen,Delay,Role-assignment,Share,2,06:15pm,3,1,0.25,Instantly the very first thing that came to my senses what is the smell of gasoline and hearing the chainsaw start up from the previous group. And houses in the past have always scared me most with a chainsaw. I knew that was going to be the scariest moment for me especially when he started to reach 4 feet with the chainsaw. I also remember there being a lot of banging of metal and loud noises. Walking through a couple rooms there was a man with a hammer banging it on a metal table and screaming at us as he was doing so. This was the most disturbing because I couldn’t hear myself think as he was doing so. The hostess letting us in before we went in was also very scary and intriguing. The first thing I remember was her eyes and how great of a character she was playing as a scary guard. As soon as we walked in there were these cell looking rooms where people would lunge out behind the bars and try to grab us. This was by far one of the scariest starts to the the house that we entered. Overall I was very impressed with the Devil's Den,1,55.8,68.54,59.99,4.76,3.9,2.93,0.49,0.49,6.34,0.49,5.85,2.93,0.98,1.46,0,0,0,0.98,4.88,1.46,3.41,2.44,0,2.44,2.44,0,0,0,7.32,0.49,0,0,0,0,0,6.83,0,0,1.46,1.95,0,0,0.49,0,0,0,0,0,0.49,2.44,16.1,0.49,3.41,7.32,0.98,3.41,0.98,0.49,2.93,53.17,82.8,37.6,39.12,1,3,1,3,5,5,100,50,0,50,100,22.22,22.22,100,77.78,0,100,100,100,100,0,6,1,0,8,3,0,0,0,0,3,2,0,0,18,5,23,0.782608696,15,0.533333333,206,23 -1017,GhostlyGrounds,Delay,Role-assignment,Test,2,06:15pm,3,0,0.4,The Ghostly Grounds was very spooky and the first thing I remember was a lot of smoke and tombstones. Another big highlight was the eerie music that was playing in the background. It was also quite dark and remember being in the back of the line and people following me. I was quite nervous that they would sneak up on me and scare me even more since I was in the back. I also remember hearing soft screams in the background. The fake smoke was also very disorienting. The corners were very tough for me to go around because I did not know what to expect and couldn’t see much,1,24.44,2.84,80.89,1,0,0,0,0,11.01,0,11.01,3.67,1.83,1.83,1.83,0,1.83,2.75,6.42,0.92,5.5,3.67,0,3.67,3.67,0,0,0,2.75,1.83,0,0,0,0.92,0,0.92,0,0,0,0,0,0,0,0,0,0.92,0,0,0,6.42,14.68,0,0.92,9.17,1.83,2.75,0.92,0.92,6.42,9.3,3.08,8.32,16.49,2,3,4,3,4,1,25,100,0,75,29.76,25,25,100,0,61.9,0,33.33,0,100,71.43,1,0,0,9,3,0,0,0,0,0,0,1,0,13,1,14,0.928571429,10,0.9,110,23 +1017,Infirmary,Immediate,Goal-assigned,Baseline,2,06:15pm,3,0,0,The laser light right away with the hands popping out was so rad! I actually got really scared! I also couldnt see too well and that added some serious anxiety. Being at the end of the line was always a bit tough because they would sneak up behind me out of nowhere. I also thought that the loud banging was a bit scary as well. The uncertinty had me feeling a bit tense in the upper trap region of my back as well. Lots of rad things going on ,1,59.21,7.56,78.52,3.64,0,0,0,0,10.11,2.25,7.87,2.25,1.12,2.25,0,2.25,0,0,8.99,3.37,5.62,3.37,0,3.37,3.37,0,0,0,2.25,1.12,0,0,0,0,0,1.12,0,0,0,0,0,0,1.12,0,0,0,0,0,0,6.74,20.22,0,1.12,12.36,2.25,2.25,2.25,1.12,6.74,50.33,48.83,43.86,58.31,5,2,3,2,5,5,42.5,0,42.5,42.5,100,16.05,100,100,16.05,0,50,50,100,100,0,1,0,0,6,5,0,0,0,0,0,0,0,1,12,1,13,0.923076923,7,0.857142857,89,23 +1017,Infirmary,Delay,Goal-assigned,Baseline,2,06:15pm,3,1,0,The very first thing I remember with Infirmary was the room where we first walked in. The green light that was waist high and the smoke with hands coming out from underneath it was very scary and did not expect any of that. After that I remember walking through a circular shape the room as it looked like it was spinning clockwise. From there I remember walking through a clown room that was very scary. The smoke was also very disorienting as I was getting a little confused on where to go. This also was really tough to see exactly the corners and where characters would be popping up. ,1,52.92,21.05,93.81,2.23,0.92,0.92,0,0,8.26,0,8.26,2.75,0,0.92,1.83,1.83,0.92,2.75,2.75,0,2.75,2.75,0,2.75,1.83,0,0,0,0.92,0,0,0,0,0,0,0.92,0,0,0,0,0,0,0.92,0,0,0.92,0,0,0,5.5,20.18,0,5.5,12.84,3.67,0,0,1.84,5.5,12.53,-11.21,-4.56,53.36,2,5,4,1,3,1,0,100,0,0,11.9,41.18,82.35,0,41.18,100,0,0,50,100,2.38,0,2,0,4,2,0,1,0,2,2,0,0,0,8,5,13,0.615384615,6,0.666666667,109,23 +1017,Asylum,Delay,Goal-assigned,Baseline,2,06:15pm,2,0,0.5,Asylum was one of my favorites because it really brought me back to the 1950 setting. The main thing I remember is the man reenacting a news real and him scaring the living crap out of us as we walked by. He did a really good job staying in character and looking directly into the camera as if he was actually being filmed. Another highlight that really stood out was the woman in the room after the cameraman. She seem to be having some sort of panic attack about what she wants to wear to her event. Immediately after I remember seeing the woman put make up on her face and being very concerned on the way that she looked. This was very scary because she kept looking at me through the mirror as she was putting make up on. The entire vibe and this Asylum was my favorite of the entire experience strictly because it matched the vibe of the eastern state penitentiary so well. ,1,67.11,67.92,15.38,13.81,1.19,1.19,0,0,11.31,0,11.31,1.79,2.98,0.6,2.38,2.98,1.19,1.19,5.36,1.79,2.38,3.57,0.6,2.38,2.38,0,0,0.6,10.71,1.79,0,0,0,0.6,0.6,8.93,0,0,5.36,2.38,0,0.6,1.19,0,0,0,0,0,0,5.36,13.1,0,2.38,8.33,2.38,0,0,1.79,5.36,-14.45,-31.66,4.71,-16.4,3,2,1,1,3,2,0,40,100,45.45,24.85,50,100,0,59.09,7.58,100,0,100,3.03,3.03,3,0,0,6,1,0,0,0,0,2,2,0,0,10,4,14,0.714285714,9,0.666666667,168,23 +1017,DevilsDen,Immediate,Goal-assigned,Share,2,06:15pm,3,0,0.5,The Devil's Den was intense! the chainsaw man was the first thing that came into mind. I think it was the smell of the tgasoline that actually got me as well. Lots of banging on the metal tables were also really tough on the ears. I did actually feel my heartbeat beat out of my chest when the loud banging was going on. Very impressed with all of the art and decor to be honest actually! I was very impressed to with the decor to be honest! Very impressive work Eastern State! The hammer and tools were actually jarring as well,1,66.64,15.93,21.97,95.66,0.99,0,0.99,0,14.85,0.99,13.86,1.98,0,0,0,10.89,0,0,5.94,5.94,0,0,0,0,0,0,0,0,3.96,2.97,0,0,0,0,0,0.99,0,0,0,0.99,0,0,0.99,0,0,0,0,0,0,2.97,9.9,0,1.98,2.97,0,3.96,0.99,0.99,2.97,23.73,-20.48,28.73,62.93,2,4,2,1,5,1,0,100,19.23,100,19.23,33.33,50,50,100,0,0,100,100,4.55,4.55,0,0,0,5,3,0,0,0,0,0,0,1,3,8,4,12,0.666666667,5,1,101,23 +1017,DevilsDen,Delay,Goal-assigned,Share,2,06:15pm,3,1,0.25,Instantly the very first thing that came to my senses what is the smell of gasoline and hearing the chainsaw start up from the previous group. And houses in the past have always scared me most with a chainsaw. I knew that was going to be the scariest moment for me especially when he started to reach 4 feet with the chainsaw. I also remember there being a lot of banging of metal and loud noises. Walking through a couple rooms there was a man with a hammer banging it on a metal table and screaming at us as he was doing so. This was the most disturbing because I couldn’t hear myself think as he was doing so. The hostess letting us in before we went in was also very scary and intriguing. The first thing I remember was her eyes and how great of a character she was playing as a scary guard. As soon as we walked in there were these cell looking rooms where people would lunge out behind the bars and try to grab us. This was by far one of the scariest starts to the the house that we entered. Overall I was very impressed with the Devil's Den,1,55.8,68.54,59.99,4.76,3.9,2.93,0.49,0.49,6.34,0.49,5.85,2.93,0.98,1.46,0,0,0,0.98,4.88,1.46,3.41,2.44,0,2.44,2.44,0,0,0,7.32,0.49,0,0,0,0,0,6.83,0,0,1.46,1.95,0,0,0.49,0,0,0,0,0,0.49,2.44,16.1,0.49,3.41,7.32,0.98,3.41,0.98,0.49,2.93,53.17,82.8,37.6,39.12,1,3,1,3,5,5,100,50,0,50,100,22.22,22.22,100,77.78,0,100,100,100,100,0,6,1,0,8,3,0,0,0,0,3,2,0,0,18,5,23,0.782608696,15,0.533333333,206,23 +1017,GhostlyGrounds,Delay,Goal-assigned,Test,2,06:15pm,3,0,0.4,The Ghostly Grounds was very spooky and the first thing I remember was a lot of smoke and tombstones. Another big highlight was the eerie music that was playing in the background. It was also quite dark and remember being in the back of the line and people following me. I was quite nervous that they would sneak up on me and scare me even more since I was in the back. I also remember hearing soft screams in the background. The fake smoke was also very disorienting. The corners were very tough for me to go around because I did not know what to expect and couldn’t see much,1,24.44,2.84,80.89,1,0,0,0,0,11.01,0,11.01,3.67,1.83,1.83,1.83,0,1.83,2.75,6.42,0.92,5.5,3.67,0,3.67,3.67,0,0,0,2.75,1.83,0,0,0,0.92,0,0.92,0,0,0,0,0,0,0,0,0,0.92,0,0,0,6.42,14.68,0,0.92,9.17,1.83,2.75,0.92,0.92,6.42,9.3,3.08,8.32,16.49,2,3,4,3,4,1,25,100,0,75,29.76,25,25,100,0,61.9,0,33.33,0,100,71.43,1,0,0,9,3,0,0,0,0,0,0,1,0,13,1,14,0.928571429,10,0.9,110,23 1018,Infirmary,Delay,Control,Baseline,0,08:30pm,2,0,0.8,I remember this was the first one we went in I think and I also dint think this was scary. They had lots of neon paint and big spiders and I got a pair of those paper 3D glasses and they were purple and black. They had paintings on easels set up and what looked like strippers I think? I remember going through a tunnel thing that was spinning and it felt like the ground was moving.The scare actors werent scary much but I was so supprised about the theme it just wasnt what i was expecting ,1,9.74,12.03,83.42,1.66,1.02,1.02,0,0,9.18,0,9.18,6.12,0,0,0,0,3.06,2.04,3.06,0,3.06,3.06,0,3.06,3.06,0,0,0,6.12,0,0,0,0,0,0,6.12,0,0,0,0,0,0,1.02,0,0,0,0,0,0,3.06,10.2,0,4.08,2.04,3.06,0,1.02,1.02,3.06,-32.06,-15.59,-31.98,-48.62,4,5,1,1,4,2,0,45.24,0,100,4.76,70,13,51,0,100,100,0,25,52.63,52.63,1,1,0,8,4,0,0,0,0,0,1,0,0,14,1,15,0.933333333,10,0.8,98,18 1018,Asylum,Immediate,Control,Baseline,0,08:30pm,2,0,0.5,"Very colorful and trippy, I got cool funky glasses. There were strippers (kinda) and big spiders. Neon paint with black light made things look like they were moving. Not as scary, very tame. I was more interested in the things going on than being scared. I liked the artsy theme. I wouldnt be scared without the glasses but the glasses made my vision limited which put me more on edge.",1,35.59,1,72.58,7.42,0,0,0,0,12.86,0,12.86,0,2.86,1.43,1.43,0,7.14,0,12.86,5.71,7.14,7.14,0,7.14,7.14,0,0,0,2.86,0,0,0,0,0,0,2.86,0,0,0,0,0,0,1.43,0,0,0,0,0,1.43,5.71,17.14,2.86,4.29,2.86,7.14,0,1.43,1.43,7.14,-38.51,-37.03,-27.97,-50.53,3,1,1,1,2,2,0,25,100,100,50,100,0,66.67,66.67,33.33,100,0,0,100,100,0,0,0,1,3,1,0,0,7,3,0,0,0,4,11,15,0.266666667,1,1,70,18 1018,Asylum,Delay,Control,Baseline,0,08:30pm,2,1,0.5,"Honestly, I am so bad at remembering the sections but I believe this was the second part of it. I wasnt that scared and I liked the story vibe going on. I remember the dentist guy and the weird head with the teeth and I remember thinking ""Wow, they couldve put better details on that."" I also remember the actress with the silky red robe and the black wig that was clearly not a lace front and also it was synthetic hair. ",1,30.81,1.87,87.24,20.23,1.22,0,1.22,0,17.07,0,17.07,7.32,0,1.22,0,2.44,4.88,4.88,6.1,2.44,2.44,3.66,0,2.44,1.22,0,0,0,4.88,1.22,0,0,0,0,1.22,3.66,0,0,1.22,1.22,0,0,0,0,0,0,0,0,1.22,1.22,8.54,0,2.44,2.44,2.44,0,1.22,0,2.44,-11.69,10.22,-27.65,-17.65,4,5,1,5,4,2,41.18,88.24,50,100,0,64.71,64.71,25,0,100,100,0,56.25,56.25,3.13,0,0,0,6,3,0,0,0,0,0,1,0,1,9,2,11,0.818181818,6,1,82,18 @@ -157,70 +157,70 @@ PID,Section,Stage,Group,Condition,Code,Time_HH,Fear.rating,Repeat,TOAccuracy,Rec 1025,DevilsDen,Delay,Control,Baseline,0,06:15pm,4,1,0.6,"Machine shop featured a lot of hardware tools and actors swinging knives and drills. There were also a lot of both real and fake chainsaw, drilling, and hammering noises through out this experience. Here I remember actors following me/my group and screaming making loud noises.",1,47.48,40.06,44.75,1,0,0,0,0,6.52,0,6.52,2.17,2.17,0,0,2.17,0,2.17,6.52,0,6.52,0,0,0,0,0,0,0,8.7,2.17,0,0,0,2.17,0,6.52,0,0,0,0,0,0,0,0,0,0,0,0,0,6.52,17.39,0,2.17,6.52,0,8.7,0,0,6.52,48.19,55.56,45.27,43.76,4,2,2,5,1,1,90,50,50,100,0,0,100,35.48,67.74,67.74,0,100,0,100,0,2,0,0,6,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.75,46,19 1025,GhostlyGrounds,Delay,Control,Baseline,0,06:15pm,4,0,0.4,"I remember the Ghostly Grounds had a lot of disturbing body parts and fake blood hanging around. There was a room in the exhibit that featured fake bodies/actors hanging and it was so realistic that everyone in my group got quiet when we entered the room. This was one of the scariest moments for me. I remember the actors there were wearing gauze and fake blood. This section seemed to be focused on gore. ",1,51.04,48.08,96.85,1,1.35,1.35,0,0,6.76,1.35,5.41,4.05,0,0,1.35,0,1.35,2.7,6.76,0,6.76,1.35,0,1.35,1.35,0,0,0,10.81,4.05,0,0,0,4.05,0,6.76,0,0,0,0,0,0,1.35,0,0,0,0,0,0,0,17.57,1.35,1.35,13.51,0,1.35,0,1.35,0,3.25,17.27,45.24,-52.76,2,3,5,3,1,2,50,100,0,100,7.14,0,20,100,40,25.71,93.33,0,0,93.33,100,1,1,0,5,1,0,0,0,0,0,0,0,1,8,1,9,0.888888889,7,0.714285714,74,19 -1026,Infirmary,Immediate,Role-assignment,Baseline,2,07:30pm,2,0,0.4,"ok so we walked in, and there were a bunch of rooms with different themes, there were a bunch of people in front and behind us, and there was screaming, and I feel like there was a medical theme, and we walked through that moving floor tunnel thing, and there was a women taking pictures of all the ""monsters"" in the rooms, and i think there was fog?, I think there was a bathtub full of blood, and I was second or third in the lineup for walking in and there was probably a guy hiding around a corner",1,54.26,52.11,99,20.23,3.03,3.03,0,0,7.07,1.01,6.06,3.03,0,0,2.02,0,2.02,0,0,0,0,0,0,0,0,0,0,0,5.05,0,0,0,0,0,0,5.05,0,0,1.01,1.01,0,0,1.01,0,1.01,0,0,1.01,0,4.04,27.27,0,4.04,20.2,1.01,1.01,1.01,2.02,5.05,37.1,55.79,27.7,27.81,5,2,4,2,5,1,68.67,0,45.78,0,100,36.67,100,36.67,100,0,0,50,0,100,52.63,1,1,0,9,0,0,0,0,1,0,0,0,1,11,2,13,0.846153846,11,0.818181818,99,18 -1026,Infirmary,Delay,Role-assignment,Baseline,2,07:30pm,2,1,0.6,"ok so I truly dont remember Infirmary at all, I think it was a 3D theme with a bunch of neon lights but why that was supposed to be scary who knows. I know a guy, in the beginning, tried to hassle us before giving us our 3D glasses. and then we walked through the laser room which was one of the only truly scary parts of it. Then we walked through the actual section, and it was a bunch of 3D walls and paint coming off the walls but it truly just looked like paintball gone wrong. There was a moving tunnel of LEDs, but only the walls were moving so it was probably supposed to be an optical illusion. I also remember the guy at the end asking us to throw our glasses away, but other than that stuff I can only picture the color of the LED paints but even that might be wrong but I think they were yellow, orange and pink",1,34.86,43.61,80.67,3.11,5.42,4.22,0.6,0.6,18.67,1.81,16.87,3.61,1.2,3.01,1.2,1.81,6.02,1.2,2.41,0,2.41,1.2,0,1.2,1.2,0,0,0,8.43,1.81,0,0,0,1.2,0.6,6.63,0,0,0,1.2,0,0,0,0,0,0,0,0,0,1.81,13.86,0,4.22,5.42,4.82,0,0,0,1.81,-29.88,-7.68,-32.4,-49.55,2,5,1,5,2,2,16.47,100,20,80,0,56.99,0,37.5,12.5,100,100,0,17.17,85.86,85.86,4,2,0,11,1,0,0,0,0,0,0,0,4,18,4,22,0.818181818,17,0.647058824,166,18 -1026,Asylum,Delay,Role-assignment,Baseline,2,07:30pm,1,0,0.75,"umm, there was a guy with a camera and he did a banging motion to scare ppl as they walked in. maybe there was a machete guy or some kind of medical scene with blood and medical instruments. steven was walking fast, I think I was second in the rooms. I was not that scared, but I think some people in the group were scared. I think it was a very lowkey haunted section, definitely scarier than the Infirmary section but not the scariest section in there. yeah, thats pretty much all Ive got, I assume it was a movie or film theme but beyond the camera dude, I dont remember any of the actors or their characters. ",1,41.22,3.75,99,1,0,0,0,0,18.64,0.85,16.1,4.24,0,0,5.93,0.85,8.47,0.85,5.08,0,5.08,4.24,0,4.24,4.24,0,0,0,7.63,0,0,0,0,0,0,7.63,0,0.85,0,3.39,0,0,0.85,0,0,0,0,0,0,2.54,14.41,0,3.39,10.17,0,0.85,0,0.85,2.54,53.29,83.83,1,75.04,1,3,4,2,2,1,100,0,25,29.35,55.43,40,0,100,26.96,47.83,0,93.88,93.88,100,100,4,0,0,5,2,0,0,0,0,2,0,0,3,11,5,16,0.6875,9,0.555555556,118,18 -1026,DevilsDen,Delay,Role-assignment,Share,2,07:30pm,3,0,0.2,"ok, so I was definitely the most scared during this section. within the first couple minutes of being in there, some actor came around a corner and jump scared me. I think the anticipation of waiting outside for a little bit added to the fear factor, not gonna lie. Then I think there was like a courtyard or at least tree and plant decorated area which another actor came out and scared me. And then I remember some actor blocking my path and not letting me go around the table and I was very angry and frustrated because he was determined to scare me however he was just extremely annoying and I think he said something along the lines of ""this is what happens when you dont follow the rules"" and overall it essentially ruined the rest of the section for me because I was so angry so that sucks, I think I remember some kind of red theme, maybe the lights or blood or costumes idk",1,22.91,1.33,99,1,0.6,0,0,0.6,16.17,0,14.97,4.19,1.2,0,2.99,1.2,5.99,1.2,6.59,0,5.99,5.99,0,5.39,2.99,2.4,0,0,5.99,1.8,0,0,0.6,0,0.6,4.19,0,0,0,1.8,0,0,0,0,0,0,0,0,0,2.4,11.38,0,2.4,8.38,1.2,0,0,0,2.4,21.53,81.75,27.17,-44.34,1,4,5,3,2,1,100,83.08,0,34.87,34.87,28.37,0,90.26,100,51.29,0,0,20.93,1.16,100,5,1,1,6,4,0,0,0,0,2,0,0,5,17,7,24,0.708333333,13,0.461538462,167,18 -1026,GhostlyGrounds,Immediate,Role-assignment,Test,2,07:30pm,2,0,0.4,"in the Ghostly Grounds section to first thing we did was walk onto the bus, and there were a bunch of what I assume to be mannequins but Im sure there was an actor in there somewhere and then we walked off the bus and into the building, and i think some guy scared me around the corner, and then there was the rooms with the cages and there was the box inside of the cage with the fake screaming girl in it, and there were two fake mannequins inside a cage dancing and there was a couple trying to decide which direction to take and there was moss on the ceiling and there was an actor slamming a cage on the ceiling i think and there were more cages and i think pipes. there was also a smoke machine around a few corners, I think the fog smelled too and there was also the mannequin on the bed covered in the sheet who sat up and there was an actor scaring people outside of a cage",1,69.97,43.4,96.89,2.01,1.7,1.14,0.57,0,5.68,0,5.68,3.41,0,0.57,1.14,0,1.14,0,2.84,0,2.84,1.14,0,1.14,1.14,0,0,0,6.25,1.7,0,0,0,1.14,0,4.55,0,0,0.57,0.57,0,0,0.57,0,0,0,0,0,0,1.7,19.89,0,2.27,17.05,0,0.57,0,0.57,1.7,-13.24,17.21,-24.67,-32.27,3,1,4,4,3,2,36.11,50,100,0,100,100,90,0,54,0,95.83,0,0,100,50,4,4,0,13,0,0,0,0,0,0,0,0,0,21,0,21,1,21,0.619047619,176,18 -1026,GhostlyGrounds,Delay,Role-assignment,Test,2,07:30pm,2,1,0.6,"we walked through a bus, into a section with cages, past the handicapable ramp which I thought was great for accessibility. I was expecting someone to scare me on the bus but no one did so either the actors are unengaged or they were all mannequins. Also in this section, there was a room full of cages, with some guy hanging out of one trying to convince ppl he wasnt real but then he would scare them. and there was a guy on a landing above our heads banging on a cage as we walked under the doorway and it wasnt scary but I did think about the possibility that the cage would collapse on my head and I would die soooo. after we finished the Ghostly Grounds section we ran into the woman at the end who told us we could go down one way or the kaleidoscope hallway, and we went down the kaleidoscope hallway which wasnt scary at all.",1,56.86,62.18,92.58,5.13,6.21,4.97,1.24,0,16.15,2.48,13.66,1.86,0,3.11,2.48,0.62,6.83,0,3.11,0.62,2.48,2.48,0,2.48,2.48,0,0,0,13.04,1.24,0,0,0,0,0.62,11.8,0,0,0.62,2.48,0,0,0,0,0.62,0,0,0,0,2.48,14.91,0,3.73,11.18,0,0.62,0,0.62,2.48,38.46,55.04,48.93,11.41,3,4,1,4,1,5,92.42,25,100,0,75,0,62.29,43.43,100,5.71,100,68.75,68.75,68.75,0,6,3,0,5,4,0,1,0,0,2,0,0,0,18,3,21,0.857142857,14,0.357142857,161,18 -1027,Infirmary,Delay,Role-assignment,Baseline,2,07:30pm,2,0,0.6,"Infirmary was the first exhibit if I remember correctly, it was the one where they gave us glasses. Everything was super neon, and actually pretty cool. I felt more excited going through rather than scary. There were ladies on these elevated surfaces in the beginning and I keep remembering this bright neon orange in the beginning. We walked through walls that were lit up neon. It was probably the brightest exhibit we went through. I dont remember anything about the actors. Just the walls I was seeing as I went through. The smoke that was being used was almost 3D in a way that I cant explain because of the glasses. I remember opening these heavy curtains at one point and walking through a very dark part of the tour where the glasses didnt work because everything was pretty much pitch black. ",1,34.46,16,94.15,64.63,2.82,2.11,0.7,0,17.61,2.82,14.79,4.23,2.11,0.7,4.23,0.7,3.52,2.82,4.23,3.52,0.7,1.41,0.7,0.7,0.7,0,0,0,5.63,2.11,0,0.7,0,0,0.7,4.23,0,0,0.7,0,0,0,0,0,0,0,0,0,0,3.52,19.72,0,3.52,9.15,4.93,0,2.11,0,3.52,-25.49,-45.93,-19.51,-11.03,3,1,1,1,2,5,0,95.24,100,100,80.27,100,0,88.57,67.86,5.71,100,32.53,34.94,69.88,0,3,0,0,10,2,0,0,0,0,0,1,0,2,15,3,18,0.833333333,13,0.769230769,142,20 -1027,Asylum,Immediate,Role-assignment,Baseline,2,07:30pm,1,0,0.75,. I just found out that Asylum was actually the movie themes one and it was really cool it was like an old movie there were signs everywhere for directors and there was a lady in a red dress and actors and it was kind of scary I think the scariest part was the guy that put his tooth drill towards me. I also remember the ground was little slippery nd it was very windy roads that we wnt through,1,23.13,54.96,63.35,8.55,2.5,1.25,0,1.25,11.25,1.25,10,3.75,0,0,2.5,2.5,1.25,1.25,3.75,1.25,2.5,2.5,0,2.5,2.5,0,0,0,7.5,1.25,0,1.25,0,0,0,7.5,0,0,1.25,2.5,0,0,1.25,0,0,0,0,0,0,3.75,12.5,0,1.25,8.75,1.25,0,1.25,1.25,3.75,-22.95,-23.33,-36.58,-8.93,3,1,1,1,3,2,0,0,100,100,0,100,100,0,0,0,100,0,100,100,50,1,0,0,7,3,0,0,0,0,0,0,0,0,11,0,11,1,8,0.875,81,20 -1027,Asylum,Delay,Role-assignment,Baseline,2,07:30pm,1,1,0.5,"Asylum was the second part of the tour. It was twenties movie themed and there were signs all over that said director and cast and there were people dressed up like they were in the movie roles. There was a lady in a robe that was red and for some reason I remember seeing water fountains around. This exhibit was not very long, in fact it felt like the shortest one. We were walking around in very crammed spaces for most of it and I really dont remember it being that scary. I specifically remember one part of the tour where there was a makeshift dentist room and the actor had a drilll that he would move towards our faces when we walked by. I also remember the room with the lady in the red robe. She was in a bed in the middle of a dark room and that was the only thing in the room. That is all I can specifically remember. I dont remmeber the very beginning or end.",1,47.63,43.46,90.77,13.97,2.31,1.73,0,0.58,10.4,2.31,8.09,4.05,0.58,1.16,0.58,0.58,2.31,2.89,0.58,0,0.58,0.58,0,0.58,0.58,0,0,0,6.94,1.73,0,1.16,0,0,0.58,6.36,0,0,1.73,0.58,0,0,0.58,0,0,0,0,0,0,2.89,19.08,0,1.73,14.45,2.31,0,0.58,0.58,2.89,12.69,-24.53,-4.2,66.8,5,3,2,1,2,1,0,46.58,23.29,76.03,100,40,0,100,7.06,68.82,0,100,75,51.47,51.47,2,1,0,10,1,0,0,0,0,0,1,1,3,14,5,19,0.736842105,13,0.769230769,173,20 -1027,DevilsDen,Delay,Role-assignment,Share,2,07:30pm,4,0,0.6,"The most I remember from Devil's Den was the loud noises. At one point right before we walked out of the indoor part there was this guy above us that dropped a cage that was so loud it startled me. I believe Devil's Den was also the exhibit where we walked onto a school bus in the very beginning. I rememebr being scared of the school bus because I thought someone was going to pop out at us while we were in there and it was a very small space. I remember there was a levitating box and someone was inside banging on it and it was so loud. At the end of this tour I remember being able to go one of two ways and the way we went took us through a hallway with a bunch of old jail calls that the prisoners used to live in. It was so dark inside each of them and they were so small. I remember that part because I remember also seeing these cells in parts of the Devil's Den tour and it was so dark I was nervous that there were actors in them that were going to pop out, but no one ended up popping out of them at us and most parts of the exhibit where cells were there were not decorations around them. ",1,39.96,58.5,95.43,5.58,4.42,3.54,0.44,0.44,8.85,0.88,7.96,3.1,1.33,0,0.88,0,2.65,2.21,2.21,0,1.77,1.33,0,0.88,0.88,0,0,0,7.52,0,0,0,0,0,0,7.52,0,0,0,0.44,0,0,0.44,0,0,0,0,0,0,3.1,17.7,0,2.21,12.39,1.33,2.21,0,0.44,3.1,-3.87,-25.34,-3.39,17.11,2,5,4,1,3,5,0,100,100,9.8,9.8,9.01,42.86,0,0,100,64.49,33.33,33.33,100,0,4,1,0,12,3,0,1,0,1,0,1,0,0,20,3,23,0.869565217,17,0.705882353,226,20 -1027,GhostlyGrounds,Immediate,Role-assignment,Test,2,07:30pm,3,0,0.6,Ghostly Grounds was the last one we went through and at first we went through an old school bus and I remember thinking about if someone was going to jump out at me while I was on the bus because that would have been really scary. I liked this one a lot because we culd see into all the old prison cells but I think that distracted me from the actors themselves. there was also a loud shaking box and I think someone was inside of it slamming on it but this was definitel the loudest haunted house ou of all of them. we had to go up and don steps in this one and the ground like slipped under you at one pouint and I remember that because I almost ate it after someone JUMPED OUT AT ME he really got my heart rate going I think. ut it was cool how you could choose the last part which to go through and the koleidescope hall had all the abandoped cells in it. I cant really remember a lot of the actors in this one though but I had the most jump scares in this part of eastern state it was super awesome. ,1,42.04,29.16,97.61,14.8,2.46,1.97,0,0.49,16.26,1.48,14.78,4.43,1.97,1.48,2.46,1.48,4.43,1.48,4.43,1.97,2.46,1.48,0.49,0.99,0.99,0,0,0,6.9,0,0,0,0,0,0,6.9,0,0,0,0.49,0.99,0,0.49,0,0,0,0,0,0,3.94,13.79,0.49,5.42,6.9,0.49,0.99,0.49,1.48,3.94,28.35,48.08,16.92,20.07,3,4,2,2,3,3,83.33,0,100,2.5,70.83,30.77,76.92,0,100,21.15,40,100,0,62,21,4,1,0,6,2,0,1,0,1,4,1,0,1,13,8,21,0.619047619,11,0.545454545,203,20 -1027,GhostlyGrounds,Delay,Role-assignment,Test,2,07:30pm,3,1,0.6,"I really do not remember anything from Ghostly Grounds. I cannot even remember what the theme was of this part of the tour. I think that the only thing I can remember is the end when we were walking through a large dark space and an actor came up crawling and that startled me because I didnt even see them at first. Other than that, I really dont remember anything from Ghostly Grounds. I do not remember any of the actor or props.",1,8.62,1,99,20.23,1.23,1.23,0,0,28.4,2.47,25.93,7.41,1.23,2.47,4.94,2.47,9.88,6.17,1.23,0,0,1.23,0,0,0,0,0,0,4.94,0,0,0,0,0,0,4.94,0,0,0,0,0,0,0,0,0,0,0,0,0,1.23,8.64,0,3.7,2.47,2.47,0,0,0,1.23,-6.85,16.9,-14.32,-23.11,2,4,2,4,3,3,41.18,100,100,0,50,77.31,57.14,0,100,57.14,94.12,100,0,100,100,0,1,0,2,1,0,0,0,0,0,0,0,4,4,4,8,0.5,3,0.666666667,81,20 -1028,Infirmary,Immediate,Role-assignment,Baseline,2,07:30pm,1,0,0.4,There were a bunch of clowns and colors and trippy objects and shapes. Not a lot of jump scares and I remember at the beginning we had to put on some 3d glasses in order to enhance the experience. One guy tried following me down a stairwell. Overall was the least scary in my opinion. All of the actors had face makeup. ,1,94.75,31.06,69.74,1.4,4.84,1.61,1.61,1.61,8.06,1.61,6.45,3.23,0,0,0,0,1.61,1.61,3.23,0,3.23,3.23,0,3.23,3.23,0,0,0,4.84,0,0,0,0,0,0,4.84,0,0,0,1.61,3.23,0,0,0,0,0,0,0,0,0,11.29,0,3.23,6.45,1.61,0,0,3.23,0,-30.58,-31.73,-50.95,-9.08,3,1,5,1,3,1,0,58.54,100,36.59,36.59,100,64.71,0,0,38.24,0,92.31,0,0,100,3,0,0,5,0,0,0,0,0,1,0,0,0,8,1,9,0.888888889,8,0.625,62,20 -1028,Infirmary,Delay,Role-assignment,Baseline,2,07:30pm,1,1,0.8,In the Infirmary section we walked in and there was someone with a canvas that was painting and they pushed it toward us. Then we walked through this tunnel and they gave us some 3d glasses to make everything pop out more. I remember really big spiders and all of the images as we walked through were very trippy and colorful. There were a couple of clowns throughout that would follow you and try and jump scare you. There was a spinning tunnel that you crossed on this bridge. ,1,29.68,99,57.08,20.23,6.74,5.62,1.12,0,8.99,2.25,6.74,1.12,1.12,2.25,1.12,1.12,0,1.12,2.25,1.12,1.12,1.12,0,1.12,1.12,0,0,0,13.48,1.12,0,0,0,0,0,12.36,0,0,0,0,0,0,0,0,0,0,0,0,0,4.49,20.22,0,7.87,10.11,2.25,0,0,0,4.49,28.07,54.13,-0.85,30.94,1,2,3,2,3,1,100,0,100,66.67,3.92,50,100,0,50,61.76,0,0,100,0,0,5,2,0,5,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.416666667,89,20 -1028,Asylum,Delay,Role-assignment,Baseline,2,07:30pm,1,0,0.5,In Asylum I remember we started walking through and there were some jumpscares in the beginning. I vividily remember on the way out walking through a bunch of strobe lights that made me feel like I was going to seize. There was also fog as we walked down this hallway with a lot of the old cells that people used to live in. I do not particularly remember much of the station but there was an instance with a jumpscare where someone came out of a hidden window backspace that I was not expecting.,1,86.35,11.47,99,20.23,3.16,2.11,0,1.05,11.58,0,11.58,4.21,2.11,0,3.16,0,3.16,3.16,0,0,0,0,0,0,0,0,0,0,3.16,0,0,0,0,0,0,3.16,0,0,0,0,0,0,1.05,0,0,0,0,1.05,0,7.37,22.11,0,5.26,12.63,3.16,0,1.05,1.05,8.42,2.22,-17.1,-19.98,43.76,3,4,2,1,2,1,0,66.67,100,0,66.67,75,0,25,100,50,0,100,0,100,0,2,0,0,0,0,2,1,0,3,1,1,0,1,2,9,11,0.181818182,2,0,95,20 -1028,DevilsDen,Immediate,Role-assignment,Share,2,07:30pm,3,0,0.4,"In Devil's Den you came in and there was some dude with a hook that went at you right away and then you continued through some other shops that looked like butchers and then you walked through this long hallway with very blinding lights that were white and made it seem like a rave. There were a few jumpscares throughout, too. The hallway had some rooms that looked abandoned.",1,60.52,93.24,82.12,7.29,0,0,0,0,4.35,0,4.35,1.45,1.45,0,1.45,0,1.45,0,1.45,0,1.45,0,0,0,0,0,0,0,7.25,0,0,0,0,0,0,7.25,0,1.45,0,1.45,0,0,0,0,0,0,0,0,0,5.8,23.19,0,4.35,11.59,7.25,0,0,0,5.8,53.34,84.33,44.76,30.94,1,2,4,4,5,1,100,66.67,33.33,0,74.36,25.71,100,62.86,62.86,0,0,0,0,100,0,3,1,0,4,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.5,69,20 -1028,DevilsDen,Delay,Role-assignment,Share,2,07:30pm,3,1,0.2,"In the Devil's Den section I remember walking in and there was a guy with some type of weapon, maybe a bat, that followed us in the beginning. As we continued to walk through a lot of the people seemed to have weapons. There were some at work at the ""Devil's Den"", too. There were a lot of machines throughout",1,98.32,77.41,89.39,20.23,5,3.33,1.67,0,5,0,5,3.33,0,0,3.33,0,0,1.67,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,1.67,0,0,0,0,0,0,0,0,0,5,16.67,0,3.33,13.33,0,0,0,0,5,-14,-22.95,-24.84,5.78,3,1,1,1,3,3,0,33.33,100,33.33,66.67,100,50,0,100,50,100,100,0,100,0,2,1,0,3,0,0,0,0,0,0,0,0,1,6,1,7,0.857142857,6,0.5,60,20 -1028,GhostlyGrounds,Delay,Role-assignment,Test,2,07:30pm,4,0,0,In the Ghostly Grounds section I remember starting by walking through a dimly lit bus with a bunch of actors in each seat. I believe that the theme in this one was more vampire like and i remember the fog machines being used creating a hazy environment. ,1,98.7,18.24,96.69,20.23,2.17,0,2.17,0,10.87,0,10.87,6.52,2.17,0,2.17,0,0,4.35,0,0,0,0,0,0,0,0,0,0,2.17,0,0,0,0,0,0,2.17,0,0,0,0,0,0,0,0,0,0,0,0,2.17,2.17,17.39,0,2.17,10.87,4.35,0,0,0,4.34,33.98,68.65,23.23,10.07,2,4,3,4,2,2,90,100,75,0,50,22.5,0,50,100,25,90,0,100,100,0,0,1,0,4,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.8,46,20 -1029,Infirmary,Immediate,Role-assignment,Baseline,2,07:30pm,1,0,0.4,3D glasses. Neon colors. Spirals. Few actors. Cages. Spiders. Tanks. Splatter paint on the floors. Actor kicked art easel. ,1,98,90.88,70.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.26,0,5.26,0,0,0,0,0,0,0,10.53,0,0,0,0,0,0,10.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.32,0,10.53,10.53,5.26,5.26,0,0,0,NA,-11.67,NA,NA,4,1,1,1,1,1,0,0,0,100,0,50,50,50,50,50,50,50,50,50,50,0,0,0,9,0,0,0,0,0,0,0,0,0,9,0,9,1,9,1,19,20 -1029,Infirmary,Delay,Role-assignment,Baseline,2,07:30pm,1,1,0.6,Infirmary was a 3d glasses exhibit. There were lots of polka dots. Everything was neon. There were big spiders and holes in the walls. There were orange and blue stripes on the walls. Lots of neon clowns. There were neon green/yellow pipes along the walls. There was a big neon blue cylinder with hazard signs on it. There was a big python at one point. I think there was a rockclimibing wall. Lots of mannequins. A part where you walk through just dots. Cargo boxes.,1,76.62,40.06,61.77,9.15,0,0,0,0,3.49,1.16,2.33,1.16,0,0,0,0,1.16,0,1.16,0,1.16,0,0,0,0,0,0,0,1.16,0,0,0,0,0,0,1.16,0,0,0,0,0,0,0,0,0,0,0,1.16,0,3.49,22.09,0,1.16,15.12,5.81,0,0,0,4.65,-13.42,-24.54,-46.65,30.94,2,1,4,1,2,1,0,100,35.71,67.86,67.86,100,0,0,38.3,0,0,0,0,100,0,0,1,0,14,0,0,0,0,0,0,1,0,0,15,1,16,0.9375,15,0.933333333,86,20 -1029,Asylum,Delay,Role-assignment,Baseline,2,07:30pm,2,0,0.5,Asylum was about Hollywood. I remember walking through there were signs of the different stages with numbers on them. When you first walked in there was a man reading a newspaper behind a desk. It was dark. There was a real actress who was screaming something. There were flashing lights like a camera at points. There were a few different clapperboards.,1,69.92,68.33,79.1,20.23,0,0,0,0,8.06,0,8.06,1.61,0,0,1.61,1.61,3.23,1.61,0,0,0,0,0,0,0,0,0,0,8.06,0,0,0,0,0,0,8.06,0,0,1.61,1.61,0,0,1.61,0,0,0,0,0,0,4.84,20.97,0,3.23,11.29,4.84,1.61,0,1.61,4.84,-1.49,34.75,14.48,-53.71,3,4,1,4,5,2,58.97,89.74,100,0,66.67,33.85,33.85,20,100,0,100,0,0,0,0,1,0,0,9,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.9,62,20 -1029,DevilsDen,Immediate,Role-assignment,Share,2,07:30pm,2,0,0.6,"More actors in this one. Bones. Butchered meat on a board. Actor with axe/sledgehammer. Sign outside said MACHINE SHOP. Part where you walk through a box and it shakes. Actor slammed his fist against said box. That box was orange. Dark. Many turns. Actor screamed ""the machine will never stop."" ",1,83.1,82.38,46.57,4.72,0,0,0,0,5.88,1.96,3.92,0,0,0,0,0,3.92,0,1.96,0,1.96,0,0,0,0,0,0,0,15.69,3.92,0,0,0,0,3.92,11.76,0,0,0,1.96,0,0,0,0,0,0,0,0,0,1.96,17.65,0,5.88,5.88,3.92,1.96,0,0,1.96,NA,89.06,27.19,NA,1,3,1,4,2,1,100,57.89,57.89,0,0,22.73,0,100,75,50,50,50,50,50,50,0,1,0,11,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.916666667,51,20 -1029,DevilsDen,Delay,Role-assignment,Share,2,07:30pm,2,1,0.8,I remember there was meat hanging and attached to a board. There were a lot of cleavers and other blades. I think we walked through a box at one point and that box was orange. There were bodies hanging from the ceiling towards the end. ,1,77.34,27.89,97.42,20.23,2.22,2.22,0,0,6.67,0,6.67,4.44,0,0,0,0,2.22,2.22,0,0,0,0,0,0,0,0,0,0,2.22,0,0,0,0,0,0,2.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.78,0,2.22,13.33,2.22,0,0,0,0,-10.77,-8.94,-7.28,-16.1,5,1,1,1,5,2,0,66.67,33.33,0,100,100,66.67,66.67,100,0,100,0,100,0,0,1,1,0,6,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.75,45,20 -1029,GhostlyGrounds,Delay,Role-assignment,Test,2,07:30pm,3,0,0.6,This one was about vampires. There was a lot of red light. I remember strobe lights. I am pretty sure this one had a moving floor at one point. We walked through the actual eastern state cells I am not sure if this was just the exit to the attraction or if it was actually part of it. I remember this attraction was right after the Al Capone one. There were lots of animatronics in this one.,1,33.77,3.5,92.29,20.23,1.3,1.3,0,0,12.99,0,12.99,2.6,0,0,7.79,1.3,6.49,2.6,0,0,0,0,0,0,0,0,0,0,1.3,0,0,0,0,0,0,1.3,0,0,0,0,0,0,0,0,0,0,0,0,0,5.19,14.29,0,2.6,7.79,3.9,0,0,0,5.19,41.85,46.39,37.48,41.68,5,4,4,3,5,5,40.63,40.63,0,50,100,17.19,17.19,75,100,0,46.88,46.88,50,100,0,0,0,0,5,0,1,0,0,0,0,1,0,1,5,3,8,0.625,5,1,77,20 -1030,Infirmary,Delay,Role-assignment,Baseline,2,07:30pm,2,0,0.2,Do not remember anything from “Infirmary”. There were a lot of vibrant colors (highlighter colors); I specifically remembered there were a lot of clowns wearing lab coats and running around. Spray cans at the start of section.,1,80.4,7.5,93.14,2.53,0,0,0,0,10.53,0,10.53,5.26,0,0,2.63,0,2.63,5.26,2.63,0,2.63,2.63,0,2.63,0,0,2.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.63,18.42,0,2.63,10.53,5.26,0,0,0,2.63,-12.11,-10.15,-32.99,6.82,5,1,3,1,5,2,0,41.18,52.94,5.88,100,100,20,68.57,22.86,0,43.75,0,100,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,5,1,6,0.833333333,5,1,37,20 -1030,Asylum,Immediate,Role-assignment,Baseline,2,07:30pm,1,0,0.5,"Asylum was the least scary one out of all the attractions. Not much was remembered since it wasnt scary/memorable. Asylum had a lot of noises, however most of them werent jump scares. The music wasnt in a particular fast/slow beat. As far as I can remember, the scene was very bright (compared to the other attractions) meaning that I could see everything including what was in front and my surroundings. ",1,55.1,1,99,2.35,0,0,0,0,22.97,2.7,18.92,4.05,1.35,2.7,0,0,10.81,4.05,8.11,2.7,5.41,4.05,0,4.05,4.05,0,0,0,1.35,0,0,0,0,0,0,1.35,0,0,0,0,0,0,2.7,0,0,0,0,0,0,6.76,17.57,0,4.05,8.11,2.7,2.7,0,2.7,6.76,21.57,40.92,-2.76,26.55,3,5,2,5,3,1,65,30,100,65,0,17.95,35.9,0,35.9,100,0,100,0,33.33,35.71,1,0,0,5,0,0,0,0,0,2,0,0,1,6,3,9,0.666666667,6,0.833333333,74,20 -1030,Asylum,Delay,Role-assignment,Baseline,2,07:30pm,1,1,0.5,"Honestly, I do not remember much from “Asylum”. “Asylum” had a lot of actors? and directors glooming around. A lot of the props were cinematic props. Setting was blueish/red instead of pitch black. ",1,85.2,13.82,22.12,2.17,2.78,0,0,2.78,11.11,0,11.11,2.78,0,0,0,2.78,5.56,2.78,2.78,0,2.78,2.78,0,2.78,0,0,2.78,0,5.56,0,0,0,0,0,0,5.56,0,0,0,0,0,0,5.56,0,0,0,0,0,0,5.56,8.33,0,0,2.78,5.56,0,0,5.56,5.56,-56.79,-36.58,-57.25,-76.54,2,1,5,1,2,2,0,100,100,100,11.11,100,0,0,0,61.54,87.5,0,0,0,100,0,0,0,4,0,0,0,0,0,0,0,0,1,4,1,5,0.8,4,1,36,20 -1030,DevilsDen,Immediate,Role-assignment,Share,2,07:30pm,2,0,0.4,"Devil's Den was relative scarier than ""Asylum"". The reason being that the music/beat was louder, there were seemingly more jump scares, and the actors were moving closer to us. I remember that rather than feeling scared, I was more concerned on not touching the actor, and wondering if there was something ahead of me that I could stumble on (reason being that the setting was very dark). I also remember there were a lot of flashes across a hallway. The flashes were more ""annoying"" than scary. ",1,35.13,7.37,96.89,1,1.14,1.14,0,0,18.18,0,18.18,7.95,2.27,1.14,4.55,0,5.68,2.27,9.09,1.14,6.82,6.82,0,5.68,4.55,1.14,0,0,4.55,1.14,0,0,1.14,0,0,3.41,0,0,0,0,0,0,1.14,0,0,0,0,0,1.14,1.14,17.05,0,3.41,5.68,3.41,2.27,2.27,1.14,2.28,25.03,4.31,40.9,29.88,5,4,2,1,5,1,0,0,0,5.26,100,24.6,51.59,65.08,100,0,0,100,0,11.76,11.76,1,0,0,4,4,0,0,0,0,1,0,0,0,9,1,10,0.9,5,0.8,88,20 -1030,DevilsDen,Delay,Role-assignment,Share,2,07:30pm,2,1,0.4,"Machine shop was seemingly more scary than the other attractions. There were loud noises (uncomfortable, not music), lots of jump scares, and the setting was very foggy. Since there were lots of screamings from other guests, it definitely made the experience way less scarier for me. There were TVs depicting graphic imagery along with workers wearing professional factory uniform. ",1,73,10.17,65.66,1,1.69,0,0,1.69,13.56,0,13.56,1.69,3.39,0,1.69,1.69,6.78,0,8.47,0,8.47,6.78,0,6.78,5.08,0,0,0,3.39,0,0,0,0,0,0,3.39,0,1.69,0,0,0,0,0,1.69,0,0,0,0,0,0,18.64,0,1.69,6.78,3.39,6.78,0,1.69,0,-8.69,-10.94,5.22,-20.36,3,3,1,1,5,2,0,0,100,0,18.18,80,40,100,100,0,100,0,50,50,0,1,0,0,5,2,0,0,0,0,1,0,0,0,8,1,9,0.888888889,6,0.833333333,59,20 -1030,GhostlyGrounds,Delay,Role-assignment,Test,2,07:30pm,3,0,0.6,"The Ghostly Grounds in my memories was considered one of the X series, meaning scarier series. Remember going through a bus, there were bodies laying in the seats. There were lots of jump scares, foggy setting, as well as a long tunnel towards the end of the session.",1,99,28.37,99,4.04,0,0,0,0,8.51,0,8.51,6.38,0,0,0,0,0,4.26,6.38,2.13,4.26,4.26,0,4.26,4.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.13,19.15,0,6.38,14.89,0,0,0,0,2.13,14.73,66.09,0.88,-22.77,5,3,1,2,2,3,56.25,0,6.25,37.5,100,45,0,100,25,0,100,100,0,0,0,1,2,0,2,0,0,0,0,0,0,1,0,0,5,1,6,0.833333333,5,0.4,47,20 -1032,Infirmary,Delay,Role-assignment,Baseline,2,08:30pm,2,0,0.8,we walk into a bigish empty room with neon paint and words on the walls. Some creepy girl was on a scooter thing sliding around banging into walls. then we walk into a room with two girls in like disco clothing dancing on tables and a lady hands us 3D glasses. Then we walk into a room with a green laser light that replicates water so you couldnt see below you with some and people like bumping into you. Then we walk through a tunnel thats moving with a bride and over floor thats sliding. And after that i dont remember anything until we came back out where the girls were dancing. ,1,82.05,99,99,5.5,6.25,6.25,0,0,2.68,0,2.68,0.89,0,0.89,0.89,0,0,0.89,1.79,0,1.79,0.89,0,0.89,0.89,0,0,0,15.18,3.57,0,0.89,0,0,0.89,12.5,0,0,4.46,0,0,0,0,0.89,0,0,0,0,0,6.25,30.36,0,9.82,16.96,2.68,0.89,0,0.89,6.25,-3.78,41.18,2.78,-55.32,2,5,5,3,2,1,73.81,100,0,82.14,27.38,23.53,0,50.8,50.8,100,0,0,0,0,100,2,4,0,7,0,0,0,0,0,0,0,1,1,13,2,15,0.866666667,13,0.538461538,112,18 -1032,Asylum,Immediate,Role-assignment,Baseline,2,08:30pm,4,0,0,"the man at the entrance yelled something about getting takes right we walk in past a man shooting a news casting who was banging on a table, then to a man starring at a table and then he reached his hand out like he was grabbing you, then past a women at what seemed to be a bar table saying something about seeing all these fresh faces, then past another man who was getting in peoples faces about casting I think and then we walked through the rest of the hallway and and out of the section. +1026,Infirmary,Immediate,Goal-assigned,Baseline,2,07:30pm,2,0,0.4,"ok so we walked in, and there were a bunch of rooms with different themes, there were a bunch of people in front and behind us, and there was screaming, and I feel like there was a medical theme, and we walked through that moving floor tunnel thing, and there was a women taking pictures of all the ""monsters"" in the rooms, and i think there was fog?, I think there was a bathtub full of blood, and I was second or third in the lineup for walking in and there was probably a guy hiding around a corner",1,54.26,52.11,99,20.23,3.03,3.03,0,0,7.07,1.01,6.06,3.03,0,0,2.02,0,2.02,0,0,0,0,0,0,0,0,0,0,0,5.05,0,0,0,0,0,0,5.05,0,0,1.01,1.01,0,0,1.01,0,1.01,0,0,1.01,0,4.04,27.27,0,4.04,20.2,1.01,1.01,1.01,2.02,5.05,37.1,55.79,27.7,27.81,5,2,4,2,5,1,68.67,0,45.78,0,100,36.67,100,36.67,100,0,0,50,0,100,52.63,1,1,0,9,0,0,0,0,1,0,0,0,1,11,2,13,0.846153846,11,0.818181818,99,18 +1026,Infirmary,Delay,Goal-assigned,Baseline,2,07:30pm,2,1,0.6,"ok so I truly dont remember Infirmary at all, I think it was a 3D theme with a bunch of neon lights but why that was supposed to be scary who knows. I know a guy, in the beginning, tried to hassle us before giving us our 3D glasses. and then we walked through the laser room which was one of the only truly scary parts of it. Then we walked through the actual section, and it was a bunch of 3D walls and paint coming off the walls but it truly just looked like paintball gone wrong. There was a moving tunnel of LEDs, but only the walls were moving so it was probably supposed to be an optical illusion. I also remember the guy at the end asking us to throw our glasses away, but other than that stuff I can only picture the color of the LED paints but even that might be wrong but I think they were yellow, orange and pink",1,34.86,43.61,80.67,3.11,5.42,4.22,0.6,0.6,18.67,1.81,16.87,3.61,1.2,3.01,1.2,1.81,6.02,1.2,2.41,0,2.41,1.2,0,1.2,1.2,0,0,0,8.43,1.81,0,0,0,1.2,0.6,6.63,0,0,0,1.2,0,0,0,0,0,0,0,0,0,1.81,13.86,0,4.22,5.42,4.82,0,0,0,1.81,-29.88,-7.68,-32.4,-49.55,2,5,1,5,2,2,16.47,100,20,80,0,56.99,0,37.5,12.5,100,100,0,17.17,85.86,85.86,4,2,0,11,1,0,0,0,0,0,0,0,4,18,4,22,0.818181818,17,0.647058824,166,18 +1026,Asylum,Delay,Goal-assigned,Baseline,2,07:30pm,1,0,0.75,"umm, there was a guy with a camera and he did a banging motion to scare ppl as they walked in. maybe there was a machete guy or some kind of medical scene with blood and medical instruments. steven was walking fast, I think I was second in the rooms. I was not that scared, but I think some people in the group were scared. I think it was a very lowkey haunted section, definitely scarier than the Infirmary section but not the scariest section in there. yeah, thats pretty much all Ive got, I assume it was a movie or film theme but beyond the camera dude, I dont remember any of the actors or their characters. ",1,41.22,3.75,99,1,0,0,0,0,18.64,0.85,16.1,4.24,0,0,5.93,0.85,8.47,0.85,5.08,0,5.08,4.24,0,4.24,4.24,0,0,0,7.63,0,0,0,0,0,0,7.63,0,0.85,0,3.39,0,0,0.85,0,0,0,0,0,0,2.54,14.41,0,3.39,10.17,0,0.85,0,0.85,2.54,53.29,83.83,1,75.04,1,3,4,2,2,1,100,0,25,29.35,55.43,40,0,100,26.96,47.83,0,93.88,93.88,100,100,4,0,0,5,2,0,0,0,0,2,0,0,3,11,5,16,0.6875,9,0.555555556,118,18 +1026,DevilsDen,Delay,Goal-assigned,Share,2,07:30pm,3,0,0.2,"ok, so I was definitely the most scared during this section. within the first couple minutes of being in there, some actor came around a corner and jump scared me. I think the anticipation of waiting outside for a little bit added to the fear factor, not gonna lie. Then I think there was like a courtyard or at least tree and plant decorated area which another actor came out and scared me. And then I remember some actor blocking my path and not letting me go around the table and I was very angry and frustrated because he was determined to scare me however he was just extremely annoying and I think he said something along the lines of ""this is what happens when you dont follow the rules"" and overall it essentially ruined the rest of the section for me because I was so angry so that sucks, I think I remember some kind of red theme, maybe the lights or blood or costumes idk",1,22.91,1.33,99,1,0.6,0,0,0.6,16.17,0,14.97,4.19,1.2,0,2.99,1.2,5.99,1.2,6.59,0,5.99,5.99,0,5.39,2.99,2.4,0,0,5.99,1.8,0,0,0.6,0,0.6,4.19,0,0,0,1.8,0,0,0,0,0,0,0,0,0,2.4,11.38,0,2.4,8.38,1.2,0,0,0,2.4,21.53,81.75,27.17,-44.34,1,4,5,3,2,1,100,83.08,0,34.87,34.87,28.37,0,90.26,100,51.29,0,0,20.93,1.16,100,5,1,1,6,4,0,0,0,0,2,0,0,5,17,7,24,0.708333333,13,0.461538462,167,18 +1026,GhostlyGrounds,Immediate,Goal-assigned,Test,2,07:30pm,2,0,0.4,"in the Ghostly Grounds section to first thing we did was walk onto the bus, and there were a bunch of what I assume to be mannequins but Im sure there was an actor in there somewhere and then we walked off the bus and into the building, and i think some guy scared me around the corner, and then there was the rooms with the cages and there was the box inside of the cage with the fake screaming girl in it, and there were two fake mannequins inside a cage dancing and there was a couple trying to decide which direction to take and there was moss on the ceiling and there was an actor slamming a cage on the ceiling i think and there were more cages and i think pipes. there was also a smoke machine around a few corners, I think the fog smelled too and there was also the mannequin on the bed covered in the sheet who sat up and there was an actor scaring people outside of a cage",1,69.97,43.4,96.89,2.01,1.7,1.14,0.57,0,5.68,0,5.68,3.41,0,0.57,1.14,0,1.14,0,2.84,0,2.84,1.14,0,1.14,1.14,0,0,0,6.25,1.7,0,0,0,1.14,0,4.55,0,0,0.57,0.57,0,0,0.57,0,0,0,0,0,0,1.7,19.89,0,2.27,17.05,0,0.57,0,0.57,1.7,-13.24,17.21,-24.67,-32.27,3,1,4,4,3,2,36.11,50,100,0,100,100,90,0,54,0,95.83,0,0,100,50,4,4,0,13,0,0,0,0,0,0,0,0,0,21,0,21,1,21,0.619047619,176,18 +1026,GhostlyGrounds,Delay,Goal-assigned,Test,2,07:30pm,2,1,0.6,"we walked through a bus, into a section with cages, past the handicapable ramp which I thought was great for accessibility. I was expecting someone to scare me on the bus but no one did so either the actors are unengaged or they were all mannequins. Also in this section, there was a room full of cages, with some guy hanging out of one trying to convince ppl he wasnt real but then he would scare them. and there was a guy on a landing above our heads banging on a cage as we walked under the doorway and it wasnt scary but I did think about the possibility that the cage would collapse on my head and I would die soooo. after we finished the Ghostly Grounds section we ran into the woman at the end who told us we could go down one way or the kaleidoscope hallway, and we went down the kaleidoscope hallway which wasnt scary at all.",1,56.86,62.18,92.58,5.13,6.21,4.97,1.24,0,16.15,2.48,13.66,1.86,0,3.11,2.48,0.62,6.83,0,3.11,0.62,2.48,2.48,0,2.48,2.48,0,0,0,13.04,1.24,0,0,0,0,0.62,11.8,0,0,0.62,2.48,0,0,0,0,0.62,0,0,0,0,2.48,14.91,0,3.73,11.18,0,0.62,0,0.62,2.48,38.46,55.04,48.93,11.41,3,4,1,4,1,5,92.42,25,100,0,75,0,62.29,43.43,100,5.71,100,68.75,68.75,68.75,0,6,3,0,5,4,0,1,0,0,2,0,0,0,18,3,21,0.857142857,14,0.357142857,161,18 +1027,Infirmary,Delay,Goal-assigned,Baseline,2,07:30pm,2,0,0.6,"Infirmary was the first exhibit if I remember correctly, it was the one where they gave us glasses. Everything was super neon, and actually pretty cool. I felt more excited going through rather than scary. There were ladies on these elevated surfaces in the beginning and I keep remembering this bright neon orange in the beginning. We walked through walls that were lit up neon. It was probably the brightest exhibit we went through. I dont remember anything about the actors. Just the walls I was seeing as I went through. The smoke that was being used was almost 3D in a way that I cant explain because of the glasses. I remember opening these heavy curtains at one point and walking through a very dark part of the tour where the glasses didnt work because everything was pretty much pitch black. ",1,34.46,16,94.15,64.63,2.82,2.11,0.7,0,17.61,2.82,14.79,4.23,2.11,0.7,4.23,0.7,3.52,2.82,4.23,3.52,0.7,1.41,0.7,0.7,0.7,0,0,0,5.63,2.11,0,0.7,0,0,0.7,4.23,0,0,0.7,0,0,0,0,0,0,0,0,0,0,3.52,19.72,0,3.52,9.15,4.93,0,2.11,0,3.52,-25.49,-45.93,-19.51,-11.03,3,1,1,1,2,5,0,95.24,100,100,80.27,100,0,88.57,67.86,5.71,100,32.53,34.94,69.88,0,3,0,0,10,2,0,0,0,0,0,1,0,2,15,3,18,0.833333333,13,0.769230769,142,20 +1027,Asylum,Immediate,Goal-assigned,Baseline,2,07:30pm,1,0,0.75,. I just found out that Asylum was actually the movie themes one and it was really cool it was like an old movie there were signs everywhere for directors and there was a lady in a red dress and actors and it was kind of scary I think the scariest part was the guy that put his tooth drill towards me. I also remember the ground was little slippery nd it was very windy roads that we wnt through,1,23.13,54.96,63.35,8.55,2.5,1.25,0,1.25,11.25,1.25,10,3.75,0,0,2.5,2.5,1.25,1.25,3.75,1.25,2.5,2.5,0,2.5,2.5,0,0,0,7.5,1.25,0,1.25,0,0,0,7.5,0,0,1.25,2.5,0,0,1.25,0,0,0,0,0,0,3.75,12.5,0,1.25,8.75,1.25,0,1.25,1.25,3.75,-22.95,-23.33,-36.58,-8.93,3,1,1,1,3,2,0,0,100,100,0,100,100,0,0,0,100,0,100,100,50,1,0,0,7,3,0,0,0,0,0,0,0,0,11,0,11,1,8,0.875,81,20 +1027,Asylum,Delay,Goal-assigned,Baseline,2,07:30pm,1,1,0.5,"Asylum was the second part of the tour. It was twenties movie themed and there were signs all over that said director and cast and there were people dressed up like they were in the movie roles. There was a lady in a robe that was red and for some reason I remember seeing water fountains around. This exhibit was not very long, in fact it felt like the shortest one. We were walking around in very crammed spaces for most of it and I really dont remember it being that scary. I specifically remember one part of the tour where there was a makeshift dentist room and the actor had a drilll that he would move towards our faces when we walked by. I also remember the room with the lady in the red robe. She was in a bed in the middle of a dark room and that was the only thing in the room. That is all I can specifically remember. I dont remmeber the very beginning or end.",1,47.63,43.46,90.77,13.97,2.31,1.73,0,0.58,10.4,2.31,8.09,4.05,0.58,1.16,0.58,0.58,2.31,2.89,0.58,0,0.58,0.58,0,0.58,0.58,0,0,0,6.94,1.73,0,1.16,0,0,0.58,6.36,0,0,1.73,0.58,0,0,0.58,0,0,0,0,0,0,2.89,19.08,0,1.73,14.45,2.31,0,0.58,0.58,2.89,12.69,-24.53,-4.2,66.8,5,3,2,1,2,1,0,46.58,23.29,76.03,100,40,0,100,7.06,68.82,0,100,75,51.47,51.47,2,1,0,10,1,0,0,0,0,0,1,1,3,14,5,19,0.736842105,13,0.769230769,173,20 +1027,DevilsDen,Delay,Goal-assigned,Share,2,07:30pm,4,0,0.6,"The most I remember from Devil's Den was the loud noises. At one point right before we walked out of the indoor part there was this guy above us that dropped a cage that was so loud it startled me. I believe Devil's Den was also the exhibit where we walked onto a school bus in the very beginning. I rememebr being scared of the school bus because I thought someone was going to pop out at us while we were in there and it was a very small space. I remember there was a levitating box and someone was inside banging on it and it was so loud. At the end of this tour I remember being able to go one of two ways and the way we went took us through a hallway with a bunch of old jail calls that the prisoners used to live in. It was so dark inside each of them and they were so small. I remember that part because I remember also seeing these cells in parts of the Devil's Den tour and it was so dark I was nervous that there were actors in them that were going to pop out, but no one ended up popping out of them at us and most parts of the exhibit where cells were there were not decorations around them. ",1,39.96,58.5,95.43,5.58,4.42,3.54,0.44,0.44,8.85,0.88,7.96,3.1,1.33,0,0.88,0,2.65,2.21,2.21,0,1.77,1.33,0,0.88,0.88,0,0,0,7.52,0,0,0,0,0,0,7.52,0,0,0,0.44,0,0,0.44,0,0,0,0,0,0,3.1,17.7,0,2.21,12.39,1.33,2.21,0,0.44,3.1,-3.87,-25.34,-3.39,17.11,2,5,4,1,3,5,0,100,100,9.8,9.8,9.01,42.86,0,0,100,64.49,33.33,33.33,100,0,4,1,0,12,3,0,1,0,1,0,1,0,0,20,3,23,0.869565217,17,0.705882353,226,20 +1027,GhostlyGrounds,Immediate,Goal-assigned,Test,2,07:30pm,3,0,0.6,Ghostly Grounds was the last one we went through and at first we went through an old school bus and I remember thinking about if someone was going to jump out at me while I was on the bus because that would have been really scary. I liked this one a lot because we culd see into all the old prison cells but I think that distracted me from the actors themselves. there was also a loud shaking box and I think someone was inside of it slamming on it but this was definitel the loudest haunted house ou of all of them. we had to go up and don steps in this one and the ground like slipped under you at one pouint and I remember that because I almost ate it after someone JUMPED OUT AT ME he really got my heart rate going I think. ut it was cool how you could choose the last part which to go through and the koleidescope hall had all the abandoped cells in it. I cant really remember a lot of the actors in this one though but I had the most jump scares in this part of eastern state it was super awesome. ,1,42.04,29.16,97.61,14.8,2.46,1.97,0,0.49,16.26,1.48,14.78,4.43,1.97,1.48,2.46,1.48,4.43,1.48,4.43,1.97,2.46,1.48,0.49,0.99,0.99,0,0,0,6.9,0,0,0,0,0,0,6.9,0,0,0,0.49,0.99,0,0.49,0,0,0,0,0,0,3.94,13.79,0.49,5.42,6.9,0.49,0.99,0.49,1.48,3.94,28.35,48.08,16.92,20.07,3,4,2,2,3,3,83.33,0,100,2.5,70.83,30.77,76.92,0,100,21.15,40,100,0,62,21,4,1,0,6,2,0,1,0,1,4,1,0,1,13,8,21,0.619047619,11,0.545454545,203,20 +1027,GhostlyGrounds,Delay,Goal-assigned,Test,2,07:30pm,3,1,0.6,"I really do not remember anything from Ghostly Grounds. I cannot even remember what the theme was of this part of the tour. I think that the only thing I can remember is the end when we were walking through a large dark space and an actor came up crawling and that startled me because I didnt even see them at first. Other than that, I really dont remember anything from Ghostly Grounds. I do not remember any of the actor or props.",1,8.62,1,99,20.23,1.23,1.23,0,0,28.4,2.47,25.93,7.41,1.23,2.47,4.94,2.47,9.88,6.17,1.23,0,0,1.23,0,0,0,0,0,0,4.94,0,0,0,0,0,0,4.94,0,0,0,0,0,0,0,0,0,0,0,0,0,1.23,8.64,0,3.7,2.47,2.47,0,0,0,1.23,-6.85,16.9,-14.32,-23.11,2,4,2,4,3,3,41.18,100,100,0,50,77.31,57.14,0,100,57.14,94.12,100,0,100,100,0,1,0,2,1,0,0,0,0,0,0,0,4,4,4,8,0.5,3,0.666666667,81,20 +1028,Infirmary,Immediate,Goal-assigned,Baseline,2,07:30pm,1,0,0.4,There were a bunch of clowns and colors and trippy objects and shapes. Not a lot of jump scares and I remember at the beginning we had to put on some 3d glasses in order to enhance the experience. One guy tried following me down a stairwell. Overall was the least scary in my opinion. All of the actors had face makeup. ,1,94.75,31.06,69.74,1.4,4.84,1.61,1.61,1.61,8.06,1.61,6.45,3.23,0,0,0,0,1.61,1.61,3.23,0,3.23,3.23,0,3.23,3.23,0,0,0,4.84,0,0,0,0,0,0,4.84,0,0,0,1.61,3.23,0,0,0,0,0,0,0,0,0,11.29,0,3.23,6.45,1.61,0,0,3.23,0,-30.58,-31.73,-50.95,-9.08,3,1,5,1,3,1,0,58.54,100,36.59,36.59,100,64.71,0,0,38.24,0,92.31,0,0,100,3,0,0,5,0,0,0,0,0,1,0,0,0,8,1,9,0.888888889,8,0.625,62,20 +1028,Infirmary,Delay,Goal-assigned,Baseline,2,07:30pm,1,1,0.8,In the Infirmary section we walked in and there was someone with a canvas that was painting and they pushed it toward us. Then we walked through this tunnel and they gave us some 3d glasses to make everything pop out more. I remember really big spiders and all of the images as we walked through were very trippy and colorful. There were a couple of clowns throughout that would follow you and try and jump scare you. There was a spinning tunnel that you crossed on this bridge. ,1,29.68,99,57.08,20.23,6.74,5.62,1.12,0,8.99,2.25,6.74,1.12,1.12,2.25,1.12,1.12,0,1.12,2.25,1.12,1.12,1.12,0,1.12,1.12,0,0,0,13.48,1.12,0,0,0,0,0,12.36,0,0,0,0,0,0,0,0,0,0,0,0,0,4.49,20.22,0,7.87,10.11,2.25,0,0,0,4.49,28.07,54.13,-0.85,30.94,1,2,3,2,3,1,100,0,100,66.67,3.92,50,100,0,50,61.76,0,0,100,0,0,5,2,0,5,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.416666667,89,20 +1028,Asylum,Delay,Goal-assigned,Baseline,2,07:30pm,1,0,0.5,In Asylum I remember we started walking through and there were some jumpscares in the beginning. I vividily remember on the way out walking through a bunch of strobe lights that made me feel like I was going to seize. There was also fog as we walked down this hallway with a lot of the old cells that people used to live in. I do not particularly remember much of the station but there was an instance with a jumpscare where someone came out of a hidden window backspace that I was not expecting.,1,86.35,11.47,99,20.23,3.16,2.11,0,1.05,11.58,0,11.58,4.21,2.11,0,3.16,0,3.16,3.16,0,0,0,0,0,0,0,0,0,0,3.16,0,0,0,0,0,0,3.16,0,0,0,0,0,0,1.05,0,0,0,0,1.05,0,7.37,22.11,0,5.26,12.63,3.16,0,1.05,1.05,8.42,2.22,-17.1,-19.98,43.76,3,4,2,1,2,1,0,66.67,100,0,66.67,75,0,25,100,50,0,100,0,100,0,2,0,0,0,0,2,1,0,3,1,1,0,1,2,9,11,0.181818182,2,0,95,20 +1028,DevilsDen,Immediate,Goal-assigned,Share,2,07:30pm,3,0,0.4,"In Devil's Den you came in and there was some dude with a hook that went at you right away and then you continued through some other shops that looked like butchers and then you walked through this long hallway with very blinding lights that were white and made it seem like a rave. There were a few jumpscares throughout, too. The hallway had some rooms that looked abandoned.",1,60.52,93.24,82.12,7.29,0,0,0,0,4.35,0,4.35,1.45,1.45,0,1.45,0,1.45,0,1.45,0,1.45,0,0,0,0,0,0,0,7.25,0,0,0,0,0,0,7.25,0,1.45,0,1.45,0,0,0,0,0,0,0,0,0,5.8,23.19,0,4.35,11.59,7.25,0,0,0,5.8,53.34,84.33,44.76,30.94,1,2,4,4,5,1,100,66.67,33.33,0,74.36,25.71,100,62.86,62.86,0,0,0,0,100,0,3,1,0,4,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.5,69,20 +1028,DevilsDen,Delay,Goal-assigned,Share,2,07:30pm,3,1,0.2,"In the Devil's Den section I remember walking in and there was a guy with some type of weapon, maybe a bat, that followed us in the beginning. As we continued to walk through a lot of the people seemed to have weapons. There were some at work at the ""Devil's Den"", too. There were a lot of machines throughout",1,98.32,77.41,89.39,20.23,5,3.33,1.67,0,5,0,5,3.33,0,0,3.33,0,0,1.67,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,1.67,0,0,0,0,0,0,0,0,0,5,16.67,0,3.33,13.33,0,0,0,0,5,-14,-22.95,-24.84,5.78,3,1,1,1,3,3,0,33.33,100,33.33,66.67,100,50,0,100,50,100,100,0,100,0,2,1,0,3,0,0,0,0,0,0,0,0,1,6,1,7,0.857142857,6,0.5,60,20 +1028,GhostlyGrounds,Delay,Goal-assigned,Test,2,07:30pm,4,0,0,In the Ghostly Grounds section I remember starting by walking through a dimly lit bus with a bunch of actors in each seat. I believe that the theme in this one was more vampire like and i remember the fog machines being used creating a hazy environment. ,1,98.7,18.24,96.69,20.23,2.17,0,2.17,0,10.87,0,10.87,6.52,2.17,0,2.17,0,0,4.35,0,0,0,0,0,0,0,0,0,0,2.17,0,0,0,0,0,0,2.17,0,0,0,0,0,0,0,0,0,0,0,0,2.17,2.17,17.39,0,2.17,10.87,4.35,0,0,0,4.34,33.98,68.65,23.23,10.07,2,4,3,4,2,2,90,100,75,0,50,22.5,0,50,100,25,90,0,100,100,0,0,1,0,4,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.8,46,20 +1029,Infirmary,Immediate,Goal-assigned,Baseline,2,07:30pm,1,0,0.4,3D glasses. Neon colors. Spirals. Few actors. Cages. Spiders. Tanks. Splatter paint on the floors. Actor kicked art easel. ,1,98,90.88,70.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.26,0,5.26,0,0,0,0,0,0,0,10.53,0,0,0,0,0,0,10.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.32,0,10.53,10.53,5.26,5.26,0,0,0,NA,-11.67,NA,NA,4,1,1,1,1,1,0,0,0,100,0,50,50,50,50,50,50,50,50,50,50,0,0,0,9,0,0,0,0,0,0,0,0,0,9,0,9,1,9,1,19,20 +1029,Infirmary,Delay,Goal-assigned,Baseline,2,07:30pm,1,1,0.6,Infirmary was a 3d glasses exhibit. There were lots of polka dots. Everything was neon. There were big spiders and holes in the walls. There were orange and blue stripes on the walls. Lots of neon clowns. There were neon green/yellow pipes along the walls. There was a big neon blue cylinder with hazard signs on it. There was a big python at one point. I think there was a rockclimibing wall. Lots of mannequins. A part where you walk through just dots. Cargo boxes.,1,76.62,40.06,61.77,9.15,0,0,0,0,3.49,1.16,2.33,1.16,0,0,0,0,1.16,0,1.16,0,1.16,0,0,0,0,0,0,0,1.16,0,0,0,0,0,0,1.16,0,0,0,0,0,0,0,0,0,0,0,1.16,0,3.49,22.09,0,1.16,15.12,5.81,0,0,0,4.65,-13.42,-24.54,-46.65,30.94,2,1,4,1,2,1,0,100,35.71,67.86,67.86,100,0,0,38.3,0,0,0,0,100,0,0,1,0,14,0,0,0,0,0,0,1,0,0,15,1,16,0.9375,15,0.933333333,86,20 +1029,Asylum,Delay,Goal-assigned,Baseline,2,07:30pm,2,0,0.5,Asylum was about Hollywood. I remember walking through there were signs of the different stages with numbers on them. When you first walked in there was a man reading a newspaper behind a desk. It was dark. There was a real actress who was screaming something. There were flashing lights like a camera at points. There were a few different clapperboards.,1,69.92,68.33,79.1,20.23,0,0,0,0,8.06,0,8.06,1.61,0,0,1.61,1.61,3.23,1.61,0,0,0,0,0,0,0,0,0,0,8.06,0,0,0,0,0,0,8.06,0,0,1.61,1.61,0,0,1.61,0,0,0,0,0,0,4.84,20.97,0,3.23,11.29,4.84,1.61,0,1.61,4.84,-1.49,34.75,14.48,-53.71,3,4,1,4,5,2,58.97,89.74,100,0,66.67,33.85,33.85,20,100,0,100,0,0,0,0,1,0,0,9,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.9,62,20 +1029,DevilsDen,Immediate,Goal-assigned,Share,2,07:30pm,2,0,0.6,"More actors in this one. Bones. Butchered meat on a board. Actor with axe/sledgehammer. Sign outside said MACHINE SHOP. Part where you walk through a box and it shakes. Actor slammed his fist against said box. That box was orange. Dark. Many turns. Actor screamed ""the machine will never stop."" ",1,83.1,82.38,46.57,4.72,0,0,0,0,5.88,1.96,3.92,0,0,0,0,0,3.92,0,1.96,0,1.96,0,0,0,0,0,0,0,15.69,3.92,0,0,0,0,3.92,11.76,0,0,0,1.96,0,0,0,0,0,0,0,0,0,1.96,17.65,0,5.88,5.88,3.92,1.96,0,0,1.96,NA,89.06,27.19,NA,1,3,1,4,2,1,100,57.89,57.89,0,0,22.73,0,100,75,50,50,50,50,50,50,0,1,0,11,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.916666667,51,20 +1029,DevilsDen,Delay,Goal-assigned,Share,2,07:30pm,2,1,0.8,I remember there was meat hanging and attached to a board. There were a lot of cleavers and other blades. I think we walked through a box at one point and that box was orange. There were bodies hanging from the ceiling towards the end. ,1,77.34,27.89,97.42,20.23,2.22,2.22,0,0,6.67,0,6.67,4.44,0,0,0,0,2.22,2.22,0,0,0,0,0,0,0,0,0,0,2.22,0,0,0,0,0,0,2.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.78,0,2.22,13.33,2.22,0,0,0,0,-10.77,-8.94,-7.28,-16.1,5,1,1,1,5,2,0,66.67,33.33,0,100,100,66.67,66.67,100,0,100,0,100,0,0,1,1,0,6,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.75,45,20 +1029,GhostlyGrounds,Delay,Goal-assigned,Test,2,07:30pm,3,0,0.6,This one was about vampires. There was a lot of red light. I remember strobe lights. I am pretty sure this one had a moving floor at one point. We walked through the actual eastern state cells I am not sure if this was just the exit to the attraction or if it was actually part of it. I remember this attraction was right after the Al Capone one. There were lots of animatronics in this one.,1,33.77,3.5,92.29,20.23,1.3,1.3,0,0,12.99,0,12.99,2.6,0,0,7.79,1.3,6.49,2.6,0,0,0,0,0,0,0,0,0,0,1.3,0,0,0,0,0,0,1.3,0,0,0,0,0,0,0,0,0,0,0,0,0,5.19,14.29,0,2.6,7.79,3.9,0,0,0,5.19,41.85,46.39,37.48,41.68,5,4,4,3,5,5,40.63,40.63,0,50,100,17.19,17.19,75,100,0,46.88,46.88,50,100,0,0,0,0,5,0,1,0,0,0,0,1,0,1,5,3,8,0.625,5,1,77,20 +1030,Infirmary,Delay,Goal-assigned,Baseline,2,07:30pm,2,0,0.2,Do not remember anything from “Infirmary”. There were a lot of vibrant colors (highlighter colors); I specifically remembered there were a lot of clowns wearing lab coats and running around. Spray cans at the start of section.,1,80.4,7.5,93.14,2.53,0,0,0,0,10.53,0,10.53,5.26,0,0,2.63,0,2.63,5.26,2.63,0,2.63,2.63,0,2.63,0,0,2.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.63,18.42,0,2.63,10.53,5.26,0,0,0,2.63,-12.11,-10.15,-32.99,6.82,5,1,3,1,5,2,0,41.18,52.94,5.88,100,100,20,68.57,22.86,0,43.75,0,100,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,5,1,6,0.833333333,5,1,37,20 +1030,Asylum,Immediate,Goal-assigned,Baseline,2,07:30pm,1,0,0.5,"Asylum was the least scary one out of all the attractions. Not much was remembered since it wasnt scary/memorable. Asylum had a lot of noises, however most of them werent jump scares. The music wasnt in a particular fast/slow beat. As far as I can remember, the scene was very bright (compared to the other attractions) meaning that I could see everything including what was in front and my surroundings. ",1,55.1,1,99,2.35,0,0,0,0,22.97,2.7,18.92,4.05,1.35,2.7,0,0,10.81,4.05,8.11,2.7,5.41,4.05,0,4.05,4.05,0,0,0,1.35,0,0,0,0,0,0,1.35,0,0,0,0,0,0,2.7,0,0,0,0,0,0,6.76,17.57,0,4.05,8.11,2.7,2.7,0,2.7,6.76,21.57,40.92,-2.76,26.55,3,5,2,5,3,1,65,30,100,65,0,17.95,35.9,0,35.9,100,0,100,0,33.33,35.71,1,0,0,5,0,0,0,0,0,2,0,0,1,6,3,9,0.666666667,6,0.833333333,74,20 +1030,Asylum,Delay,Goal-assigned,Baseline,2,07:30pm,1,1,0.5,"Honestly, I do not remember much from “Asylum”. “Asylum” had a lot of actors? and directors glooming around. A lot of the props were cinematic props. Setting was blueish/red instead of pitch black. ",1,85.2,13.82,22.12,2.17,2.78,0,0,2.78,11.11,0,11.11,2.78,0,0,0,2.78,5.56,2.78,2.78,0,2.78,2.78,0,2.78,0,0,2.78,0,5.56,0,0,0,0,0,0,5.56,0,0,0,0,0,0,5.56,0,0,0,0,0,0,5.56,8.33,0,0,2.78,5.56,0,0,5.56,5.56,-56.79,-36.58,-57.25,-76.54,2,1,5,1,2,2,0,100,100,100,11.11,100,0,0,0,61.54,87.5,0,0,0,100,0,0,0,4,0,0,0,0,0,0,0,0,1,4,1,5,0.8,4,1,36,20 +1030,DevilsDen,Immediate,Goal-assigned,Share,2,07:30pm,2,0,0.4,"Devil's Den was relative scarier than ""Asylum"". The reason being that the music/beat was louder, there were seemingly more jump scares, and the actors were moving closer to us. I remember that rather than feeling scared, I was more concerned on not touching the actor, and wondering if there was something ahead of me that I could stumble on (reason being that the setting was very dark). I also remember there were a lot of flashes across a hallway. The flashes were more ""annoying"" than scary. ",1,35.13,7.37,96.89,1,1.14,1.14,0,0,18.18,0,18.18,7.95,2.27,1.14,4.55,0,5.68,2.27,9.09,1.14,6.82,6.82,0,5.68,4.55,1.14,0,0,4.55,1.14,0,0,1.14,0,0,3.41,0,0,0,0,0,0,1.14,0,0,0,0,0,1.14,1.14,17.05,0,3.41,5.68,3.41,2.27,2.27,1.14,2.28,25.03,4.31,40.9,29.88,5,4,2,1,5,1,0,0,0,5.26,100,24.6,51.59,65.08,100,0,0,100,0,11.76,11.76,1,0,0,4,4,0,0,0,0,1,0,0,0,9,1,10,0.9,5,0.8,88,20 +1030,DevilsDen,Delay,Goal-assigned,Share,2,07:30pm,2,1,0.4,"Machine shop was seemingly more scary than the other attractions. There were loud noises (uncomfortable, not music), lots of jump scares, and the setting was very foggy. Since there were lots of screamings from other guests, it definitely made the experience way less scarier for me. There were TVs depicting graphic imagery along with workers wearing professional factory uniform. ",1,73,10.17,65.66,1,1.69,0,0,1.69,13.56,0,13.56,1.69,3.39,0,1.69,1.69,6.78,0,8.47,0,8.47,6.78,0,6.78,5.08,0,0,0,3.39,0,0,0,0,0,0,3.39,0,1.69,0,0,0,0,0,1.69,0,0,0,0,0,0,18.64,0,1.69,6.78,3.39,6.78,0,1.69,0,-8.69,-10.94,5.22,-20.36,3,3,1,1,5,2,0,0,100,0,18.18,80,40,100,100,0,100,0,50,50,0,1,0,0,5,2,0,0,0,0,1,0,0,0,8,1,9,0.888888889,6,0.833333333,59,20 +1030,GhostlyGrounds,Delay,Goal-assigned,Test,2,07:30pm,3,0,0.6,"The Ghostly Grounds in my memories was considered one of the X series, meaning scarier series. Remember going through a bus, there were bodies laying in the seats. There were lots of jump scares, foggy setting, as well as a long tunnel towards the end of the session.",1,99,28.37,99,4.04,0,0,0,0,8.51,0,8.51,6.38,0,0,0,0,0,4.26,6.38,2.13,4.26,4.26,0,4.26,4.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.13,19.15,0,6.38,14.89,0,0,0,0,2.13,14.73,66.09,0.88,-22.77,5,3,1,2,2,3,56.25,0,6.25,37.5,100,45,0,100,25,0,100,100,0,0,0,1,2,0,2,0,0,0,0,0,0,1,0,0,5,1,6,0.833333333,5,0.4,47,20 +1032,Infirmary,Delay,Goal-assigned,Baseline,2,08:30pm,2,0,0.8,we walk into a bigish empty room with neon paint and words on the walls. Some creepy girl was on a scooter thing sliding around banging into walls. then we walk into a room with two girls in like disco clothing dancing on tables and a lady hands us 3D glasses. Then we walk into a room with a green laser light that replicates water so you couldnt see below you with some and people like bumping into you. Then we walk through a tunnel thats moving with a bride and over floor thats sliding. And after that i dont remember anything until we came back out where the girls were dancing. ,1,82.05,99,99,5.5,6.25,6.25,0,0,2.68,0,2.68,0.89,0,0.89,0.89,0,0,0.89,1.79,0,1.79,0.89,0,0.89,0.89,0,0,0,15.18,3.57,0,0.89,0,0,0.89,12.5,0,0,4.46,0,0,0,0,0.89,0,0,0,0,0,6.25,30.36,0,9.82,16.96,2.68,0.89,0,0.89,6.25,-3.78,41.18,2.78,-55.32,2,5,5,3,2,1,73.81,100,0,82.14,27.38,23.53,0,50.8,50.8,100,0,0,0,0,100,2,4,0,7,0,0,0,0,0,0,0,1,1,13,2,15,0.866666667,13,0.538461538,112,18 +1032,Asylum,Immediate,Goal-assigned,Baseline,2,08:30pm,4,0,0,"the man at the entrance yelled something about getting takes right we walk in past a man shooting a news casting who was banging on a table, then to a man starring at a table and then he reached his hand out like he was grabbing you, then past a women at what seemed to be a bar table saying something about seeing all these fresh faces, then past another man who was getting in peoples faces about casting I think and then we walked through the rest of the hallway and and out of the section. remember a women in a red dress walking by who then came through a hidden door into the other side ",1,94.27,95.32,88.67,32.04,1.71,1.71,0,0,8.55,0.85,7.69,2.56,0,0,2.56,0,2.56,0.85,0.85,0.85,0,0,0,0,0,0,0,0,16.24,2.56,0,0,0,0,2.56,13.68,0,0,1.71,5.98,0,0,3.42,0,0,0,0,0.85,0,4.27,17.95,0,4.27,9.4,2.56,1.71,0.85,3.42,5.12,42.32,42.25,52.51,32.2,5,2,3,3,5,1,34.17,34.17,0,40,100,14.81,100,71.11,88.89,0,0,0,100,100,100,3,2,0,7,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.583333333,117,18 -1032,Asylum,Delay,Role-assignment,Baseline,2,08:30pm,4,1,0.25,"First we walk to the door and some dude yelled in my face, then he said we could go in and we walk through the entrance. Then we come up to a newscaster guy he was starring at a camera and he was practicing takes of a scene. He then slammed his hand on the desk as we walked by. Then we go to another guy at a desk just starring into space very creepy like. we walk further and a women in red robe was walking towards us by a bar table and she went through a door in the wall we didnt see. then we walk out and that was the end of the Asylum. ",1,82.49,99,90.74,5.94,9.32,8.47,0.85,0,2.54,0,2.54,0,0,0.85,0,0,1.69,0,1.69,0,1.69,0.85,0,0.85,0.85,0,0,0,18.64,1.69,0,0,0,0,1.69,16.95,0,0.85,1.69,6.78,0,0,1.69,0,0,0,0,0,0,5.93,23.73,0,9.32,14.41,1.69,0.85,0,1.69,5.93,NA,-16.69,-47.6,NA,5,1,1,1,2,1,0,89.61,89.61,6.49,100,100,0,33.33,10.14,10.14,50,50,50,50,50,8,0,0,6,0,0,0,0,0,0,0,0,0,14,0,14,1,14,0.428571429,118,18 -1032,DevilsDen,Delay,Role-assignment,Share,2,08:30pm,4,0,0.6,we were stopped outside with a guy and an axe talking about stuff and then we walk through a room that red. we run into a dude with an chainsaw getting real close to us ad some more guys with axes and stuff that were around the place. we walked through this red box that was like a grinding machine or something and there was blood on the walls it looked like and i cant remember anything else ,1,57.4,90.19,74.77,20.23,6.41,6.41,0,0,8.97,0,8.97,1.28,0,1.28,3.85,1.28,3.85,1.28,0,0,0,0,0,0,0,0,0,0,11.54,1.28,0,0,0,0,1.28,10.26,0,1.28,0,3.85,0,0,1.28,0,0,0,0,0,0,6.41,17.95,0,3.85,10.26,3.85,0,0,1.28,6.41,-3.46,67.08,-22.15,-55.32,2,5,5,4,2,1,74.14,100,48.28,0,0,76.53,0,61.22,83.67,100,0,0,0,0,100,2,2,0,6,0,0,0,0,0,0,0,0,2,10,2,12,0.833333333,10,0.6,78,18 -1032,GhostlyGrounds,Immediate,Role-assignment,Test,2,08:30pm,3,0,0.8,"walked through the bus with the strobe lights and the ""people"" in the seats then through the gate part where a guy was banging on the bars and yelling and running around, then through the hallway there was a bunch of people in masks that kept popping out one was in its own cell thing and was reaching out, and there were people in capes running around gurgling and hissing, then we walked up the stairs and there were more people, and then there was a portion where their were bodies hanging from the ceiling and then walked through the rest of the hall and into the exit portion. +1032,Asylum,Delay,Goal-assigned,Baseline,2,08:30pm,4,1,0.25,"First we walk to the door and some dude yelled in my face, then he said we could go in and we walk through the entrance. Then we come up to a newscaster guy he was starring at a camera and he was practicing takes of a scene. He then slammed his hand on the desk as we walked by. Then we go to another guy at a desk just starring into space very creepy like. we walk further and a women in red robe was walking towards us by a bar table and she went through a door in the wall we didnt see. then we walk out and that was the end of the Asylum. ",1,82.49,99,90.74,5.94,9.32,8.47,0.85,0,2.54,0,2.54,0,0,0.85,0,0,1.69,0,1.69,0,1.69,0.85,0,0.85,0.85,0,0,0,18.64,1.69,0,0,0,0,1.69,16.95,0,0.85,1.69,6.78,0,0,1.69,0,0,0,0,0,0,5.93,23.73,0,9.32,14.41,1.69,0.85,0,1.69,5.93,NA,-16.69,-47.6,NA,5,1,1,1,2,1,0,89.61,89.61,6.49,100,100,0,33.33,10.14,10.14,50,50,50,50,50,8,0,0,6,0,0,0,0,0,0,0,0,0,14,0,14,1,14,0.428571429,118,18 +1032,DevilsDen,Delay,Goal-assigned,Share,2,08:30pm,4,0,0.6,we were stopped outside with a guy and an axe talking about stuff and then we walk through a room that red. we run into a dude with an chainsaw getting real close to us ad some more guys with axes and stuff that were around the place. we walked through this red box that was like a grinding machine or something and there was blood on the walls it looked like and i cant remember anything else ,1,57.4,90.19,74.77,20.23,6.41,6.41,0,0,8.97,0,8.97,1.28,0,1.28,3.85,1.28,3.85,1.28,0,0,0,0,0,0,0,0,0,0,11.54,1.28,0,0,0,0,1.28,10.26,0,1.28,0,3.85,0,0,1.28,0,0,0,0,0,0,6.41,17.95,0,3.85,10.26,3.85,0,0,1.28,6.41,-3.46,67.08,-22.15,-55.32,2,5,5,4,2,1,74.14,100,48.28,0,0,76.53,0,61.22,83.67,100,0,0,0,0,100,2,2,0,6,0,0,0,0,0,0,0,0,2,10,2,12,0.833333333,10,0.6,78,18 +1032,GhostlyGrounds,Immediate,Goal-assigned,Test,2,08:30pm,3,0,0.8,"walked through the bus with the strobe lights and the ""people"" in the seats then through the gate part where a guy was banging on the bars and yelling and running around, then through the hallway there was a bunch of people in masks that kept popping out one was in its own cell thing and was reaching out, and there were people in capes running around gurgling and hissing, then we walked up the stairs and there were more people, and then there was a portion where their were bodies hanging from the ceiling and then walked through the rest of the hall and into the exit portion. there was zapping noises and smoke at one point ",1,84.11,50.15,97.35,11.57,1.69,0.85,0,0.85,2.54,0,2.54,0,0,0,0,0,1.69,0,0.85,0,0.85,0,0,0,0,0,0,0,3.39,0.85,0,0,0,0,0.85,2.54,0,0,0,0.85,0,0,0,0,0,0,0,0,0,5.08,27.12,0,5.08,17.8,0.85,4.24,0,0,5.08,NA,83.24,66.05,NA,1,3,1,3,1,1,100,83.33,0,20.29,55.07,0,28.57,100,91.93,32.3,50,50,50,50,50,4,4,0,13,0,0,0,0,0,0,0,0,0,21,0,21,1,21,0.619047619,118,18 -1032,GhostlyGrounds,Delay,Role-assignment,Test,2,08:30pm,3,1,0.6,Ghostly Grounds we walk through a sketchy bus with dummies in the seats then through a metal cage gate area with some dude running around and banging on it then we walk up stairs with like wind blowing and smoke and then we walk past these creepy dudes in black outfits with capes and sketchy wrinkly masks on that kept hissing and running around. then some one was in a cage like hanging out and was reaching out to people. and there was a freezer section with like bodies hanging from the ceiling and there was a part where the floor was moving and some guy was standing on like this gate thing and pushed it down as if he was pushing it on us. and then we walked down the stairs and left. there was also a room with like taser sounds and lights flashing ,1,78.38,84.02,97.5,12.93,3.45,3.45,0,0,1.38,0,1.38,0,0,0,0.69,0,1.38,0,0.69,0,0.69,0.69,0,0.69,0.69,0,0,0,6.21,0,0,0,0,0,0,6.21,0,1.38,0,2.76,0,0,0,0,0,0,0,0,0,5.52,27.59,0,6.9,17.24,2.07,2.07,0,0,5.52,29.26,73.34,69.75,-55.32,1,5,5,2,1,1,100,0,60,20,20,0,28.57,42.86,85.71,100,0,0,0,0,100,4,5,0,11,0,0,0,0,0,0,0,0,0,20,0,20,1,20,0.55,145,18 -1033,Infirmary,Immediate,Role-assignment,Baseline,2,08:30pm,4,0,0.4,"the room was filled with bright lights, paint was splattered everywhere, the floors began to move, characters were colorfully dressed, there was a scare In every corner",1,89.52,40.06,99,20.23,0,0,0,0,7.41,7.41,0,0,0,0,0,0,0,0,7.41,3.7,3.7,3.7,0,3.7,3.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,0,0,0,0,0,37.04,0,7.41,22.22,7.41,3.7,0,3.7,0,NA,66.56,15.81,NA,5,4,1,4,3,1,83.33,41.67,50,0,100,27.78,55.56,0,100,0,50,50,50,50,50,1,0,0,4,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.8,27,19 -1033,Infirmary,Delay,Role-assignment,Baseline,2,08:30pm,4,1,0.4,"dancers were at the entrance, the floors moved, and there was paint splattered everywhere ",1,56.86,79.51,99,20.23,0,0,0,0,7.14,7.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,0,0,0,0,0,0,7.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.86,0,14.29,28.57,0,7.14,0,0,0,NA,39.04,-2.33,NA,2,4,1,3,2,1,50,100,0,0,0,50,0,50,100,75,50,50,50,50,50,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,1,3,1,14,19 -1033,Asylum,Delay,Role-assignment,Baseline,2,08:30pm,5,0,0.75,there was a director in the entrance ,1,99,97.11,99,20.23,14.29,0,0,14.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.29,0,0,0,0,0,0,14.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.86,0,0,42.86,0,0,0,0,0,NA,-33.68,-58.26,NA,3,1,1,1,2,1,0,50,100,100,0,100,0,0,0,0,50,50,50,50,50,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,7,19 -1033,DevilsDen,Delay,Role-assignment,Share,2,08:30pm,5,0,0.8,the room was red and there was a man with a chainsaw,1,89.52,84.23,39.59,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.33,0,0,0,0,0,0,8.33,0,0,0,8.33,0,0,0,0,0,0,0,0,0,0,25,0,0,16.67,8.33,0,0,0,0,NA,42,11.75,NA,3,2,1,2,4,1,66.67,0,100,100,100,50,100,75,0,0,50,50,50,50,50,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,1,2,1,12,19 -1033,GhostlyGrounds,Immediate,Role-assignment,Test,2,08:30pm,5,0,0.6,"We began by entering a school bus, the room was red, smoke occasionally appeared, monsters were trapped in cages, men were disguised in black and white mask, some of the characters carried weapons such as knives",1,95.3,84.23,59.49,20.23,2.78,2.78,0,0,2.78,0,2.78,0,0,0,2.78,0,0,0,0,0,0,0,0,0,0,0,0,0,5.56,0,0,0,0,0,0,5.56,0,0,0,2.78,0,0,0,0,0,0,0,0,0,0,25,0,5.56,8.33,11.11,0,0,0,0,NA,75.04,50.45,NA,1,3,1,2,1,1,100,0,38.1,76.19,76.19,0,11.11,100,100,11.11,50,50,50,50,50,0,1,0,5,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.833333333,36,19 -1033,GhostlyGrounds,Delay,Role-assignment,Test,2,08:30pm,5,1,0.4,"we entered a bus that led to a red room, there were characters in black and white mask, and there were bodies hanging ",1,47.48,85.5,92.58,20.23,8.7,4.35,0,4.35,4.35,0,4.35,0,4.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.35,0,0,0,0,0,0,4.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.13,0,4.35,21.74,13.04,0,0,0,0,NA,39.57,-14.51,NA,2,4,1,4,2,1,50,100,50,0,0,80,0,80,100,100,50,50,50,50,50,0,2,0,2,0,0,0,0,0,0,0,0,0,4,0,4,1,4,0.5,23,19 -1034,Infirmary,Delay,Role-assignment,Baseline,2,08:30pm,2,0,0.8,"I remember walking into Infirmary, which was a large room with two canvases on stands, and a person rolling through the room with them. The entire section was, of course, neon and bright. So was this room, which had neon murals of the city. Afterwards, we came into another room with two dancing figures on boxes, and one figure giving out 3D glasses. She ran out before me and the last member in our line could walk past, so we had to wait a moment. Afterwards, and upon putting on the 3D glasses, we came into several narrow, neon passageways. We walked through a spinning tunnel which was extremely disorienting, and continued to a part where some of the actors were dressed to camouflage with the surrounding neon.",1,87.23,75.49,99,30.91,4.69,4.69,0,0,10.94,0,10.94,3.91,0,0.78,0,2.34,3.91,0.78,0.78,0.78,0,0,0,0,0,0,0,0,9.38,0.78,0,0,0,0,0,7.81,0,0,0.78,0,1.56,0,0,0,0,0.78,0,0,0,0.78,21.88,0,7.81,13.28,0.78,0,0,2.34,0.78,12.3,79.79,33.14,-76.04,1,2,5,2,1,2,100,0,25,57,83,0,100,25,31,57,96.15,0,0,0,100,5,4,0,7,0,0,0,0,0,0,0,0,0,16,0,16,1,16,0.4375,128,19 -1034,Asylum,Immediate,Role-assignment,Baseline,2,08:30pm,3,0,0.5,"Outside, while we were waitng, a man with makeup was talking to us. I wasnt sure what he was saying at first, and I furrowed my brow as I leaned in to hear. His hair was cut short and it was black. He was generally colored monotone. He said something along the lines of ""... these next takes need to be PERFECT"" where he triggered a loud noise like air being released suddenly. He was pretending to be talking to actors before a shoot, I imagine. Walking in, we rounded a corner where a man dressed, equally in monotone but with bloodstains and as a journalist, was standing over some desks. There was some voiceover dialogue which he was mouthing, and he then stamped suddenly close to us while triggering that same, loud release of air. After that, I am less sure but I believe we walked past a woman dressed in red, smiling who made no immediate effort to scare us. We walked into the next room, which seemed like rounding a grimy bathtub, and as we followed the path around, when we looked back towards the direction we had come, the woman in red triggered the loud air noise as she stepped into the room though a concealed curtain. Moving into the next room, there was what seemed to be a detective, very similar to the journalist but the entrance was facing him. After him, we walked past what seemed like a concierge, where a woman was sat rather calmly. She said something courteous as we walked past. I do not remember more.",1,51.97,84.23,89.39,25.1,4.92,4.55,0.38,0,10.98,0.38,10.61,2.27,1.52,0.38,2.65,0.38,4.17,0.38,2.65,1.52,1.14,1.14,0.76,0.38,0.38,0,0,0,15.15,3.03,0,0.38,0,0,2.27,12.12,0,0,1.89,4.55,0.38,0,0.38,0.38,0,0,0,0,0,4.17,19.32,0,3.03,11.36,2.27,3.03,0,1.14,4.17,-13.29,10.03,-31.81,-18.09,4,1,5,3,4,4,33.33,77.78,0,100,35.47,100,25,83.33,0,69.87,32.5,65,65,0,100,9,0,0,25,0,0,0,0,0,0,0,0,3,34,3,37,0.918918919,34,0.735294118,264,19 -1034,Asylum,Delay,Role-assignment,Baseline,2,08:30pm,3,1,0.5,"At the entrance of Asylum was a man who was acting as a director and pretending we were actors, telling us that we had to get the next shots right. As he said this, he scared us by yelling and through a loud and sudden release of air. We went in and I remember the detective and journalists who were very similar in standing by their desks. I remember walking by the dentists, the concierge, and the woman dressed in red in her studio. She scared us by bursting into the room after hers, which had a tub in the middle.",1,81.16,99,32.94,4.72,6.86,5.88,0,0.98,4.9,0,4.9,1.96,0,0,0,0,1.96,1.96,1.96,0,1.96,1.96,0,1.96,1.96,0,0,0,21.57,2.94,0,0,0,0,2.94,18.63,0,0,3.92,2.94,1.96,0,1.96,0,0,0,0,0,0,2.94,14.71,0,1.96,9.8,0.98,1.96,0,3.92,2.94,21.62,46.94,10.16,7.77,5,2,3,3,4,2,42.86,19.05,0,75,100,48.72,100,89.74,0,53.85,95.24,0,100,100,0,4,2,0,9,0,0,0,0,0,0,0,0,0,15,0,15,1,15,0.6,102,19 -1034,DevilsDen,Immediate,Role-assignment,Share,2,08:30pm,3,0,0.6,"Waiting outside the Devil's Den was a large burly man with a huge hammer. He had a red jumpsuit on and was pacing back and forth by the entrance. Before we had gone in, here was a couple that asked whether they had to go up the stairs or to the left. The man remarked that it was hard to go through a gate unless you were a ghost. I didnt understand what they were talking about because I couldnt see past the entrance. He paced some more and then yelled to everyone in the line that we should keep our faces covered as we entered, or else they would rip off anything they saw... lips, nose, heads maybe. Then one of his colleague, a woman equally with gory makeup, came to his side. She held an axe, and had another axe strapped to her right leg. She asked what limbs we wanted to give up before entering. I wanted to make a joke and raise my arm, but I didnt. No one else said anything before we were let in. I dont remember much about the shop itself, it all seems to blur. But I remember people with red jumpsuits being at our sides, holding axes or hammers. I was swearing a lot as people scared at me, and more than once the actors would say that I should watch my tongue or they would rip it out. There was a crushing machine with gore in it and someone escorting us into it. After that, there was a man on a scaffold that slammed it down as we walked below him. We then walked into a long passegway with fog and strobe lights. There was a small person running around us with a cogstyledaxe. At first he didnt speak, but then he said something I dont remember.",1,36.52,63.13,68.52,20.23,4.87,3.9,0.65,0.32,13.64,1.3,12.01,1.62,0.65,2.6,3.25,0,5.52,0.97,1.3,0.65,0.65,0.32,0,0.32,0.32,0,0,0,15.58,3.9,0,0,0,0,2.92,11.69,0,0,1.3,3.25,0.65,0.65,0,0,0,0,0,0,0,3.9,14.29,0.32,3.57,8.44,2.27,0.32,0.32,1.3,3.9,67.92,84.15,40.82,78.78,1,2,4,2,1,1,100,0,22.22,24.59,58.47,0,100,40,43.77,74.26,0,98.39,73.79,100,50,8,1,0,16,0,3,0,0,0,0,0,0,6,25,9,34,0.735294118,25,0.64,308,19 -1034,DevilsDen,Delay,Role-assignment,Share,2,08:30pm,3,1,0.2,"I remember the start of the Devil's Den the most clearly. There was a bearded man with a hammer pacing outside the entrance who yelled at us to keep our faces covered or they would rip anything they saw off. He was then joined by a woman with two axes, on strapped to her right leg. She asked who of us wanted to volunteer a limb. The man in front of us asked whether or not they should go up the stairs, and the man with the hammer said the only way to go through the gate that led to the stairs was to be a ghost. I had not noticed the gate until we were being ushered in. In the tour itself, I remember going past several machines, with people in red jumpsuits yelling at us. There was the arm in the machine with a woman yelling at us, then a man by a machine which I do not remember, but I do remember the man said he would rip my tongue out if I didn’t mind my language, and the crushing machine. There was also the man with the chainsaw at some point.",1,86.43,67.13,70.12,43.1,4.62,4.1,0,0.51,12.82,1.03,11.79,2.56,0.51,2.05,2.05,0.51,5.13,2.05,1.54,1.54,0,0,0,0,0,0,0,0,16.92,4.62,0.51,0,0,0,3.59,12.31,0,0,2.05,4.1,0,0.51,0,0,0,0,0,0,0,3.59,12.82,0.51,1.54,9.23,1.03,1.54,0,0.51,3.59,-21.41,17.72,-21.41,-60.54,3,5,5,5,4,2,50,62.5,100,100,0,50,50,33.33,0,100,25,0,25,25,100,8,0,0,13,0,0,0,0,0,1,0,0,2,21,3,24,0.875,21,0.619047619,196,19 -1034,GhostlyGrounds,Delay,Role-assignment,Test,2,08:30pm,3,0,0.4,"I remember that the entrance to the Ghostly Grounds was a gray bus. The lady ushering us in told the two men behind us that they could not carry drink into the section. Climbing into the bus, you immediately notice the figures slumped onto the windows of the bus as strobe lights flash, giving you the barest glimpses of their presence. I thought that at any moment, one of them was going to startle us, I even kept turning around to make sure they hadn’t moved. As we exited the bus, there was a loud rattling noise. I didn’t see the man that did it, but as I walked past I saw him. I think he was old and bearded and was making the noise by dragging something rapidly across a laminated sheet. I yelled “What are you doing?!” In surprise and he responded with something like “Scaring you!”. After that, I remember a long passageway intercepted by cages and others, curtained passages. There were people with cloaks and demonlike masks. Being at the end of the line, the demons were walking behind me, and one of them decided to follow me ominously through the entirety of the tour. I remember that they and the other people in the group could choose to pass through the curtained passages to keep going. After this, we came into a mostly undecorated hallway that led us to the jail cells, which were no longer part of the “Ghostly Grounds”",1,75.69,61.96,90.7,8.69,3.28,2.46,0.41,0.41,11.48,0.41,11.07,3.69,1.23,0.82,1.64,0,3.28,1.23,2.87,0.41,1.64,1.64,0,0.82,0.82,0,0,0,10.66,1.64,0,0.41,0,0,1.23,9.43,0,0,0.41,2.05,0,0,0,0,0,0,0,0,0,3.69,17.21,1.64,4.1,8.2,2.05,1.64,0,0,3.69,25.46,79.69,52.01,-55.32,1,3,5,3,1,1,100,20,0,70,73.12,0,54.55,100,27.27,29.92,0,0,0,0,100,9,2,0,12,1,0,1,0,1,0,1,0,0,24,3,27,0.888888889,23,0.52173913,246,19 -1035,Infirmary,Delay,Role-assignment,Baseline,2,08:30pm,1,0,0.4,The Infirmary section was neon themed and required us to wear special glasses. When we entered there were two women dancing on the table and another giving us the glasses. It was more of a creepy vibe than scary I would say. Going through the attraction was weird because the glasses just bent the light a made everything look funny. ,1,64.48,77.41,28.56,6.08,5,5,0,0,10,1.67,8.33,0,3.33,1.67,0,0,3.33,0,5,1.67,3.33,5,1.67,3.33,3.33,0,0,0,10,3.33,0,0,0,0,1.67,6.67,0,0,1.67,0,1.67,0,0,0,0,0,0,0,1.67,6.67,13.33,1.67,5,5,3.33,0,0,1.67,8.34,-0.68,-28.03,37.55,-11.56,3,3,4,1,1,1,0,0,100,100,100,0,50,100,0,0,0,0,0,100,100,2,0,0,4,2,0,0,0,0,0,0,0,0,8,0,8,1,6,0.666666667,60,21 -1035,Asylum,Immediate,Role-assignment,Baseline,2,08:30pm,3,0,0.25,"There was a woman in a red dress at the end +1032,GhostlyGrounds,Delay,Goal-assigned,Test,2,08:30pm,3,1,0.6,Ghostly Grounds we walk through a sketchy bus with dummies in the seats then through a metal cage gate area with some dude running around and banging on it then we walk up stairs with like wind blowing and smoke and then we walk past these creepy dudes in black outfits with capes and sketchy wrinkly masks on that kept hissing and running around. then some one was in a cage like hanging out and was reaching out to people. and there was a freezer section with like bodies hanging from the ceiling and there was a part where the floor was moving and some guy was standing on like this gate thing and pushed it down as if he was pushing it on us. and then we walked down the stairs and left. there was also a room with like taser sounds and lights flashing ,1,78.38,84.02,97.5,12.93,3.45,3.45,0,0,1.38,0,1.38,0,0,0,0.69,0,1.38,0,0.69,0,0.69,0.69,0,0.69,0.69,0,0,0,6.21,0,0,0,0,0,0,6.21,0,1.38,0,2.76,0,0,0,0,0,0,0,0,0,5.52,27.59,0,6.9,17.24,2.07,2.07,0,0,5.52,29.26,73.34,69.75,-55.32,1,5,5,2,1,1,100,0,60,20,20,0,28.57,42.86,85.71,100,0,0,0,0,100,4,5,0,11,0,0,0,0,0,0,0,0,0,20,0,20,1,20,0.55,145,18 +1033,Infirmary,Immediate,Goal-assigned,Baseline,2,08:30pm,4,0,0.4,"the room was filled with bright lights, paint was splattered everywhere, the floors began to move, characters were colorfully dressed, there was a scare In every corner",1,89.52,40.06,99,20.23,0,0,0,0,7.41,7.41,0,0,0,0,0,0,0,0,7.41,3.7,3.7,3.7,0,3.7,3.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,0,0,0,0,0,37.04,0,7.41,22.22,7.41,3.7,0,3.7,0,NA,66.56,15.81,NA,5,4,1,4,3,1,83.33,41.67,50,0,100,27.78,55.56,0,100,0,50,50,50,50,50,1,0,0,4,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.8,27,19 +1033,Infirmary,Delay,Goal-assigned,Baseline,2,08:30pm,4,1,0.4,"dancers were at the entrance, the floors moved, and there was paint splattered everywhere ",1,56.86,79.51,99,20.23,0,0,0,0,7.14,7.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,0,0,0,0,0,0,7.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.86,0,14.29,28.57,0,7.14,0,0,0,NA,39.04,-2.33,NA,2,4,1,3,2,1,50,100,0,0,0,50,0,50,100,75,50,50,50,50,50,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,1,3,1,14,19 +1033,Asylum,Delay,Goal-assigned,Baseline,2,08:30pm,5,0,0.75,there was a director in the entrance ,1,99,97.11,99,20.23,14.29,0,0,14.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.29,0,0,0,0,0,0,14.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.86,0,0,42.86,0,0,0,0,0,NA,-33.68,-58.26,NA,3,1,1,1,2,1,0,50,100,100,0,100,0,0,0,0,50,50,50,50,50,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,7,19 +1033,DevilsDen,Delay,Goal-assigned,Share,2,08:30pm,5,0,0.8,the room was red and there was a man with a chainsaw,1,89.52,84.23,39.59,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.33,0,0,0,0,0,0,8.33,0,0,0,8.33,0,0,0,0,0,0,0,0,0,0,25,0,0,16.67,8.33,0,0,0,0,NA,42,11.75,NA,3,2,1,2,4,1,66.67,0,100,100,100,50,100,75,0,0,50,50,50,50,50,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,1,2,1,12,19 +1033,GhostlyGrounds,Immediate,Goal-assigned,Test,2,08:30pm,5,0,0.6,"We began by entering a school bus, the room was red, smoke occasionally appeared, monsters were trapped in cages, men were disguised in black and white mask, some of the characters carried weapons such as knives",1,95.3,84.23,59.49,20.23,2.78,2.78,0,0,2.78,0,2.78,0,0,0,2.78,0,0,0,0,0,0,0,0,0,0,0,0,0,5.56,0,0,0,0,0,0,5.56,0,0,0,2.78,0,0,0,0,0,0,0,0,0,0,25,0,5.56,8.33,11.11,0,0,0,0,NA,75.04,50.45,NA,1,3,1,2,1,1,100,0,38.1,76.19,76.19,0,11.11,100,100,11.11,50,50,50,50,50,0,1,0,5,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.833333333,36,19 +1033,GhostlyGrounds,Delay,Goal-assigned,Test,2,08:30pm,5,1,0.4,"we entered a bus that led to a red room, there were characters in black and white mask, and there were bodies hanging ",1,47.48,85.5,92.58,20.23,8.7,4.35,0,4.35,4.35,0,4.35,0,4.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.35,0,0,0,0,0,0,4.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.13,0,4.35,21.74,13.04,0,0,0,0,NA,39.57,-14.51,NA,2,4,1,4,2,1,50,100,50,0,0,80,0,80,100,100,50,50,50,50,50,0,2,0,2,0,0,0,0,0,0,0,0,0,4,0,4,1,4,0.5,23,19 +1034,Infirmary,Delay,Goal-assigned,Baseline,2,08:30pm,2,0,0.8,"I remember walking into Infirmary, which was a large room with two canvases on stands, and a person rolling through the room with them. The entire section was, of course, neon and bright. So was this room, which had neon murals of the city. Afterwards, we came into another room with two dancing figures on boxes, and one figure giving out 3D glasses. She ran out before me and the last member in our line could walk past, so we had to wait a moment. Afterwards, and upon putting on the 3D glasses, we came into several narrow, neon passageways. We walked through a spinning tunnel which was extremely disorienting, and continued to a part where some of the actors were dressed to camouflage with the surrounding neon.",1,87.23,75.49,99,30.91,4.69,4.69,0,0,10.94,0,10.94,3.91,0,0.78,0,2.34,3.91,0.78,0.78,0.78,0,0,0,0,0,0,0,0,9.38,0.78,0,0,0,0,0,7.81,0,0,0.78,0,1.56,0,0,0,0,0.78,0,0,0,0.78,21.88,0,7.81,13.28,0.78,0,0,2.34,0.78,12.3,79.79,33.14,-76.04,1,2,5,2,1,2,100,0,25,57,83,0,100,25,31,57,96.15,0,0,0,100,5,4,0,7,0,0,0,0,0,0,0,0,0,16,0,16,1,16,0.4375,128,19 +1034,Asylum,Immediate,Goal-assigned,Baseline,2,08:30pm,3,0,0.5,"Outside, while we were waitng, a man with makeup was talking to us. I wasnt sure what he was saying at first, and I furrowed my brow as I leaned in to hear. His hair was cut short and it was black. He was generally colored monotone. He said something along the lines of ""... these next takes need to be PERFECT"" where he triggered a loud noise like air being released suddenly. He was pretending to be talking to actors before a shoot, I imagine. Walking in, we rounded a corner where a man dressed, equally in monotone but with bloodstains and as a journalist, was standing over some desks. There was some voiceover dialogue which he was mouthing, and he then stamped suddenly close to us while triggering that same, loud release of air. After that, I am less sure but I believe we walked past a woman dressed in red, smiling who made no immediate effort to scare us. We walked into the next room, which seemed like rounding a grimy bathtub, and as we followed the path around, when we looked back towards the direction we had come, the woman in red triggered the loud air noise as she stepped into the room though a concealed curtain. Moving into the next room, there was what seemed to be a detective, very similar to the journalist but the entrance was facing him. After him, we walked past what seemed like a concierge, where a woman was sat rather calmly. She said something courteous as we walked past. I do not remember more.",1,51.97,84.23,89.39,25.1,4.92,4.55,0.38,0,10.98,0.38,10.61,2.27,1.52,0.38,2.65,0.38,4.17,0.38,2.65,1.52,1.14,1.14,0.76,0.38,0.38,0,0,0,15.15,3.03,0,0.38,0,0,2.27,12.12,0,0,1.89,4.55,0.38,0,0.38,0.38,0,0,0,0,0,4.17,19.32,0,3.03,11.36,2.27,3.03,0,1.14,4.17,-13.29,10.03,-31.81,-18.09,4,1,5,3,4,4,33.33,77.78,0,100,35.47,100,25,83.33,0,69.87,32.5,65,65,0,100,9,0,0,25,0,0,0,0,0,0,0,0,3,34,3,37,0.918918919,34,0.735294118,264,19 +1034,Asylum,Delay,Goal-assigned,Baseline,2,08:30pm,3,1,0.5,"At the entrance of Asylum was a man who was acting as a director and pretending we were actors, telling us that we had to get the next shots right. As he said this, he scared us by yelling and through a loud and sudden release of air. We went in and I remember the detective and journalists who were very similar in standing by their desks. I remember walking by the dentists, the concierge, and the woman dressed in red in her studio. She scared us by bursting into the room after hers, which had a tub in the middle.",1,81.16,99,32.94,4.72,6.86,5.88,0,0.98,4.9,0,4.9,1.96,0,0,0,0,1.96,1.96,1.96,0,1.96,1.96,0,1.96,1.96,0,0,0,21.57,2.94,0,0,0,0,2.94,18.63,0,0,3.92,2.94,1.96,0,1.96,0,0,0,0,0,0,2.94,14.71,0,1.96,9.8,0.98,1.96,0,3.92,2.94,21.62,46.94,10.16,7.77,5,2,3,3,4,2,42.86,19.05,0,75,100,48.72,100,89.74,0,53.85,95.24,0,100,100,0,4,2,0,9,0,0,0,0,0,0,0,0,0,15,0,15,1,15,0.6,102,19 +1034,DevilsDen,Immediate,Goal-assigned,Share,2,08:30pm,3,0,0.6,"Waiting outside the Devil's Den was a large burly man with a huge hammer. He had a red jumpsuit on and was pacing back and forth by the entrance. Before we had gone in, here was a couple that asked whether they had to go up the stairs or to the left. The man remarked that it was hard to go through a gate unless you were a ghost. I didnt understand what they were talking about because I couldnt see past the entrance. He paced some more and then yelled to everyone in the line that we should keep our faces covered as we entered, or else they would rip off anything they saw... lips, nose, heads maybe. Then one of his colleague, a woman equally with gory makeup, came to his side. She held an axe, and had another axe strapped to her right leg. She asked what limbs we wanted to give up before entering. I wanted to make a joke and raise my arm, but I didnt. No one else said anything before we were let in. I dont remember much about the shop itself, it all seems to blur. But I remember people with red jumpsuits being at our sides, holding axes or hammers. I was swearing a lot as people scared at me, and more than once the actors would say that I should watch my tongue or they would rip it out. There was a crushing machine with gore in it and someone escorting us into it. After that, there was a man on a scaffold that slammed it down as we walked below him. We then walked into a long passegway with fog and strobe lights. There was a small person running around us with a cogstyledaxe. At first he didnt speak, but then he said something I dont remember.",1,36.52,63.13,68.52,20.23,4.87,3.9,0.65,0.32,13.64,1.3,12.01,1.62,0.65,2.6,3.25,0,5.52,0.97,1.3,0.65,0.65,0.32,0,0.32,0.32,0,0,0,15.58,3.9,0,0,0,0,2.92,11.69,0,0,1.3,3.25,0.65,0.65,0,0,0,0,0,0,0,3.9,14.29,0.32,3.57,8.44,2.27,0.32,0.32,1.3,3.9,67.92,84.15,40.82,78.78,1,2,4,2,1,1,100,0,22.22,24.59,58.47,0,100,40,43.77,74.26,0,98.39,73.79,100,50,8,1,0,16,0,3,0,0,0,0,0,0,6,25,9,34,0.735294118,25,0.64,308,19 +1034,DevilsDen,Delay,Goal-assigned,Share,2,08:30pm,3,1,0.2,"I remember the start of the Devil's Den the most clearly. There was a bearded man with a hammer pacing outside the entrance who yelled at us to keep our faces covered or they would rip anything they saw off. He was then joined by a woman with two axes, on strapped to her right leg. She asked who of us wanted to volunteer a limb. The man in front of us asked whether or not they should go up the stairs, and the man with the hammer said the only way to go through the gate that led to the stairs was to be a ghost. I had not noticed the gate until we were being ushered in. In the tour itself, I remember going past several machines, with people in red jumpsuits yelling at us. There was the arm in the machine with a woman yelling at us, then a man by a machine which I do not remember, but I do remember the man said he would rip my tongue out if I didn’t mind my language, and the crushing machine. There was also the man with the chainsaw at some point.",1,86.43,67.13,70.12,43.1,4.62,4.1,0,0.51,12.82,1.03,11.79,2.56,0.51,2.05,2.05,0.51,5.13,2.05,1.54,1.54,0,0,0,0,0,0,0,0,16.92,4.62,0.51,0,0,0,3.59,12.31,0,0,2.05,4.1,0,0.51,0,0,0,0,0,0,0,3.59,12.82,0.51,1.54,9.23,1.03,1.54,0,0.51,3.59,-21.41,17.72,-21.41,-60.54,3,5,5,5,4,2,50,62.5,100,100,0,50,50,33.33,0,100,25,0,25,25,100,8,0,0,13,0,0,0,0,0,1,0,0,2,21,3,24,0.875,21,0.619047619,196,19 +1034,GhostlyGrounds,Delay,Goal-assigned,Test,2,08:30pm,3,0,0.4,"I remember that the entrance to the Ghostly Grounds was a gray bus. The lady ushering us in told the two men behind us that they could not carry drink into the section. Climbing into the bus, you immediately notice the figures slumped onto the windows of the bus as strobe lights flash, giving you the barest glimpses of their presence. I thought that at any moment, one of them was going to startle us, I even kept turning around to make sure they hadn’t moved. As we exited the bus, there was a loud rattling noise. I didn’t see the man that did it, but as I walked past I saw him. I think he was old and bearded and was making the noise by dragging something rapidly across a laminated sheet. I yelled “What are you doing?!” In surprise and he responded with something like “Scaring you!”. After that, I remember a long passageway intercepted by cages and others, curtained passages. There were people with cloaks and demonlike masks. Being at the end of the line, the demons were walking behind me, and one of them decided to follow me ominously through the entirety of the tour. I remember that they and the other people in the group could choose to pass through the curtained passages to keep going. After this, we came into a mostly undecorated hallway that led us to the jail cells, which were no longer part of the “Ghostly Grounds”",1,75.69,61.96,90.7,8.69,3.28,2.46,0.41,0.41,11.48,0.41,11.07,3.69,1.23,0.82,1.64,0,3.28,1.23,2.87,0.41,1.64,1.64,0,0.82,0.82,0,0,0,10.66,1.64,0,0.41,0,0,1.23,9.43,0,0,0.41,2.05,0,0,0,0,0,0,0,0,0,3.69,17.21,1.64,4.1,8.2,2.05,1.64,0,0,3.69,25.46,79.69,52.01,-55.32,1,3,5,3,1,1,100,20,0,70,73.12,0,54.55,100,27.27,29.92,0,0,0,0,100,9,2,0,12,1,0,1,0,1,0,1,0,0,24,3,27,0.888888889,23,0.52173913,246,19 +1035,Infirmary,Delay,Goal-assigned,Baseline,2,08:30pm,1,0,0.4,The Infirmary section was neon themed and required us to wear special glasses. When we entered there were two women dancing on the table and another giving us the glasses. It was more of a creepy vibe than scary I would say. Going through the attraction was weird because the glasses just bent the light a made everything look funny. ,1,64.48,77.41,28.56,6.08,5,5,0,0,10,1.67,8.33,0,3.33,1.67,0,0,3.33,0,5,1.67,3.33,5,1.67,3.33,3.33,0,0,0,10,3.33,0,0,0,0,1.67,6.67,0,0,1.67,0,1.67,0,0,0,0,0,0,0,1.67,6.67,13.33,1.67,5,5,3.33,0,0,1.67,8.34,-0.68,-28.03,37.55,-11.56,3,3,4,1,1,1,0,0,100,100,100,0,50,100,0,0,0,0,0,100,100,2,0,0,4,2,0,0,0,0,0,0,0,0,8,0,8,1,6,0.666666667,60,21 +1035,Asylum,Immediate,Goal-assigned,Baseline,2,08:30pm,3,0,0.25,"There was a woman in a red dress at the end This ranked one of the top two because something jumped out of a cabinet at me The theme was like back stage at some production It was the second attraction we visited ",1,98.31,67.32,53.52,20.23,4.65,2.33,2.33,2.33,4.65,0,4.65,0,2.33,0,2.33,0,0,0,0,0,0,0,0,0,0,0,0,0,6.98,2.33,0,0,0,0,0,4.65,0,0,2.33,0,0,0,0,0,0,0,0,0,0,6.98,16.28,0,2.33,11.63,2.33,0,0,0,6.98,38.02,71.44,11.69,30.94,1,4,3,5,2,1,100,65.22,100,39.13,0,42.11,0,84.21,100,100,0,0,100,0,0,1,0,0,2,0,0,0,0,0,0,2,0,0,3,2,5,0.6,3,0.666666667,43,21 -1035,Asylum,Delay,Role-assignment,Baseline,2,08:30pm,3,1,0.5,Asylum was themed as behind the scenes at some type of production. Earlier in the begging there was a man doing something with a type writer. At the end there was a lady with a red dress. We first saw her in second to last room. There was a door for the actress to access the final room which she would try to use unexpectedly in order to scare us. ,1,98.2,95.12,31.69,2.07,7.04,2.82,1.41,2.82,8.45,0,8.45,0,1.41,2.82,1.41,0,1.41,0,2.82,0,2.82,1.41,0,1.41,1.41,0,0,0,11.27,1.41,0,1.41,0,0,0,11.27,0,0,5.63,1.41,1.41,0,1.41,0,0,0,0,0,0,1.41,16.9,0,0,14.08,2.82,0,0,2.82,1.41,NA,44.77,32.3,NA,2,2,1,5,1,1,86.67,100,33.33,100,0,0,100,100,6.25,100,50,50,50,50,50,1,1,0,4,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.666666667,71,21 -1035,DevilsDen,Immediate,Role-assignment,Share,2,08:30pm,4,0,0.4,"We waited outside for a little +1035,Asylum,Delay,Goal-assigned,Baseline,2,08:30pm,3,1,0.5,Asylum was themed as behind the scenes at some type of production. Earlier in the begging there was a man doing something with a type writer. At the end there was a lady with a red dress. We first saw her in second to last room. There was a door for the actress to access the final room which she would try to use unexpectedly in order to scare us. ,1,98.2,95.12,31.69,2.07,7.04,2.82,1.41,2.82,8.45,0,8.45,0,1.41,2.82,1.41,0,1.41,0,2.82,0,2.82,1.41,0,1.41,1.41,0,0,0,11.27,1.41,0,1.41,0,0,0,11.27,0,0,5.63,1.41,1.41,0,1.41,0,0,0,0,0,0,1.41,16.9,0,0,14.08,2.82,0,0,2.82,1.41,NA,44.77,32.3,NA,2,2,1,5,1,1,86.67,100,33.33,100,0,0,100,100,6.25,100,50,50,50,50,50,1,1,0,4,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.666666667,71,21 +1035,DevilsDen,Immediate,Goal-assigned,Share,2,08:30pm,4,0,0.4,"We waited outside for a little We went in and there was a guy with an axe who said not to fear because its just an axe Next we went outside and there was a person with a chain saw There was a man standing above a door way and was went under him, a large metal gate dropped There was a long hallway with strobe lights and fog machines at the end",1,89.52,94.56,97.3,7.77,4.11,4.11,0,0,2.74,0,2.74,0,1.37,0,0,0,1.37,0,1.37,0,1.37,1.37,0,1.37,1.37,0,0,0,12.33,1.37,0,0,0,0,1.37,10.96,0,0,0,4.11,0,0,0,0,0,0,0,0,0,1.37,27.4,0,5.48,19.18,2.74,0,0,0,1.37,33.26,71.26,-2.41,30.94,1,2,2,2,4,1,100,0,66.67,42.86,42.86,64.1,100,64.1,0,0,0,100,0,0,0,5,1,0,4,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.4,73,21 -1035,DevilsDen,Delay,Role-assignment,Share,2,08:30pm,4,1,0.6,"The Devil's Den was industrial themed. At the beginning there was a man with an axe who tried scaring us. After that we stepped outside and there was another person with a chainsaw. The outside portion was short and we quickly went back inside. Once back inside, the next thing I remember was the man standing on the ledge above the door. As we walked under the ledge, the gate that was in front of him would fall and cause a large bang. When we went through the door, we were in a long corridor that was filled with fog and had strobe lights flashing. ",1,83.32,97.11,99,10.73,6.67,5.71,0.95,0,3.81,0,3.81,0.95,0.95,0.95,0,0,0.95,0.95,0.95,0,0.95,0.95,0,0.95,0.95,0,0,0,10.48,0,0,0,0,0,0,10.48,0,0,0,2.86,0,0,0,0,0.95,0,0,0,0,2.86,27.62,0,4.76,20.95,1.9,0.95,0,0.95,2.86,39.77,29.97,27.46,61.88,3,2,3,2,1,1,50,0,100,25,0,0,100,0,50,50,0,0,100,100,0,5,1,0,8,0,0,0,0,0,0,0,0,0,14,0,14,1,14,0.571428571,105,21 -1035,GhostlyGrounds,Delay,Role-assignment,Test,2,08:30pm,3,0,0.6,In the Ghostly Grounds we started by walking through an old bus. There was nothing on the bus that was scary. After that we entered a building. This section used things like blasts of air to scare us. I remember walking up stairs at one point. At the top of the steps the floor was a special floor that moved as you stepped on it. ,1,95.8,87.7,96.5,1.56,4.69,4.69,0,0,4.69,1.56,3.13,1.56,1.56,0,0,0,0,1.56,3.13,0,3.13,3.13,0,3.13,3.13,0,0,0,6.25,0,0,0,0,0,0,6.25,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,20.31,0,9.38,10.94,0,0,0,0,3.13,22.36,37.97,-1.83,30.94,4,2,3,3,4,1,60,40,0,100,25,60,100,80,0,86.67,0,0,100,0,0,2,3,0,2,1,0,0,0,0,0,0,0,0,8,0,8,1,7,0.285714286,64,21 +1035,DevilsDen,Delay,Goal-assigned,Share,2,08:30pm,4,1,0.6,"The Devil's Den was industrial themed. At the beginning there was a man with an axe who tried scaring us. After that we stepped outside and there was another person with a chainsaw. The outside portion was short and we quickly went back inside. Once back inside, the next thing I remember was the man standing on the ledge above the door. As we walked under the ledge, the gate that was in front of him would fall and cause a large bang. When we went through the door, we were in a long corridor that was filled with fog and had strobe lights flashing. ",1,83.32,97.11,99,10.73,6.67,5.71,0.95,0,3.81,0,3.81,0.95,0.95,0.95,0,0,0.95,0.95,0.95,0,0.95,0.95,0,0.95,0.95,0,0,0,10.48,0,0,0,0,0,0,10.48,0,0,0,2.86,0,0,0,0,0.95,0,0,0,0,2.86,27.62,0,4.76,20.95,1.9,0.95,0,0.95,2.86,39.77,29.97,27.46,61.88,3,2,3,2,1,1,50,0,100,25,0,0,100,0,50,50,0,0,100,100,0,5,1,0,8,0,0,0,0,0,0,0,0,0,14,0,14,1,14,0.571428571,105,21 +1035,GhostlyGrounds,Delay,Goal-assigned,Test,2,08:30pm,3,0,0.6,In the Ghostly Grounds we started by walking through an old bus. There was nothing on the bus that was scary. After that we entered a building. This section used things like blasts of air to scare us. I remember walking up stairs at one point. At the top of the steps the floor was a special floor that moved as you stepped on it. ,1,95.8,87.7,96.5,1.56,4.69,4.69,0,0,4.69,1.56,3.13,1.56,1.56,0,0,0,0,1.56,3.13,0,3.13,3.13,0,3.13,3.13,0,0,0,6.25,0,0,0,0,0,0,6.25,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,20.31,0,9.38,10.94,0,0,0,0,3.13,22.36,37.97,-1.83,30.94,4,2,3,3,4,1,60,40,0,100,25,60,100,80,0,86.67,0,0,100,0,0,2,3,0,2,1,0,0,0,0,0,0,0,0,8,0,8,1,7,0.285714286,64,21 1036,Infirmary,Delay,Control,Baseline,0,06:15pm,1,0,0.2,"It was very trippy, I walked in and got glasses, green walls, there was a bunch of neon paint and neon lights, there were rooms with mirror, rooms with bright colorful lights, there was also a tunnel vision room with a wobbly floor, and a spinning tunnel room with lights, the area was well lit and relatively close and compact. after we left there was a lady to collect the glasses. ",1,61.59,48.42,96.56,83.63,1.41,1.41,0,0,1.41,0,1.41,0,0,0,0,0,1.41,0,4.23,4.23,0,0,0,0,0,0,0,0,2.82,1.41,0,1.41,0,0,0,2.82,0,0,1.41,0,0,0,2.82,0,0,0,0,0,0,1.41,35.21,0,4.23,19.72,11.27,0,0,2.82,1.41,-14.3,-30.11,-43.73,30.94,5,1,3,1,2,1,0,53.13,53.13,53.13,100,100,0,0,56.6,28.3,0,0,100,0,0,2,2,0,9,0,0,0,0,0,0,0,0,0,13,0,13,1,13,0.692307692,71,21 1036,Asylum,Immediate,Control,Baseline,0,06:15pm,2,0,0.5,"1940s Hollywood feel, stage lights, movie camera, dressing room, radio station, detective, dream state, red lipstick, fog machine",1,89.52,72.07,10.18,20.23,0,0,0,0,5.56,0,5.56,5.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.56,0,0,0,0,0,0,5.56,0,0,0,0,0,0,0,0,0,0,0,0,0,11.11,22.22,0,0,5.56,11.11,0,5.56,0,11.11,NA,NA,NA,-53.71,1,1,1,1,1,2,50,50,50,50,50,50,50,50,50,50,100,0,0,0,0,0,1,0,7,1,0,0,0,0,0,0,0,0,9,0,9,1,8,0.875,18,21 @@ -253,63 +253,63 @@ There was a long hallway with strobe lights and fog machines at the end",1,89.52 1040,DevilsDen,Delay,Control,Baseline,0,06:15pm,3,0,0.8,we were introduces with a guy with chain saw and there were actors with tools and at the end we went through this long tunnel,1,82.95,99,35.01,20.23,8,8,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,16,0,0,0,4,0,0,0,0,0,0,0,0,0,4,16,0,4,8,4,0,0,0,4,NA,56.07,-10.53,NA,1,1,1,2,2,1,100,0,0,100,0,100,0,100,100,0,50,50,50,50,50,0,1,0,2,0,0,0,0,0,0,0,0,0,3,0,3,1,3,0.666666667,25,22 1040,GhostlyGrounds,Immediate,Control,Baseline,0,06:15pm,3,0,0.8,This one was scary when the women speaking Russian or something started chasing us. the moving floors and dark hall way. ,1,18.12,88.15,97.09,1,4.76,4.76,0,0,9.52,0,9.52,0,0,0,9.52,0,4.76,0,4.76,0,4.76,4.76,0,4.76,4.76,0,0,0,14.29,4.76,0,0,0,0,4.76,9.52,0,0,4.76,0,0,0,0,0,0,0,0,0,0,0,19.05,0,4.76,9.52,4.76,0,0,0,0,NA,-16.5,-28.38,NA,2,1,1,1,2,1,0,100,0,100,0,100,0,83.33,41.67,41.67,50,50,50,50,50,1,0,0,3,1,0,0,0,0,0,0,0,1,5,1,6,0.833333333,4,0.75,21,22 1040,GhostlyGrounds,Delay,Control,Baseline,0,06:15pm,3,1,0.8,I think this was the first one with the spiders and tunnel and clown following us ,1,43.4,75.49,15.38,20.23,6.25,6.25,0,0,6.25,0,6.25,6.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.25,0,0,0,0,0,0,6.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-36.09,-20.21,-34.36,-53.71,3,1,1,1,2,2,0,50,100,0,0,100,0,0,88.89,44.44,100,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,22 -1041,Infirmary,Immediate,Role-assignment,Baseline,2,06:15pm,1,0,0.8,"It was a lot of colors. There was a woman dancing in white and black. We were handed this 3D glasses to perceive everything around us as an illusion. It was fairly quiet. No one jumped out at our group.There was a lot of illusions. I specifically remembering these illusions hurting my eyes. My glasses kept falling off as one of the actors yelled at everyone to put their glasses on. I remember walking through these squeaky floors. The walk through was very quick. I saw the color purple, green, and yellow. There were lights flashing at one point. There was a guy in a green mask waiting to collect our glasses after the walk through was over. I wasnt scared at all.",1,72,63.91,89.39,6.37,3.23,3.23,0,0,8.06,4.03,4.03,2.42,0,0,0.81,0,0.81,1.61,1.61,0,1.61,1.61,0,1.61,0.81,0,0,0,9.68,1.61,0,0,0,0,0.81,8.06,0,0,0.81,0.81,0,0,0.81,0,0,0,0,0,0,0.81,27.42,0,5.65,8.87,9.68,2.42,0.81,0.81,0.81,20,20.11,-13.71,53.59,5,2,2,4,3,1,22.86,22.86,45.71,0,100,66.67,100,0,33.33,38.19,0,100,50,0,0,6,0,0,11,1,0,0,0,0,0,0,0,0,18,0,18,1,17,0.647058824,124,18 -1041,Infirmary,Delay,Role-assignment,Baseline,2,06:15pm,1,1,0.6,"There was a woman in black and white dancing at the entrance. Once we entered, I could not see the floor because the fog was so thick. I remember feeling paranoid that I was going to fall because I could not see the floor in front of me. I eventually picked up some 3D glasses. There were neon colors such as green, pink, and blue around me. I didnt feel scared at all. When exiting, I danced with the lady in the black and white as I exited. We put our glasses in the basket. I remember while walking through, a guy yelled at us to put our glasses on. The was a guy in a green mask guarding the door as we exited. ",1,63.25,35.45,99,6.37,5.65,4.84,0,0.81,9.68,0.81,8.87,3.23,1.61,1.61,0,0,2.42,1.61,1.61,0,1.61,1.61,0,1.61,1.61,0,0,0,10.48,3.23,0,0.81,0,0,0.81,8.06,0,0,1.61,1.61,0,0,0,0,0,0,0,0,0,2.42,31.45,0,6.45,14.52,8.87,0.81,1.61,0,2.42,33.58,40.84,14.74,45.17,5,2,2,2,5,5,31.17,0,0,62.34,100,61.7,100,74.47,36.17,0,33.33,100,33.33,33.33,0,6,1,0,7,2,0,0,0,0,0,0,1,0,16,1,17,0.941176471,14,0.5,124,18 -1041,Asylum,Delay,Role-assignment,Baseline,2,06:15pm,1,0,0.75,I think this was the scariest attraction for me. This was the attraction where the actors kept jumping out to scare me. I just remember it being dark and me screaming every 5 minutes. ,1,29.85,2.18,99,1,0,0,0,0,8.82,2.94,5.88,5.88,0,0,0,0,0,2.94,5.88,0,5.88,5.88,0,5.88,5.88,0,0,0,2.94,0,0,0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,0,0,0,0,2.94,14.71,0,2.94,5.88,2.94,2.94,0,0,2.94,-0.65,13.32,0.84,-16.1,3,4,1,4,3,2,33.33,66.67,100,0,0,60,80,0,100,46.67,100,0,0,100,0,2,0,0,1,1,0,0,0,0,0,0,0,0,4,0,4,1,3,0.333333333,34,18 -1041,DevilsDen,Delay,Role-assignment,Share,2,06:15pm,3,0,0.6,"There was meat everywhere. The lady at the entrance told us ""okay temple."" and I remember asking her how she knew we went to the temple and she said because we smell like a dorm. As we entered, a guy jumped out at us. I told him to back up then tripped right after and he said ""thats why you tripped."" I remember laughing through the whole attraction. Someone told me they were going to slit my throat because I told them that they werent scary. It was a lot of meat hanging from the ceilings. ",1,34.33,99,54.55,20.23,5.21,5.21,0,0,10.42,1.04,9.38,4.17,4.17,0,1.04,0,1.04,2.08,2.08,1.04,1.04,2.08,1.04,1.04,1.04,0,0,0,28.13,9.38,0,1.04,0,0,8.33,19.79,0,0,4.17,3.13,0,0,0,0,0,0,0,0,0,5.21,10.42,0,3.13,7.29,0,0,0,0,5.21,-15.42,-21.83,-25.86,1.43,2,1,2,1,2,3,0,100,100,6.98,53.49,100,0,78.43,78.43,78.43,47.5,100,0,50,50,10,0,0,2,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.166666667,96,18 -1041,GhostlyGrounds,Immediate,Role-assignment,Test,2,06:15pm,4,0,0.6,"Honestly, I dont even remember which one the ""Ghostly Grounds"" was. I think it was one of the ones I didnt find as scary. However, Im really not sure. I only remember the first and last walkthrough. I just remember flashing lights and not being able to see anything. It was agitating my eyes. ",1,1.02,1,99,5.02,1.89,0,1.89,0,26.42,0,26.42,9.43,0,0,5.66,3.77,9.43,5.66,1.89,0,1.89,1.89,0,1.89,1.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.77,9.43,0,0,0,7.55,0,0,0,3.77,24.41,20.34,-20.53,73.42,2,1,2,4,2,5,33.33,100,33.33,0,36.67,100,0,100,75,75,50,100,100,55,0,0,0,0,3,0,0,0,0,0,1,0,0,3,3,4,7,0.428571429,3,1,53,18 -1041,GhostlyGrounds,Delay,Role-assignment,Test,2,06:15pm,4,1,1,"I remember there being shaky floors, flashing lights, a cage with a fake person inside of it. there was screaming and ominous music in the background. I remember someone jumping out at me and accidentally touching me. It was cold. The lights were red. ",1,65.33,17.46,99,3.56,0,0,0,0,6.82,0,6.82,4.55,0,0,2.27,0,0,4.55,6.82,2.27,4.55,2.27,0,2.27,2.27,0,0,0,6.82,2.27,0,0,0,2.27,0,4.55,0,0,0,0,0,0,0,0,0,0,0,0,0,2.27,36.36,0,4.55,13.64,9.09,4.55,4.55,0,2.27,-19.27,-22.07,-19.66,-16.1,2,5,1,1,2,2,0,100,33.33,33.33,4.17,40,0,40,40,100,100,0,0,100,0,2,1,0,6,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.666666667,44,18 -1042,Infirmary,Immediate,Role-assignment,Baseline,2,07:30pm,2,0,0.4,"Infirmary was the second scariest attraction that I went on. I think the first thing that came to my mind while going through the Infirmary was the various shapes and colors. I feel like this took the attention away from the actors and made it easier for them to jump scare us. I think one of the scarier parts of Infirmary was the beginning where you go through the school bus. I think it was more scary because when you think of a school bus you think of innocence and young children, when in reality it is the opposite ",1,74,52.11,97.85,4.48,1.01,1.01,0,0,12.12,0,12.12,6.06,2.02,0,0,0,3.03,0,6.06,2.02,4.04,4.04,0,4.04,4.04,0,0,0,8.08,1.01,0,0,0,1.01,0,7.07,0,0,0,0,0,0,1.01,0,0,0,0,0,0,3.03,11.11,1.01,5.05,4.04,1.01,0,1.01,1.01,3.03,5.77,9.35,-7.25,15.2,2,4,5,4,2,1,33.33,100,100,0,75.44,50,0,0,100,6.58,0,90.48,0,90.48,100,0,1,0,2,1,0,0,0,0,3,2,0,0,4,5,9,0.444444444,3,0.666666667,99,21 -1042,Infirmary,Delay,Role-assignment,Baseline,2,07:30pm,2,1,0.4,Infirmary I remember being very trippy. The main thing I remember was putting on the 3D goggles and going through the 3D section of the attraction. I thought this was one of the coolest parts of the entire night. I remember feeling more anxious at the time I was putting on the glasses because I thought the purpose of the glasses was to get us to feel more comfortable just to be scared by a random jump scare. ,1,94.99,11.19,91.37,8.34,1.28,1.28,0,0,14.1,0,14.1,8.97,2.56,0,1.28,0,1.28,3.85,6.41,2.56,3.85,5.13,1.28,3.85,3.85,0,0,0,1.28,0,0,0,0,0,0,1.28,0,0,0,0,0,0,1.28,0,0,0,0,0,0,5.13,10.26,0,5.13,1.28,0,0,3.85,1.28,5.13,-24.45,-35.72,-38.21,0.58,4,1,4,1,3,2,0,58.82,58.82,100,37.25,100,50,0,56.67,30,45.45,0,45.45,100,51.52,2,1,0,1,3,0,0,0,0,0,0,0,0,7,0,7,1,4,0.25,78,21 -1042,Asylum,Delay,Role-assignment,Baseline,2,07:30pm,2,0,0,"I honestly do not remember a ton from the Asylum part of the tour. The main thing I remember was it was a very narrow path going throughout the attraction, I remember some parts having to go in a single file line to get through.",1,95.99,1,99,20.23,0,0,0,0,15.22,0,15.22,6.52,0,0,0,2.17,6.52,6.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.35,0,4.35,0,0,0,0,0,0,6.52,15.22,0,4.35,13.04,0,0,0,8.7,6.52,23.31,48.41,11.46,10.07,5,3,3,3,5,2,56.67,66.67,0,66.67,100,67.5,50,100,75,0,90,0,100,100,0,1,0,0,1,0,0,0,0,0,0,0,0,1,2,1,3,0.666666667,2,0.5,46,21 -1042,DevilsDen,Immediate,Role-assignment,Share,2,07:30pm,5,0,0.8,Machine shop was the scariest part of the night. I really do not like gore or seeing limbs being chopped off so that was uncomfortable for me but I think it also made it very fun. As I was in the outdoor section of the attraction a large man with a chainsaw and pretended to saw my leg off. The first thing that caught my attention was the person letting us into the attraction. I vividly remember the host letting us in appeared to have a special contact in that made one of her eyes completely white and I remember being a little freaked out about it. ,1,65.75,16.97,72.99,10.86,1.87,1.87,0,0,11.21,0,11.21,2.8,1.87,0,0.93,1.87,3.74,1.87,2.8,0.93,1.87,2.8,0.93,1.87,0.93,0,0,0,5.61,0,0,0,0,0,0,5.61,0,0,0.93,1.87,0,0,0.93,0,0,0,0,0,0,5.61,14.02,0.93,0.93,6.54,5.61,0,0,0.93,5.61,2.74,-36.56,-9.64,54.43,3,2,2,1,3,1,0,30,100,100,37.14,47.93,100,0,0,36.36,0,100,34.92,69.84,34.92,1,1,0,4,1,0,0,0,0,3,2,0,0,7,5,12,0.583333333,6,0.666666667,107,21 -1042,DevilsDen,Delay,Role-assignment,Share,2,07:30pm,5,1,0.8,At Devil's Den I remember having the most scary experience. I remember being followed by a guy with a really loud chainsaw and pretending to saw my leg off. The main thing I remember was a lot of fake blood and a lot of flashing lights which made me pretty uncomfortable.,1,86.58,4.22,46.57,1,0,0,0,0,15.69,0,15.69,5.88,1.96,0,1.96,1.96,1.96,5.88,5.88,0,5.88,3.92,0,3.92,1.96,0,0,0,3.92,1.96,0,0,0,1.96,0,1.96,0,0,0,1.96,0,0,0,0,0,0,0,0,0,1.96,7.84,0,0,0,5.88,1.96,0,0,1.96,1.23,-22.15,-20.11,45.94,2,4,2,1,2,5,0,100,54.17,8.33,8.33,81.82,0,0,100,0,90.91,100,100,100,0,2,0,0,3,1,0,0,0,0,1,0,0,0,6,1,7,0.857142857,5,0.6,51,21 -1042,GhostlyGrounds,Delay,Role-assignment,Test,2,07:30pm,4,0,0.6,The main thing I remember from the Ghostly Grounds was the effects they used to try to scare us. I vividly remember being scared while going through a hallway full of fog and you could only see every like 2 seconds because of strobe lights. Going down that hall felt like it took forever because the entire time I was worried about jump scares. ,1,74.35,58.95,67.59,1,3.17,1.59,1.59,0,19.05,3.17,15.87,6.35,6.35,3.17,0,0,0,3.17,6.35,0,6.35,6.35,0,6.35,6.35,0,0,0,4.76,0,0,0,0,0,0,4.76,0,0,0,0,0,0,1.59,0,1.59,0,0,0,0,6.35,14.29,0,4.76,3.17,4.76,0,1.59,3.18,6.35,19.58,97.28,-17.28,-21.27,1,5,4,3,4,3,100,50,0,8.33,8.33,69.23,69.23,69.23,0,100,92.31,46.15,0,100,50,0,1,0,4,2,0,0,0,0,0,0,0,0,7,0,7,1,5,0.8,63,21 -1043,Infirmary,Immediate,Role-assignment,Baseline,2,07:30pm,1,0,0.2,"The colors were very bright. The blacklight was cool, the glasses made things weird, it was trippy. It was fluorescent and the path was windy There were clowns. It was quick compared to the others. ",1,24.37,13.3,24.32,94.7,0,0,0,0,8.57,0,8.57,0,2.86,0,0,0,5.71,0,5.71,5.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.86,0,17.14,0,0,5.71,8.57,0,2.86,0,2.86,NA,82.8,31.35,NA,1,3,1,3,1,1,100,50,0,50,100,0,0,100,33.33,33.33,50,50,50,50,50,0,0,0,6,2,0,0,0,0,0,0,0,0,8,0,8,1,6,1,35,21 -1043,Infirmary,Delay,Role-assignment,Baseline,2,07:30pm,1,1,0.4,This one had really bright colors and we wore the glasses. It was a blacklight with neon polka dots and spiders. There were people dressed as clowns. There was also a narrow spot that had fog and green lasers at the beginning that was trippy to walk through. I just remember mainly it was really bright colors and the clowns and blacklight. ,1,17.22,49.66,10.77,70.91,1.61,1.61,0,0,4.84,0,4.84,1.61,0,0,0,3.23,0,1.61,3.23,3.23,0,0,0,0,0,0,0,0,1.61,0,0,0,0,0,0,1.61,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61,14.52,0,1.61,4.84,8.06,0,0,0,1.61,-24.41,-16.58,-29.35,-27.3,4,1,5,1,2,1,0,60,2.5,100,2.5,100,0,87.5,33.33,87.5,0,0,50,0,100,1,0,0,5,0,0,1,0,1,0,0,3,0,6,5,11,0.545454545,6,0.833333333,62,21 -1043,Asylum,Delay,Role-assignment,Baseline,2,07:30pm,1,0,0.5,I think this was the one with the jail cells and the vines and the hanging box that had loud noises. I am honestly having a hard time remembering though. That one was dark and loud and narrow. ,1,22.98,7.5,52.19,2.53,0,0,0,0,15.79,5.26,10.53,5.26,0,0,0,2.63,2.63,2.63,2.63,0,2.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.63,18.42,0,0,5.26,2.63,7.89,2.63,0,2.63,24.49,81.96,3.59,-12.08,1,3,4,3,2,2,100,66.67,0,38.1,0,50,0,100,71.43,71.43,87.5,0,0,100,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,21 -1043,DevilsDen,Delay,Role-assignment,Share,2,07:30pm,3,0,0.6,Machine shop had men with chainsaws running around. It had a loud cage that fell towards the end. It was a lot of red lighting and fake limbs. There was air blowing on me randomly. There was people yelling about taking our body parts. Part of it we walked outside then back in. This was also dark and narrow at times. ,1,50.51,59.57,98.05,6.23,3.28,3.28,0,0,4.92,0,4.92,0,0,0,1.64,0,3.28,0,1.64,0,1.64,0,0,0,0,0,0,0,8.2,3.28,0,0,0,1.64,1.64,4.92,0,0,0,1.64,0,0,1.64,0,0,0,0,0,0,3.28,24.59,0,4.92,14.75,3.28,3.28,0,1.64,3.28,18.1,43.36,17.62,-6.67,2,3,3,3,1,1,58.97,100,0,33.33,66.67,0,5.45,100,5.45,76.36,0,0,100,0,100,1,0,0,9,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.9,61,21 -1043,GhostlyGrounds,Immediate,Role-assignment,Test,2,07:30pm,3,0,0.4,There was alien looking things. A very shaky floor towards the end. People in cages and lots of loud banging and air being blown at me. Less people jumping out compared to some others. There were strobe lights that made it hard to see. A hanging cage that was rattling with something banging on the inside.,1,83.77,14.49,89.39,20.23,0,0,0,0,7.14,0,7.14,0,1.79,0,1.79,0,3.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.79,0,0,0,0,0,7.14,30.36,0,3.57,14.29,5.36,5.36,1.79,1.79,7.14,NA,33.68,-14.28,NA,5,4,1,2,2,1,37.5,0,50,0,100,66.67,0,0,100,0,50,50,50,50,50,1,0,0,9,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.9,56,21 -1043,GhostlyGrounds,Delay,Role-assignment,Test,2,07:30pm,3,1,0.6,I think this is the one with the moving floors at the end and the school bus at the beginning. I remember this one being the scariest one. I am honestly having a difficult time with details. I remember walking up steps at the end. ,1,96.08,5.61,99,1,0,0,0,0,17.78,4.44,13.33,6.67,0,0,0,2.22,0,4.44,4.44,0,4.44,2.22,0,2.22,2.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22,11.11,0,6.67,4.44,0,0,0,0,2.22,-3.88,38.02,-10.53,-39.14,2,1,1,3,2,2,50,100,0,0,50,100,0,100,100,0,100,0,100,0,100,1,1,0,1,0,0,0,0,0,1,0,0,1,3,2,5,0.6,3,0.333333333,45,21 -1044,Infirmary,Delay,Role-assignment,Baseline,2,07:30pm,2,0,0.6,"Infirmary was the room where we wore 3d glasses and walked through the room and saw lots of bright and neon colors everywhere and skyscrapers. The people in this room were clownlike type of people, popping out and scaring you. Everything looked all distorted and crazy with the 3d glasses, and sometimes it was hard to walk because the floor was distorted as well. The main gist that I remember from this room was all of the neon colors and clownlike type of people popping out from behind corners. ",1,79.65,60.12,48.97,36.25,1.12,1.12,0,0,7.87,4.49,3.37,1.12,1.12,0,1.12,0,0,1.12,4.49,2.25,1.12,2.25,0,1.12,1.12,0,0,0,2.25,0,0,0,0,0,0,2.25,0,0,0,0,0,0,0,0,0,0,0,0,0,5.62,21.35,0,2.25,12.36,5.62,0,1.12,0,5.62,33.14,40.12,28.35,30.94,5,3,4,2,5,1,29.82,0,0,59.65,100,31.31,31.31,100,48.48,0,0,0,0,100,0,3,1,0,8,0,0,0,0,0,0,0,3,0,12,3,15,0.8,12,0.666666667,89,20 -1044,Asylum,Immediate,Role-assignment,Baseline,2,07:30pm,3,0,0.5,"Asylum was the room with the theme being backstages. There were people pretending to be backstage getting ready for the show. The room had curves but was pretty well lit the entire time. There was smoke but no darkness nor strobe lights. People came behind corners and tried to scare us, but I found this room to be a 3/5 scary level wise. I enjoyed this room because there were not too many jump scares but it was enjoyable overall. ",1,27.64,2.86,94.28,58.42,2.44,1.22,1.22,0,14.63,1.22,13.41,1.22,1.22,0,1.22,0,7.32,0,9.76,6.1,3.66,6.1,2.44,3.66,3.66,0,0,0,1.22,0,0,0,0,0,0,1.22,0,0,0,0,0,0,2.44,0,0,0,0,0,0,8.54,19.51,0,2.44,12.2,4.88,0,0,2.44,8.54,41.2,77.2,2.35,44.07,1,5,4,5,2,1,100,100,53.13,53.13,0,17.98,0,42.7,42.7,100,0,0,51.43,100,51.43,1,0,0,8,2,0,0,0,0,0,0,1,0,11,1,12,0.916666667,9,0.888888889,82,20 -1044,Asylum,Delay,Role-assignment,Baseline,2,07:30pm,3,1,0.5,"Asylum was the second room in which we walked through and went around a lot of corners. There were not that many jump scares. We saw people dressed as ""performers/ actors"" preparing to go on stage. There was not blood or chainsaws or anything like that, it was more so creepy than scary. They were back stage waiting to go onstage. There was one woman whose room had a makeup area and a director chair and that is the one particular scene that I remember clearly. +1041,Infirmary,Immediate,Goal-assigned,Baseline,2,06:15pm,1,0,0.8,"It was a lot of colors. There was a woman dancing in white and black. We were handed this 3D glasses to perceive everything around us as an illusion. It was fairly quiet. No one jumped out at our group.There was a lot of illusions. I specifically remembering these illusions hurting my eyes. My glasses kept falling off as one of the actors yelled at everyone to put their glasses on. I remember walking through these squeaky floors. The walk through was very quick. I saw the color purple, green, and yellow. There were lights flashing at one point. There was a guy in a green mask waiting to collect our glasses after the walk through was over. I wasnt scared at all.",1,72,63.91,89.39,6.37,3.23,3.23,0,0,8.06,4.03,4.03,2.42,0,0,0.81,0,0.81,1.61,1.61,0,1.61,1.61,0,1.61,0.81,0,0,0,9.68,1.61,0,0,0,0,0.81,8.06,0,0,0.81,0.81,0,0,0.81,0,0,0,0,0,0,0.81,27.42,0,5.65,8.87,9.68,2.42,0.81,0.81,0.81,20,20.11,-13.71,53.59,5,2,2,4,3,1,22.86,22.86,45.71,0,100,66.67,100,0,33.33,38.19,0,100,50,0,0,6,0,0,11,1,0,0,0,0,0,0,0,0,18,0,18,1,17,0.647058824,124,18 +1041,Infirmary,Delay,Goal-assigned,Baseline,2,06:15pm,1,1,0.6,"There was a woman in black and white dancing at the entrance. Once we entered, I could not see the floor because the fog was so thick. I remember feeling paranoid that I was going to fall because I could not see the floor in front of me. I eventually picked up some 3D glasses. There were neon colors such as green, pink, and blue around me. I didnt feel scared at all. When exiting, I danced with the lady in the black and white as I exited. We put our glasses in the basket. I remember while walking through, a guy yelled at us to put our glasses on. The was a guy in a green mask guarding the door as we exited. ",1,63.25,35.45,99,6.37,5.65,4.84,0,0.81,9.68,0.81,8.87,3.23,1.61,1.61,0,0,2.42,1.61,1.61,0,1.61,1.61,0,1.61,1.61,0,0,0,10.48,3.23,0,0.81,0,0,0.81,8.06,0,0,1.61,1.61,0,0,0,0,0,0,0,0,0,2.42,31.45,0,6.45,14.52,8.87,0.81,1.61,0,2.42,33.58,40.84,14.74,45.17,5,2,2,2,5,5,31.17,0,0,62.34,100,61.7,100,74.47,36.17,0,33.33,100,33.33,33.33,0,6,1,0,7,2,0,0,0,0,0,0,1,0,16,1,17,0.941176471,14,0.5,124,18 +1041,Asylum,Delay,Goal-assigned,Baseline,2,06:15pm,1,0,0.75,I think this was the scariest attraction for me. This was the attraction where the actors kept jumping out to scare me. I just remember it being dark and me screaming every 5 minutes. ,1,29.85,2.18,99,1,0,0,0,0,8.82,2.94,5.88,5.88,0,0,0,0,0,2.94,5.88,0,5.88,5.88,0,5.88,5.88,0,0,0,2.94,0,0,0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,0,0,0,0,2.94,14.71,0,2.94,5.88,2.94,2.94,0,0,2.94,-0.65,13.32,0.84,-16.1,3,4,1,4,3,2,33.33,66.67,100,0,0,60,80,0,100,46.67,100,0,0,100,0,2,0,0,1,1,0,0,0,0,0,0,0,0,4,0,4,1,3,0.333333333,34,18 +1041,DevilsDen,Delay,Goal-assigned,Share,2,06:15pm,3,0,0.6,"There was meat everywhere. The lady at the entrance told us ""okay temple."" and I remember asking her how she knew we went to the temple and she said because we smell like a dorm. As we entered, a guy jumped out at us. I told him to back up then tripped right after and he said ""thats why you tripped."" I remember laughing through the whole attraction. Someone told me they were going to slit my throat because I told them that they werent scary. It was a lot of meat hanging from the ceilings. ",1,34.33,99,54.55,20.23,5.21,5.21,0,0,10.42,1.04,9.38,4.17,4.17,0,1.04,0,1.04,2.08,2.08,1.04,1.04,2.08,1.04,1.04,1.04,0,0,0,28.13,9.38,0,1.04,0,0,8.33,19.79,0,0,4.17,3.13,0,0,0,0,0,0,0,0,0,5.21,10.42,0,3.13,7.29,0,0,0,0,5.21,-15.42,-21.83,-25.86,1.43,2,1,2,1,2,3,0,100,100,6.98,53.49,100,0,78.43,78.43,78.43,47.5,100,0,50,50,10,0,0,2,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.166666667,96,18 +1041,GhostlyGrounds,Immediate,Goal-assigned,Test,2,06:15pm,4,0,0.6,"Honestly, I dont even remember which one the ""Ghostly Grounds"" was. I think it was one of the ones I didnt find as scary. However, Im really not sure. I only remember the first and last walkthrough. I just remember flashing lights and not being able to see anything. It was agitating my eyes. ",1,1.02,1,99,5.02,1.89,0,1.89,0,26.42,0,26.42,9.43,0,0,5.66,3.77,9.43,5.66,1.89,0,1.89,1.89,0,1.89,1.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.77,9.43,0,0,0,7.55,0,0,0,3.77,24.41,20.34,-20.53,73.42,2,1,2,4,2,5,33.33,100,33.33,0,36.67,100,0,100,75,75,50,100,100,55,0,0,0,0,3,0,0,0,0,0,1,0,0,3,3,4,7,0.428571429,3,1,53,18 +1041,GhostlyGrounds,Delay,Goal-assigned,Test,2,06:15pm,4,1,1,"I remember there being shaky floors, flashing lights, a cage with a fake person inside of it. there was screaming and ominous music in the background. I remember someone jumping out at me and accidentally touching me. It was cold. The lights were red. ",1,65.33,17.46,99,3.56,0,0,0,0,6.82,0,6.82,4.55,0,0,2.27,0,0,4.55,6.82,2.27,4.55,2.27,0,2.27,2.27,0,0,0,6.82,2.27,0,0,0,2.27,0,4.55,0,0,0,0,0,0,0,0,0,0,0,0,0,2.27,36.36,0,4.55,13.64,9.09,4.55,4.55,0,2.27,-19.27,-22.07,-19.66,-16.1,2,5,1,1,2,2,0,100,33.33,33.33,4.17,40,0,40,40,100,100,0,0,100,0,2,1,0,6,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.666666667,44,18 +1042,Infirmary,Immediate,Goal-assigned,Baseline,2,07:30pm,2,0,0.4,"Infirmary was the second scariest attraction that I went on. I think the first thing that came to my mind while going through the Infirmary was the various shapes and colors. I feel like this took the attention away from the actors and made it easier for them to jump scare us. I think one of the scarier parts of Infirmary was the beginning where you go through the school bus. I think it was more scary because when you think of a school bus you think of innocence and young children, when in reality it is the opposite ",1,74,52.11,97.85,4.48,1.01,1.01,0,0,12.12,0,12.12,6.06,2.02,0,0,0,3.03,0,6.06,2.02,4.04,4.04,0,4.04,4.04,0,0,0,8.08,1.01,0,0,0,1.01,0,7.07,0,0,0,0,0,0,1.01,0,0,0,0,0,0,3.03,11.11,1.01,5.05,4.04,1.01,0,1.01,1.01,3.03,5.77,9.35,-7.25,15.2,2,4,5,4,2,1,33.33,100,100,0,75.44,50,0,0,100,6.58,0,90.48,0,90.48,100,0,1,0,2,1,0,0,0,0,3,2,0,0,4,5,9,0.444444444,3,0.666666667,99,21 +1042,Infirmary,Delay,Goal-assigned,Baseline,2,07:30pm,2,1,0.4,Infirmary I remember being very trippy. The main thing I remember was putting on the 3D goggles and going through the 3D section of the attraction. I thought this was one of the coolest parts of the entire night. I remember feeling more anxious at the time I was putting on the glasses because I thought the purpose of the glasses was to get us to feel more comfortable just to be scared by a random jump scare. ,1,94.99,11.19,91.37,8.34,1.28,1.28,0,0,14.1,0,14.1,8.97,2.56,0,1.28,0,1.28,3.85,6.41,2.56,3.85,5.13,1.28,3.85,3.85,0,0,0,1.28,0,0,0,0,0,0,1.28,0,0,0,0,0,0,1.28,0,0,0,0,0,0,5.13,10.26,0,5.13,1.28,0,0,3.85,1.28,5.13,-24.45,-35.72,-38.21,0.58,4,1,4,1,3,2,0,58.82,58.82,100,37.25,100,50,0,56.67,30,45.45,0,45.45,100,51.52,2,1,0,1,3,0,0,0,0,0,0,0,0,7,0,7,1,4,0.25,78,21 +1042,Asylum,Delay,Goal-assigned,Baseline,2,07:30pm,2,0,0,"I honestly do not remember a ton from the Asylum part of the tour. The main thing I remember was it was a very narrow path going throughout the attraction, I remember some parts having to go in a single file line to get through.",1,95.99,1,99,20.23,0,0,0,0,15.22,0,15.22,6.52,0,0,0,2.17,6.52,6.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.35,0,4.35,0,0,0,0,0,0,6.52,15.22,0,4.35,13.04,0,0,0,8.7,6.52,23.31,48.41,11.46,10.07,5,3,3,3,5,2,56.67,66.67,0,66.67,100,67.5,50,100,75,0,90,0,100,100,0,1,0,0,1,0,0,0,0,0,0,0,0,1,2,1,3,0.666666667,2,0.5,46,21 +1042,DevilsDen,Immediate,Goal-assigned,Share,2,07:30pm,5,0,0.8,Machine shop was the scariest part of the night. I really do not like gore or seeing limbs being chopped off so that was uncomfortable for me but I think it also made it very fun. As I was in the outdoor section of the attraction a large man with a chainsaw and pretended to saw my leg off. The first thing that caught my attention was the person letting us into the attraction. I vividly remember the host letting us in appeared to have a special contact in that made one of her eyes completely white and I remember being a little freaked out about it. ,1,65.75,16.97,72.99,10.86,1.87,1.87,0,0,11.21,0,11.21,2.8,1.87,0,0.93,1.87,3.74,1.87,2.8,0.93,1.87,2.8,0.93,1.87,0.93,0,0,0,5.61,0,0,0,0,0,0,5.61,0,0,0.93,1.87,0,0,0.93,0,0,0,0,0,0,5.61,14.02,0.93,0.93,6.54,5.61,0,0,0.93,5.61,2.74,-36.56,-9.64,54.43,3,2,2,1,3,1,0,30,100,100,37.14,47.93,100,0,0,36.36,0,100,34.92,69.84,34.92,1,1,0,4,1,0,0,0,0,3,2,0,0,7,5,12,0.583333333,6,0.666666667,107,21 +1042,DevilsDen,Delay,Goal-assigned,Share,2,07:30pm,5,1,0.8,At Devil's Den I remember having the most scary experience. I remember being followed by a guy with a really loud chainsaw and pretending to saw my leg off. The main thing I remember was a lot of fake blood and a lot of flashing lights which made me pretty uncomfortable.,1,86.58,4.22,46.57,1,0,0,0,0,15.69,0,15.69,5.88,1.96,0,1.96,1.96,1.96,5.88,5.88,0,5.88,3.92,0,3.92,1.96,0,0,0,3.92,1.96,0,0,0,1.96,0,1.96,0,0,0,1.96,0,0,0,0,0,0,0,0,0,1.96,7.84,0,0,0,5.88,1.96,0,0,1.96,1.23,-22.15,-20.11,45.94,2,4,2,1,2,5,0,100,54.17,8.33,8.33,81.82,0,0,100,0,90.91,100,100,100,0,2,0,0,3,1,0,0,0,0,1,0,0,0,6,1,7,0.857142857,5,0.6,51,21 +1042,GhostlyGrounds,Delay,Goal-assigned,Test,2,07:30pm,4,0,0.6,The main thing I remember from the Ghostly Grounds was the effects they used to try to scare us. I vividly remember being scared while going through a hallway full of fog and you could only see every like 2 seconds because of strobe lights. Going down that hall felt like it took forever because the entire time I was worried about jump scares. ,1,74.35,58.95,67.59,1,3.17,1.59,1.59,0,19.05,3.17,15.87,6.35,6.35,3.17,0,0,0,3.17,6.35,0,6.35,6.35,0,6.35,6.35,0,0,0,4.76,0,0,0,0,0,0,4.76,0,0,0,0,0,0,1.59,0,1.59,0,0,0,0,6.35,14.29,0,4.76,3.17,4.76,0,1.59,3.18,6.35,19.58,97.28,-17.28,-21.27,1,5,4,3,4,3,100,50,0,8.33,8.33,69.23,69.23,69.23,0,100,92.31,46.15,0,100,50,0,1,0,4,2,0,0,0,0,0,0,0,0,7,0,7,1,5,0.8,63,21 +1043,Infirmary,Immediate,Goal-assigned,Baseline,2,07:30pm,1,0,0.2,"The colors were very bright. The blacklight was cool, the glasses made things weird, it was trippy. It was fluorescent and the path was windy There were clowns. It was quick compared to the others. ",1,24.37,13.3,24.32,94.7,0,0,0,0,8.57,0,8.57,0,2.86,0,0,0,5.71,0,5.71,5.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.86,0,17.14,0,0,5.71,8.57,0,2.86,0,2.86,NA,82.8,31.35,NA,1,3,1,3,1,1,100,50,0,50,100,0,0,100,33.33,33.33,50,50,50,50,50,0,0,0,6,2,0,0,0,0,0,0,0,0,8,0,8,1,6,1,35,21 +1043,Infirmary,Delay,Goal-assigned,Baseline,2,07:30pm,1,1,0.4,This one had really bright colors and we wore the glasses. It was a blacklight with neon polka dots and spiders. There were people dressed as clowns. There was also a narrow spot that had fog and green lasers at the beginning that was trippy to walk through. I just remember mainly it was really bright colors and the clowns and blacklight. ,1,17.22,49.66,10.77,70.91,1.61,1.61,0,0,4.84,0,4.84,1.61,0,0,0,3.23,0,1.61,3.23,3.23,0,0,0,0,0,0,0,0,1.61,0,0,0,0,0,0,1.61,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61,14.52,0,1.61,4.84,8.06,0,0,0,1.61,-24.41,-16.58,-29.35,-27.3,4,1,5,1,2,1,0,60,2.5,100,2.5,100,0,87.5,33.33,87.5,0,0,50,0,100,1,0,0,5,0,0,1,0,1,0,0,3,0,6,5,11,0.545454545,6,0.833333333,62,21 +1043,Asylum,Delay,Goal-assigned,Baseline,2,07:30pm,1,0,0.5,I think this was the one with the jail cells and the vines and the hanging box that had loud noises. I am honestly having a hard time remembering though. That one was dark and loud and narrow. ,1,22.98,7.5,52.19,2.53,0,0,0,0,15.79,5.26,10.53,5.26,0,0,0,2.63,2.63,2.63,2.63,0,2.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.63,18.42,0,0,5.26,2.63,7.89,2.63,0,2.63,24.49,81.96,3.59,-12.08,1,3,4,3,2,2,100,66.67,0,38.1,0,50,0,100,71.43,71.43,87.5,0,0,100,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,21 +1043,DevilsDen,Delay,Goal-assigned,Share,2,07:30pm,3,0,0.6,Machine shop had men with chainsaws running around. It had a loud cage that fell towards the end. It was a lot of red lighting and fake limbs. There was air blowing on me randomly. There was people yelling about taking our body parts. Part of it we walked outside then back in. This was also dark and narrow at times. ,1,50.51,59.57,98.05,6.23,3.28,3.28,0,0,4.92,0,4.92,0,0,0,1.64,0,3.28,0,1.64,0,1.64,0,0,0,0,0,0,0,8.2,3.28,0,0,0,1.64,1.64,4.92,0,0,0,1.64,0,0,1.64,0,0,0,0,0,0,3.28,24.59,0,4.92,14.75,3.28,3.28,0,1.64,3.28,18.1,43.36,17.62,-6.67,2,3,3,3,1,1,58.97,100,0,33.33,66.67,0,5.45,100,5.45,76.36,0,0,100,0,100,1,0,0,9,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.9,61,21 +1043,GhostlyGrounds,Immediate,Goal-assigned,Test,2,07:30pm,3,0,0.4,There was alien looking things. A very shaky floor towards the end. People in cages and lots of loud banging and air being blown at me. Less people jumping out compared to some others. There were strobe lights that made it hard to see. A hanging cage that was rattling with something banging on the inside.,1,83.77,14.49,89.39,20.23,0,0,0,0,7.14,0,7.14,0,1.79,0,1.79,0,3.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.79,0,0,0,0,0,7.14,30.36,0,3.57,14.29,5.36,5.36,1.79,1.79,7.14,NA,33.68,-14.28,NA,5,4,1,2,2,1,37.5,0,50,0,100,66.67,0,0,100,0,50,50,50,50,50,1,0,0,9,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.9,56,21 +1043,GhostlyGrounds,Delay,Goal-assigned,Test,2,07:30pm,3,1,0.6,I think this is the one with the moving floors at the end and the school bus at the beginning. I remember this one being the scariest one. I am honestly having a difficult time with details. I remember walking up steps at the end. ,1,96.08,5.61,99,1,0,0,0,0,17.78,4.44,13.33,6.67,0,0,0,2.22,0,4.44,4.44,0,4.44,2.22,0,2.22,2.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22,11.11,0,6.67,4.44,0,0,0,0,2.22,-3.88,38.02,-10.53,-39.14,2,1,1,3,2,2,50,100,0,0,50,100,0,100,100,0,100,0,100,0,100,1,1,0,1,0,0,0,0,0,1,0,0,1,3,2,5,0.6,3,0.333333333,45,21 +1044,Infirmary,Delay,Goal-assigned,Baseline,2,07:30pm,2,0,0.6,"Infirmary was the room where we wore 3d glasses and walked through the room and saw lots of bright and neon colors everywhere and skyscrapers. The people in this room were clownlike type of people, popping out and scaring you. Everything looked all distorted and crazy with the 3d glasses, and sometimes it was hard to walk because the floor was distorted as well. The main gist that I remember from this room was all of the neon colors and clownlike type of people popping out from behind corners. ",1,79.65,60.12,48.97,36.25,1.12,1.12,0,0,7.87,4.49,3.37,1.12,1.12,0,1.12,0,0,1.12,4.49,2.25,1.12,2.25,0,1.12,1.12,0,0,0,2.25,0,0,0,0,0,0,2.25,0,0,0,0,0,0,0,0,0,0,0,0,0,5.62,21.35,0,2.25,12.36,5.62,0,1.12,0,5.62,33.14,40.12,28.35,30.94,5,3,4,2,5,1,29.82,0,0,59.65,100,31.31,31.31,100,48.48,0,0,0,0,100,0,3,1,0,8,0,0,0,0,0,0,0,3,0,12,3,15,0.8,12,0.666666667,89,20 +1044,Asylum,Immediate,Goal-assigned,Baseline,2,07:30pm,3,0,0.5,"Asylum was the room with the theme being backstages. There were people pretending to be backstage getting ready for the show. The room had curves but was pretty well lit the entire time. There was smoke but no darkness nor strobe lights. People came behind corners and tried to scare us, but I found this room to be a 3/5 scary level wise. I enjoyed this room because there were not too many jump scares but it was enjoyable overall. ",1,27.64,2.86,94.28,58.42,2.44,1.22,1.22,0,14.63,1.22,13.41,1.22,1.22,0,1.22,0,7.32,0,9.76,6.1,3.66,6.1,2.44,3.66,3.66,0,0,0,1.22,0,0,0,0,0,0,1.22,0,0,0,0,0,0,2.44,0,0,0,0,0,0,8.54,19.51,0,2.44,12.2,4.88,0,0,2.44,8.54,41.2,77.2,2.35,44.07,1,5,4,5,2,1,100,100,53.13,53.13,0,17.98,0,42.7,42.7,100,0,0,51.43,100,51.43,1,0,0,8,2,0,0,0,0,0,0,1,0,11,1,12,0.916666667,9,0.888888889,82,20 +1044,Asylum,Delay,Goal-assigned,Baseline,2,07:30pm,3,1,0.5,"Asylum was the second room in which we walked through and went around a lot of corners. There were not that many jump scares. We saw people dressed as ""performers/ actors"" preparing to go on stage. There was not blood or chainsaws or anything like that, it was more so creepy than scary. They were back stage waiting to go onstage. There was one woman whose room had a makeup area and a director chair and that is the one particular scene that I remember clearly. ",1,28.28,33.55,98.3,1.05,3.45,2.3,0,1.15,13.79,2.3,11.49,1.15,0,0,3.45,1.15,8.05,1.15,3.45,0,3.45,3.45,0,3.45,3.45,0,0,0,8.05,0,0,0,0,0,0,8.05,0,0,1.15,0,0,0,1.15,0,0,0,0,0,0,6.9,17.24,0,5.75,12.64,1.15,0,0,1.15,6.9,45.23,95.55,46.81,-6.67,1,3,3,3,1,1,100,39.29,0,21.43,21.43,0,15.18,100,51.79,51.79,0,0,100,0,100,3,1,0,6,1,0,0,0,0,0,1,0,2,11,3,14,0.785714286,10,0.6,87,20 -1044,DevilsDen,Delay,Role-assignment,Share,2,07:30pm,5,0,0.8,"The Devil's Den was the room similar to the Ghostly Grounds, with a lot of jump scares and more scary people than the previous two rooms. This room had a person chasing other people with a chainsaw and the people in this room were a lot bloodier and scarier than others. This room was also very dark and was sometimes difficult to see. I specifically remember being chased by a man with a chainsaw and I also remember another person with an axelike type of tool. This room had lots of people with lots of different machinery and I remember this room also being very loud and chaotic. It was filled with bloody and gory people that hid behind corners and walls and on the ground below. ",1,74.35,11.37,81.28,1,0,0,0,0,9.52,0,9.52,2.38,0,0,0.79,0,5.56,2.38,3.97,0,3.97,2.38,0,2.38,2.38,0,0,0.79,2.38,0,0,0,0,0,0,2.38,0,0,0,0.79,0,0,0,0,0.79,0,0,0.79,0,4.76,14.29,0,1.59,9.52,2.38,0.79,0,0.79,5.55,61.6,89.48,47.77,47.56,1,3,3,3,1,1,100,54.74,0,27.37,0,0,56.12,100,34.18,78.06,0,1.27,100,34.18,1.27,3,0,0,14,2,0,0,0,0,0,1,0,0,19,1,20,0.95,17,0.823529412,126,20 -1044,GhostlyGrounds,Immediate,Role-assignment,Test,2,07:30pm,5,0,0.6,"The Ghostly Grounds room began with entering the bus and it being extremely dark besides the strobe lights. There were pretend dead bodies and real people as well reaching out to you. After that we got off the bus and went through into the room which had several different levels with upstairs and downstairs parts. People were locked in cages and there was lots of noise and commotion happening. The floors moved at one point and there was lots of smoke and red lights everywhere. There were lots of jump scares and people hiding behind walls. At one point we were in a room with lots of strobe lights and pretend dead people hanging from the ceilings and actual people being in there as well, and it was hard to tell the difference.",1,76.99,44.54,91.71,20.23,1.52,1.52,0,0,7.58,0.76,6.82,0,0,0,0,1.52,3.79,0,3.03,1.52,1.52,0.76,0,0.76,0.76,0,0,0,3.03,0.76,0,0,0,0,0.76,2.27,0,0,0,0,0,0,0.76,0,0,0,0,0.76,0,5.3,25.76,0,3.79,16.67,4.55,0.76,0.76,0.76,6.06,-31.02,2.2,-19.23,-76.03,2,3,5,3,2,2,21.21,100,0,54.55,27.27,76.47,0,100,20.59,100,96.3,0,0,0,100,3,3,0,13,0,0,0,0,0,0,0,0,0,19,0,19,1,19,0.684210526,132,20 -1044,GhostlyGrounds,Delay,Role-assignment,Test,2,07:30pm,5,1,0.6,"Ghostly Grounds was the last room where we first began walking onto a school bus and the entire bus was dark except for the occasional strobe light flashing. The were pretend bodies in the bus seats as well as real ones, and it was hard to differentiate between the two. We got off the bus and went into the main room where we started on the bottom floor and had to go up and down two separate flights of stairs throughout this room. There was lots of blood and chainsaws and other machinery like that. This room was more gory than the rest. It was on and off dark with strobe lights and there was the meat packing room with different pretend bodies hanging from the ceiling as well as real people, and it was also difficult to differentiate between the two because of the flashing strobe lights. There was also an instant where the floor began to move and walking became difficult. At the very end we walked up a flight of stairs and down a long hallway and it was almost impossible to see because of the constant flashing strobe lights. This room was also scary since this had the most jump scares than the rest. ",1,86.63,37.29,94.74,20.23,1.93,1.93,0,0,10.14,0,10.14,0,1.45,0,0.97,0.97,4.35,0,3.86,1.93,1.93,0.97,0,0.97,0.97,0,0,0,1.93,0,0,0,0,0,0,1.93,0,0,0,0,0.97,0,0.48,0,0,0,0,0,0,3.86,23.19,0,4.35,14.01,4.83,0,0.48,1.45,3.86,27.7,27.84,97.68,-42.41,2,4,5,3,1,2,46.75,100,0,54.55,54.55,0,46.33,76.27,100,100,24.26,0,25.44,75.15,100,4,5,0,17,1,0,0,0,0,0,1,0,0,27,1,28,0.964285714,26,0.653846154,207,20 -1045,Infirmary,Delay,Role-assignment,Baseline,2,06:15pm,2,0,1,"Infirmary was very colorful, neon, and there were splashes of color on the walls. The characters lit up with the costumes that they were wearing. I remember it was glow in the dark. My shoes were white so when I looked down they were glowing. The actors came up really close to you but didnt touch you. The walls were glow in the dark and the rooms were small and black with neon splashes of color. There was loud music. I think there was a scary clown character. I was front of the line walking through. The haunted house was very short, we were out of there very fast. ",1,52.92,45.49,95.58,11,0.92,0.92,0,0,4.59,0,4.59,1.83,0,0,0,0.92,1.83,0.92,2.75,0.92,1.83,0.92,0,0.92,0.92,0,0,0,5.5,0,0,0,0,0,0,5.5,0,0,0,0,0,0,0,0,0,0,0,0,0,2.75,31.19,0,2.75,14.68,11.01,1.83,0.92,0,2.75,58.21,53.75,28.05,92.83,1,2,2,2,1,1,100,0,100,0,82.14,0,100,16.67,16.67,39.68,0,100,100,100,0,2,0,0,14,0,0,0,0,0,0,0,1,0,16,1,17,0.941176471,16,0.875,109,18 -1045,Asylum,Immediate,Role-assignment,Baseline,2,06:15pm,1,0,0.75,"Asylum wasnt very scary, I walked through and there were loud noises coming from automated machines. The actors followed you around until you walked into the other room. They screamed in my face, which was scary, but the scenery wasnt. I walked first in line and kept tripping on the ground because I was nervous of what was coming next. It was after the colorful haunted house and felt very short. I was looking all around, at the ceilings, at the props, and the actors. They had really nice, spooky, makeup on. ",1,51.31,18.43,99,1,0,0,0,0,9.68,1.08,8.6,1.08,1.08,0,0,1.08,5.38,0,8.6,2.15,6.45,4.3,0,4.3,4.3,0,0,0,6.45,0,0,0,0,0,0,6.45,0,0,0,0,0,0,1.08,0,0,0,0,0,0,1.08,20.43,0,5.38,10.75,2.15,3.23,1.08,1.08,1.08,42.62,7.06,28.91,91.89,5,4,4,4,5,1,16.84,54.74,54.74,0,100,22.81,85.96,22.81,100,0,0,94.74,94.74,100,0,6,0,0,7,4,0,0,0,0,0,0,0,0,17,0,17,1,13,0.538461538,93,18 -1045,Asylum,Delay,Role-assignment,Baseline,2,06:15pm,1,1,0.5,"Asylum I dont remember almost anything from. I dont remember what happened or what it looked like. There was loud bangs from the walls, an actor opened up a wooden slide from a wall and screamed out. I think there was a woman with a long staff that was telling us about separation anxiety and how if youre scared of being alone you shouldnt walk in. There was a long vault with fog and a single man walking towards you, that part was actually scary because you cant move forward or back since you cant see anything. There was light at the end of the tunnel but he was blocking it. He ran up to me and scared me, whispered in my ear about something that I dont remember at all. ",1,20.83,27.64,98.58,1.71,0.76,0.76,0,0,16.67,0.76,15.91,3.79,2.27,2.27,5.3,0.76,6.06,2.27,3.03,0,3.03,3.03,0,3.03,3.03,0,0,0,11.36,1.52,0,0,0,0,1.52,9.09,0,0,0.76,2.27,0,0,0.76,0,0,0,0,0,0,6.06,22.73,0,3.79,13.64,2.27,3.03,0,0.76,6.06,-20.3,-22.9,-16.83,-21.17,2,4,4,1,2,3,0,100,44.62,23.85,23.85,66.33,0,44.9,100,100,64.2,32.1,0,100,66.67,0,0,0,3,0,7,1,0,3,1,0,0,3,3,15,18,0.166666667,3,1,132,18 -1045,DevilsDen,Delay,Role-assignment,Share,2,06:15pm,3,0,0.75,"The Devil's Den had people that were dismembering bodies. There was a girl actor that screamed ""your worth more in pieces"" or something like that which I found to be scary and true, only because people make a huge profit for selling organs instead of saving lives?? Which is crazy. I remember there was a guy with a chainsaw. There was a guy with a hammer. There was blood, splattered blood on the ground and walls. There were dismembered feet hanging off the walls of a passageway, which was extremely disturbing. There were loud noises that popped out from walls. ",1,60.65,34.37,81.21,1.76,0,0,0,0,12,0,12,2,2,0,2,1,5,1,4,0,3,2,0,1,1,0,0,0,5,0,0,0,0,0,0,5,0,0,1,2,0,0,0,0,0,0,1,0,0,6,17,0,1,13,0,4,0,0,7,28.5,14.29,12.73,58.47,5,2,2,2,4,1,25,0,75,75,100,33.33,100,33.33,0,0,0,100,66.67,0,0,0,0,0,12,2,0,0,0,0,0,1,0,2,14,3,17,0.823529412,12,1,100,18 -1045,GhostlyGrounds,Immediate,Role-assignment,Test,2,06:15pm,3,0,0.6,"The Ghostly Grounds started in the bus, there were dead and dying props in each seat. It was foggy and there were neon lights. There was a guy that was sitting in the seat and he got up and followed me down the bus and screamed in my ear. Then we walked into the prison. The prison doors were all open but they were too dark to see into them, there were lights on the ceilings but it was filled with cages with props in them. There were actors in the cage that jump out at you. Then we walked into a small room with hanging bodies from hooks. My heart was racing and I had no clue where to walk because I was so scared as to which one was gonna jump out at me. One of the men in the room popped out and screamed at us until we ran out of the room. Th",1,71.74,66.44,99,4.87,3.85,2.56,0,1.28,4.49,1.28,3.21,0.64,0.64,0,0,0,1.92,0,1.92,0,1.92,0.64,0,0.64,0.64,0,0,0,7.69,0,0,0,0,0,0,7.69,0,0,0,1.92,0,0,0.64,0,0.64,0,0,0,0,4.49,28.21,0,4.49,19.23,2.56,1.92,0,1.28,4.49,30.6,6.09,14.24,71.46,5,4,4,4,5,1,9.77,12.5,50,0,100,70.31,87.5,62.5,100,0,0,50,50,100,0,6,2,0,12,2,0,0,0,0,0,0,0,0,22,0,22,1,20,0.6,156,18 -1045,GhostlyGrounds,Delay,Role-assignment,Test,2,06:15pm,3,1,0.4,"The Ghostly Grounds was my favorite haunted house, although now I really cant remember much of anything that happened in there. I think the Ghostly Grounds was the one where you enter through the bus, and there were dead bodies all across the seats. One actor was in a seat pretending to be dead, then rose up and chased us off the bus. He blended in so well. Then you walk in and there are cages everywhere, some with props in then and others with actors in them. They jump out of the cages and get really close to you. You walk up the stairs into another level of the penitentiary and you get to see the cells of the inmates, this time there are cages with flowers in them, which was odd. Then you walk down a very long vault with jail cells on both sides of you, and there were neon flickering lights on the ceilings.",1,70.09,84.23,95.65,20.23,1.28,0.64,0,0.64,10.26,2.56,7.69,1.28,0,0.64,0.64,1.28,3.85,0.64,2.56,1.28,1.28,0,0,0,0,0,0,0,10.26,0.64,0,0,0,0.64,0,9.62,0,0,0,0.64,0,0,1.28,0,0,0,0,0,0.64,5.13,19.87,0,3.85,14.74,1.28,0,0,1.28,5.77,-36.65,-30.56,-17.48,-61.91,4,3,1,1,4,3,0,28.89,52.59,100,28.89,76.04,16.67,100,0,16.67,100,34.41,0,0,34.41,5,3,0,9,1,0,0,0,0,1,1,0,1,18,3,21,0.857142857,17,0.529411765,156,18 -1046,Infirmary,Delay,Role-assignment,Baseline,1,08:30pm,2,0,0.4,"Infirmary was so coooooool. I want to go back and just hang out there. I remember walking over a bridge type thing, it was dizzying I think maybe there was a spinning aspect. There were lights strobing and everything was neon. There were girls dressed in neon dancing on tables, and we got 3D glasses to wear. ",1,19.15,40.06,99,20.23,1.75,1.75,0,0,8.77,1.75,7.02,3.51,0,1.75,1.75,0,0,1.75,0,0,0,0,0,0,0,0,0,0,5.26,1.75,0,0,0,0,0,3.51,0,0,1.75,0,0,1.75,1.75,0,0,0,0,0,0,5.26,26.32,0,7.02,17.54,1.75,0,1.75,3.5,5.26,14.33,-10.14,1.09,52.04,2,3,3,1,5,1,0,100,4.55,4.55,59.09,87.5,64.58,100,75,0,0,45.83,100,0,0,1,2,0,4,0,0,0,0,0,1,1,0,1,7,3,10,0.7,7,0.571428571,57,20 -1046,Asylum,Immediate,Role-assignment,Baseline,1,08:30pm,3,0,0.5,"When we entered Asylum, the guy said to make sure we clocked in. then we walked past a film reel i think. i honestly remember this one the least i think. I dont really know. I forgot to pay attention but I was scared. Was this the one with the meat chamber? I definitely walked through this shaking room covered in meat but im not sure if it was Asylum. i remember looking at the lights and they were flickering fluorescent tubes. i also saw flickering yellow light bulbs.",1,22.85,5.77,99,9.61,3.3,3.3,0,0,18.68,2.2,16.48,5.49,0,0,3.3,3.3,4.4,3.3,1.1,0,1.1,1.1,0,1.1,1.1,0,0,0,6.59,1.1,0,0,0,0,1.1,5.49,0,0,0,1.1,0,0,2.2,0,0,0,0,0,0,4.4,16.48,3.3,3.3,3.3,6.59,0,0,2.2,4.4,60.99,55.72,57.38,69.87,3,2,2,2,1,1,92.98,0,100,33.33,33.33,0,100,69.35,100,8.06,0,100,100,34.48,34.48,2,0,0,4,1,0,1,0,0,0,0,0,5,7,6,13,0.538461538,6,0.666666667,91,20 -1046,Asylum,Delay,Role-assignment,Baseline,1,08:30pm,3,1,0.25,"I can’t remember which house was Asylum. I also never really understood what Asylum meant, but I’m pretty sure I connected it with like film/directing. I think when you enter there is an old film movie camera and someone scary manning it. I don’t know what else happened in there. I remember a handful of attractions and scary moments, but can’t distinguish when they occurred. ",1,1,1,99,1.85,0,0,0,0,25,1.47,23.53,8.82,0,2.94,2.94,1.47,10.29,2.94,2.94,0,2.94,2.94,0,2.94,2.94,0,0,0,5.88,0,0,0,0,0,0,4.41,0,0,0,0,0,0,2.94,0,0,0,0,0,0,8.82,7.35,0,1.47,5.88,0,0,0,2.94,8.82,-21.16,-27.23,-28.11,-8.14,5,1,4,1,2,3,0,46.43,46.43,50,100,100,0,60,70.77,27.69,89.66,89.66,0,100,51.72,0,0,0,1,1,0,0,0,0,0,0,0,6,2,6,8,0.25,1,1,72,20 -1046,DevilsDen,Immediate,Role-assignment,Test,1,08:30pm,4,0,0.6,"in the Devil's Den, the first thing was waiting to get inside and this dude with an axe swung it at me and pretended to hit me in the face it was scary. then we walked through this long misty hall i think. at the end i think i remember there were some like red windows with screaming coming from them. now trying to recall im getting really confused and doubting which scary parts were in which attraction. ",1,68.35,11.19,99,1,2.56,1.28,1.28,0,15.38,0,15.38,5.13,0,1.28,2.56,1.28,3.85,2.56,5.13,0,5.13,3.85,0,3.85,2.56,0,0,0,3.85,0,0,0,0,0,0,3.85,0,1.28,0,1.28,0,0,2.56,0,0,0,0,0,0,5.13,14.1,0,3.85,8.97,1.28,1.28,0,2.56,5.13,50.05,95.78,54.03,0.34,1,4,5,4,1,1,100,74.14,22.41,0,0,0,83.33,41.67,100,100,0,31.25,62.5,33.33,100,3,1,0,3,1,0,0,0,0,0,0,0,2,8,2,10,0.8,7,0.428571429,78,20 -1046,DevilsDen,Delay,Role-assignment,Test,1,08:30pm,4,1,0.8,"Hmmm the Devil's Den, I think this was when I walked through the meat locker room, but I’m not exactly sure. I remember being really scared when I walked through the meat room because someone scared me immediately. I’m really trying to call back my memories. I think this was also the attraction where there was a guy swinging an axe right outside the door and he swung it in my face, which was funny I guess. At one point we went through a long dark misty hallway where freaks were coming out from the walls. It was very scary but cool.",1,20.45,3.04,99,10.51,1.96,0.98,0.98,0,14.71,0,14.71,3.92,0.98,0.98,3.92,1.96,3.92,1.96,4.9,1.96,2.94,3.92,0.98,2.94,2.94,0,0,0,4.9,0.98,0,0,0,0,0.98,3.92,0,0,0,1.96,0,0,0,0,0,0,0,0,0,6.86,19.61,0,5.88,12.75,0.98,0,0.98,0,6.86,8.37,-7.44,37.08,-4.51,5,2,3,1,5,4,0,0,6.67,53.33,100,36.17,100,67.02,44.68,0,92.86,45.24,100,0,0,1,2,0,2,2,1,1,0,0,2,0,0,3,7,7,14,0.5,5,0.4,104,20 -1046,GhostlyGrounds,Delay,Role-assignment,Share,1,08:30pm,4,0,0.8,"I definitely don’t remember anything called the “Ghostly Grounds”. I remember the machine room, Asylum, the freaky carnival themed one in the beginning, and maybe one more. Was it really called the Ghostly Grounds? Hm. Honestly I was so cold and it was so crowded. I was definitely freaked out though, but I would’ve walked slower if I could to take everything in. I kind of had to rush to keep up with the group and the study leader, who I noticed went completely unscared throughout the tours.",1,31.31,3.55,98.3,36.68,1.15,0,0,1.15,20.69,1.15,19.54,3.45,0,2.3,5.75,5.75,3.45,2.3,1.15,1.15,0,0,0,0,0,0,0,0,5.75,2.3,0,0,0,0,2.3,3.45,0,0,0,0,2.3,0,2.3,0,0,0,0,0,0,4.6,14.94,1.15,4.6,8.05,0,0,1.15,4.6,4.6,11.41,40.73,31.62,-38.12,5,3,1,3,5,2,36.67,36.67,0,60,100,8.02,18.52,100,22.22,0,100,0,55.88,55.88,55.88,0,0,0,0,0,1,0,0,2,3,0,0,3,0,9,9,0,0,0,89,20 -1047,Infirmary,Immediate,Role-assignment,Baseline,2,08:30pm,2,0,1,"The entire scene was neon (green, orange), the actors were dressed as clowns, there was a woman dancing on a platform at the beginning, then a man handed us 3D glasses, we went through the square(?) shaped track that opened out to the beginning, thing popped out at you because of the glasses, there were spider decorations, there was a strobe light section, there were pipes along the walls, there was a big mural with a multiarm woman wrestling a giant spider, the actors had their faces painted, not masks.",1,93.41,92.24,55.54,20.23,2.22,2.22,0,0,2.22,0,2.22,0,1.11,0,0,0,1.11,0,0,0,0,0,0,0,0,0,0,0,11.11,1.11,0,0,0,0,0,10,0,0,2.22,1.11,0,0,0,0,0,0,0,0,0,4.44,17.78,0,2.22,12.22,3.33,0,0,0,4.44,9.18,-23.33,19.92,30.94,2,4,3,1,2,1,0,100,100,0,0,25,0,50,100,0,0,0,100,0,0,3,2,0,8,0,0,0,0,0,0,0,0,0,13,0,13,1,13,0.615384615,90,23 -1047,Infirmary,Delay,Role-assignment,Baseline,2,08:30pm,2,1,0.2,"Neon lights and colors, woman dancing on the elevated surface, mural of a multiarm woman wrestling a spider, actors with clown makeup, large spider props on the walls, orange/green glowing pipes, 3D glasses, strobe light with clowns, actors popping out of the walls, neon snakes, polka dots, actors following behind us and scaring us, blacklights, the area with the 3D glasses was like a big rectangle or circle that you entered on one side of the dancing lady and came out the other side to return your glasses.",1,99,96.22,64.89,9.43,2.25,2.25,0,0,2.25,0,2.25,0,0,0,1.12,0,2.25,0,1.12,0,1.12,1.12,0,1.12,1.12,0,0,0,13.48,3.37,0,1.12,0,0,0,11.24,0,0,3.37,0,0,0,0,0,0,0,0,0,0,5.62,23.6,0,5.62,12.36,6.74,0,0,0,5.62,NA,52.12,23.77,NA,5,4,1,2,2,1,59.65,0,59.65,29.82,100,20,0,40,100,63.53,50,50,50,50,50,3,2,0,13,0,0,0,0,0,0,0,0,1,18,1,19,0.947368421,18,0.722222222,89,23 -1047,Asylum,Delay,Role-assignment,Baseline,2,08:30pm,1,0,0.5,"This section was so short I honestly dont remember much. The scene was set up to look like a 1940s or 1950s abandoned office, with old style telephones and posters. The actors were wearing old costumes too, like pants and collared shirts with suspenders, but their faces were painted to look skeletonlike. I remember a man sitting in a chair reading a newspaper, and I think there was music from a gramophone playing. There was one point when we walked past a woman with brown hair wearing a dress, pearl necklace, and feather boa. She was in a vanity area with a mirror and shade and was singing opera. ",1,73.55,45.49,51.66,33,0.92,0.92,0,0,5.5,0,5.5,2.75,0,0,0.92,0.92,1.83,1.83,2.75,1.83,0.92,0,0,0,0,0,0,0,7.34,1.83,0,0,0,0.92,0.92,5.5,0,0,1.83,0.92,0,0,0,0,0,0,0,0,0,3.67,12.84,1.83,0.92,7.34,2.75,1.83,0,0,3.67,2.59,26.57,-31.17,12.37,3,1,3,2,2,2,50,0,100,100,59.52,100,0,66.67,66.67,76.19,33.33,0,100,0,0,2,1,0,14,0,0,0,0,0,0,0,0,2,17,2,19,0.894736842,17,0.823529412,109,23 -1047,DevilsDen,Immediate,Role-assignment,Share,2,08:30pm,3,0,0.6,"Red jumpsuits, cut up bodies, woman with axes at the beginning, going from inside out into the garden area on a ramp, man wielding a cinderblock, people holding pipes, man on a surface above the walkway banging a pipe, pistons going off and creating a lot of noise, fog",1,99,74.89,66.12,4.4,2.04,0,2.04,0,0,0,0,0,0,0,0,0,0,0,2.04,0,2.04,0,0,0,0,0,0,0,6.12,0,0,0,0,0,0,6.12,0,0,2.04,4.08,0,0,0,0,0,0,0,0,2.04,4.08,24.49,0,4.08,14.29,2.04,4.08,0,0,6.12,NA,24.81,-9.59,NA,2,5,1,3,1,1,50,100,0,75,33.33,0,0,0,0,100,50,50,50,50,50,0,1,0,9,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.9,49,23 -1047,DevilsDen,Delay,Role-assignment,Share,2,08:30pm,3,1,0.6,"Woman in red jumpsuit at the outside (she had axes and one white eye), walking into the darkest area first, man in jumpsuit in the corner in shadows, trying to avoid him, being directed to the outside garden by the man holding the cinderblock, seeing the chainsaw guy, being scared by the chainsaw guy, running in the area with chopped up bodies on the table, being told by the guy that he would chop my legs off if I ran, going through the hallway with hanging chopped up body parts, man on the balcony above hallways with a pipe, banging on the rails, loud air pistons going off, strobe light with bodies hanging from meat hooks, fog",1,99,69.89,36.64,11.52,0.85,0,0.85,0,3.42,0,3.42,0,0,1.71,0.85,0,1.71,0,0.85,0,0.85,0.85,0,0.85,0.85,0,0,0,9.4,0.85,0,0,0,0,0.85,8.55,0,0,1.71,6.84,0,0,0,0,0,0,0,0.85,0,0.85,24.79,0,4.27,12.82,5.98,1.71,0,0,1.7,NA,-0.37,10.71,NA,3,4,1,4,5,1,22.22,86.11,100,0,33.33,57.5,38.33,60,100,0,50,50,50,50,50,4,3,0,12,0,0,0,0,0,0,0,0,0,19,0,19,1,19,0.631578947,117,23 -1047,GhostlyGrounds,Delay,Role-assignment,Test,2,08:30pm,3,0,0.2,"First thing we did was go into the bus. It was extremely dark and there was a mix of real and fake people in the seats. Then we went into a caged area outside where we could see the Blood Lounge and actors scared us from outside the cage. We then went inside and weaved through a maze of cages. The actors mostly had these deadgray masks on, but some just had faces painted. The actors would follow us and pop out from behind the bars of the cages. At one point there was a man hanging from some bars, and then a woman laughing and following us. The ceiling had what looked like plant material hanging from it. There was one cage that had a box that was hanging by chains and would periodically shake and flash. There was a part when we walked through and area with strobe lights and a man got right up in my face. There was also a part when the flood was sliding as you walked along it. At another time we walked up a set of stairs and there were large hanging reapers from the ceiling above the cage maze area. We walked up another set of stairs and ended on an area with a long hallway where people with plague masks were scaring us. ",1,75.11,91.44,75.79,11.17,4.93,4.93,0,0,4.93,0,4.93,0,0,1.35,0.45,0.9,2.24,0,2.69,0.9,1.79,1.35,0.45,0.9,0.9,0,0,0,8.97,0.9,0,0,0,0.45,0.45,8.07,0,0,0.45,0.9,0,0,0.45,0,0,0,0,0,0,4.48,19.28,0,3.59,13.9,2.24,0,0,0.45,4.48,17.07,13.74,-6.29,43.76,2,1,4,3,5,1,30,100,0,42.5,73.18,100,43.15,100,93.02,0,0,97.78,0,100,0,11,5,0,15,0,0,0,0,0,0,0,0,0,31,0,31,1,31,0.483870968,223,23 -1048,Infirmary,Delay,Role-assignment,Baseline,2,08:30pm,2,0,0.6,"Infirmary was the first of the tours. I wore 3D glasses during this tour. Infirmary was very bright and colorful. It felt like a ""funhouse"" at a fair. Some distinct parts of this tour include walking over a chained bridge, walking through a spinning room, and clowns. I remember there being a lot of stripes on the walls in this tour. ",1,96.97,10.78,87.98,89.9,0,0,0,0,6.56,0,6.56,3.28,0,0,0,0,3.28,1.64,4.92,4.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.64,18.03,0,4.92,8.2,3.28,0,1.64,0,1.64,30.84,53.14,-4.37,43.76,5,2,2,2,3,1,67.31,0,75,50,100,38.46,100,0,0,50,0,100,0,100,0,1,2,0,5,0,0,0,0,0,0,1,0,0,8,1,9,0.888888889,8,0.625,61,27 -1048,Asylum,Immediate,Role-assignment,Baseline,2,08:30pm,2,0,0.75,"Asylum had to do with a movie set. I remember strobe lights, director chairs, film reels. I also remember music playing but im not sure what type of music. i remember feeling like it wasnt that scary. i dont think there were as many jump scares as i was anticipating. I think there was deep colors, browns, greys, blacks, and also some off white colors. i want to say this section of the tour felt like i was lost in a maze.",1,25.36,1,97.45,3.11,1.2,0,0,1.2,14.46,0,14.46,8.43,0,1.2,2.41,0,3.61,3.61,4.82,1.2,3.61,2.41,0,2.41,2.41,0,0,0,2.41,1.2,0,0,0,0,1.2,1.2,0,0,0,0,2.41,1.2,1.2,0,0,0,0,0,0,3.61,16.87,0,1.2,6.02,4.82,2.41,2.41,4.81,3.61,51.74,49.4,69.27,36.55,5,3,2,2,1,1,46.38,0,23.19,1.45,100,0,66.67,100,73.96,3.12,0,100,0,22.5,1.25,1,0,0,11,2,0,0,0,0,0,0,0,1,14,1,15,0.933333333,12,0.916666667,83,27 -1048,Asylum,Delay,Role-assignment,Baseline,2,08:30pm,2,1,0.25,"during the Asylum tour I remember dark colors including grays, browns, and blacks. The object I remember seeing the most is a directors chair, a movie reel, and cages. In the cages, there were characters hanging from the ceiling and swaying back and forth. I remember creepy music playing in the background and making a lot of turns throughout the tour. ",1,97.63,23.05,86.48,20.23,1.61,0,0,1.61,6.45,0,6.45,4.84,1.61,0,0,0,0,4.84,3.23,1.61,1.61,1.61,0,1.61,1.61,0,0,0,1.61,0,0,0,0,0,0,1.61,0,0,0,0,0,0,1.61,0,0,0,0,0,0,3.23,19.35,0,3.23,9.68,4.84,1.61,0,1.61,3.23,25.99,30.25,40.43,7.29,5,4,4,4,5,3,35.38,53.85,40,0,100,28.21,58.97,66.67,100,0,92.31,92.31,0,100,0,1,0,0,9,0,0,0,0,0,0,0,0,1,10,1,11,0.909090909,10,0.9,62,27 -1048,DevilsDen,Immediate,Role-assignment,Share,2,08:30pm,4,0,0.2,"Devil's Den was the scariest tour for me. i disliked all of the machinery noises because they remind me of horror movies. there was heavy machinery alll around including chain saws, hammers, saws, cranes, and maybe stuff like broken down cars and trucks? I remember lots of tones of red and brown and dark grey. I remember not being able to see the edges of the rooms and halls making me feel uneasy and the more freighted. At the end of Devil's Den there was a hall with the lights almost all the way off, strobe lights going off slowly, and the floor seemed to move. I disliked this part of the tour the least because it felt like i couldnt tell where i was and what was in the immediate surroundings. Most of the characters in this tour made gross noises. ",1,83.86,6.39,82.36,1,0.7,0,0.7,0,11.97,1.41,10.56,3.52,2.82,0.7,2.11,0,1.41,2.11,6.34,0,6.34,3.52,0,3.52,2.11,0,0,0,1.41,0.7,0,0,0,0,0.7,0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,2.82,19.01,0,2.11,8.45,4.93,1.41,2.11,0,2.82,4.49,29.99,-27.01,10.5,4,5,2,2,4,1,54.37,0,85.92,100,29.61,52.71,52.71,14.29,0,100,0,100,1.79,1.79,53.57,0,1,0,12,2,0,0,0,0,2,1,0,1,15,4,19,0.789473684,13,0.923076923,142,27 -1048,DevilsDen,Delay,Role-assignment,Share,2,08:30pm,4,1,0.6,"The thing I remember most from the Devil's Den tour is the character chasing me wish a chain saw. The sound of the chain saw occurred quickly one you entered the hallway. The character with the chain saw was on my left and the hallway was at a slight decline. Some other machinery in this tour included hammers, saws, and chains. ",1,96.97,22.81,18.18,20.23,1.64,0,0,1.64,4.92,0,4.92,1.64,0,1.64,0,0,1.64,1.64,0,0,0,0,0,0,0,0,0,0,1.64,0,0,0,0,0,0,1.64,0,0,0,0,0,1.64,0,0,0,0,0,0,0,0,11.48,0,1.64,3.28,4.92,1.64,0,1.64,0,-12.5,48.94,-32.72,-53.71,2,4,1,5,2,2,89.74,100,100,100,0,89.74,0,0,100,100,100,0,0,0,0,1,1,0,7,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.777777778,61,27 -1048,GhostlyGrounds,Delay,Role-assignment,Test,2,08:30pm,4,0,0.6,"The Ghostly Grounds tour was the scariest tour. I remember the beginning of the tour being the walk through of the bus. I felt this part of the tour was the most nerveracking because I couldnt see past like a foot in front of me, there was smoke everywhere, and I was unsure of where to walk next. I remember trying to grab onto the seats to my left and right in the bus to make sure I was walking in the correct direction. I did not like this feeling of not knowing where you step next. After the bus part, the thing I remember the most is that some of the characters looked like zombies. I honestly dont remember much from the rest of this tour. ",1,89.52,1,99,12.02,0.79,0,0.79,0,15.87,0.79,15.08,5.56,0.79,1.59,0.79,0.79,3.97,3.17,0.79,0,0.79,0.79,0,0.79,0.79,0,0,0,0.79,0,0,0,0,0,0,0.79,0,0,0,0,0,0,0.79,0,0,0,0,0,0,3.97,17.46,1.59,3.17,8.73,1.59,0,2.38,0.79,3.97,35.28,62.78,23.89,19.16,1,2,3,2,3,2,100,0,86.67,21.67,21.67,10.1,100,0,62.5,62.5,46.15,0,100,100,50,2,1,0,4,3,0,0,0,0,1,0,0,1,10,2,12,0.833333333,7,0.571428571,126,27 -1049,Infirmary,Immediate,Role-assignment,Baseline,1,08:30pm,2,0,0.6,"neon lights, many colors, dancers, a little child with red hair, moving wood planks, 3d glasses, green fog, things sticking out, colorful pegs on the wall, polka dots, music, was more cool than scary, pink glow sticks wrapped around a pole +1044,DevilsDen,Delay,Goal-assigned,Share,2,07:30pm,5,0,0.8,"The Devil's Den was the room similar to the Ghostly Grounds, with a lot of jump scares and more scary people than the previous two rooms. This room had a person chasing other people with a chainsaw and the people in this room were a lot bloodier and scarier than others. This room was also very dark and was sometimes difficult to see. I specifically remember being chased by a man with a chainsaw and I also remember another person with an axelike type of tool. This room had lots of people with lots of different machinery and I remember this room also being very loud and chaotic. It was filled with bloody and gory people that hid behind corners and walls and on the ground below. ",1,74.35,11.37,81.28,1,0,0,0,0,9.52,0,9.52,2.38,0,0,0.79,0,5.56,2.38,3.97,0,3.97,2.38,0,2.38,2.38,0,0,0.79,2.38,0,0,0,0,0,0,2.38,0,0,0,0.79,0,0,0,0,0.79,0,0,0.79,0,4.76,14.29,0,1.59,9.52,2.38,0.79,0,0.79,5.55,61.6,89.48,47.77,47.56,1,3,3,3,1,1,100,54.74,0,27.37,0,0,56.12,100,34.18,78.06,0,1.27,100,34.18,1.27,3,0,0,14,2,0,0,0,0,0,1,0,0,19,1,20,0.95,17,0.823529412,126,20 +1044,GhostlyGrounds,Immediate,Goal-assigned,Test,2,07:30pm,5,0,0.6,"The Ghostly Grounds room began with entering the bus and it being extremely dark besides the strobe lights. There were pretend dead bodies and real people as well reaching out to you. After that we got off the bus and went through into the room which had several different levels with upstairs and downstairs parts. People were locked in cages and there was lots of noise and commotion happening. The floors moved at one point and there was lots of smoke and red lights everywhere. There were lots of jump scares and people hiding behind walls. At one point we were in a room with lots of strobe lights and pretend dead people hanging from the ceilings and actual people being in there as well, and it was hard to tell the difference.",1,76.99,44.54,91.71,20.23,1.52,1.52,0,0,7.58,0.76,6.82,0,0,0,0,1.52,3.79,0,3.03,1.52,1.52,0.76,0,0.76,0.76,0,0,0,3.03,0.76,0,0,0,0,0.76,2.27,0,0,0,0,0,0,0.76,0,0,0,0,0.76,0,5.3,25.76,0,3.79,16.67,4.55,0.76,0.76,0.76,6.06,-31.02,2.2,-19.23,-76.03,2,3,5,3,2,2,21.21,100,0,54.55,27.27,76.47,0,100,20.59,100,96.3,0,0,0,100,3,3,0,13,0,0,0,0,0,0,0,0,0,19,0,19,1,19,0.684210526,132,20 +1044,GhostlyGrounds,Delay,Goal-assigned,Test,2,07:30pm,5,1,0.6,"Ghostly Grounds was the last room where we first began walking onto a school bus and the entire bus was dark except for the occasional strobe light flashing. The were pretend bodies in the bus seats as well as real ones, and it was hard to differentiate between the two. We got off the bus and went into the main room where we started on the bottom floor and had to go up and down two separate flights of stairs throughout this room. There was lots of blood and chainsaws and other machinery like that. This room was more gory than the rest. It was on and off dark with strobe lights and there was the meat packing room with different pretend bodies hanging from the ceiling as well as real people, and it was also difficult to differentiate between the two because of the flashing strobe lights. There was also an instant where the floor began to move and walking became difficult. At the very end we walked up a flight of stairs and down a long hallway and it was almost impossible to see because of the constant flashing strobe lights. This room was also scary since this had the most jump scares than the rest. ",1,86.63,37.29,94.74,20.23,1.93,1.93,0,0,10.14,0,10.14,0,1.45,0,0.97,0.97,4.35,0,3.86,1.93,1.93,0.97,0,0.97,0.97,0,0,0,1.93,0,0,0,0,0,0,1.93,0,0,0,0,0.97,0,0.48,0,0,0,0,0,0,3.86,23.19,0,4.35,14.01,4.83,0,0.48,1.45,3.86,27.7,27.84,97.68,-42.41,2,4,5,3,1,2,46.75,100,0,54.55,54.55,0,46.33,76.27,100,100,24.26,0,25.44,75.15,100,4,5,0,17,1,0,0,0,0,0,1,0,0,27,1,28,0.964285714,26,0.653846154,207,20 +1045,Infirmary,Delay,Goal-assigned,Baseline,2,06:15pm,2,0,1,"Infirmary was very colorful, neon, and there were splashes of color on the walls. The characters lit up with the costumes that they were wearing. I remember it was glow in the dark. My shoes were white so when I looked down they were glowing. The actors came up really close to you but didnt touch you. The walls were glow in the dark and the rooms were small and black with neon splashes of color. There was loud music. I think there was a scary clown character. I was front of the line walking through. The haunted house was very short, we were out of there very fast. ",1,52.92,45.49,95.58,11,0.92,0.92,0,0,4.59,0,4.59,1.83,0,0,0,0.92,1.83,0.92,2.75,0.92,1.83,0.92,0,0.92,0.92,0,0,0,5.5,0,0,0,0,0,0,5.5,0,0,0,0,0,0,0,0,0,0,0,0,0,2.75,31.19,0,2.75,14.68,11.01,1.83,0.92,0,2.75,58.21,53.75,28.05,92.83,1,2,2,2,1,1,100,0,100,0,82.14,0,100,16.67,16.67,39.68,0,100,100,100,0,2,0,0,14,0,0,0,0,0,0,0,1,0,16,1,17,0.941176471,16,0.875,109,18 +1045,Asylum,Immediate,Goal-assigned,Baseline,2,06:15pm,1,0,0.75,"Asylum wasnt very scary, I walked through and there were loud noises coming from automated machines. The actors followed you around until you walked into the other room. They screamed in my face, which was scary, but the scenery wasnt. I walked first in line and kept tripping on the ground because I was nervous of what was coming next. It was after the colorful haunted house and felt very short. I was looking all around, at the ceilings, at the props, and the actors. They had really nice, spooky, makeup on. ",1,51.31,18.43,99,1,0,0,0,0,9.68,1.08,8.6,1.08,1.08,0,0,1.08,5.38,0,8.6,2.15,6.45,4.3,0,4.3,4.3,0,0,0,6.45,0,0,0,0,0,0,6.45,0,0,0,0,0,0,1.08,0,0,0,0,0,0,1.08,20.43,0,5.38,10.75,2.15,3.23,1.08,1.08,1.08,42.62,7.06,28.91,91.89,5,4,4,4,5,1,16.84,54.74,54.74,0,100,22.81,85.96,22.81,100,0,0,94.74,94.74,100,0,6,0,0,7,4,0,0,0,0,0,0,0,0,17,0,17,1,13,0.538461538,93,18 +1045,Asylum,Delay,Goal-assigned,Baseline,2,06:15pm,1,1,0.5,"Asylum I dont remember almost anything from. I dont remember what happened or what it looked like. There was loud bangs from the walls, an actor opened up a wooden slide from a wall and screamed out. I think there was a woman with a long staff that was telling us about separation anxiety and how if youre scared of being alone you shouldnt walk in. There was a long vault with fog and a single man walking towards you, that part was actually scary because you cant move forward or back since you cant see anything. There was light at the end of the tunnel but he was blocking it. He ran up to me and scared me, whispered in my ear about something that I dont remember at all. ",1,20.83,27.64,98.58,1.71,0.76,0.76,0,0,16.67,0.76,15.91,3.79,2.27,2.27,5.3,0.76,6.06,2.27,3.03,0,3.03,3.03,0,3.03,3.03,0,0,0,11.36,1.52,0,0,0,0,1.52,9.09,0,0,0.76,2.27,0,0,0.76,0,0,0,0,0,0,6.06,22.73,0,3.79,13.64,2.27,3.03,0,0.76,6.06,-20.3,-22.9,-16.83,-21.17,2,4,4,1,2,3,0,100,44.62,23.85,23.85,66.33,0,44.9,100,100,64.2,32.1,0,100,66.67,0,0,0,3,0,7,1,0,3,1,0,0,3,3,15,18,0.166666667,3,1,132,18 +1045,DevilsDen,Delay,Goal-assigned,Share,2,06:15pm,3,0,0.75,"The Devil's Den had people that were dismembering bodies. There was a girl actor that screamed ""your worth more in pieces"" or something like that which I found to be scary and true, only because people make a huge profit for selling organs instead of saving lives?? Which is crazy. I remember there was a guy with a chainsaw. There was a guy with a hammer. There was blood, splattered blood on the ground and walls. There were dismembered feet hanging off the walls of a passageway, which was extremely disturbing. There were loud noises that popped out from walls. ",1,60.65,34.37,81.21,1.76,0,0,0,0,12,0,12,2,2,0,2,1,5,1,4,0,3,2,0,1,1,0,0,0,5,0,0,0,0,0,0,5,0,0,1,2,0,0,0,0,0,0,1,0,0,6,17,0,1,13,0,4,0,0,7,28.5,14.29,12.73,58.47,5,2,2,2,4,1,25,0,75,75,100,33.33,100,33.33,0,0,0,100,66.67,0,0,0,0,0,12,2,0,0,0,0,0,1,0,2,14,3,17,0.823529412,12,1,100,18 +1045,GhostlyGrounds,Immediate,Goal-assigned,Test,2,06:15pm,3,0,0.6,"The Ghostly Grounds started in the bus, there were dead and dying props in each seat. It was foggy and there were neon lights. There was a guy that was sitting in the seat and he got up and followed me down the bus and screamed in my ear. Then we walked into the prison. The prison doors were all open but they were too dark to see into them, there were lights on the ceilings but it was filled with cages with props in them. There were actors in the cage that jump out at you. Then we walked into a small room with hanging bodies from hooks. My heart was racing and I had no clue where to walk because I was so scared as to which one was gonna jump out at me. One of the men in the room popped out and screamed at us until we ran out of the room. Th",1,71.74,66.44,99,4.87,3.85,2.56,0,1.28,4.49,1.28,3.21,0.64,0.64,0,0,0,1.92,0,1.92,0,1.92,0.64,0,0.64,0.64,0,0,0,7.69,0,0,0,0,0,0,7.69,0,0,0,1.92,0,0,0.64,0,0.64,0,0,0,0,4.49,28.21,0,4.49,19.23,2.56,1.92,0,1.28,4.49,30.6,6.09,14.24,71.46,5,4,4,4,5,1,9.77,12.5,50,0,100,70.31,87.5,62.5,100,0,0,50,50,100,0,6,2,0,12,2,0,0,0,0,0,0,0,0,22,0,22,1,20,0.6,156,18 +1045,GhostlyGrounds,Delay,Goal-assigned,Test,2,06:15pm,3,1,0.4,"The Ghostly Grounds was my favorite haunted house, although now I really cant remember much of anything that happened in there. I think the Ghostly Grounds was the one where you enter through the bus, and there were dead bodies all across the seats. One actor was in a seat pretending to be dead, then rose up and chased us off the bus. He blended in so well. Then you walk in and there are cages everywhere, some with props in then and others with actors in them. They jump out of the cages and get really close to you. You walk up the stairs into another level of the penitentiary and you get to see the cells of the inmates, this time there are cages with flowers in them, which was odd. Then you walk down a very long vault with jail cells on both sides of you, and there were neon flickering lights on the ceilings.",1,70.09,84.23,95.65,20.23,1.28,0.64,0,0.64,10.26,2.56,7.69,1.28,0,0.64,0.64,1.28,3.85,0.64,2.56,1.28,1.28,0,0,0,0,0,0,0,10.26,0.64,0,0,0,0.64,0,9.62,0,0,0,0.64,0,0,1.28,0,0,0,0,0,0.64,5.13,19.87,0,3.85,14.74,1.28,0,0,1.28,5.77,-36.65,-30.56,-17.48,-61.91,4,3,1,1,4,3,0,28.89,52.59,100,28.89,76.04,16.67,100,0,16.67,100,34.41,0,0,34.41,5,3,0,9,1,0,0,0,0,1,1,0,1,18,3,21,0.857142857,17,0.529411765,156,18 +1046,Infirmary,Delay,Goal-assigned,Baseline,1,08:30pm,2,0,0.4,"Infirmary was so coooooool. I want to go back and just hang out there. I remember walking over a bridge type thing, it was dizzying I think maybe there was a spinning aspect. There were lights strobing and everything was neon. There were girls dressed in neon dancing on tables, and we got 3D glasses to wear. ",1,19.15,40.06,99,20.23,1.75,1.75,0,0,8.77,1.75,7.02,3.51,0,1.75,1.75,0,0,1.75,0,0,0,0,0,0,0,0,0,0,5.26,1.75,0,0,0,0,0,3.51,0,0,1.75,0,0,1.75,1.75,0,0,0,0,0,0,5.26,26.32,0,7.02,17.54,1.75,0,1.75,3.5,5.26,14.33,-10.14,1.09,52.04,2,3,3,1,5,1,0,100,4.55,4.55,59.09,87.5,64.58,100,75,0,0,45.83,100,0,0,1,2,0,4,0,0,0,0,0,1,1,0,1,7,3,10,0.7,7,0.571428571,57,20 +1046,Asylum,Immediate,Goal-assigned,Baseline,1,08:30pm,3,0,0.5,"When we entered Asylum, the guy said to make sure we clocked in. then we walked past a film reel i think. i honestly remember this one the least i think. I dont really know. I forgot to pay attention but I was scared. Was this the one with the meat chamber? I definitely walked through this shaking room covered in meat but im not sure if it was Asylum. i remember looking at the lights and they were flickering fluorescent tubes. i also saw flickering yellow light bulbs.",1,22.85,5.77,99,9.61,3.3,3.3,0,0,18.68,2.2,16.48,5.49,0,0,3.3,3.3,4.4,3.3,1.1,0,1.1,1.1,0,1.1,1.1,0,0,0,6.59,1.1,0,0,0,0,1.1,5.49,0,0,0,1.1,0,0,2.2,0,0,0,0,0,0,4.4,16.48,3.3,3.3,3.3,6.59,0,0,2.2,4.4,60.99,55.72,57.38,69.87,3,2,2,2,1,1,92.98,0,100,33.33,33.33,0,100,69.35,100,8.06,0,100,100,34.48,34.48,2,0,0,4,1,0,1,0,0,0,0,0,5,7,6,13,0.538461538,6,0.666666667,91,20 +1046,Asylum,Delay,Goal-assigned,Baseline,1,08:30pm,3,1,0.25,"I can’t remember which house was Asylum. I also never really understood what Asylum meant, but I’m pretty sure I connected it with like film/directing. I think when you enter there is an old film movie camera and someone scary manning it. I don’t know what else happened in there. I remember a handful of attractions and scary moments, but can’t distinguish when they occurred. ",1,1,1,99,1.85,0,0,0,0,25,1.47,23.53,8.82,0,2.94,2.94,1.47,10.29,2.94,2.94,0,2.94,2.94,0,2.94,2.94,0,0,0,5.88,0,0,0,0,0,0,4.41,0,0,0,0,0,0,2.94,0,0,0,0,0,0,8.82,7.35,0,1.47,5.88,0,0,0,2.94,8.82,-21.16,-27.23,-28.11,-8.14,5,1,4,1,2,3,0,46.43,46.43,50,100,100,0,60,70.77,27.69,89.66,89.66,0,100,51.72,0,0,0,1,1,0,0,0,0,0,0,0,6,2,6,8,0.25,1,1,72,20 +1046,DevilsDen,Immediate,Goal-assigned,Test,1,08:30pm,4,0,0.6,"in the Devil's Den, the first thing was waiting to get inside and this dude with an axe swung it at me and pretended to hit me in the face it was scary. then we walked through this long misty hall i think. at the end i think i remember there were some like red windows with screaming coming from them. now trying to recall im getting really confused and doubting which scary parts were in which attraction. ",1,68.35,11.19,99,1,2.56,1.28,1.28,0,15.38,0,15.38,5.13,0,1.28,2.56,1.28,3.85,2.56,5.13,0,5.13,3.85,0,3.85,2.56,0,0,0,3.85,0,0,0,0,0,0,3.85,0,1.28,0,1.28,0,0,2.56,0,0,0,0,0,0,5.13,14.1,0,3.85,8.97,1.28,1.28,0,2.56,5.13,50.05,95.78,54.03,0.34,1,4,5,4,1,1,100,74.14,22.41,0,0,0,83.33,41.67,100,100,0,31.25,62.5,33.33,100,3,1,0,3,1,0,0,0,0,0,0,0,2,8,2,10,0.8,7,0.428571429,78,20 +1046,DevilsDen,Delay,Goal-assigned,Test,1,08:30pm,4,1,0.8,"Hmmm the Devil's Den, I think this was when I walked through the meat locker room, but I’m not exactly sure. I remember being really scared when I walked through the meat room because someone scared me immediately. I’m really trying to call back my memories. I think this was also the attraction where there was a guy swinging an axe right outside the door and he swung it in my face, which was funny I guess. At one point we went through a long dark misty hallway where freaks were coming out from the walls. It was very scary but cool.",1,20.45,3.04,99,10.51,1.96,0.98,0.98,0,14.71,0,14.71,3.92,0.98,0.98,3.92,1.96,3.92,1.96,4.9,1.96,2.94,3.92,0.98,2.94,2.94,0,0,0,4.9,0.98,0,0,0,0,0.98,3.92,0,0,0,1.96,0,0,0,0,0,0,0,0,0,6.86,19.61,0,5.88,12.75,0.98,0,0.98,0,6.86,8.37,-7.44,37.08,-4.51,5,2,3,1,5,4,0,0,6.67,53.33,100,36.17,100,67.02,44.68,0,92.86,45.24,100,0,0,1,2,0,2,2,1,1,0,0,2,0,0,3,7,7,14,0.5,5,0.4,104,20 +1046,GhostlyGrounds,Delay,Goal-assigned,Share,1,08:30pm,4,0,0.8,"I definitely don’t remember anything called the “Ghostly Grounds”. I remember the machine room, Asylum, the freaky carnival themed one in the beginning, and maybe one more. Was it really called the Ghostly Grounds? Hm. Honestly I was so cold and it was so crowded. I was definitely freaked out though, but I would’ve walked slower if I could to take everything in. I kind of had to rush to keep up with the group and the study leader, who I noticed went completely unscared throughout the tours.",1,31.31,3.55,98.3,36.68,1.15,0,0,1.15,20.69,1.15,19.54,3.45,0,2.3,5.75,5.75,3.45,2.3,1.15,1.15,0,0,0,0,0,0,0,0,5.75,2.3,0,0,0,0,2.3,3.45,0,0,0,0,2.3,0,2.3,0,0,0,0,0,0,4.6,14.94,1.15,4.6,8.05,0,0,1.15,4.6,4.6,11.41,40.73,31.62,-38.12,5,3,1,3,5,2,36.67,36.67,0,60,100,8.02,18.52,100,22.22,0,100,0,55.88,55.88,55.88,0,0,0,0,0,1,0,0,2,3,0,0,3,0,9,9,0,0,0,89,20 +1047,Infirmary,Immediate,Goal-assigned,Baseline,2,08:30pm,2,0,1,"The entire scene was neon (green, orange), the actors were dressed as clowns, there was a woman dancing on a platform at the beginning, then a man handed us 3D glasses, we went through the square(?) shaped track that opened out to the beginning, thing popped out at you because of the glasses, there were spider decorations, there was a strobe light section, there were pipes along the walls, there was a big mural with a multiarm woman wrestling a giant spider, the actors had their faces painted, not masks.",1,93.41,92.24,55.54,20.23,2.22,2.22,0,0,2.22,0,2.22,0,1.11,0,0,0,1.11,0,0,0,0,0,0,0,0,0,0,0,11.11,1.11,0,0,0,0,0,10,0,0,2.22,1.11,0,0,0,0,0,0,0,0,0,4.44,17.78,0,2.22,12.22,3.33,0,0,0,4.44,9.18,-23.33,19.92,30.94,2,4,3,1,2,1,0,100,100,0,0,25,0,50,100,0,0,0,100,0,0,3,2,0,8,0,0,0,0,0,0,0,0,0,13,0,13,1,13,0.615384615,90,23 +1047,Infirmary,Delay,Goal-assigned,Baseline,2,08:30pm,2,1,0.2,"Neon lights and colors, woman dancing on the elevated surface, mural of a multiarm woman wrestling a spider, actors with clown makeup, large spider props on the walls, orange/green glowing pipes, 3D glasses, strobe light with clowns, actors popping out of the walls, neon snakes, polka dots, actors following behind us and scaring us, blacklights, the area with the 3D glasses was like a big rectangle or circle that you entered on one side of the dancing lady and came out the other side to return your glasses.",1,99,96.22,64.89,9.43,2.25,2.25,0,0,2.25,0,2.25,0,0,0,1.12,0,2.25,0,1.12,0,1.12,1.12,0,1.12,1.12,0,0,0,13.48,3.37,0,1.12,0,0,0,11.24,0,0,3.37,0,0,0,0,0,0,0,0,0,0,5.62,23.6,0,5.62,12.36,6.74,0,0,0,5.62,NA,52.12,23.77,NA,5,4,1,2,2,1,59.65,0,59.65,29.82,100,20,0,40,100,63.53,50,50,50,50,50,3,2,0,13,0,0,0,0,0,0,0,0,1,18,1,19,0.947368421,18,0.722222222,89,23 +1047,Asylum,Delay,Goal-assigned,Baseline,2,08:30pm,1,0,0.5,"This section was so short I honestly dont remember much. The scene was set up to look like a 1940s or 1950s abandoned office, with old style telephones and posters. The actors were wearing old costumes too, like pants and collared shirts with suspenders, but their faces were painted to look skeletonlike. I remember a man sitting in a chair reading a newspaper, and I think there was music from a gramophone playing. There was one point when we walked past a woman with brown hair wearing a dress, pearl necklace, and feather boa. She was in a vanity area with a mirror and shade and was singing opera. ",1,73.55,45.49,51.66,33,0.92,0.92,0,0,5.5,0,5.5,2.75,0,0,0.92,0.92,1.83,1.83,2.75,1.83,0.92,0,0,0,0,0,0,0,7.34,1.83,0,0,0,0.92,0.92,5.5,0,0,1.83,0.92,0,0,0,0,0,0,0,0,0,3.67,12.84,1.83,0.92,7.34,2.75,1.83,0,0,3.67,2.59,26.57,-31.17,12.37,3,1,3,2,2,2,50,0,100,100,59.52,100,0,66.67,66.67,76.19,33.33,0,100,0,0,2,1,0,14,0,0,0,0,0,0,0,0,2,17,2,19,0.894736842,17,0.823529412,109,23 +1047,DevilsDen,Immediate,Goal-assigned,Share,2,08:30pm,3,0,0.6,"Red jumpsuits, cut up bodies, woman with axes at the beginning, going from inside out into the garden area on a ramp, man wielding a cinderblock, people holding pipes, man on a surface above the walkway banging a pipe, pistons going off and creating a lot of noise, fog",1,99,74.89,66.12,4.4,2.04,0,2.04,0,0,0,0,0,0,0,0,0,0,0,2.04,0,2.04,0,0,0,0,0,0,0,6.12,0,0,0,0,0,0,6.12,0,0,2.04,4.08,0,0,0,0,0,0,0,0,2.04,4.08,24.49,0,4.08,14.29,2.04,4.08,0,0,6.12,NA,24.81,-9.59,NA,2,5,1,3,1,1,50,100,0,75,33.33,0,0,0,0,100,50,50,50,50,50,0,1,0,9,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.9,49,23 +1047,DevilsDen,Delay,Goal-assigned,Share,2,08:30pm,3,1,0.6,"Woman in red jumpsuit at the outside (she had axes and one white eye), walking into the darkest area first, man in jumpsuit in the corner in shadows, trying to avoid him, being directed to the outside garden by the man holding the cinderblock, seeing the chainsaw guy, being scared by the chainsaw guy, running in the area with chopped up bodies on the table, being told by the guy that he would chop my legs off if I ran, going through the hallway with hanging chopped up body parts, man on the balcony above hallways with a pipe, banging on the rails, loud air pistons going off, strobe light with bodies hanging from meat hooks, fog",1,99,69.89,36.64,11.52,0.85,0,0.85,0,3.42,0,3.42,0,0,1.71,0.85,0,1.71,0,0.85,0,0.85,0.85,0,0.85,0.85,0,0,0,9.4,0.85,0,0,0,0,0.85,8.55,0,0,1.71,6.84,0,0,0,0,0,0,0,0.85,0,0.85,24.79,0,4.27,12.82,5.98,1.71,0,0,1.7,NA,-0.37,10.71,NA,3,4,1,4,5,1,22.22,86.11,100,0,33.33,57.5,38.33,60,100,0,50,50,50,50,50,4,3,0,12,0,0,0,0,0,0,0,0,0,19,0,19,1,19,0.631578947,117,23 +1047,GhostlyGrounds,Delay,Goal-assigned,Test,2,08:30pm,3,0,0.2,"First thing we did was go into the bus. It was extremely dark and there was a mix of real and fake people in the seats. Then we went into a caged area outside where we could see the Blood Lounge and actors scared us from outside the cage. We then went inside and weaved through a maze of cages. The actors mostly had these deadgray masks on, but some just had faces painted. The actors would follow us and pop out from behind the bars of the cages. At one point there was a man hanging from some bars, and then a woman laughing and following us. The ceiling had what looked like plant material hanging from it. There was one cage that had a box that was hanging by chains and would periodically shake and flash. There was a part when we walked through and area with strobe lights and a man got right up in my face. There was also a part when the flood was sliding as you walked along it. At another time we walked up a set of stairs and there were large hanging reapers from the ceiling above the cage maze area. We walked up another set of stairs and ended on an area with a long hallway where people with plague masks were scaring us. ",1,75.11,91.44,75.79,11.17,4.93,4.93,0,0,4.93,0,4.93,0,0,1.35,0.45,0.9,2.24,0,2.69,0.9,1.79,1.35,0.45,0.9,0.9,0,0,0,8.97,0.9,0,0,0,0.45,0.45,8.07,0,0,0.45,0.9,0,0,0.45,0,0,0,0,0,0,4.48,19.28,0,3.59,13.9,2.24,0,0,0.45,4.48,17.07,13.74,-6.29,43.76,2,1,4,3,5,1,30,100,0,42.5,73.18,100,43.15,100,93.02,0,0,97.78,0,100,0,11,5,0,15,0,0,0,0,0,0,0,0,0,31,0,31,1,31,0.483870968,223,23 +1048,Infirmary,Delay,Goal-assigned,Baseline,2,08:30pm,2,0,0.6,"Infirmary was the first of the tours. I wore 3D glasses during this tour. Infirmary was very bright and colorful. It felt like a ""funhouse"" at a fair. Some distinct parts of this tour include walking over a chained bridge, walking through a spinning room, and clowns. I remember there being a lot of stripes on the walls in this tour. ",1,96.97,10.78,87.98,89.9,0,0,0,0,6.56,0,6.56,3.28,0,0,0,0,3.28,1.64,4.92,4.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.64,18.03,0,4.92,8.2,3.28,0,1.64,0,1.64,30.84,53.14,-4.37,43.76,5,2,2,2,3,1,67.31,0,75,50,100,38.46,100,0,0,50,0,100,0,100,0,1,2,0,5,0,0,0,0,0,0,1,0,0,8,1,9,0.888888889,8,0.625,61,27 +1048,Asylum,Immediate,Goal-assigned,Baseline,2,08:30pm,2,0,0.75,"Asylum had to do with a movie set. I remember strobe lights, director chairs, film reels. I also remember music playing but im not sure what type of music. i remember feeling like it wasnt that scary. i dont think there were as many jump scares as i was anticipating. I think there was deep colors, browns, greys, blacks, and also some off white colors. i want to say this section of the tour felt like i was lost in a maze.",1,25.36,1,97.45,3.11,1.2,0,0,1.2,14.46,0,14.46,8.43,0,1.2,2.41,0,3.61,3.61,4.82,1.2,3.61,2.41,0,2.41,2.41,0,0,0,2.41,1.2,0,0,0,0,1.2,1.2,0,0,0,0,2.41,1.2,1.2,0,0,0,0,0,0,3.61,16.87,0,1.2,6.02,4.82,2.41,2.41,4.81,3.61,51.74,49.4,69.27,36.55,5,3,2,2,1,1,46.38,0,23.19,1.45,100,0,66.67,100,73.96,3.12,0,100,0,22.5,1.25,1,0,0,11,2,0,0,0,0,0,0,0,1,14,1,15,0.933333333,12,0.916666667,83,27 +1048,Asylum,Delay,Goal-assigned,Baseline,2,08:30pm,2,1,0.25,"during the Asylum tour I remember dark colors including grays, browns, and blacks. The object I remember seeing the most is a directors chair, a movie reel, and cages. In the cages, there were characters hanging from the ceiling and swaying back and forth. I remember creepy music playing in the background and making a lot of turns throughout the tour. ",1,97.63,23.05,86.48,20.23,1.61,0,0,1.61,6.45,0,6.45,4.84,1.61,0,0,0,0,4.84,3.23,1.61,1.61,1.61,0,1.61,1.61,0,0,0,1.61,0,0,0,0,0,0,1.61,0,0,0,0,0,0,1.61,0,0,0,0,0,0,3.23,19.35,0,3.23,9.68,4.84,1.61,0,1.61,3.23,25.99,30.25,40.43,7.29,5,4,4,4,5,3,35.38,53.85,40,0,100,28.21,58.97,66.67,100,0,92.31,92.31,0,100,0,1,0,0,9,0,0,0,0,0,0,0,0,1,10,1,11,0.909090909,10,0.9,62,27 +1048,DevilsDen,Immediate,Goal-assigned,Share,2,08:30pm,4,0,0.2,"Devil's Den was the scariest tour for me. i disliked all of the machinery noises because they remind me of horror movies. there was heavy machinery alll around including chain saws, hammers, saws, cranes, and maybe stuff like broken down cars and trucks? I remember lots of tones of red and brown and dark grey. I remember not being able to see the edges of the rooms and halls making me feel uneasy and the more freighted. At the end of Devil's Den there was a hall with the lights almost all the way off, strobe lights going off slowly, and the floor seemed to move. I disliked this part of the tour the least because it felt like i couldnt tell where i was and what was in the immediate surroundings. Most of the characters in this tour made gross noises. ",1,83.86,6.39,82.36,1,0.7,0,0.7,0,11.97,1.41,10.56,3.52,2.82,0.7,2.11,0,1.41,2.11,6.34,0,6.34,3.52,0,3.52,2.11,0,0,0,1.41,0.7,0,0,0,0,0.7,0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,2.82,19.01,0,2.11,8.45,4.93,1.41,2.11,0,2.82,4.49,29.99,-27.01,10.5,4,5,2,2,4,1,54.37,0,85.92,100,29.61,52.71,52.71,14.29,0,100,0,100,1.79,1.79,53.57,0,1,0,12,2,0,0,0,0,2,1,0,1,15,4,19,0.789473684,13,0.923076923,142,27 +1048,DevilsDen,Delay,Goal-assigned,Share,2,08:30pm,4,1,0.6,"The thing I remember most from the Devil's Den tour is the character chasing me wish a chain saw. The sound of the chain saw occurred quickly one you entered the hallway. The character with the chain saw was on my left and the hallway was at a slight decline. Some other machinery in this tour included hammers, saws, and chains. ",1,96.97,22.81,18.18,20.23,1.64,0,0,1.64,4.92,0,4.92,1.64,0,1.64,0,0,1.64,1.64,0,0,0,0,0,0,0,0,0,0,1.64,0,0,0,0,0,0,1.64,0,0,0,0,0,1.64,0,0,0,0,0,0,0,0,11.48,0,1.64,3.28,4.92,1.64,0,1.64,0,-12.5,48.94,-32.72,-53.71,2,4,1,5,2,2,89.74,100,100,100,0,89.74,0,0,100,100,100,0,0,0,0,1,1,0,7,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.777777778,61,27 +1048,GhostlyGrounds,Delay,Goal-assigned,Test,2,08:30pm,4,0,0.6,"The Ghostly Grounds tour was the scariest tour. I remember the beginning of the tour being the walk through of the bus. I felt this part of the tour was the most nerveracking because I couldnt see past like a foot in front of me, there was smoke everywhere, and I was unsure of where to walk next. I remember trying to grab onto the seats to my left and right in the bus to make sure I was walking in the correct direction. I did not like this feeling of not knowing where you step next. After the bus part, the thing I remember the most is that some of the characters looked like zombies. I honestly dont remember much from the rest of this tour. ",1,89.52,1,99,12.02,0.79,0,0.79,0,15.87,0.79,15.08,5.56,0.79,1.59,0.79,0.79,3.97,3.17,0.79,0,0.79,0.79,0,0.79,0.79,0,0,0,0.79,0,0,0,0,0,0,0.79,0,0,0,0,0,0,0.79,0,0,0,0,0,0,3.97,17.46,1.59,3.17,8.73,1.59,0,2.38,0.79,3.97,35.28,62.78,23.89,19.16,1,2,3,2,3,2,100,0,86.67,21.67,21.67,10.1,100,0,62.5,62.5,46.15,0,100,100,50,2,1,0,4,3,0,0,0,0,1,0,0,1,10,2,12,0.833333333,7,0.571428571,126,27 +1049,Infirmary,Immediate,Goal-assigned,Baseline,1,08:30pm,2,0,0.6,"neon lights, many colors, dancers, a little child with red hair, moving wood planks, 3d glasses, green fog, things sticking out, colorful pegs on the wall, polka dots, music, was more cool than scary, pink glow sticks wrapped around a pole ",1,97.66,54.61,14.11,58.42,0,0,0,0,2.44,0,2.44,0,0,0,0,0,2.44,0,7.32,4.88,2.44,2.44,0,2.44,2.44,0,0,0,4.88,0,0,0,0,0,0,4.88,0,0,0,0,0,0,0,0,0,0,0,0,0,4.88,31.71,0,2.44,7.32,17.07,2.44,2.44,0,4.88,37.53,38.29,43.36,30.94,3,3,4,2,1,1,59.26,0,100,33.33,66.67,0,0,100,100,0,0,0,0,100,0,0,0,0,12,1,0,0,0,0,0,0,0,0,13,0,13,1,12,1,41,20 -1049,Infirmary,Delay,Role-assignment,Baseline,1,08:30pm,2,1,0.6,"i think this was the first one, there were black lights and polka dots, people dancing on tables with polka dot dresses, they had large hair and looked like female figures, there was a spray paint wall, green fog, colorful things sticking out on a wall, we put on 3d glasses, we put them in a big box at the end, funky music playing ",1,84.59,87.7,65.48,69.4,3.13,3.13,0,0,3.13,0,3.13,3.13,0,0,0,0,0,0,3.13,3.13,0,0,0,0,0,0,0,0,9.38,1.56,0,0,0,0,0,7.81,0,0,1.56,0,0,0,0,0,0,0,0,0,0,6.25,23.44,0,4.69,9.38,7.81,1.56,0,0,6.25,-35.76,-14.84,-38.74,-53.71,5,1,1,1,5,2,0,30,0,90,100,100,18.64,38.98,38.98,0,100,0,0,0,0,3,0,0,10,0,0,0,0,0,0,0,0,0,13,0,13,1,13,0.769230769,64,20 -1049,Asylum,Delay,Role-assignment,Baseline,1,08:30pm,1,0,0.5,"there was a person in a red dress with large dark hair and a person that i kept seeing was saying something to her, they kept saying she was a star, there was a person at a desk that looked like a secretary, people were speaking jibberish, it was a green tint ",1,74.95,88.42,1,20.23,0,0,0,0,1.92,0,1.92,0,0,0,1.92,0,0,0,0,0,0,0,0,0,0,0,0,0,17.31,5.77,0,0,0,0,5.77,11.54,0,0,3.85,0,0,0,0,0,0,0,0,0,0,3.85,17.31,0,0,5.77,11.54,0,0,0,3.85,NA,52.36,41.76,NA,4,3,1,2,1,1,88.24,0,35.29,100,2.94,0,85.71,100,5.71,37.14,50,50,50,50,50,0,0,0,7,0,0,0,0,0,0,0,0,0,7,0,7,1,7,1,52,20 -1049,DevilsDen,Immediate,Role-assignment,Test,1,08:30pm,2,0,0.6,"red lights, more tunnels, huge blade, man with a huge sword thing, person on table, a little tunnel with a bunch of flesh on it, a man standing at the end of the tunnel with a wrench, person in a cage, people hanging upside down with chains on their ankles, person standing with a huge covering, person in white laying on a bed, ",1,99,92.24,24.32,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.11,0,0,0,0,0,0,11.11,0,0,0,3.17,0,0,0,0,0,0,0,0,0,1.59,15.87,0,1.59,11.11,4.76,0,0,0,1.59,NA,-32.33,-8.88,NA,2,4,1,1,3,1,0,100,100,46.67,68.33,92.31,92.31,0,100,0,50,50,50,50,50,0,1,0,11,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.916666667,63,20 -1049,DevilsDen,Delay,Role-assignment,Test,1,08:30pm,2,1,0.6,"there was a flesh bridge, when we walked in a man had a big ax thing, when i came out of the flesh brige someone came at me with a wrench, there was a blade on top of the flesh bridge, there was a bunch of bodies hanging upside down from chains in one area and two characters in it, red lights ",1,93.3,59.25,97.57,20.23,1.61,1.61,0,0,1.61,0,1.61,0,0,0,1.61,0,0,0,0,0,0,0,0,0,0,0,0,0,4.84,0,0,0,0,0,0,4.84,0,0,0,1.61,0,0,0,0,0,0,0,0,0,3.23,25.81,0,4.84,17.74,3.23,0,0,0,3.23,NA,11.18,-43.9,NA,3,1,1,2,4,1,28.57,0,100,38.1,7.14,100,64.71,38.24,0,0,50,50,50,50,50,3,1,0,2,0,0,1,0,3,0,0,0,0,6,4,10,0.6,6,0.333333333,62,20 -1049,GhostlyGrounds,Delay,Role-assignment,Share,1,08:30pm,2,0,0.6,"i remember seeing a big bus as we stood in line, there was an accesible entrance, there were a bunch of people sitting in the seats and it was dark, the bus was made by ford, it was longer than the other sites and we went through a bunch of stairs that took us to a hallway with portraits of old men, for the last part we walked through the huge hallway with prison cells and people were walking around trying to be scary, it was hard to see in this hallway the lights were very dim, i kept seeing accessible routes because there were a lot of stairs, it was kind of foggy i think in the hallway with the portraits of men then we just went back down ",1,89.52,67.13,81.58,6.78,5.38,3.85,0.77,0.77,7.69,0,7.69,1.54,1.54,0.77,1.54,0,2.31,0.77,1.54,0,1.54,0.77,0,0.77,0.77,0,0,0,5.38,0,0,0,0,0,0,5.38,0,0,0,1.54,0,0,0.77,0,0,0,0,0,0,3.85,20,0,3.08,12.31,3.85,0,0.77,0.77,3.85,1.59,48.33,14.81,-58.36,3,2,5,4,3,3,75,50,100,0,75,33.33,100,0,83.33,66.67,33.33,33.33,0,33.33,100,2,3,0,9,0,0,0,0,0,0,1,1,0,14,2,16,0.875,14,0.642857143,130,20 +1049,Infirmary,Delay,Goal-assigned,Baseline,1,08:30pm,2,1,0.6,"i think this was the first one, there were black lights and polka dots, people dancing on tables with polka dot dresses, they had large hair and looked like female figures, there was a spray paint wall, green fog, colorful things sticking out on a wall, we put on 3d glasses, we put them in a big box at the end, funky music playing ",1,84.59,87.7,65.48,69.4,3.13,3.13,0,0,3.13,0,3.13,3.13,0,0,0,0,0,0,3.13,3.13,0,0,0,0,0,0,0,0,9.38,1.56,0,0,0,0,0,7.81,0,0,1.56,0,0,0,0,0,0,0,0,0,0,6.25,23.44,0,4.69,9.38,7.81,1.56,0,0,6.25,-35.76,-14.84,-38.74,-53.71,5,1,1,1,5,2,0,30,0,90,100,100,18.64,38.98,38.98,0,100,0,0,0,0,3,0,0,10,0,0,0,0,0,0,0,0,0,13,0,13,1,13,0.769230769,64,20 +1049,Asylum,Delay,Goal-assigned,Baseline,1,08:30pm,1,0,0.5,"there was a person in a red dress with large dark hair and a person that i kept seeing was saying something to her, they kept saying she was a star, there was a person at a desk that looked like a secretary, people were speaking jibberish, it was a green tint ",1,74.95,88.42,1,20.23,0,0,0,0,1.92,0,1.92,0,0,0,1.92,0,0,0,0,0,0,0,0,0,0,0,0,0,17.31,5.77,0,0,0,0,5.77,11.54,0,0,3.85,0,0,0,0,0,0,0,0,0,0,3.85,17.31,0,0,5.77,11.54,0,0,0,3.85,NA,52.36,41.76,NA,4,3,1,2,1,1,88.24,0,35.29,100,2.94,0,85.71,100,5.71,37.14,50,50,50,50,50,0,0,0,7,0,0,0,0,0,0,0,0,0,7,0,7,1,7,1,52,20 +1049,DevilsDen,Immediate,Goal-assigned,Test,1,08:30pm,2,0,0.6,"red lights, more tunnels, huge blade, man with a huge sword thing, person on table, a little tunnel with a bunch of flesh on it, a man standing at the end of the tunnel with a wrench, person in a cage, people hanging upside down with chains on their ankles, person standing with a huge covering, person in white laying on a bed, ",1,99,92.24,24.32,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.11,0,0,0,0,0,0,11.11,0,0,0,3.17,0,0,0,0,0,0,0,0,0,1.59,15.87,0,1.59,11.11,4.76,0,0,0,1.59,NA,-32.33,-8.88,NA,2,4,1,1,3,1,0,100,100,46.67,68.33,92.31,92.31,0,100,0,50,50,50,50,50,0,1,0,11,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.916666667,63,20 +1049,DevilsDen,Delay,Goal-assigned,Test,1,08:30pm,2,1,0.6,"there was a flesh bridge, when we walked in a man had a big ax thing, when i came out of the flesh brige someone came at me with a wrench, there was a blade on top of the flesh bridge, there was a bunch of bodies hanging upside down from chains in one area and two characters in it, red lights ",1,93.3,59.25,97.57,20.23,1.61,1.61,0,0,1.61,0,1.61,0,0,0,1.61,0,0,0,0,0,0,0,0,0,0,0,0,0,4.84,0,0,0,0,0,0,4.84,0,0,0,1.61,0,0,0,0,0,0,0,0,0,3.23,25.81,0,4.84,17.74,3.23,0,0,0,3.23,NA,11.18,-43.9,NA,3,1,1,2,4,1,28.57,0,100,38.1,7.14,100,64.71,38.24,0,0,50,50,50,50,50,3,1,0,2,0,0,1,0,3,0,0,0,0,6,4,10,0.6,6,0.333333333,62,20 +1049,GhostlyGrounds,Delay,Goal-assigned,Share,1,08:30pm,2,0,0.6,"i remember seeing a big bus as we stood in line, there was an accesible entrance, there were a bunch of people sitting in the seats and it was dark, the bus was made by ford, it was longer than the other sites and we went through a bunch of stairs that took us to a hallway with portraits of old men, for the last part we walked through the huge hallway with prison cells and people were walking around trying to be scary, it was hard to see in this hallway the lights were very dim, i kept seeing accessible routes because there were a lot of stairs, it was kind of foggy i think in the hallway with the portraits of men then we just went back down ",1,89.52,67.13,81.58,6.78,5.38,3.85,0.77,0.77,7.69,0,7.69,1.54,1.54,0.77,1.54,0,2.31,0.77,1.54,0,1.54,0.77,0,0.77,0.77,0,0,0,5.38,0,0,0,0,0,0,5.38,0,0,0,1.54,0,0,0.77,0,0,0,0,0,0,3.85,20,0,3.08,12.31,3.85,0,0.77,0.77,3.85,1.59,48.33,14.81,-58.36,3,2,5,4,3,3,75,50,100,0,75,33.33,100,0,83.33,66.67,33.33,33.33,0,33.33,100,2,3,0,9,0,0,0,0,0,0,1,1,0,14,2,16,0.875,14,0.642857143,130,20 1050,Infirmary,Delay,Control,Baseline,0,08:30pm,2,0,0.4,"This was one of the more scary rooms i believe It felt more twisted and weird Neon lights @@ -339,19 +339,19 @@ smoke machine funky lights",1,67.11,91.33,48.09,1,7.14,7.14,0,0,7.14,0,7.14,0,3.57,0,0,0,3.57,0,10.71,0,7.14,3.57,0,3.57,3.57,0,0,3.57,10.71,0,0,0,0,0,0,10.71,0,0,3.57,0,0,0,0,0,0,0,0,0,0,3.57,35.71,0,7.14,7.14,7.14,10.71,3.57,0,3.57,NA,-16.01,32.78,NA,2,3,1,1,1,1,0,100,0,60,0,0,33.33,100,0,0,50,50,50,50,50,4,0,0,6,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.6,28,19 1050,GhostlyGrounds,Immediate,Control,Baseline,0,08:30pm,2,0,0.6,"This was the longest one of the four. It was pretty scary, but not as scary as the Mach. Shop. I remember people nearly hitting us with objects but stopping last second. There were lots of actors running and screaming. Also, the girls in front of us were screaming the whole time which was ridiculous. There was a hallway with cells above us, and monsters running and scaring us in the weird flashing light. ",1,55.1,71.32,87,1,5.41,5.41,0,0,9.46,0,9.46,1.35,0,0,2.7,0,5.41,1.35,6.76,0,6.76,4.05,0,4.05,4.05,0,0,0,9.46,1.35,0,0,0,1.35,0,8.11,0,0,1.35,0,0,0,0,0,0,0,0,0,1.35,5.41,18.92,0,2.7,10.81,2.7,2.7,0,0,6.76,19.9,59.52,-27.48,27.66,1,1,2,2,2,4,100,0,0,100,21.43,100,0,0,100,14.29,50,100,50,0,0,3,1,0,4,2,0,0,0,0,2,0,0,0,10,2,12,0.833333333,8,0.5,74,19 1050,GhostlyGrounds,Delay,Control,Baseline,0,08:30pm,2,1,0.4,"It was dark with a lot of lights that were flashing, and people running around yelling and screaming. They were dressed up in costumes and loud noises. Bodies hanging from ceiling like a meat locker i think. Zombie strippers. Also they were swinging axes at our faces. ",1,61.33,84.86,42.1,4.04,2.13,2.13,0,0,2.13,0,2.13,2.13,0,0,0,0,0,0,2.13,0,2.13,0,0,0,0,0,0,0,10.64,2.13,0,0,0,0,2.13,8.51,0,0,0,0,0,0,0,0,0,0,0,0,0,4.26,27.66,0,4.26,8.51,6.38,8.51,0,0,4.26,6.81,66.4,-34.4,-11.56,1,5,4,2,3,1,100,0,61.11,61.11,5.56,86.67,86.67,0,0,100,0,0,0,100,100,1,0,0,10,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.909090909,47,19 -1051,Infirmary,Delay,Role-assignment,Baseline,1,06:15pm,1,0,0.6,"This one was very heavy on the black light paintings and makeup. There were special glasses provided for us to make things 3D. There were a lot of fun clowns and dancers when we walked in. I dont know what to call it, but there was a tunnel and a little bridge through it and the tunnel walls were rotating around us like washing machine which made it very difficult to walk through because it looked like the room/tunnel was spinning. I just remember there being a lot of black light effects and neon painting on the wall. At the end they collected our glasses in a tub. ",1,58.39,66.98,70.59,20.23,3.67,3.67,0,0,8.26,0,8.26,2.75,3.67,0,0,0,1.83,0.92,1.83,0.92,0.92,0.92,0.92,0,0,0,0,0,7.34,1.83,0,0,0,0,0.92,5.5,0,0,0,0,0,0,0.92,0,0,0,0,0,0,8.26,18.35,0,3.67,9.17,4.59,0,0.92,0.92,8.26,16.51,0.01,16.94,32.59,5,2,2,1,5,1,0,0,30,0,100,70.83,100,70.83,85.42,0,0,100,0,100,52.38,3,2,0,9,0,0,0,0,0,0,0,0,1,14,1,15,0.933333333,14,0.642857143,109,20 -1051,Asylum,Immediate,Role-assignment,Baseline,1,06:15pm,2,0,0.25,"When we walked in they took our 3D glasses from us. There was a spot for the ""Diva Star"" to get ready in a ""backstage"" like area. There was a man at a dentist chair looking thing that had a skull on it and he was yelling something like, ""I only have this part of my actress. I need the whole thing!"" ",1,60.93,88.59,35.88,44.38,4.84,4.84,0,0,4.84,0,4.84,0,0,1.61,1.61,0,1.61,0,1.61,1.61,0,0,0,0,0,0,0,0,12.9,1.61,0,0,0,0,1.61,11.29,0,0,1.61,3.23,1.61,0,3.23,0,0,0,0,0,0,9.68,12.9,0,1.61,8.06,1.61,1.61,0,4.84,9.68,NA,-17.8,-24.14,NA,2,4,1,1,2,1,0,100,31.25,4.17,4.17,92.31,0,57.14,100,85.71,50,50,50,50,50,1,2,0,3,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.5,62,20 -1051,Asylum,Delay,Role-assignment,Baseline,1,06:15pm,2,1,0.5,"In Asylum there were a bunch of props set up from a movie set. There was a room with a dentist in it I think asking us to come back so he could take care of our teeth. There was a ""Star Diva"" vanity thing that had a mirror and chair set up. After that, there was a room with a man and a chair that looked like it came from either a dentists office or something like an OR. The chair had a skull on it and the man was saying something along the lines of, ""This is all I have of my actress, please let me have you"" or something like that. Basically saying he was gonna kill us and harvest us for parts for his actress. ",1,62.64,75.04,41.41,20.23,3.85,3.08,0,0.77,8.46,0.77,7.69,0.77,0,0.77,4.62,0,3.85,0,1.54,0.77,0.77,0,0,0,0,0,0,0,14.62,5.38,1.54,0.77,0.77,0.77,2.31,9.23,0,0,1.54,3.85,0,0,1.54,0,0,0,0,0,0,6.92,11.54,0,1.54,10,0.77,0,0,1.54,6.92,21.35,60.66,42.54,-39.14,1,5,1,5,1,2,100,25,75,87.5,0,0,66.67,33.33,55.56,100,100,0,100,0,100,4,2,0,6,0,0,0,0,0,0,0,0,2,12,2,14,0.857142857,12,0.5,130,20 -1051,DevilsDen,Delay,Role-assignment,Test,1,06:15pm,3,0,0.6,"We waited in a line outside Machine Chop and the character Bunny was standing outside letting people in. She told groups more than two to stand in line smallest to tallest so she knew where to chop us. I was freaking out a little because we did not get in line smallest to tallest and I was at the back so I thought I wasnt going to be allowed in. She also said a really funny joke something like, ""If you have to ask if someone is around the corner, there is."" and it was just so deadpanned that it was funny. Anyway, we went in and it was really dark inside. I was looking around every single corner for someone. There were machine parts and actors were showing us the way through. It also happened to be in the death row portion of the prison which I thought was cool in kind of a twisted way. But there was a big circuit board kind of thing in the beginning before we were led outside and then back inside. There were people with mallets or hammers or something that would swing at me and then stop before they hit and honestly, I think I was being targeted because that happened like six times throughout the night. I think there were body parts hanging along the wall and ceiling in this one too. There were a bunch of machinery props out and about too. We eventually were led into The Machine, I guess it was called, and it was just this big box that kind of shook a little bit. It was very anticlimactic for sure. There was a girl outside of it that said something about having all the parts in the machine. And then I think that was the end of the section. ",1,36.67,38.15,96.73,24.42,3.62,2.3,0,1.32,13.82,0.66,12.83,2.3,1.64,0.33,5.26,0.99,3.95,0,2.3,1.32,0.99,0.66,0.66,0,0,0,0,0,7.89,2.3,0,0,0,0,1.64,5.59,0,0,1.32,0,0.66,0,0.33,0,0,0,0,0,0,5.26,16.78,0,1.32,14.14,0.99,0,0.33,0.99,5.26,32.59,61.91,33.51,2.33,1,2,3,2,1,2,100,0,85.71,14.29,60.48,0,100,13.33,53.33,49.56,20,0,100,20,61.67,15,1,0,13,5,0,0,0,0,1,0,0,3,34,4,38,0.894736842,29,0.448275862,304,20 -1051,GhostlyGrounds,Immediate,Role-assignment,Share,1,06:15pm,3,0,0.8,We walked past a bunch of vampires. There was a bus at the entrance that we went through that had a bunch of fake corpses and flashing lights. There were a bunch of hanging fake corpses from the ceiling. Prisoneresque people were jumping out through the bars of a jail cell. There was floor boards that shifted all weirdly. A dark tunnel of flashing lights through one of the hallways of the prison. ,1,98.5,71.69,28.97,1,5.48,2.74,0,2.74,1.37,1.37,0,0,0,0,0,0,0,0,5.48,0,5.48,0,0,0,0,0,0,0,5.48,2.74,0,0,0,2.74,0,2.74,0,0,0,0,0,0,0,0,0,0,0,0,1.37,2.74,20.55,0,4.11,9.59,6.85,0,0,0,4.11,NA,34.5,1.91,NA,5,2,1,2,5,1,44.44,0,66.67,4.76,100,66.67,100,16.67,71.43,0,50,50,50,50,50,1,2,0,6,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.666666667,73,20 -1051,GhostlyGrounds,Delay,Role-assignment,Share,1,06:15pm,3,1,0.2,"I remember waiting in line for Ghostly Grounds, there were vampires outside. One of them said A+ was their favorite blood type. The line led to a bus that was dark and had a strobe light on it. There were fake dead bodies in the seats of the bus. Outside the bus and around a corner, there was a scare guy hiding between two chain link fences and he jumped up at the people behind us. The inside of the attraction was really dark and there were a bunch of dead bodies hanging from the ceiling. There were actors who would jump from in between jail bars at us. There was a ""freezer"" that had whole dead bodies hanging from it and there were crazy strobe lights in it as well. There was also a scare actor hiding amongst the bodies that was reaching out at us. I ran into the last body because I couldnt see from the strobe lights. Outside the freezer there were moving floor boards. I think there were three or four of them that shifted in every direction. ",1,82.19,65.94,88.46,14.24,2.2,1.65,0,0.55,4.95,0.55,4.4,1.1,1.1,1.1,0.55,0.55,0.55,0.55,3.3,1.1,1.65,1.65,0,1.1,1.1,0,0,0,7.14,1.1,0,0,0,0.55,0.55,6.04,0,0,0,1.1,0,0,0,0,0,0,0,1.1,0,2.2,25.27,0,2.75,18.68,4.4,0,0,0,3.3,-19.4,8.52,4.63,-71.35,2,4,5,5,2,2,30.77,100,71.15,17.79,0,54.14,0,86.09,100,72.18,48.65,0,0,50,100,6,3,0,12,0,0,0,0,0,0,0,0,1,21,1,22,0.954545455,21,0.571428571,182,20 -1052,Infirmary,Immediate,Role-assignment,Baseline,1,06:15pm,1,0,0.6,"There was lots of neon lights and neon paint everywhere, including on the actors and set pieces. The actors were dressed up as clowns I think. There were a few girls there who sort of looked like strippers, dancing up on a stage with poles. We were wearing 3D glasses. We walked through a spinny tube thingy thats supposed to make you dizzy. The actors kept growling in our ears, it was nasty. ",1,79.95,99,14.66,2.26,4.11,4.11,0,0,9.59,1.37,8.22,1.37,1.37,2.74,2.74,0,0,0,2.74,0,2.74,1.37,0,1.37,0,0,0,0,15.07,1.37,0,0,0,0,0,13.7,0,0,1.37,0,0,0,0,0,0,0,0,0,0,2.74,19.18,0,2.74,9.59,2.74,2.74,1.37,0,2.74,22.73,44.87,-20.4,43.73,3,4,4,4,3,1,65,65,100,0,37.5,89.36,59.57,0,100,68.09,0,93.33,0,100,0,2,1,0,8,1,0,0,0,0,0,0,0,0,12,0,12,1,11,0.727272727,73,22 -1052,Infirmary,Delay,Role-assignment,Baseline,1,06:15pm,1,1,0.8,"This was the first section, and we were wearing 3D glasses. Everything was painted neon and the characters were dressed as clowns mostly. There was a girl painting in the first big room, holding a lollipop, and then we walked into a room where there were clown strippers on poles dancing on a stage above us. Thats the room where we got the 3D glasses. We walked through one of those spinning tunnel things, and then around a corner and up some stairs. Everything was neon and 3D and it looked like a fun house, obviously. This section was kind of small, and there was a guy dressed up for the next section at the very end of it telling us to give our glasses back. ",1,63.81,96.23,67.59,31.1,5.56,5.56,0,0,4.76,1.59,3.17,0,0,0,2.38,0.79,0,0,0.79,0.79,0,0.79,0.79,0,0,0,0,0,10.32,2.38,0,0,0,0,0.79,7.94,0,0,0.79,0.79,0,0,0.79,0,0,0,0,0,0,3.97,18.25,0,3.17,14.29,0.79,0,0,0.79,3.97,-3.89,-12.55,-30.05,30.94,5,1,4,1,2,1,0,51.85,75.93,3.7,100,100,0,54.17,72.22,36.11,0,0,0,100,0,6,4,0,7,0,0,0,0,0,0,1,1,0,17,2,19,0.894736842,17,0.411764706,126,22 -1052,Asylum,Delay,Role-assignment,Baseline,1,06:15pm,2,0,0,"It started with a man in a suit taking our 3D glasses away, and then us walking through a dark backstage looking area. We walked past a man who could have been a reporter maybe who slammed his fists on the desk, a doctor or dentist who said hell make us look real good for the camera, a dressing room for a star actress, and a man with a skull on a bed asking us to donate parts to him. There was also a room in the beginning with a bunch of desks and a man who lunged at us from over the desk. ",1,97.18,99,25.1,20.23,6.73,6.73,0,0,5.77,0,5.77,0,0.96,0.96,1.92,0.96,1.92,0,2.88,0.96,0.96,0.96,0.96,0,0,0,0,0.96,19.23,2.88,0.96,0,0,0,1.92,16.35,0,0,0.96,5.77,0,0,0.96,0,0,0,0,0,0,4.81,14.42,0.96,3.85,7.69,2.88,0,0,0.96,4.81,36.87,56.2,10.65,43.76,5,2,2,2,3,1,46.15,0,30.77,61.54,100,40,100,0,60,3,0,100,0,100,0,5,3,0,3,0,0,0,0,0,0,0,0,1,11,1,12,0.916666667,11,0.272727273,104,22 -1052,DevilsDen,Delay,Role-assignment,Test,1,06:15pm,4,0,0.4,"Before we went in, there was a girl outside named Bunny with an ax telling us to line up shortest to tallest if theres more than two in our group so she knows where to cut us. We were inside the death row section of the prison, and there were a few guys in there running at us to yell in our ears that, we think we can just walk right into the shop and live? We went outside and there was a guy with a chainsaw hiding behind a wall. There were lots of jump scares in this section. We walked through a windy part where there were lots of machines and people with lab coats on, and there was a big crusher thingy with body parts melted into it. There were also body parts hanging from chains near the exit.",1,79.62,98.1,98.56,7.54,8.45,7.75,0,0.7,6.34,0,5.63,1.41,0,0.7,0.7,0,3.52,0,1.41,0,1.41,0.7,0,0.7,0.7,0,0,0,12.68,1.41,0,0,0,0,1.41,11.27,0,0,1.41,1.41,0,0,0,0,0,0,0,0.7,0,2.82,28.17,0,4.23,21.83,0.7,1.41,0,0,3.52,40.72,91.09,55.98,-24.9,1,3,3,4,1,4,100,20,27.62,0,27.62,0,91.06,100,29.27,29.27,96.55,96.55,100,0,100,4,1,0,10,0,0,0,0,0,0,0,0,0,15,0,15,1,15,0.666666667,142,22 -1052,GhostlyGrounds,Immediate,Role-assignment,Share,1,06:15pm,4,0,0.4,"It was the last segment we walked through, and all of the actors were dressed up as weird demon vampire things and crawling around. We went up and down the stairs a few time. There were lots of gunshot sounding things? It was very dark but I remember going through a bunch of cellblocks that had cages with fake and real demon vampire things. It started through a school bus with a bunch of dolls in it. There was a man outside crawling around asking for fresh blood. This one had LOTS of jumpscares.",1,84.47,65.16,71.66,20.23,2.13,2.13,0,0,4.26,1.06,3.19,1.06,0,0,0,1.06,1.06,1.06,2.13,1.06,1.06,0,0,0,0,0,0,0,6.38,2.13,0,0,0,1.06,1.06,4.26,0,0,0,1.06,0,0,0,0,0,0,0,0,1.06,3.19,18.09,0,5.32,10.64,1.06,1.06,0,0,4.25,24.56,46.34,-3.61,30.94,4,3,3,3,4,1,75,75,0,100,56.94,60,60,100,0,45.56,0,0,100,0,0,2,2,0,9,0,0,0,0,0,0,1,0,0,13,1,14,0.928571429,13,0.692307692,94,22 -1052,GhostlyGrounds,Delay,Role-assignment,Share,1,06:15pm,4,1,0.8,"This was the last section, and it started with a school bus parked outside. You went up in it and it was filled with smoke, strobe lights, and mannequin doll things. A man was outside to jump scare you after you got off. You went inside, and there were cages with bodies hanging in them and actors hiding in them to jump scare you. They were all dressed as these weird demon vampire things, with blank white masks and maybe one of them was on stilts? There were some shaky floorboards, and we went up and down a staircase in one of the cellblocks, but nothing happened up there. We came out into one of the main hallways of the cellblock, and there was a woman at the end guiding us towards our pictures and congratulating us on surviving.",1,77.78,99,89.99,12.67,3.6,3.6,0,0,2.88,1.44,1.44,0,0,0,0.72,0,0.72,0,2.16,0.72,1.44,2.16,0.72,1.44,1.44,0,0,0,13.67,1.44,1.44,0.72,0,0,0,12.23,0,0,0.72,0.72,0,0,0.72,0.72,0.72,0,0,0.72,0.72,0.72,24.46,0,5.04,16.55,2.88,0,0,2.16,2.16,35.17,29.83,13.8,61.88,5,3,3,3,5,1,37.24,55.86,0,74.48,100,73.27,73.27,100,73.27,0,0,0,100,100,0,8,3,0,11,0,0,0,0,0,0,1,0,1,22,2,24,0.916666667,22,0.5,139,22 -1054,Infirmary,Delay,Role-assignment,Baseline,2,06:15pm,4,0,0.75,"there were neon colors and neon figures/graffiti painted on the walls +1051,Infirmary,Delay,Goal-assigned,Baseline,1,06:15pm,1,0,0.6,"This one was very heavy on the black light paintings and makeup. There were special glasses provided for us to make things 3D. There were a lot of fun clowns and dancers when we walked in. I dont know what to call it, but there was a tunnel and a little bridge through it and the tunnel walls were rotating around us like washing machine which made it very difficult to walk through because it looked like the room/tunnel was spinning. I just remember there being a lot of black light effects and neon painting on the wall. At the end they collected our glasses in a tub. ",1,58.39,66.98,70.59,20.23,3.67,3.67,0,0,8.26,0,8.26,2.75,3.67,0,0,0,1.83,0.92,1.83,0.92,0.92,0.92,0.92,0,0,0,0,0,7.34,1.83,0,0,0,0,0.92,5.5,0,0,0,0,0,0,0.92,0,0,0,0,0,0,8.26,18.35,0,3.67,9.17,4.59,0,0.92,0.92,8.26,16.51,0.01,16.94,32.59,5,2,2,1,5,1,0,0,30,0,100,70.83,100,70.83,85.42,0,0,100,0,100,52.38,3,2,0,9,0,0,0,0,0,0,0,0,1,14,1,15,0.933333333,14,0.642857143,109,20 +1051,Asylum,Immediate,Goal-assigned,Baseline,1,06:15pm,2,0,0.25,"When we walked in they took our 3D glasses from us. There was a spot for the ""Diva Star"" to get ready in a ""backstage"" like area. There was a man at a dentist chair looking thing that had a skull on it and he was yelling something like, ""I only have this part of my actress. I need the whole thing!"" ",1,60.93,88.59,35.88,44.38,4.84,4.84,0,0,4.84,0,4.84,0,0,1.61,1.61,0,1.61,0,1.61,1.61,0,0,0,0,0,0,0,0,12.9,1.61,0,0,0,0,1.61,11.29,0,0,1.61,3.23,1.61,0,3.23,0,0,0,0,0,0,9.68,12.9,0,1.61,8.06,1.61,1.61,0,4.84,9.68,NA,-17.8,-24.14,NA,2,4,1,1,2,1,0,100,31.25,4.17,4.17,92.31,0,57.14,100,85.71,50,50,50,50,50,1,2,0,3,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.5,62,20 +1051,Asylum,Delay,Goal-assigned,Baseline,1,06:15pm,2,1,0.5,"In Asylum there were a bunch of props set up from a movie set. There was a room with a dentist in it I think asking us to come back so he could take care of our teeth. There was a ""Star Diva"" vanity thing that had a mirror and chair set up. After that, there was a room with a man and a chair that looked like it came from either a dentists office or something like an OR. The chair had a skull on it and the man was saying something along the lines of, ""This is all I have of my actress, please let me have you"" or something like that. Basically saying he was gonna kill us and harvest us for parts for his actress. ",1,62.64,75.04,41.41,20.23,3.85,3.08,0,0.77,8.46,0.77,7.69,0.77,0,0.77,4.62,0,3.85,0,1.54,0.77,0.77,0,0,0,0,0,0,0,14.62,5.38,1.54,0.77,0.77,0.77,2.31,9.23,0,0,1.54,3.85,0,0,1.54,0,0,0,0,0,0,6.92,11.54,0,1.54,10,0.77,0,0,1.54,6.92,21.35,60.66,42.54,-39.14,1,5,1,5,1,2,100,25,75,87.5,0,0,66.67,33.33,55.56,100,100,0,100,0,100,4,2,0,6,0,0,0,0,0,0,0,0,2,12,2,14,0.857142857,12,0.5,130,20 +1051,DevilsDen,Delay,Goal-assigned,Test,1,06:15pm,3,0,0.6,"We waited in a line outside Machine Chop and the character Bunny was standing outside letting people in. She told groups more than two to stand in line smallest to tallest so she knew where to chop us. I was freaking out a little because we did not get in line smallest to tallest and I was at the back so I thought I wasnt going to be allowed in. She also said a really funny joke something like, ""If you have to ask if someone is around the corner, there is."" and it was just so deadpanned that it was funny. Anyway, we went in and it was really dark inside. I was looking around every single corner for someone. There were machine parts and actors were showing us the way through. It also happened to be in the death row portion of the prison which I thought was cool in kind of a twisted way. But there was a big circuit board kind of thing in the beginning before we were led outside and then back inside. There were people with mallets or hammers or something that would swing at me and then stop before they hit and honestly, I think I was being targeted because that happened like six times throughout the night. I think there were body parts hanging along the wall and ceiling in this one too. There were a bunch of machinery props out and about too. We eventually were led into The Machine, I guess it was called, and it was just this big box that kind of shook a little bit. It was very anticlimactic for sure. There was a girl outside of it that said something about having all the parts in the machine. And then I think that was the end of the section. ",1,36.67,38.15,96.73,24.42,3.62,2.3,0,1.32,13.82,0.66,12.83,2.3,1.64,0.33,5.26,0.99,3.95,0,2.3,1.32,0.99,0.66,0.66,0,0,0,0,0,7.89,2.3,0,0,0,0,1.64,5.59,0,0,1.32,0,0.66,0,0.33,0,0,0,0,0,0,5.26,16.78,0,1.32,14.14,0.99,0,0.33,0.99,5.26,32.59,61.91,33.51,2.33,1,2,3,2,1,2,100,0,85.71,14.29,60.48,0,100,13.33,53.33,49.56,20,0,100,20,61.67,15,1,0,13,5,0,0,0,0,1,0,0,3,34,4,38,0.894736842,29,0.448275862,304,20 +1051,GhostlyGrounds,Immediate,Goal-assigned,Share,1,06:15pm,3,0,0.8,We walked past a bunch of vampires. There was a bus at the entrance that we went through that had a bunch of fake corpses and flashing lights. There were a bunch of hanging fake corpses from the ceiling. Prisoneresque people were jumping out through the bars of a jail cell. There was floor boards that shifted all weirdly. A dark tunnel of flashing lights through one of the hallways of the prison. ,1,98.5,71.69,28.97,1,5.48,2.74,0,2.74,1.37,1.37,0,0,0,0,0,0,0,0,5.48,0,5.48,0,0,0,0,0,0,0,5.48,2.74,0,0,0,2.74,0,2.74,0,0,0,0,0,0,0,0,0,0,0,0,1.37,2.74,20.55,0,4.11,9.59,6.85,0,0,0,4.11,NA,34.5,1.91,NA,5,2,1,2,5,1,44.44,0,66.67,4.76,100,66.67,100,16.67,71.43,0,50,50,50,50,50,1,2,0,6,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.666666667,73,20 +1051,GhostlyGrounds,Delay,Goal-assigned,Share,1,06:15pm,3,1,0.2,"I remember waiting in line for Ghostly Grounds, there were vampires outside. One of them said A+ was their favorite blood type. The line led to a bus that was dark and had a strobe light on it. There were fake dead bodies in the seats of the bus. Outside the bus and around a corner, there was a scare guy hiding between two chain link fences and he jumped up at the people behind us. The inside of the attraction was really dark and there were a bunch of dead bodies hanging from the ceiling. There were actors who would jump from in between jail bars at us. There was a ""freezer"" that had whole dead bodies hanging from it and there were crazy strobe lights in it as well. There was also a scare actor hiding amongst the bodies that was reaching out at us. I ran into the last body because I couldnt see from the strobe lights. Outside the freezer there were moving floor boards. I think there were three or four of them that shifted in every direction. ",1,82.19,65.94,88.46,14.24,2.2,1.65,0,0.55,4.95,0.55,4.4,1.1,1.1,1.1,0.55,0.55,0.55,0.55,3.3,1.1,1.65,1.65,0,1.1,1.1,0,0,0,7.14,1.1,0,0,0,0.55,0.55,6.04,0,0,0,1.1,0,0,0,0,0,0,0,1.1,0,2.2,25.27,0,2.75,18.68,4.4,0,0,0,3.3,-19.4,8.52,4.63,-71.35,2,4,5,5,2,2,30.77,100,71.15,17.79,0,54.14,0,86.09,100,72.18,48.65,0,0,50,100,6,3,0,12,0,0,0,0,0,0,0,0,1,21,1,22,0.954545455,21,0.571428571,182,20 +1052,Infirmary,Immediate,Goal-assigned,Baseline,1,06:15pm,1,0,0.6,"There was lots of neon lights and neon paint everywhere, including on the actors and set pieces. The actors were dressed up as clowns I think. There were a few girls there who sort of looked like strippers, dancing up on a stage with poles. We were wearing 3D glasses. We walked through a spinny tube thingy thats supposed to make you dizzy. The actors kept growling in our ears, it was nasty. ",1,79.95,99,14.66,2.26,4.11,4.11,0,0,9.59,1.37,8.22,1.37,1.37,2.74,2.74,0,0,0,2.74,0,2.74,1.37,0,1.37,0,0,0,0,15.07,1.37,0,0,0,0,0,13.7,0,0,1.37,0,0,0,0,0,0,0,0,0,0,2.74,19.18,0,2.74,9.59,2.74,2.74,1.37,0,2.74,22.73,44.87,-20.4,43.73,3,4,4,4,3,1,65,65,100,0,37.5,89.36,59.57,0,100,68.09,0,93.33,0,100,0,2,1,0,8,1,0,0,0,0,0,0,0,0,12,0,12,1,11,0.727272727,73,22 +1052,Infirmary,Delay,Goal-assigned,Baseline,1,06:15pm,1,1,0.8,"This was the first section, and we were wearing 3D glasses. Everything was painted neon and the characters were dressed as clowns mostly. There was a girl painting in the first big room, holding a lollipop, and then we walked into a room where there were clown strippers on poles dancing on a stage above us. Thats the room where we got the 3D glasses. We walked through one of those spinning tunnel things, and then around a corner and up some stairs. Everything was neon and 3D and it looked like a fun house, obviously. This section was kind of small, and there was a guy dressed up for the next section at the very end of it telling us to give our glasses back. ",1,63.81,96.23,67.59,31.1,5.56,5.56,0,0,4.76,1.59,3.17,0,0,0,2.38,0.79,0,0,0.79,0.79,0,0.79,0.79,0,0,0,0,0,10.32,2.38,0,0,0,0,0.79,7.94,0,0,0.79,0.79,0,0,0.79,0,0,0,0,0,0,3.97,18.25,0,3.17,14.29,0.79,0,0,0.79,3.97,-3.89,-12.55,-30.05,30.94,5,1,4,1,2,1,0,51.85,75.93,3.7,100,100,0,54.17,72.22,36.11,0,0,0,100,0,6,4,0,7,0,0,0,0,0,0,1,1,0,17,2,19,0.894736842,17,0.411764706,126,22 +1052,Asylum,Delay,Goal-assigned,Baseline,1,06:15pm,2,0,0,"It started with a man in a suit taking our 3D glasses away, and then us walking through a dark backstage looking area. We walked past a man who could have been a reporter maybe who slammed his fists on the desk, a doctor or dentist who said hell make us look real good for the camera, a dressing room for a star actress, and a man with a skull on a bed asking us to donate parts to him. There was also a room in the beginning with a bunch of desks and a man who lunged at us from over the desk. ",1,97.18,99,25.1,20.23,6.73,6.73,0,0,5.77,0,5.77,0,0.96,0.96,1.92,0.96,1.92,0,2.88,0.96,0.96,0.96,0.96,0,0,0,0,0.96,19.23,2.88,0.96,0,0,0,1.92,16.35,0,0,0.96,5.77,0,0,0.96,0,0,0,0,0,0,4.81,14.42,0.96,3.85,7.69,2.88,0,0,0.96,4.81,36.87,56.2,10.65,43.76,5,2,2,2,3,1,46.15,0,30.77,61.54,100,40,100,0,60,3,0,100,0,100,0,5,3,0,3,0,0,0,0,0,0,0,0,1,11,1,12,0.916666667,11,0.272727273,104,22 +1052,DevilsDen,Delay,Goal-assigned,Test,1,06:15pm,4,0,0.4,"Before we went in, there was a girl outside named Bunny with an ax telling us to line up shortest to tallest if theres more than two in our group so she knows where to cut us. We were inside the death row section of the prison, and there were a few guys in there running at us to yell in our ears that, we think we can just walk right into the shop and live? We went outside and there was a guy with a chainsaw hiding behind a wall. There were lots of jump scares in this section. We walked through a windy part where there were lots of machines and people with lab coats on, and there was a big crusher thingy with body parts melted into it. There were also body parts hanging from chains near the exit.",1,79.62,98.1,98.56,7.54,8.45,7.75,0,0.7,6.34,0,5.63,1.41,0,0.7,0.7,0,3.52,0,1.41,0,1.41,0.7,0,0.7,0.7,0,0,0,12.68,1.41,0,0,0,0,1.41,11.27,0,0,1.41,1.41,0,0,0,0,0,0,0,0.7,0,2.82,28.17,0,4.23,21.83,0.7,1.41,0,0,3.52,40.72,91.09,55.98,-24.9,1,3,3,4,1,4,100,20,27.62,0,27.62,0,91.06,100,29.27,29.27,96.55,96.55,100,0,100,4,1,0,10,0,0,0,0,0,0,0,0,0,15,0,15,1,15,0.666666667,142,22 +1052,GhostlyGrounds,Immediate,Goal-assigned,Share,1,06:15pm,4,0,0.4,"It was the last segment we walked through, and all of the actors were dressed up as weird demon vampire things and crawling around. We went up and down the stairs a few time. There were lots of gunshot sounding things? It was very dark but I remember going through a bunch of cellblocks that had cages with fake and real demon vampire things. It started through a school bus with a bunch of dolls in it. There was a man outside crawling around asking for fresh blood. This one had LOTS of jumpscares.",1,84.47,65.16,71.66,20.23,2.13,2.13,0,0,4.26,1.06,3.19,1.06,0,0,0,1.06,1.06,1.06,2.13,1.06,1.06,0,0,0,0,0,0,0,6.38,2.13,0,0,0,1.06,1.06,4.26,0,0,0,1.06,0,0,0,0,0,0,0,0,1.06,3.19,18.09,0,5.32,10.64,1.06,1.06,0,0,4.25,24.56,46.34,-3.61,30.94,4,3,3,3,4,1,75,75,0,100,56.94,60,60,100,0,45.56,0,0,100,0,0,2,2,0,9,0,0,0,0,0,0,1,0,0,13,1,14,0.928571429,13,0.692307692,94,22 +1052,GhostlyGrounds,Delay,Goal-assigned,Share,1,06:15pm,4,1,0.8,"This was the last section, and it started with a school bus parked outside. You went up in it and it was filled with smoke, strobe lights, and mannequin doll things. A man was outside to jump scare you after you got off. You went inside, and there were cages with bodies hanging in them and actors hiding in them to jump scare you. They were all dressed as these weird demon vampire things, with blank white masks and maybe one of them was on stilts? There were some shaky floorboards, and we went up and down a staircase in one of the cellblocks, but nothing happened up there. We came out into one of the main hallways of the cellblock, and there was a woman at the end guiding us towards our pictures and congratulating us on surviving.",1,77.78,99,89.99,12.67,3.6,3.6,0,0,2.88,1.44,1.44,0,0,0,0.72,0,0.72,0,2.16,0.72,1.44,2.16,0.72,1.44,1.44,0,0,0,13.67,1.44,1.44,0.72,0,0,0,12.23,0,0,0.72,0.72,0,0,0.72,0.72,0.72,0,0,0.72,0.72,0.72,24.46,0,5.04,16.55,2.88,0,0,2.16,2.16,35.17,29.83,13.8,61.88,5,3,3,3,5,1,37.24,55.86,0,74.48,100,73.27,73.27,100,73.27,0,0,0,100,100,0,8,3,0,11,0,0,0,0,0,0,1,0,1,22,2,24,0.916666667,22,0.5,139,22 +1054,Infirmary,Delay,Goal-assigned,Baseline,2,06:15pm,4,0,0.75,"there were neon colors and neon figures/graffiti painted on the walls there was a green laser light that made walking through the first section very disorienting and you felt like you were going to walk into a wall. the green laser beam went up to my hips in height. I could see what was on the floor hands and people would pop out from the green laser light there were 3d glasses but they made me dizzy so I took them off @@ -366,7 +366,7 @@ glowing white paint spinning figures ",1,72.44,74.72,74.45,11.39,2.61,2.61,0,0,6.96,0,6.96,2.61,1.74,1.74,0,0,0.87,0,0.87,0,0.87,0.87,0,0.87,0.87,0,0,0,6.96,0,0,0,0,0,0,6.96,0,0,0,0,0,0,0.87,0,0,0.87,0,0,0,6.09,27.83,0,4.35,11.3,8.7,1.74,1.74,1.74,6.09,36.86,48.17,20.91,41.51,2,4,2,4,2,1,75,100,100,0,50,20,0,40,100,0,0,100,0,50,0,4,0,0,10,0,2,0,0,4,1,1,0,0,14,8,22,0.636363636,14,0.714285714,115,27 -1054,Asylum,Immediate,Role-assignment,Baseline,2,06:15pm,2,0,0.5,"a woman looking at herself in the mirror +1054,Asylum,Immediate,Goal-assigned,Baseline,2,06:15pm,2,0,0.5,"a woman looking at herself in the mirror a chaise/lounge chair darkness people jumping out at me @@ -377,7 +377,7 @@ spooky makeup dark circles under eyes spooky music ",1,99,59.25,17.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.9,3.23,9.68,6.45,0,6.45,6.45,0,0,0,6.45,0,0,0,0,0,0,6.45,0,0,6.45,0,0,0,0,0,0,0,0,0,0,6.45,41.94,0,3.23,9.68,12.9,16.13,0,0,6.45,NA,81.53,-21.45,NA,1,3,1,4,2,1,100,29.17,58.33,0,29.17,85.71,0,100,0,0,50,50,50,50,50,1,0,0,9,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.9,31,27 -1054,Asylum,Delay,Role-assignment,Baseline,2,06:15pm,2,1,0.25,"woman in robe looking into mirror of a vanity +1054,Asylum,Delay,Goal-assigned,Baseline,2,06:15pm,2,1,0.25,"woman in robe looking into mirror of a vanity the woman had a retro curled hairstyle the woman was laughing a chaise chair @@ -391,7 +391,7 @@ man in a tophat I remember that it was the second section we walked through I remember that the actors were talking but I cant remember what they said a directors chair",1,84.84,57.85,69.28,20.23,2.99,1.49,0,1.49,7.46,0,7.46,4.48,0,1.49,0,0,2.99,4.48,2.99,1.49,1.49,2.99,1.49,1.49,1.49,0,0,0,17.91,5.97,0,0,0,1.49,4.48,11.94,0,0,4.48,1.49,0,0,0,0,0,0,0,0,0,1.49,13.43,0,1.49,7.46,2.99,1.49,0,0,1.49,32.57,80.31,33.74,-16.35,1,4,5,5,1,1,100,18.75,43.75,43.75,0,0,0,21.13,100,100,0,0,50,50,100,1,0,0,14,0,0,0,0,0,0,1,0,1,15,2,17,0.882352941,15,0.933333333,67,27 -1054,DevilsDen,Immediate,Role-assignment,Share,2,06:15pm,4,0,0.5,"a man with a saw came up to us with the saw near our feet outside +1054,DevilsDen,Immediate,Goal-assigned,Share,2,06:15pm,4,0,0.5,"a man with a saw came up to us with the saw near our feet outside darkness flashing lights limbs @@ -409,7 +409,7 @@ heads on the walls shadows cogs and wheels someone turning a crank",1,98.61,95.19,63.35,47.86,3.64,3.64,0,0,3.64,0,3.64,0,0,0,3.64,0,0,0,1.82,1.82,0,1.82,1.82,0,0,0,0,0,12.73,1.82,0,0,0,0,1.82,10.91,0,0,0,1.82,0,0,0,0,0,0,0,0,0,1.82,38.18,0,5.45,12.73,14.55,5.45,0,0,1.82,NA,92.16,51.73,NA,1,3,1,4,1,1,100,16.67,16.67,0,33.33,0,0,100,100,100,50,50,50,50,50,4,0,0,8,0,0,0,0,0,0,0,2,0,12,2,14,0.857142857,12,0.666666667,55,27 -1054,DevilsDen,Delay,Role-assignment,Share,2,06:15pm,4,1,0.5,"we walked on a ramp and a man with a chainsaw ran past us with the chainsaw near our feet +1054,DevilsDen,Delay,Goal-assigned,Share,2,06:15pm,4,1,0.5,"we walked on a ramp and a man with a chainsaw ran past us with the chainsaw near our feet I screamed drilling sounds hammering sounds @@ -425,7 +425,7 @@ fog there was a woman with a shaved head and spooky contacts on her eyes that was holding an axe before we entered the haunted house. She talked about people having attachment issues. She was scaring people while they were in line to get in ",1,94.68,97.94,19.26,1,6.67,4.76,1.9,0,1.9,0,1.9,0,0,0,0.95,0,0.95,0,3.81,0,3.81,1.9,0,1.9,1.9,0,0,0,14.29,1.9,0,0,0,0.95,0.95,12.38,0,0,3.81,0.95,0,0,0.95,0,0,0,0,0,0,4.76,17.14,0,3.81,7.62,0.95,4.76,0,0.95,4.76,20.69,67.62,-36.49,30.94,1,5,2,3,2,1,100,25,0,75,0,60,0,0,60,100,0,100,0,0,0,6,0,0,17,0,0,0,0,0,0,0,0,1,23,1,24,0.958333333,23,0.739130435,105,27 -1054,GhostlyGrounds,Delay,Role-assignment,Test,2,06:15pm,4,0,0.6,"we walked through an old school bus +1054,GhostlyGrounds,Delay,Goal-assigned,Test,2,06:15pm,4,0,0.6,"we walked through an old school bus there were fake dead bodies in the seats there was an actor hiding in a seat who popped out in one section there were corpses hanging from the ceiling and they were swaying; there were strobe lights flashing and actors lurking; because the lights were flashing, I didnt know when an actor was near me. It felt like the corpses were going to swing into my face. Hard to tell whether it was an actor or a corpse near me @@ -457,46 +457,46 @@ Guys with tools jumping out at people",1,99,97.11,97.09,20.23,0,0,0,0,0,0,0,0,0, Flashing lights and people running at you Almost slipped on sliding panels",1,95.3,92.24,39.59,20.23,0,0,0,0,5.56,0,5.56,0,0,0,5.56,0,0,0,0,0,0,0,0,0,0,0,0,0,5.56,0,0,0,0,0,0,5.56,0,0,0,0,0,0,0,0,0,0,0,0,0,11.11,27.78,0,16.67,0,11.11,0,0,0,11.11,NA,72.09,34.07,NA,1,4,1,2,1,1,100,0,50,0,66.67,0,0,37.5,100,0,50,50,50,50,50,2,0,0,2,0,0,0,0,0,0,0,0,0,4,0,4,1,4,0.5,18,18 1055,GhostlyGrounds,Delay,Control,Baseline,0,07:30pm,2,1,0.6,School bus with dead people on it and guy standing in one of the corners,1,99,77.41,19.26,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.67,0,0,0,0,0,0,6.67,0,0,0,6.67,0,0,0,0,0,0,0,0,0,6.67,13.33,0,0,13.33,0,0,0,0,6.67,NA,52.78,21.68,NA,5,3,1,3,1,1,50,50,0,50,100,0,0,100,0,0,50,50,50,50,50,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,1,2,1,15,18 -1056,Infirmary,Delay,Role-assignment,Baseline,1,07:30pm,1,0,0.4,lady on stilts as you entered the haunted house i think. had to put on 3d glasses. walked through a hallway with neon designs painted all of the ways. neon paint all over. walked into a neon room with staff wearing matching neon costumes so they could jump out and scare you since they blended in. things hanging from the ceiling. walked on a bridge to get between 2 of the rooms i think. ,1,99,83.39,87,2.35,0,0,0,0,8.11,2.7,5.41,2.7,1.35,1.35,0,0,0,0,2.7,0,2.7,1.35,0,1.35,1.35,0,0,0,8.11,1.35,0,1.35,0,0,0,8.11,0,0,1.35,0,2.7,0,1.35,0,0,0,0,0,0,2.7,18.92,0,8.11,10.81,0,0,0,4.05,2.7,-0.72,47.96,2.63,-52.76,5,4,5,3,2,2,41.18,41.18,0,41.18,100,40,0,20,100,1.43,93.33,0,0,93.33,100,3,3,0,5,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.454545455,74,21 -1056,Asylum,Immediate,Role-assignment,Baseline,1,07:30pm,1,0,0.5,"there was a skull with teeth in its head. there was doctors, there was really short actors, there was air that shot out by yout feet scare you. people yelling. there possibly was a guy who had a phone up against a skulls head amd was pretending like it was talking.",1,46.7,82.38,46.57,4.72,0,0,0,0,7.84,0,7.84,0,0,0,1.96,1.96,1.96,0,1.96,0,1.96,1.96,0,1.96,1.96,0,0,0,13.73,5.88,0,0,0,0,5.88,7.84,0,0,0,1.96,0,0,0,0,0,0,0,0,0,5.88,17.65,0,0,15.69,0,1.96,0,0,5.88,-7.63,45.48,-13.05,-55.32,4,2,5,2,3,1,68.18,0,50,100,25,63.64,100,0,25,25,0,0,0,0,100,1,0,0,7,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.875,51,21 -1056,Asylum,Delay,Role-assignment,Baseline,1,07:30pm,1,1,0.25,"looked like great gatsby inspired. film set and director chair we had to walk through. very dark. not many staff members, making it less scary. woman dressed in bloody dress",1,77.34,89.5,19.26,20.23,10,6.67,0,3.33,10,0,10,3.33,3.33,0,0,0,3.33,0,13.33,6.67,6.67,6.67,3.33,3.33,3.33,0,0,3.33,16.67,0,0,0,0,0,0,16.67,0,0,3.33,0,6.67,0,0,3.33,0,0,0,0,3.33,6.67,13.33,0,3.33,3.33,6.67,0,0,10,10,-3.32,-9.34,53.1,-53.71,3,2,1,1,1,2,0,0,100,0,50,0,100,66.67,33.33,0,100,0,0,0,0,1,0,0,4,1,0,0,0,0,0,0,0,0,6,0,6,1,5,0.8,30,21 -1056,DevilsDen,Immediate,Role-assignment,Test,1,07:30pm,2,0,0.6,"there was lady in a red robe. a tall man in black popped out and scared me he was hidden in black fog I could not see him at all. had to walk down a few stairs, the small lady at the front was bald and tiny. there were showers possibly. ",1,79.1,51.75,46.57,4.72,0,0,0,0,7.84,1.96,5.88,0,0,1.96,1.96,0,1.96,0,1.96,0,1.96,1.96,0,1.96,1.96,0,0,0,9.8,3.92,0,3.92,0,0,0,9.8,0,0,3.92,5.88,3.92,0,0,0,0,0,0,1.96,0,3.92,27.45,0,1.96,15.69,9.8,0,0,3.92,5.88,NA,39.31,14.8,NA,4,3,1,3,4,1,65.91,25,0,100,0,30.3,66.67,100,0,66.67,50,50,50,50,50,4,0,0,6,0,0,0,0,1,0,0,0,0,10,1,11,0.909090909,10,0.6,51,21 -1056,DevilsDen,Delay,Role-assignment,Test,1,07:30pm,2,1,0.6,more loud noises occurred than in the rest of the houses. more staff and therefore more jump scares. walked through a fog tunnel hallway i think. smelled so bad and made me feel sticky. i think also in this house was the strobe light hallway where you felt like you were entering the afterlife. walked through all the jail houses and staff was standing hiding in the fog/strobe lights and scared us really good. potentially body parts hanging from the ceiling. ,1,75.84,54.61,91.29,1,1.22,1.22,0,0,15.85,1.22,14.63,6.1,1.22,0,1.22,1.22,3.66,0,6.1,1.22,4.88,4.88,1.22,3.66,2.44,0,0,0,6.1,0,0,0,0,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,1.22,0,4.88,21.95,0,4.88,7.32,3.66,2.44,3.66,0,6.1,50.2,72.49,54.04,24.07,1,3,3,2,1,4,100,0,4.17,75,39.58,0,36.78,100,41.38,41.38,31.37,62.75,100,0,33.33,3,2,0,5,1,0,0,0,1,0,0,0,0,11,1,12,0.916666667,10,0.5,82,21 -1056,GhostlyGrounds,Delay,Role-assignment,Share,1,07:30pm,2,0,0.4,there was mist that you had to walk to and made you feel sticky. loud air they went off by your feet as you walked by. chains hanging. ,1,46.07,99,72.58,20.23,0,0,0,0,7.14,0,7.14,3.57,3.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.86,0,0,0,0,0,0,17.86,0,0,0,0,7.14,0,0,0,0,0,0,0,0,3.57,28.57,0,10.71,7.14,0,3.57,7.14,7.14,3.57,-14.51,-16.72,-57.75,30.94,4,1,3,1,3,1,0,55.56,0,100,33.33,100,25,0,5,5,0,0,100,0,0,2,0,0,5,0,0,0,0,0,0,0,0,0,7,0,7,1,7,0.714285714,28,21 -1057,Infirmary,Immediate,Role-assignment,Baseline,1,07:30pm,2,0,0.6,"started with clowns and neon colored paint +1056,Infirmary,Delay,Goal-assigned,Baseline,1,07:30pm,1,0,0.4,lady on stilts as you entered the haunted house i think. had to put on 3d glasses. walked through a hallway with neon designs painted all of the ways. neon paint all over. walked into a neon room with staff wearing matching neon costumes so they could jump out and scare you since they blended in. things hanging from the ceiling. walked on a bridge to get between 2 of the rooms i think. ,1,99,83.39,87,2.35,0,0,0,0,8.11,2.7,5.41,2.7,1.35,1.35,0,0,0,0,2.7,0,2.7,1.35,0,1.35,1.35,0,0,0,8.11,1.35,0,1.35,0,0,0,8.11,0,0,1.35,0,2.7,0,1.35,0,0,0,0,0,0,2.7,18.92,0,8.11,10.81,0,0,0,4.05,2.7,-0.72,47.96,2.63,-52.76,5,4,5,3,2,2,41.18,41.18,0,41.18,100,40,0,20,100,1.43,93.33,0,0,93.33,100,3,3,0,5,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.454545455,74,21 +1056,Asylum,Immediate,Goal-assigned,Baseline,1,07:30pm,1,0,0.5,"there was a skull with teeth in its head. there was doctors, there was really short actors, there was air that shot out by yout feet scare you. people yelling. there possibly was a guy who had a phone up against a skulls head amd was pretending like it was talking.",1,46.7,82.38,46.57,4.72,0,0,0,0,7.84,0,7.84,0,0,0,1.96,1.96,1.96,0,1.96,0,1.96,1.96,0,1.96,1.96,0,0,0,13.73,5.88,0,0,0,0,5.88,7.84,0,0,0,1.96,0,0,0,0,0,0,0,0,0,5.88,17.65,0,0,15.69,0,1.96,0,0,5.88,-7.63,45.48,-13.05,-55.32,4,2,5,2,3,1,68.18,0,50,100,25,63.64,100,0,25,25,0,0,0,0,100,1,0,0,7,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.875,51,21 +1056,Asylum,Delay,Goal-assigned,Baseline,1,07:30pm,1,1,0.25,"looked like great gatsby inspired. film set and director chair we had to walk through. very dark. not many staff members, making it less scary. woman dressed in bloody dress",1,77.34,89.5,19.26,20.23,10,6.67,0,3.33,10,0,10,3.33,3.33,0,0,0,3.33,0,13.33,6.67,6.67,6.67,3.33,3.33,3.33,0,0,3.33,16.67,0,0,0,0,0,0,16.67,0,0,3.33,0,6.67,0,0,3.33,0,0,0,0,3.33,6.67,13.33,0,3.33,3.33,6.67,0,0,10,10,-3.32,-9.34,53.1,-53.71,3,2,1,1,1,2,0,0,100,0,50,0,100,66.67,33.33,0,100,0,0,0,0,1,0,0,4,1,0,0,0,0,0,0,0,0,6,0,6,1,5,0.8,30,21 +1056,DevilsDen,Immediate,Goal-assigned,Test,1,07:30pm,2,0,0.6,"there was lady in a red robe. a tall man in black popped out and scared me he was hidden in black fog I could not see him at all. had to walk down a few stairs, the small lady at the front was bald and tiny. there were showers possibly. ",1,79.1,51.75,46.57,4.72,0,0,0,0,7.84,1.96,5.88,0,0,1.96,1.96,0,1.96,0,1.96,0,1.96,1.96,0,1.96,1.96,0,0,0,9.8,3.92,0,3.92,0,0,0,9.8,0,0,3.92,5.88,3.92,0,0,0,0,0,0,1.96,0,3.92,27.45,0,1.96,15.69,9.8,0,0,3.92,5.88,NA,39.31,14.8,NA,4,3,1,3,4,1,65.91,25,0,100,0,30.3,66.67,100,0,66.67,50,50,50,50,50,4,0,0,6,0,0,0,0,1,0,0,0,0,10,1,11,0.909090909,10,0.6,51,21 +1056,DevilsDen,Delay,Goal-assigned,Test,1,07:30pm,2,1,0.6,more loud noises occurred than in the rest of the houses. more staff and therefore more jump scares. walked through a fog tunnel hallway i think. smelled so bad and made me feel sticky. i think also in this house was the strobe light hallway where you felt like you were entering the afterlife. walked through all the jail houses and staff was standing hiding in the fog/strobe lights and scared us really good. potentially body parts hanging from the ceiling. ,1,75.84,54.61,91.29,1,1.22,1.22,0,0,15.85,1.22,14.63,6.1,1.22,0,1.22,1.22,3.66,0,6.1,1.22,4.88,4.88,1.22,3.66,2.44,0,0,0,6.1,0,0,0,0,0,0,6.1,0,0,0,0,0,0,0,0,0,0,0,1.22,0,4.88,21.95,0,4.88,7.32,3.66,2.44,3.66,0,6.1,50.2,72.49,54.04,24.07,1,3,3,2,1,4,100,0,4.17,75,39.58,0,36.78,100,41.38,41.38,31.37,62.75,100,0,33.33,3,2,0,5,1,0,0,0,1,0,0,0,0,11,1,12,0.916666667,10,0.5,82,21 +1056,GhostlyGrounds,Delay,Goal-assigned,Share,1,07:30pm,2,0,0.4,there was mist that you had to walk to and made you feel sticky. loud air they went off by your feet as you walked by. chains hanging. ,1,46.07,99,72.58,20.23,0,0,0,0,7.14,0,7.14,3.57,3.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.86,0,0,0,0,0,0,17.86,0,0,0,0,7.14,0,0,0,0,0,0,0,0,3.57,28.57,0,10.71,7.14,0,3.57,7.14,7.14,3.57,-14.51,-16.72,-57.75,30.94,4,1,3,1,3,1,0,55.56,0,100,33.33,100,25,0,5,5,0,0,100,0,0,2,0,0,5,0,0,0,0,0,0,0,0,0,7,0,7,1,7,0.714285714,28,21 +1057,Infirmary,Immediate,Goal-assigned,Baseline,1,07:30pm,2,0,0.6,"started with clowns and neon colored paint the workers gave us 3D glasses and w e went over a bridge with spinning walls that made you feel disoriented Then we paused at an outside check point where they told us to remove the 3D glasses and put them into a box We continued our way through the building with similar neon colored paint, actors wearing clown suits, and hanging bridges. There was also actors on elevated boxes wearing 60s style dresses, dancing. ",1,83.6,99,75.67,20.23,7.32,6.1,0,1.22,3.66,0,3.66,1.22,1.22,0,0,0,1.22,0,0,0,0,0,0,0,0,0,0,0,17.07,3.66,0,0,0,0,1.22,13.41,0,0,0,0,0,0,0,0,0,1.22,0,0,0,2.44,20.73,1.22,4.88,10.98,2.44,0,1.22,1.22,2.44,4.88,-9.59,14.72,9.51,2,3,2,5,4,1,18.99,100,64.56,43.04,0,27.45,58.82,100,0,66.67,0,100,0,0,53.13,5,1,0,9,0,0,0,0,0,0,0,0,0,15,0,15,1,15,0.6,82,19 -1057,Infirmary,Delay,Role-assignment,Baseline,1,07:30pm,2,1,0.4,"Infirmary was the first event of the night. It started by going into an art studio w/ neon lights and one actor painting on the canvas. Then we walked into a room with two gogo dancers on black boxes wearing black and white dresses and men in clown makeup. There were neon lights and colors. Then they gave us 3D glasses to wear and we walked through a tunnel with moving walls that made you dizzy. Then we continued to walk through neon colored rooms with actors wearing bright colors and clown makeup. At one point we walked over a snake bridge, but I am unsure at what point we did that. At the end of the attraction there were two more gogo dancers on black boxes wearing black and white polka dot dresses. ",1,87.33,96.16,48.48,30.38,4.48,4.48,0,0,2.24,0,2.24,0,0.75,0,0.75,0,0.75,0,0.75,0.75,0,0,0,0,0,0,0,0,10.45,0.75,0,0,0,0,0,9.7,0,0,0,0.75,0,0,0,0,0,0,0,0,0,1.49,20.9,0,4.48,6.72,8.96,0,0.75,0,1.49,56.23,83.54,54.2,30.94,1,3,4,2,1,1,100,0,0,33.33,6.41,0,40,100,40,44.62,0,0,0,100,0,3,4,0,11,0,0,0,0,0,0,1,0,1,18,2,20,0.9,18,0.611111111,134,19 -1057,Asylum,Delay,Role-assignment,Baseline,1,07:30pm,1,0,1,"This event began with man in a room with a type writer, lip syncing the words to a monologue about an actor/play write. The next room had a woman with a long red robe, startling people by singing very loudly. She would walk between rooms by a trick door disguised as a vanity table. This attraction also had a dentist with a power drill standing by an old school dental chair. One actor was also standing behind a concierge desk with a land line, talking to a skull. ",1,99,77.75,33.23,55.18,1.12,0,0,1.12,1.12,0,1.12,0,0,1.12,0,0,0,0,3.37,2.25,0,1.12,0,0,0,0,0,0,12.36,5.62,0,0,0,1.12,3.37,6.74,0,0,2.25,1.12,0,0,0,0,0,0,0,0,1.12,2.25,17.98,0,1.12,13.48,1.12,2.25,0,0,3.37,56.83,90.39,51.2,28.89,1,3,5,4,1,1,100,33.33,33.33,0,45.1,0,0,100,100,55.88,0,0,94.44,94.44,100,1,2,0,8,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.727272727,89,19 -1057,DevilsDen,Delay,Role-assignment,Test,1,07:30pm,3,0,0.6,"Before even entering the Devil's Den, there was an actress controlling the lines who put us into height order (shortest to tallest) before walking through. In this attraction, there were long dark hallways with a red hue and a bald actor with a hatchet who would run up and scare you. The walls were often lined with bloody limbs. Their were actors in red jump suits that would walk up behind you and scare you. ",1,80.25,99,90.46,1,4,1.33,0,2.67,5.33,0,5.33,0,1.33,2.67,1.33,0,0,0,4,0,4,2.67,0,2.67,2.67,0,0,1.33,13.33,0,0,0,0,0,0,13.33,0,0,1.33,0,0,0,0,0,0,0,0,0,0,1.33,29.33,0,8,16,5.33,0,0,0,1.33,NA,25.57,-3.92,NA,2,4,1,4,3,1,50,100,100,0,0,50,50,0,100,100,50,50,50,50,50,5,0,0,7,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.583333333,75,19 -1057,GhostlyGrounds,Immediate,Role-assignment,Share,1,07:30pm,2,0,0.6," Jail cells covered in vines and skulls on the floor. +1057,Infirmary,Delay,Goal-assigned,Baseline,1,07:30pm,2,1,0.4,"Infirmary was the first event of the night. It started by going into an art studio w/ neon lights and one actor painting on the canvas. Then we walked into a room with two gogo dancers on black boxes wearing black and white dresses and men in clown makeup. There were neon lights and colors. Then they gave us 3D glasses to wear and we walked through a tunnel with moving walls that made you dizzy. Then we continued to walk through neon colored rooms with actors wearing bright colors and clown makeup. At one point we walked over a snake bridge, but I am unsure at what point we did that. At the end of the attraction there were two more gogo dancers on black boxes wearing black and white polka dot dresses. ",1,87.33,96.16,48.48,30.38,4.48,4.48,0,0,2.24,0,2.24,0,0.75,0,0.75,0,0.75,0,0.75,0.75,0,0,0,0,0,0,0,0,10.45,0.75,0,0,0,0,0,9.7,0,0,0,0.75,0,0,0,0,0,0,0,0,0,1.49,20.9,0,4.48,6.72,8.96,0,0.75,0,1.49,56.23,83.54,54.2,30.94,1,3,4,2,1,1,100,0,0,33.33,6.41,0,40,100,40,44.62,0,0,0,100,0,3,4,0,11,0,0,0,0,0,0,1,0,1,18,2,20,0.9,18,0.611111111,134,19 +1057,Asylum,Delay,Goal-assigned,Baseline,1,07:30pm,1,0,1,"This event began with man in a room with a type writer, lip syncing the words to a monologue about an actor/play write. The next room had a woman with a long red robe, startling people by singing very loudly. She would walk between rooms by a trick door disguised as a vanity table. This attraction also had a dentist with a power drill standing by an old school dental chair. One actor was also standing behind a concierge desk with a land line, talking to a skull. ",1,99,77.75,33.23,55.18,1.12,0,0,1.12,1.12,0,1.12,0,0,1.12,0,0,0,0,3.37,2.25,0,1.12,0,0,0,0,0,0,12.36,5.62,0,0,0,1.12,3.37,6.74,0,0,2.25,1.12,0,0,0,0,0,0,0,0,1.12,2.25,17.98,0,1.12,13.48,1.12,2.25,0,0,3.37,56.83,90.39,51.2,28.89,1,3,5,4,1,1,100,33.33,33.33,0,45.1,0,0,100,100,55.88,0,0,94.44,94.44,100,1,2,0,8,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.727272727,89,19 +1057,DevilsDen,Delay,Goal-assigned,Test,1,07:30pm,3,0,0.6,"Before even entering the Devil's Den, there was an actress controlling the lines who put us into height order (shortest to tallest) before walking through. In this attraction, there were long dark hallways with a red hue and a bald actor with a hatchet who would run up and scare you. The walls were often lined with bloody limbs. Their were actors in red jump suits that would walk up behind you and scare you. ",1,80.25,99,90.46,1,4,1.33,0,2.67,5.33,0,5.33,0,1.33,2.67,1.33,0,0,0,4,0,4,2.67,0,2.67,2.67,0,0,1.33,13.33,0,0,0,0,0,0,13.33,0,0,1.33,0,0,0,0,0,0,0,0,0,0,1.33,29.33,0,8,16,5.33,0,0,0,1.33,NA,25.57,-3.92,NA,2,4,1,4,3,1,50,100,100,0,0,50,50,0,100,100,50,50,50,50,50,5,0,0,7,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.583333333,75,19 +1057,GhostlyGrounds,Immediate,Goal-assigned,Share,1,07:30pm,2,0,0.6," Jail cells covered in vines and skulls on the floor. Gas tanks releasing air and imitated electrical shocks An actor with a skull mask and a black cape hiding in between the cells A man wearing a red jump suit and makeup growling. Decapitated arms and legs lining both sides of a wall A medal box with an animatronic inside shaking",1,99,59.57,11.41,6.23,1.64,0,1.64,0,0,0,0,0,0,0,0,0,0,0,1.64,0,1.64,0,0,0,0,0,0,0,3.28,0,0,0,0,0,0,3.28,0,0,0,1.64,0,0,0,0,0,0,1.64,1.64,0,0,18.03,0,1.64,9.84,4.92,1.64,0,0,3.28,NA,25.22,12.45,NA,3,2,1,4,3,1,46.15,50,100,0,100,46.15,100,0,100,0,50,50,50,50,50,0,0,0,14,0,0,0,0,0,0,0,0,0,14,0,14,1,14,1,62,19 -1057,GhostlyGrounds,Delay,Role-assignment,Share,1,07:30pm,2,1,0.6,"This attraction started with our group walking onto a bus. In the bus their were dolls and mannequins sitting in the seats. The bus was also filled with fog. Towards the end of the bus was an actor sitting still waiting for us to approach so he could jump up an scare us. After we got off the bus, there were jail cells with foliage and dirt covering them with skulls and debris on the ground around them. There were actors in black capes with white masks positioned around the cells and bars. There was also a large metal box with an animatronic figure inside, thrashing violently. ",1,89.52,96.84,60.78,5.11,3.74,3.74,0,0,0.93,0,0.93,0,0,0.93,0,0,0,0,1.87,0,1.87,1.87,0,1.87,0.93,0.93,0,0,11.21,0.93,0,0,0.93,0,0,10.28,0,0,0,0.93,0,0,0.93,0,0.93,0,0,0,0,0.93,20.56,0,2.8,14.95,2.8,0,0,1.86,0.93,13.49,13.67,34.88,-8.06,2,3,5,3,5,1,26.32,100,0,0,0,25.76,25.76,100,66.67,0,0,95.45,0,0,100,3,1,0,14,0,0,0,0,0,0,0,0,0,18,0,18,1,18,0.777777778,107,19 -1058,Infirmary,Delay,Role-assignment,Baseline,1,07:30pm,2,0,0.6,"Right before we entered there were two characters standing on platforms with masks on. At some point there was a spinning room. The exhibit was a little overwhelming sensory wise, and merged together a lot. But it was pretty much a ton of neon colors on the walls and on the character’s clothing and masks. At one point I remember spiders? ",1,91.61,30.91,61.1,20.23,3.28,3.28,0,0,6.56,0,6.56,1.64,0,0,1.64,0,3.28,1.64,3.28,1.64,1.64,1.64,0,1.64,1.64,0,0,0,1.64,0,0,0,0,0,0,1.64,0,0,0,0,0,0,0,0,0,0,0,0,0,3.28,13.11,0,3.28,8.2,1.64,0,0,0,3.28,12.08,11.38,14.11,10.73,2,2,3,3,4,1,38.46,100,0,100,50,38.46,100,50,0,0,0,0,100,0,50,1,1,0,4,2,0,0,0,0,0,0,0,0,8,0,8,1,6,0.666666667,62,21 -1058,Asylum,Immediate,Role-assignment,Baseline,1,07:30pm,2,0,0.75,"Opera singer in a red dress in her room, creepy dentist with a skull of teeth on a dentist chair, a man stroking a skull, had an asylum vibe. Lots of grey lighting and mist. There was dark figure that creeped low and the stood up in peoples faces all of a sudden. ",1,99,72.6,29.13,1,0,0,0,0,1.89,1.89,0,0,0,0,0,0,0,0,3.77,0,3.77,3.77,0,3.77,3.77,0,0,0,5.66,0,0,0,0,0,0,5.66,0,0,1.89,1.89,0,0,0,0,0,0,0,0,0,1.89,24.53,0,0,15.09,7.55,0,1.89,0,1.89,NA,32.52,16.29,NA,2,4,1,4,2,1,50,100,50,0,91.67,18.18,0,18.18,100,20,50,50,50,50,50,1,0,0,8,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.888888889,53,21 -1058,Asylum,Delay,Role-assignment,Baseline,1,07:30pm,2,1,0.5,"Woman in red dress in the bedroom, dentist chair with skull of teeth, dressing room mirror, man stroking skull, characters in period clothing directing us to the next exhibit, detective desk or something (someone commented that it looked like al capone’s cell or something)",1,92.32,86.82,50.45,20.23,2.27,2.27,0,0,11.36,0,11.36,0,0,0,11.36,0,4.55,0,0,0,0,0,0,0,0,0,0,0,13.64,2.27,0,0,0,0,2.27,11.36,0,0,2.27,2.27,0,0,0,0,0,0,0,0,0,2.27,15.91,0,0,9.09,4.55,0,2.27,0,2.27,NA,67.85,37.52,NA,1,4,1,4,1,1,100,66.67,100,0,0,0,0,25,100,84.38,50,50,50,50,50,2,0,0,6,0,0,0,0,0,0,0,0,2,8,2,10,0.8,8,0.75,45,21 -1058,DevilsDen,Immediate,Role-assignment,Test,1,07:30pm,4,0,0.6,"First major scare was a man standing around the corner with a chain saw, in a room that was open and dark, then came a guy with a wrench talking about surrendering our flesh to the machine (that was kind of the theme), then there was a caged in portion that had a fake limb on a table where I heard someone say ""I can smell your flesh burning"", then there was a furnace with a man continuing the theme of handing over flesh, and I think towards the end there was a small hallway where a bunch of fake limbs hanging by chains on the walls. ",1,94.61,67.44,72.99,1,1.87,0.93,0,0.93,4.67,0,4.67,0.93,0,0.93,2.8,0,0,0,3.74,0,3.74,0.93,0,0.93,0.93,0,0,0,9.35,3.74,0,0,0,1.87,1.87,5.61,0,0,0,2.8,0,0,0,0,0,0,0,0,0,0.93,17.76,0,0.93,14.02,1.87,0.93,0,0,0.93,36.68,57.28,42.96,9.8,5,3,2,3,5,1,56.06,56.06,0,33.33,100,13.64,29.55,100,50,0,0,100,0,0,52.38,2,2,0,10,0,0,0,0,0,0,0,0,1,14,1,15,0.933333333,14,0.714285714,107,21 -1058,DevilsDen,Delay,Role-assignment,Test,1,07:30pm,4,1,0.8,"It started with the character with the chainsaw, then a dark room with a character who crouched in the shadows before shooting up in guests faces, then there was a man with a wrench talking about surrendering ourselves to the machine, then at some point a table saw with an arm in it, and a fireplace made of bones with a character looming, and at some point someone asked us for our flesh to give to the machine and talked about burning flesh, and a narrow corridor had limbs hanging from chains on the walls, and it ended with the strobe light hallway.",1,99,88.69,25.92,4.8,3.88,2.91,0,0.97,1.94,0,1.94,0,0.97,0,0.97,0,0,0,1.94,0,1.94,0.97,0,0.97,0.97,0,0,0,10.68,3.88,0,0,0,0,2.91,6.8,0,0.97,0,0.97,0,0,0,0,0,0,0,0.97,0,1.94,12.62,0,0,8.74,3.88,0,0,0,2.91,NA,79.14,31.28,NA,1,4,1,4,1,1,100,45.95,72.97,0,0,0,60.61,0,100,36.36,50,50,50,50,50,2,3,0,8,0,0,0,0,0,0,0,0,0,13,0,13,1,13,0.615384615,103,21 -1058,GhostlyGrounds,Delay,Role-assignment,Share,1,07:30pm,3,0,0.6,"Started in a bus with strobe lights and Mannikins on the seats, then it let out onto a stairwell that led to an series of exhibits that had a lot of steam, metal cages and allusions to incineration. At one point we went up a stairwell that to a short second floor passage that had shifting floor panels and overlooked a narrow passage of red lights, cages, steam and gnarly looking mannikans. ",1,98.16,56.63,22.12,20.23,2.78,1.39,0,1.39,1.39,0,1.39,0,1.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.39,0,0,0,0,0,0,1.39,0,0,0,0,0,0,0,0,0,0,0,0,0,1.39,18.06,1.39,1.39,9.72,5.56,0,0,0,1.39,NA,50.17,-34.33,NA,2,1,1,5,3,1,58.82,100,44.12,22.06,0,100,46.15,0,57.69,0,50,50,50,50,50,1,1,0,11,0,0,0,0,0,0,0,1,0,13,1,14,0.928571429,13,0.846153846,72,21 -1059,Infirmary,Delay,Role-assignment,Baseline,1,07:30pm,1,0,0.6,"neon lights and painting, there were two dancers on a table moving very slowly, we had to wear glasses to shield our eyes from the neon, there was a ""bridge"" over a backdrop of nothingness that seemed to swirl around and make you feel like you were moving upside down, there was spray paint",1,75.62,98.75,86.01,20.23,3.7,3.7,0,0,5.56,0,5.56,3.7,1.85,0,1.85,0,0,0,0,0,0,0,0,0,0,0,0,0,9.26,0,0,0,0,0,0,9.26,0,0,0,0,3.7,0,0,0,0,0,0,0,0,5.56,24.07,0,7.41,11.11,3.7,0,1.85,3.7,5.56,9.24,1.25,-4.49,30.94,3,5,4,5,3,1,23.08,23.08,100,48.72,0,41.67,83.33,0,41.67,100,0,0,0,100,0,1,1,0,6,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.75,54,22 -1059,Asylum,Immediate,Role-assignment,Baseline,1,07:30pm,1,0,0.25,"Black and White movie, Director, Actress, Old timey, Woman in a Dress, Man near entrance mouthing the words played on the audio clip, Dressing room for the actress, The word ""Diva"" in the actresss room, not that scary, Actress following the man in the group in front of us, the man at the front of the attraction had formal wear, He was wearing a clear plastic mask",1,99,98.61,48.48,20.23,2.99,1.49,0,1.49,1.49,0,1.49,0,0,0,0,0,1.49,0,2.99,1.49,1.49,1.49,0,1.49,1.49,0,0,0,22.39,4.48,0,0,0,0,2.99,17.91,0,0,7.46,5.97,0,0,0,0,0,0,0,0,0,0,19.4,0,0,14.93,2.99,1.49,0,0,0,NA,-22.18,-4.06,NA,4,5,1,1,2,1,0,44.07,28.81,100,5.08,30.95,0,66.67,33.33,100,50,50,50,50,50,1,1,0,9,1,0,0,0,0,0,0,0,0,12,0,12,1,11,0.818181818,67,22 -1059,Asylum,Delay,Role-assignment,Baseline,1,07:30pm,1,1,0.5,"Movie set, antique feeling, black and white film, monochrome, man in the first room mouthing the audio that was playing and he seemed to be at a desk, there was a room with an actress/diva who had a dress on, there was a dressing room for the diva, there was vanity (mirror and seat in front of the mirror), one of the actors had a clear mask on, there was a box right outside of Asylum in which we were supposed to put our glasses that was given for the previous room",1,93.27,84.86,34.72,35.29,2.13,2.13,0,0,5.32,0,5.32,2.13,0,2.13,1.06,0,1.06,0,1.06,1.06,0,0,0,0,0,0,0,0,8.51,1.06,0,0,0,1.06,0,7.45,0,0,1.06,2.13,0,0,1.06,0,0,0,0,0,0,2.13,19.15,0,1.06,13.83,2.13,1.06,1.06,1.06,2.13,-18.57,-30.03,25.65,-51.33,4,2,5,1,1,3,0,50,50,100,20.37,0,100,50,0,83.33,94.74,94.74,0,0,100,1,1,0,10,0,0,0,0,0,0,0,1,0,12,1,13,0.923076923,12,0.833333333,94,22 -1059,DevilsDen,Delay,Role-assignment,Test,1,07:30pm,3,0,0.6,"lot of limbs seperated from body, there was a man with a chainsaw, the actors were very chaotic, the set had a very industrial feel, the setting seemed to be like a warehouse, the workers task seemed to be cutting up dead bodies, there was a lot of machinery",1,99,74.89,24.32,20.23,2.04,0,0,2.04,6.12,0,6.12,6.12,0,0,4.08,0,0,0,0,0,0,0,0,0,0,0,0,0,6.12,0,0,0,0,0,0,6.12,0,0,0,2.04,0,0,0,0,0,0,0,0,0,4.08,10.2,0,0,8.16,0,0,2.04,0,4.08,14.2,-10.22,-0.78,53.59,2,3,3,1,4,1,0,100,0,0,33.33,50,50,100,0,61.11,0,0,100,50,0,0,0,0,7,0,0,0,0,0,0,0,0,0,7,0,7,1,7,1,49,22 -1059,GhostlyGrounds,Immediate,Role-assignment,Share,1,07:30pm,3,0,1,"School bus with dead bodies, People tied hanging from the ceiling upside down, rattling box hanging from the ceiling that seemed like it had a person inside, there was more people getting in my face than at other sections, the actors had interesting patterns drawn on their faces, one of the actors said ""youre not scared are you"" and got in my face, the school bus with the dead bodies had only one or two live actors, there was some sections where there was props that looked like rotted bodies moving (they were behind a cell/cage), a couple of the actors made interesting growl noises, this section seemed to have a lot of rotting flesh",1,89.52,60.57,67.94,2.64,0,0,0,0,6.03,0,6.03,1.72,0.86,0,2.59,0,3.45,0,6.03,1.72,4.31,0.86,0,0.86,0.86,0,0,0,8.62,0.86,0,0,0,0,0.86,7.76,0,0,0,0,0,0,1.72,0,0,0,0,0,1.72,5.17,16.38,0,0.86,12.93,0.86,1.72,0,1.72,6.89,12.93,48.5,39.64,-49.36,5,4,2,4,5,3,71.88,87.5,75,0,100,8.75,40,40,100,0,95.83,100,0,0,100,2,1,0,13,0,0,0,0,0,0,0,1,0,16,1,17,0.941176471,16,0.8125,116,22 -1059,GhostlyGrounds,Delay,Role-assignment,Share,1,07:30pm,3,1,0.6,"started off with a school bus full of corpses, the fake corpses were spaced out pretty evenly throughout the school bus and were one to a seat, there was one live actress inside the bus that seemed to be wearing a psych gown and was standing on the seat, there was another live actor at the end of the school bus when we walked out, there were dead bodies hanging from the ceiling, there was also a box hanging from the ceiling that was banging and seemed to have someone inside of it but you couldnt see into it because the window was frosted, there were different actors standing throughout the section that would yell and get in your face, there was a jail cell with two fake people that looked kind of like corpses but they were automated to move, there were some narrow passage ways",1,77.02,64.19,81.84,7.83,0.68,0.68,0,0,8.84,0,8.84,1.36,0.68,1.36,4.08,0,2.72,0,1.36,0,1.36,0,0,0,0,0,0,0,7.48,2.04,0,0,0,1.36,0.68,5.44,0,0,0.68,0,0,0,0.68,0,0.68,0,0,0,0,6.8,21.09,0,1.36,17.01,1.36,1.36,0,1.36,6.8,60.28,74.9,76.3,29.65,1,4,5,5,1,1,100,100,60,60,0,0,23.67,75.51,100,63.27,0,32.22,66.67,66.67,100,2,1,0,16,0,0,0,0,0,0,0,0,0,19,0,19,1,19,0.842105263,147,22 -1060,Infirmary,Delay,Role-assignment,Baseline,1,08:30pm,1,0,0.2,"i think Infirmary was the first one in the tour. it really wasnt scary and just had a bunch of neon lights everywhere. i remember walking thru a walkway where you couldnt see below your waist due to smoke, which was cool. from there it was just walking through hallways where the actors got up in your face but couldnt touch you which was kinda annoying and defeated the scary parts of it. there were dancers on high platforms towards the end. it was probably the least scary as the sections went",1,47.48,40.06,92.58,1.34,1.09,0,0,1.09,14.13,1.09,13.04,2.17,0,2.17,2.17,1.09,5.43,1.09,5.43,1.09,4.35,4.35,0,4.35,3.26,1.09,0,0,7.61,1.09,0,0,1.09,0,0,6.52,0,0,0,0,0,0,1.09,0,0,0,0,0,0,2.17,20.65,0,3.26,13.04,2.17,0,2.17,1.09,2.17,9.91,28.77,0.3,0.65,5,4,4,4,5,3,44.74,68.42,75,0,100,71.58,33.68,60,100,0,47.37,47.37,0,100,50,2,0,0,2,2,0,1,0,0,3,1,0,0,6,5,11,0.545454545,4,0.5,92,18 -1060,Asylum,Immediate,Role-assignment,Baseline,1,08:30pm,1,0,0.25,there were epeople with tufstuff trying to jumpscare a bunch of people. I think there were a bunch of metal detectors and people in your face. I hardly remember specifics but I remember flashing lights and actors jumping out at you. it was pretty fun I ended up laughing after each jump scare. I think being able to know that they woud not be able to actually harm me made it less scary as it gave me a bigger piece of mind. I think we walked thru it a bit fast and missed some of the jump scares because of it. it wasnt super scary in the aspect of fear just jumpscare,1,56.86,17.77,94.2,5.5,3.57,0.89,2.68,0,14.29,0,14.29,5.36,1.79,0.89,1.79,0.89,2.68,1.79,8.93,3.57,5.36,6.25,1.79,4.46,4.46,0,0,0,7.14,2.68,0,0,0,0,0.89,4.46,0,0,0,0,0,0,0,0.89,0,0,0,0.89,0,7.14,12.5,0.89,4.46,5.36,1.79,0,0,0.89,8.03,57.92,74.46,39.63,59.68,5,2,2,2,1,1,91.67,0,36.11,68.06,100,0,100,32.95,32.95,32.95,0,100,71.21,1.52,1.52,5,0,0,4,3,0,0,0,0,1,0,0,1,12,2,14,0.857142857,9,0.444444444,112,18 -1060,Asylum,Delay,Role-assignment,Baseline,1,08:30pm,1,1,0.5,"Asylum was like the Devil's Den or something, it had a bunch of hallways and was a little scary but nothing too crazy. there was a guy with an axe at the beginning that was really good at not hitting people in the face but getting really close. he was an inch or so from my face which caught me off guard. there was also a guy with a chainsaw at some point after walking down a ramp early in the part of the house. towards the end of the house there was this hallway with flashing lights and actors walking down it. i wasnt paying attention and one actor got in my face and jump scared me. i was freaking out and he rubbed it in my face saying ""im always there"" and stuff like that. i could tell it was his best jump scare of the night.",1,55.7,5.98,90.46,2.44,1.33,0,0.67,0.67,9.33,1.33,8,0,0,0.67,2,1.33,5.33,0,4.67,0.67,3.33,3.33,0.67,2,2,0,0,0,6,1.33,0,0,0,0,1.33,4.67,0,0,0,3.33,0,0,2.67,0,0,0,0,0,0,6,15.33,0.67,3.33,9.33,1.33,0,0.67,2.67,6,10.14,11.12,-19.81,39.12,3,5,1,4,3,5,27.27,27.27,100,0,0,63.64,63.64,0,63.64,100,100,100,100,100,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,18 -1060,DevilsDen,Delay,Role-assignment,Test,1,08:30pm,2,0,0.8,Devil's Den was one of the better parts of the haunted house. this was the one with the guy with an axe and a chainsaw that was really good. we passed those guys adn then there was a room with an elevated elevator kind of thing that youd walk through and there was an actor on the other side of the elevator wiating to jump scare you. frmo there you walked thru more rooms with actors with different mechanical weapons to scare you. there was also some open electricity stuff on the walls that was scary. ,1,84.59,92.97,68.87,4.22,2.08,1.04,1.04,0,8.33,2.08,6.25,0,0,0,2.08,1.04,3.13,0,6.25,2.08,4.17,4.17,1.04,3.13,3.13,0,0,0,9.38,0,0,0,0,0,0,9.38,0,0,0,2.08,0,0,0,0,0,0,0,0,0,3.13,16.67,0,4.17,12.5,0,0,0,0,3.13,34.65,63.44,29.78,10.73,1,2,3,2,1,1,100,0,65.22,65.22,0,0,100,67.48,2.44,83.74,0,0,100,0,50,5,1,0,3,2,0,0,0,0,1,0,0,0,11,1,12,0.916666667,9,0.333333333,96,18 -1060,GhostlyGrounds,Immediate,Role-assignment,Share,1,08:30pm,3,0,0.6,"we went thru the bus, there was some dummys on the bus and one real actor tht would jump out at people when they walked past. there was some flashing lights, which scare me the most but this time it wasnt too bad. then we got out of the bus and walked into the building where the real scares were. we walked thru a bunch of hallways with actors going crazy jumping out at people and staring into their faces. there were cages of actors but the actors would jum p out from the cages to get in your face, they would also wait at corners to jump out at you. sometimes they were really good at it, but when the person in front of you got scared it kinda ruind the jumpscae since you knew it was there already. we walked up some stairs and there were some more actors and then it kinda just ended. it was probably the best of the 4 sections that we toured. it was definitely the longest and had the most actors in it. the flashing lights tube towards the end was awesome and an actor got in my face when I wasnt looking and got me pretty good. after that thats about it. im trying to remember more but I think at this point my mind is just mixing the last two sections together so I really dont know anymore. Ghostly Grounds was a fun one though for sure.",1,39.94,66.35,91.29,25.48,3.25,2.44,0.81,0,11.38,0,11.38,1.63,0.41,1.63,2.03,2.03,3.25,0.41,4.07,2.03,1.63,3.66,1.63,1.63,1.22,0,0,0,8.54,0,0,0,0,0,0,8.54,0,0,0,0,0,0,2.03,0,0,0,0,0,0,7.32,15.04,0,3.66,9.35,2.03,0,0,2.03,7.32,0.37,5.98,-13.6,8.74,2,3,3,5,2,1,28,100,40,40,0,79.83,0,100,75,91.67,0,0.5,100,50.25,100,15,1,0,5,6,0,0,0,0,1,2,0,3,27,6,33,0.818181818,21,0.238095238,246,18 -1060,GhostlyGrounds,Delay,Role-assignment,Share,1,08:30pm,3,1,0.2,Ghostly Grounds was one of the last parts of the haunted house and there were lots of things about it. it was just a walk through tour but wasnt super scary. I think it started with a bus that had some fake people dummies and some actors trying to blend in to get a jump scare on us. it didnt really scare me because i saw them move beforehand and could predict what was going to happen. from then we left the bus and went into a building. in the building we walked through a bunch of rooms with actors in them all doing different things. i think there was a doctors office and a bunch of cages in this part of the haunted house. it was super cold that day so we walked fast through the house. we went up some stairs and there was a long hallway with moveable floorboards which was kinda cool. we walked thru the caged hallway and then the thing ended,1,66.76,50.83,86.1,5.4,4.22,3.61,0.6,0,9.64,0.6,9.04,1.2,0.6,1.2,0.6,0.6,4.22,0,5.42,1.81,3.61,1.81,0,1.81,1.81,0,0,0,6.63,0.6,0,0,0,0.6,0,6.02,0,0,0,0,0,0,0.6,0,0,0,0,0,0,3.01,15.06,0,5.42,7.83,0.6,0,1.2,0.6,3.01,-15.53,14.65,-7.52,-53.71,3,4,1,4,3,2,29.41,16.67,100,0,33.33,76.96,83.33,0,100,50,100,0,0,0,0,8,2,0,7,4,0,0,0,1,0,1,0,0,21,2,23,0.913043478,17,0.411764706,166,18 +1057,GhostlyGrounds,Delay,Goal-assigned,Share,1,07:30pm,2,1,0.6,"This attraction started with our group walking onto a bus. In the bus their were dolls and mannequins sitting in the seats. The bus was also filled with fog. Towards the end of the bus was an actor sitting still waiting for us to approach so he could jump up an scare us. After we got off the bus, there were jail cells with foliage and dirt covering them with skulls and debris on the ground around them. There were actors in black capes with white masks positioned around the cells and bars. There was also a large metal box with an animatronic figure inside, thrashing violently. ",1,89.52,96.84,60.78,5.11,3.74,3.74,0,0,0.93,0,0.93,0,0,0.93,0,0,0,0,1.87,0,1.87,1.87,0,1.87,0.93,0.93,0,0,11.21,0.93,0,0,0.93,0,0,10.28,0,0,0,0.93,0,0,0.93,0,0.93,0,0,0,0,0.93,20.56,0,2.8,14.95,2.8,0,0,1.86,0.93,13.49,13.67,34.88,-8.06,2,3,5,3,5,1,26.32,100,0,0,0,25.76,25.76,100,66.67,0,0,95.45,0,0,100,3,1,0,14,0,0,0,0,0,0,0,0,0,18,0,18,1,18,0.777777778,107,19 +1058,Infirmary,Delay,Goal-assigned,Baseline,1,07:30pm,2,0,0.6,"Right before we entered there were two characters standing on platforms with masks on. At some point there was a spinning room. The exhibit was a little overwhelming sensory wise, and merged together a lot. But it was pretty much a ton of neon colors on the walls and on the character’s clothing and masks. At one point I remember spiders? ",1,91.61,30.91,61.1,20.23,3.28,3.28,0,0,6.56,0,6.56,1.64,0,0,1.64,0,3.28,1.64,3.28,1.64,1.64,1.64,0,1.64,1.64,0,0,0,1.64,0,0,0,0,0,0,1.64,0,0,0,0,0,0,0,0,0,0,0,0,0,3.28,13.11,0,3.28,8.2,1.64,0,0,0,3.28,12.08,11.38,14.11,10.73,2,2,3,3,4,1,38.46,100,0,100,50,38.46,100,50,0,0,0,0,100,0,50,1,1,0,4,2,0,0,0,0,0,0,0,0,8,0,8,1,6,0.666666667,62,21 +1058,Asylum,Immediate,Goal-assigned,Baseline,1,07:30pm,2,0,0.75,"Opera singer in a red dress in her room, creepy dentist with a skull of teeth on a dentist chair, a man stroking a skull, had an asylum vibe. Lots of grey lighting and mist. There was dark figure that creeped low and the stood up in peoples faces all of a sudden. ",1,99,72.6,29.13,1,0,0,0,0,1.89,1.89,0,0,0,0,0,0,0,0,3.77,0,3.77,3.77,0,3.77,3.77,0,0,0,5.66,0,0,0,0,0,0,5.66,0,0,1.89,1.89,0,0,0,0,0,0,0,0,0,1.89,24.53,0,0,15.09,7.55,0,1.89,0,1.89,NA,32.52,16.29,NA,2,4,1,4,2,1,50,100,50,0,91.67,18.18,0,18.18,100,20,50,50,50,50,50,1,0,0,8,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.888888889,53,21 +1058,Asylum,Delay,Goal-assigned,Baseline,1,07:30pm,2,1,0.5,"Woman in red dress in the bedroom, dentist chair with skull of teeth, dressing room mirror, man stroking skull, characters in period clothing directing us to the next exhibit, detective desk or something (someone commented that it looked like al capone’s cell or something)",1,92.32,86.82,50.45,20.23,2.27,2.27,0,0,11.36,0,11.36,0,0,0,11.36,0,4.55,0,0,0,0,0,0,0,0,0,0,0,13.64,2.27,0,0,0,0,2.27,11.36,0,0,2.27,2.27,0,0,0,0,0,0,0,0,0,2.27,15.91,0,0,9.09,4.55,0,2.27,0,2.27,NA,67.85,37.52,NA,1,4,1,4,1,1,100,66.67,100,0,0,0,0,25,100,84.38,50,50,50,50,50,2,0,0,6,0,0,0,0,0,0,0,0,2,8,2,10,0.8,8,0.75,45,21 +1058,DevilsDen,Immediate,Goal-assigned,Test,1,07:30pm,4,0,0.6,"First major scare was a man standing around the corner with a chain saw, in a room that was open and dark, then came a guy with a wrench talking about surrendering our flesh to the machine (that was kind of the theme), then there was a caged in portion that had a fake limb on a table where I heard someone say ""I can smell your flesh burning"", then there was a furnace with a man continuing the theme of handing over flesh, and I think towards the end there was a small hallway where a bunch of fake limbs hanging by chains on the walls. ",1,94.61,67.44,72.99,1,1.87,0.93,0,0.93,4.67,0,4.67,0.93,0,0.93,2.8,0,0,0,3.74,0,3.74,0.93,0,0.93,0.93,0,0,0,9.35,3.74,0,0,0,1.87,1.87,5.61,0,0,0,2.8,0,0,0,0,0,0,0,0,0,0.93,17.76,0,0.93,14.02,1.87,0.93,0,0,0.93,36.68,57.28,42.96,9.8,5,3,2,3,5,1,56.06,56.06,0,33.33,100,13.64,29.55,100,50,0,0,100,0,0,52.38,2,2,0,10,0,0,0,0,0,0,0,0,1,14,1,15,0.933333333,14,0.714285714,107,21 +1058,DevilsDen,Delay,Goal-assigned,Test,1,07:30pm,4,1,0.8,"It started with the character with the chainsaw, then a dark room with a character who crouched in the shadows before shooting up in guests faces, then there was a man with a wrench talking about surrendering ourselves to the machine, then at some point a table saw with an arm in it, and a fireplace made of bones with a character looming, and at some point someone asked us for our flesh to give to the machine and talked about burning flesh, and a narrow corridor had limbs hanging from chains on the walls, and it ended with the strobe light hallway.",1,99,88.69,25.92,4.8,3.88,2.91,0,0.97,1.94,0,1.94,0,0.97,0,0.97,0,0,0,1.94,0,1.94,0.97,0,0.97,0.97,0,0,0,10.68,3.88,0,0,0,0,2.91,6.8,0,0.97,0,0.97,0,0,0,0,0,0,0,0.97,0,1.94,12.62,0,0,8.74,3.88,0,0,0,2.91,NA,79.14,31.28,NA,1,4,1,4,1,1,100,45.95,72.97,0,0,0,60.61,0,100,36.36,50,50,50,50,50,2,3,0,8,0,0,0,0,0,0,0,0,0,13,0,13,1,13,0.615384615,103,21 +1058,GhostlyGrounds,Delay,Goal-assigned,Share,1,07:30pm,3,0,0.6,"Started in a bus with strobe lights and Mannikins on the seats, then it let out onto a stairwell that led to an series of exhibits that had a lot of steam, metal cages and allusions to incineration. At one point we went up a stairwell that to a short second floor passage that had shifting floor panels and overlooked a narrow passage of red lights, cages, steam and gnarly looking mannikans. ",1,98.16,56.63,22.12,20.23,2.78,1.39,0,1.39,1.39,0,1.39,0,1.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.39,0,0,0,0,0,0,1.39,0,0,0,0,0,0,0,0,0,0,0,0,0,1.39,18.06,1.39,1.39,9.72,5.56,0,0,0,1.39,NA,50.17,-34.33,NA,2,1,1,5,3,1,58.82,100,44.12,22.06,0,100,46.15,0,57.69,0,50,50,50,50,50,1,1,0,11,0,0,0,0,0,0,0,1,0,13,1,14,0.928571429,13,0.846153846,72,21 +1059,Infirmary,Delay,Goal-assigned,Baseline,1,07:30pm,1,0,0.6,"neon lights and painting, there were two dancers on a table moving very slowly, we had to wear glasses to shield our eyes from the neon, there was a ""bridge"" over a backdrop of nothingness that seemed to swirl around and make you feel like you were moving upside down, there was spray paint",1,75.62,98.75,86.01,20.23,3.7,3.7,0,0,5.56,0,5.56,3.7,1.85,0,1.85,0,0,0,0,0,0,0,0,0,0,0,0,0,9.26,0,0,0,0,0,0,9.26,0,0,0,0,3.7,0,0,0,0,0,0,0,0,5.56,24.07,0,7.41,11.11,3.7,0,1.85,3.7,5.56,9.24,1.25,-4.49,30.94,3,5,4,5,3,1,23.08,23.08,100,48.72,0,41.67,83.33,0,41.67,100,0,0,0,100,0,1,1,0,6,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.75,54,22 +1059,Asylum,Immediate,Goal-assigned,Baseline,1,07:30pm,1,0,0.25,"Black and White movie, Director, Actress, Old timey, Woman in a Dress, Man near entrance mouthing the words played on the audio clip, Dressing room for the actress, The word ""Diva"" in the actresss room, not that scary, Actress following the man in the group in front of us, the man at the front of the attraction had formal wear, He was wearing a clear plastic mask",1,99,98.61,48.48,20.23,2.99,1.49,0,1.49,1.49,0,1.49,0,0,0,0,0,1.49,0,2.99,1.49,1.49,1.49,0,1.49,1.49,0,0,0,22.39,4.48,0,0,0,0,2.99,17.91,0,0,7.46,5.97,0,0,0,0,0,0,0,0,0,0,19.4,0,0,14.93,2.99,1.49,0,0,0,NA,-22.18,-4.06,NA,4,5,1,1,2,1,0,44.07,28.81,100,5.08,30.95,0,66.67,33.33,100,50,50,50,50,50,1,1,0,9,1,0,0,0,0,0,0,0,0,12,0,12,1,11,0.818181818,67,22 +1059,Asylum,Delay,Goal-assigned,Baseline,1,07:30pm,1,1,0.5,"Movie set, antique feeling, black and white film, monochrome, man in the first room mouthing the audio that was playing and he seemed to be at a desk, there was a room with an actress/diva who had a dress on, there was a dressing room for the diva, there was vanity (mirror and seat in front of the mirror), one of the actors had a clear mask on, there was a box right outside of Asylum in which we were supposed to put our glasses that was given for the previous room",1,93.27,84.86,34.72,35.29,2.13,2.13,0,0,5.32,0,5.32,2.13,0,2.13,1.06,0,1.06,0,1.06,1.06,0,0,0,0,0,0,0,0,8.51,1.06,0,0,0,1.06,0,7.45,0,0,1.06,2.13,0,0,1.06,0,0,0,0,0,0,2.13,19.15,0,1.06,13.83,2.13,1.06,1.06,1.06,2.13,-18.57,-30.03,25.65,-51.33,4,2,5,1,1,3,0,50,50,100,20.37,0,100,50,0,83.33,94.74,94.74,0,0,100,1,1,0,10,0,0,0,0,0,0,0,1,0,12,1,13,0.923076923,12,0.833333333,94,22 +1059,DevilsDen,Delay,Goal-assigned,Test,1,07:30pm,3,0,0.6,"lot of limbs seperated from body, there was a man with a chainsaw, the actors were very chaotic, the set had a very industrial feel, the setting seemed to be like a warehouse, the workers task seemed to be cutting up dead bodies, there was a lot of machinery",1,99,74.89,24.32,20.23,2.04,0,0,2.04,6.12,0,6.12,6.12,0,0,4.08,0,0,0,0,0,0,0,0,0,0,0,0,0,6.12,0,0,0,0,0,0,6.12,0,0,0,2.04,0,0,0,0,0,0,0,0,0,4.08,10.2,0,0,8.16,0,0,2.04,0,4.08,14.2,-10.22,-0.78,53.59,2,3,3,1,4,1,0,100,0,0,33.33,50,50,100,0,61.11,0,0,100,50,0,0,0,0,7,0,0,0,0,0,0,0,0,0,7,0,7,1,7,1,49,22 +1059,GhostlyGrounds,Immediate,Goal-assigned,Share,1,07:30pm,3,0,1,"School bus with dead bodies, People tied hanging from the ceiling upside down, rattling box hanging from the ceiling that seemed like it had a person inside, there was more people getting in my face than at other sections, the actors had interesting patterns drawn on their faces, one of the actors said ""youre not scared are you"" and got in my face, the school bus with the dead bodies had only one or two live actors, there was some sections where there was props that looked like rotted bodies moving (they were behind a cell/cage), a couple of the actors made interesting growl noises, this section seemed to have a lot of rotting flesh",1,89.52,60.57,67.94,2.64,0,0,0,0,6.03,0,6.03,1.72,0.86,0,2.59,0,3.45,0,6.03,1.72,4.31,0.86,0,0.86,0.86,0,0,0,8.62,0.86,0,0,0,0,0.86,7.76,0,0,0,0,0,0,1.72,0,0,0,0,0,1.72,5.17,16.38,0,0.86,12.93,0.86,1.72,0,1.72,6.89,12.93,48.5,39.64,-49.36,5,4,2,4,5,3,71.88,87.5,75,0,100,8.75,40,40,100,0,95.83,100,0,0,100,2,1,0,13,0,0,0,0,0,0,0,1,0,16,1,17,0.941176471,16,0.8125,116,22 +1059,GhostlyGrounds,Delay,Goal-assigned,Share,1,07:30pm,3,1,0.6,"started off with a school bus full of corpses, the fake corpses were spaced out pretty evenly throughout the school bus and were one to a seat, there was one live actress inside the bus that seemed to be wearing a psych gown and was standing on the seat, there was another live actor at the end of the school bus when we walked out, there were dead bodies hanging from the ceiling, there was also a box hanging from the ceiling that was banging and seemed to have someone inside of it but you couldnt see into it because the window was frosted, there were different actors standing throughout the section that would yell and get in your face, there was a jail cell with two fake people that looked kind of like corpses but they were automated to move, there were some narrow passage ways",1,77.02,64.19,81.84,7.83,0.68,0.68,0,0,8.84,0,8.84,1.36,0.68,1.36,4.08,0,2.72,0,1.36,0,1.36,0,0,0,0,0,0,0,7.48,2.04,0,0,0,1.36,0.68,5.44,0,0,0.68,0,0,0,0.68,0,0.68,0,0,0,0,6.8,21.09,0,1.36,17.01,1.36,1.36,0,1.36,6.8,60.28,74.9,76.3,29.65,1,4,5,5,1,1,100,100,60,60,0,0,23.67,75.51,100,63.27,0,32.22,66.67,66.67,100,2,1,0,16,0,0,0,0,0,0,0,0,0,19,0,19,1,19,0.842105263,147,22 +1060,Infirmary,Delay,Goal-assigned,Baseline,1,08:30pm,1,0,0.2,"i think Infirmary was the first one in the tour. it really wasnt scary and just had a bunch of neon lights everywhere. i remember walking thru a walkway where you couldnt see below your waist due to smoke, which was cool. from there it was just walking through hallways where the actors got up in your face but couldnt touch you which was kinda annoying and defeated the scary parts of it. there were dancers on high platforms towards the end. it was probably the least scary as the sections went",1,47.48,40.06,92.58,1.34,1.09,0,0,1.09,14.13,1.09,13.04,2.17,0,2.17,2.17,1.09,5.43,1.09,5.43,1.09,4.35,4.35,0,4.35,3.26,1.09,0,0,7.61,1.09,0,0,1.09,0,0,6.52,0,0,0,0,0,0,1.09,0,0,0,0,0,0,2.17,20.65,0,3.26,13.04,2.17,0,2.17,1.09,2.17,9.91,28.77,0.3,0.65,5,4,4,4,5,3,44.74,68.42,75,0,100,71.58,33.68,60,100,0,47.37,47.37,0,100,50,2,0,0,2,2,0,1,0,0,3,1,0,0,6,5,11,0.545454545,4,0.5,92,18 +1060,Asylum,Immediate,Goal-assigned,Baseline,1,08:30pm,1,0,0.25,there were epeople with tufstuff trying to jumpscare a bunch of people. I think there were a bunch of metal detectors and people in your face. I hardly remember specifics but I remember flashing lights and actors jumping out at you. it was pretty fun I ended up laughing after each jump scare. I think being able to know that they woud not be able to actually harm me made it less scary as it gave me a bigger piece of mind. I think we walked thru it a bit fast and missed some of the jump scares because of it. it wasnt super scary in the aspect of fear just jumpscare,1,56.86,17.77,94.2,5.5,3.57,0.89,2.68,0,14.29,0,14.29,5.36,1.79,0.89,1.79,0.89,2.68,1.79,8.93,3.57,5.36,6.25,1.79,4.46,4.46,0,0,0,7.14,2.68,0,0,0,0,0.89,4.46,0,0,0,0,0,0,0,0.89,0,0,0,0.89,0,7.14,12.5,0.89,4.46,5.36,1.79,0,0,0.89,8.03,57.92,74.46,39.63,59.68,5,2,2,2,1,1,91.67,0,36.11,68.06,100,0,100,32.95,32.95,32.95,0,100,71.21,1.52,1.52,5,0,0,4,3,0,0,0,0,1,0,0,1,12,2,14,0.857142857,9,0.444444444,112,18 +1060,Asylum,Delay,Goal-assigned,Baseline,1,08:30pm,1,1,0.5,"Asylum was like the Devil's Den or something, it had a bunch of hallways and was a little scary but nothing too crazy. there was a guy with an axe at the beginning that was really good at not hitting people in the face but getting really close. he was an inch or so from my face which caught me off guard. there was also a guy with a chainsaw at some point after walking down a ramp early in the part of the house. towards the end of the house there was this hallway with flashing lights and actors walking down it. i wasnt paying attention and one actor got in my face and jump scared me. i was freaking out and he rubbed it in my face saying ""im always there"" and stuff like that. i could tell it was his best jump scare of the night.",1,55.7,5.98,90.46,2.44,1.33,0,0.67,0.67,9.33,1.33,8,0,0,0.67,2,1.33,5.33,0,4.67,0.67,3.33,3.33,0.67,2,2,0,0,0,6,1.33,0,0,0,0,1.33,4.67,0,0,0,3.33,0,0,2.67,0,0,0,0,0,0,6,15.33,0.67,3.33,9.33,1.33,0,0.67,2.67,6,10.14,11.12,-19.81,39.12,3,5,1,4,3,5,27.27,27.27,100,0,0,63.64,63.64,0,63.64,100,100,100,100,100,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,18 +1060,DevilsDen,Delay,Goal-assigned,Test,1,08:30pm,2,0,0.8,Devil's Den was one of the better parts of the haunted house. this was the one with the guy with an axe and a chainsaw that was really good. we passed those guys adn then there was a room with an elevated elevator kind of thing that youd walk through and there was an actor on the other side of the elevator wiating to jump scare you. frmo there you walked thru more rooms with actors with different mechanical weapons to scare you. there was also some open electricity stuff on the walls that was scary. ,1,84.59,92.97,68.87,4.22,2.08,1.04,1.04,0,8.33,2.08,6.25,0,0,0,2.08,1.04,3.13,0,6.25,2.08,4.17,4.17,1.04,3.13,3.13,0,0,0,9.38,0,0,0,0,0,0,9.38,0,0,0,2.08,0,0,0,0,0,0,0,0,0,3.13,16.67,0,4.17,12.5,0,0,0,0,3.13,34.65,63.44,29.78,10.73,1,2,3,2,1,1,100,0,65.22,65.22,0,0,100,67.48,2.44,83.74,0,0,100,0,50,5,1,0,3,2,0,0,0,0,1,0,0,0,11,1,12,0.916666667,9,0.333333333,96,18 +1060,GhostlyGrounds,Immediate,Goal-assigned,Share,1,08:30pm,3,0,0.6,"we went thru the bus, there was some dummys on the bus and one real actor tht would jump out at people when they walked past. there was some flashing lights, which scare me the most but this time it wasnt too bad. then we got out of the bus and walked into the building where the real scares were. we walked thru a bunch of hallways with actors going crazy jumping out at people and staring into their faces. there were cages of actors but the actors would jum p out from the cages to get in your face, they would also wait at corners to jump out at you. sometimes they were really good at it, but when the person in front of you got scared it kinda ruind the jumpscae since you knew it was there already. we walked up some stairs and there were some more actors and then it kinda just ended. it was probably the best of the 4 sections that we toured. it was definitely the longest and had the most actors in it. the flashing lights tube towards the end was awesome and an actor got in my face when I wasnt looking and got me pretty good. after that thats about it. im trying to remember more but I think at this point my mind is just mixing the last two sections together so I really dont know anymore. Ghostly Grounds was a fun one though for sure.",1,39.94,66.35,91.29,25.48,3.25,2.44,0.81,0,11.38,0,11.38,1.63,0.41,1.63,2.03,2.03,3.25,0.41,4.07,2.03,1.63,3.66,1.63,1.63,1.22,0,0,0,8.54,0,0,0,0,0,0,8.54,0,0,0,0,0,0,2.03,0,0,0,0,0,0,7.32,15.04,0,3.66,9.35,2.03,0,0,2.03,7.32,0.37,5.98,-13.6,8.74,2,3,3,5,2,1,28,100,40,40,0,79.83,0,100,75,91.67,0,0.5,100,50.25,100,15,1,0,5,6,0,0,0,0,1,2,0,3,27,6,33,0.818181818,21,0.238095238,246,18 +1060,GhostlyGrounds,Delay,Goal-assigned,Share,1,08:30pm,3,1,0.2,Ghostly Grounds was one of the last parts of the haunted house and there were lots of things about it. it was just a walk through tour but wasnt super scary. I think it started with a bus that had some fake people dummies and some actors trying to blend in to get a jump scare on us. it didnt really scare me because i saw them move beforehand and could predict what was going to happen. from then we left the bus and went into a building. in the building we walked through a bunch of rooms with actors in them all doing different things. i think there was a doctors office and a bunch of cages in this part of the haunted house. it was super cold that day so we walked fast through the house. we went up some stairs and there was a long hallway with moveable floorboards which was kinda cool. we walked thru the caged hallway and then the thing ended,1,66.76,50.83,86.1,5.4,4.22,3.61,0.6,0,9.64,0.6,9.04,1.2,0.6,1.2,0.6,0.6,4.22,0,5.42,1.81,3.61,1.81,0,1.81,1.81,0,0,0,6.63,0.6,0,0,0,0.6,0,6.02,0,0,0,0,0,0,0.6,0,0,0,0,0,0,3.01,15.06,0,5.42,7.83,0.6,0,1.2,0.6,3.01,-15.53,14.65,-7.52,-53.71,3,4,1,4,3,2,29.41,16.67,100,0,33.33,76.96,83.33,0,100,50,100,0,0,0,0,8,2,0,7,4,0,0,0,1,0,1,0,0,21,2,23,0.913043478,17,0.411764706,166,18 1061,Infirmary,Immediate,Control,Baseline,0,08:30pm,2,0,0.4,"Bright colors Actors with glow in the dark face paint what I think an LSD trip would look like @@ -555,12 +555,12 @@ boiler room part of the haunted house with one of the actors in the center next 1063,DevilsDen,Delay,Control,Baseline,0,08:30pm,1,0,0.6,It had a red theme in an industrial setting. I remember a man with a hammer. There were large machines.,1,94.88,40.06,63.35,20.23,0,0,0,0,5,0,5,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,15,0,0,10,5,0,0,0,0,2.1,16.31,-40.97,30.94,2,1,3,5,2,1,50,100,50,100,0,100,0,50,0,100,0,0,100,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,4,1,4,1,20,21 1063,GhostlyGrounds,Immediate,Control,Baseline,0,08:30pm,1,0,0.8,"Ghostly Grounds had a long walk, people yelling. Lots of cells. Sparks, a generator that said high voltage. People popping out of walls and suddenly behind you. There were bodies hanging upside down while someone walks towards us with flashing lights. ",1,85.68,94.84,99,20.23,2.5,2.5,0,0,2.5,0,2.5,0,0,0,2.5,0,0,0,0,0,0,0,0,0,0,0,0,0,12.5,5,0,0,0,0,5,7.5,0,0,0,0,0,0,0,0,0,0,0,0,0,12.5,35,0,5,22.5,5,2.5,0,0,12.5,NA,-44.53,51.48,NA,2,4,1,1,1,1,0,100,100,100,100,0,0,50,100,100,50,50,50,50,50,2,0,0,8,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.8,40,21 1063,GhostlyGrounds,Delay,Control,Baseline,0,08:30pm,1,1,0.6,"We started by entering the bus. There were many prison cells and people trying to surprise us from behind. There were moving floors, someone popping out of a wall. There was also bodies hanging upside down with the lights flickering.",1,85.68,94.84,95.54,2.86,10,5,2.5,2.5,5,0,5,0,0,2.5,2.5,0,0,0,5,0,2.5,2.5,0,0,0,0,0,0,7.5,0,0,0,0,0,0,7.5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,32.5,2.5,5,22.5,2.5,0,0,0,5,25.05,44.53,-0.33,30.94,4,3,4,2,5,1,50,0,50,100,100,75,25,100,75,0,0,0,0,100,0,2,1,0,4,0,0,0,0,0,0,0,0,0,7,0,7,1,7,0.571428571,40,21 -1064,Infirmary,Immediate,Role-assignment,Baseline,1,07:30pm,3,0,0,"Lots of art, people with white contacts and pretty dresses, 3d glasses i couldnt wear because they made my head spin, some guy saying his art will follow us wherever we go, a spinny tunnel that made me feel like i was going to fall off the bridge, small hallways, i saw this creepy spider that i thought was going to jump out at me, there were boxes of like body parts or something that the ladies were standing on ",1,39.7,26.5,84.66,8.55,2.5,2.5,0,0,12.5,0,12.5,2.5,3.75,1.25,3.75,0,2.5,0,1.25,0,1.25,1.25,0,1.25,1.25,0,0,0,8.75,2.5,0,1.25,0,0,1.25,7.5,0,0,1.25,2.5,0,0,0,0,0,0,0,0,0,8.75,13.75,0,5,7.5,2.5,0,1.25,0,8.75,19.2,31.33,20.47,5.78,3,2,1,2,1,2,50,0,100,75,75,0,100,0,25,75,100,0,100,100,0,4,1,0,7,1,0,0,0,0,0,0,0,1,13,1,14,0.928571429,12,0.583333333,80,21 -1064,Infirmary,Delay,Role-assignment,Baseline,1,07:30pm,3,1,0.2,"I don’t really remember what Infirmary was. I think it was the art space? it was a lot of neon. i saw a big spider, there was a tunnel with spinning lights. there were actors standing on boxes with clear glass and an artist yelling at us in the beginning, there were glasses as well that made the art pop out. i didn’t wear them, they made me dizzy ",1,43.12,18.24,92.58,41.62,1.45,1.45,0,0,10.14,0,10.14,2.9,2.9,0,2.9,2.9,2.9,1.45,1.45,1.45,0,0,0,0,0,0,0,0,8.7,1.45,0,0,0,0,1.45,7.25,0,0,0,0,0,0,0,0,0,0,0,0,0,2.9,17.39,0,1.45,10.14,2.9,1.45,1.45,0,2.9,-44.05,-30.37,-48.09,-53.71,4,1,1,1,3,2,0,75,50,100,28.85,100,40,0,40,47.69,100,0,0,0,0,2,1,0,9,0,0,0,0,0,0,0,0,1,12,1,13,0.923076923,12,0.75,71,21 -1064,Asylum,Delay,Role-assignment,Baseline,1,07:30pm,3,0,0.5,i honestly don’t remember what Asylum was. i think there was a bus? or maybe it was the one where we walked past death row….. i’m not sure. ,1,1,1,99,20.23,3.45,3.45,0,0,31.03,6.9,24.14,6.9,0,0,13.79,3.45,6.9,3.45,0,0,0,0,0,0,0,0,0,0,3.45,0,0,0,0,0,0,3.45,0,0,0,0,0,0,3.45,0,0,0,0,0,0,3.45,10.34,0,3.45,6.9,0,0,0,3.45,3.45,-12.74,-23.33,14.67,-29.56,3,2,5,1,4,4,0,0,100,100,0,50,100,100,0,20,83.33,83.33,83.33,0,100,0,0,0,0,0,0,1,0,0,0,0,0,3,0,4,4,0,0,0,31,21 -1064,DevilsDen,Immediate,Role-assignment,Test,1,07:30pm,4,0,0.4,"it was super, super dark. body parts everywhere but i failed to see any butt cheeks which i believe are the most important part of the body. there was a shelf with shaking buckets on it, someone came around the back and scared me, lots of machine sounds, small hallways, i said ""no, no, no, no"" to an actor and they said ""yes, yes, yes, yes!"" and it was scary, another said ""give up your worthless flesh and become one with the machine"" and i politely declined, we had to line up shortest to tallest bc the halls were so slim and dark, the person letting people in told the shortest in line a secret, it was next to the greenhouse which is my favorite part of the day tour, it was in the death row cells which is another favorite part of mine of the penitentiary ",1,66.65,5.68,74.62,40.13,4.08,0.68,2.04,1.36,16.33,6.12,10.2,0.68,0.68,0,1.36,0,6.8,0,5.44,3.4,2.04,1.36,0,1.36,1.36,0,0,0,9.52,5.44,0.68,0.68,0,1.36,2.72,4.08,0,0,0,0,1.36,0,0,0,0,0,0,0,0,8.16,11.56,0,0.68,8.16,2.04,0.68,0,1.36,8.16,-6.58,13.8,-18.45,-15.08,4,3,4,3,4,2,30.56,62.78,0,100,100,93.33,77.22,100,0,50,96.67,0,0,100,0,7,0,0,11,1,0,0,0,0,0,4,0,1,19,5,24,0.791666667,18,0.611111111,147,21 -1064,DevilsDen,Delay,Role-assignment,Test,1,07:30pm,4,1,0.8,"there were a lot of body parts, lots of machines, lots of blood. we walked through the big cage and the actor said “give up your worthless flesh be become one with the machine” and i said no. there were body parts hanging by chains at the end",1,92.12,52.49,39.59,4.22,8.33,2.08,4.17,2.08,8.33,2.08,6.25,0,0,0,0,0,4.17,0,2.08,0,2.08,0,0,0,0,0,0,0,12.5,6.25,0,0,0,2.08,4.17,6.25,0,0,0,0,0,0,0,0,0,0,0,0,0,4.17,8.33,0,2.08,6.25,0,0,0,0,4.17,NA,63.51,29.48,NA,5,4,1,3,5,1,75,75,0,16.67,100,26.67,26.67,56.67,100,0,50,50,50,50,50,3,0,0,5,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.625,48,21 -1064,GhostlyGrounds,Delay,Role-assignment,Share,1,07:30pm,4,0,0.8,"this one for sure had a bus and a bunch of people in cages. on the bus there were a lot of mannequins and one actor who was just screaming a ton, it was impressive. there were a lot of animatronics as well, air guns and it was darker than the rest of the attractions. the hallways were very narrow so we had to walk in a single file line. ",1,79.45,57.11,16.97,65.27,1.43,1.43,0,0,4.29,0,4.29,0,0,0,0,0,2.86,0,2.86,2.86,0,0,0,0,0,0,0,0,5.71,1.43,0,0,0,0,0,4.29,0,0,0,0,2.86,0,0,0,0,0,0,0,0,2.86,12.86,0,1.43,8.57,1.43,1.43,0,2.86,2.86,33.05,60.49,54.75,-16.1,1,2,1,5,1,2,100,50,50,100,0,0,100,100,50,100,100,0,0,100,0,1,2,0,7,0,0,0,0,0,1,0,0,0,10,1,11,0.909090909,10,0.7,70,21 +1064,Infirmary,Immediate,Goal-assigned,Baseline,1,07:30pm,3,0,0,"Lots of art, people with white contacts and pretty dresses, 3d glasses i couldnt wear because they made my head spin, some guy saying his art will follow us wherever we go, a spinny tunnel that made me feel like i was going to fall off the bridge, small hallways, i saw this creepy spider that i thought was going to jump out at me, there were boxes of like body parts or something that the ladies were standing on ",1,39.7,26.5,84.66,8.55,2.5,2.5,0,0,12.5,0,12.5,2.5,3.75,1.25,3.75,0,2.5,0,1.25,0,1.25,1.25,0,1.25,1.25,0,0,0,8.75,2.5,0,1.25,0,0,1.25,7.5,0,0,1.25,2.5,0,0,0,0,0,0,0,0,0,8.75,13.75,0,5,7.5,2.5,0,1.25,0,8.75,19.2,31.33,20.47,5.78,3,2,1,2,1,2,50,0,100,75,75,0,100,0,25,75,100,0,100,100,0,4,1,0,7,1,0,0,0,0,0,0,0,1,13,1,14,0.928571429,12,0.583333333,80,21 +1064,Infirmary,Delay,Goal-assigned,Baseline,1,07:30pm,3,1,0.2,"I don’t really remember what Infirmary was. I think it was the art space? it was a lot of neon. i saw a big spider, there was a tunnel with spinning lights. there were actors standing on boxes with clear glass and an artist yelling at us in the beginning, there were glasses as well that made the art pop out. i didn’t wear them, they made me dizzy ",1,43.12,18.24,92.58,41.62,1.45,1.45,0,0,10.14,0,10.14,2.9,2.9,0,2.9,2.9,2.9,1.45,1.45,1.45,0,0,0,0,0,0,0,0,8.7,1.45,0,0,0,0,1.45,7.25,0,0,0,0,0,0,0,0,0,0,0,0,0,2.9,17.39,0,1.45,10.14,2.9,1.45,1.45,0,2.9,-44.05,-30.37,-48.09,-53.71,4,1,1,1,3,2,0,75,50,100,28.85,100,40,0,40,47.69,100,0,0,0,0,2,1,0,9,0,0,0,0,0,0,0,0,1,12,1,13,0.923076923,12,0.75,71,21 +1064,Asylum,Delay,Goal-assigned,Baseline,1,07:30pm,3,0,0.5,i honestly don’t remember what Asylum was. i think there was a bus? or maybe it was the one where we walked past death row….. i’m not sure. ,1,1,1,99,20.23,3.45,3.45,0,0,31.03,6.9,24.14,6.9,0,0,13.79,3.45,6.9,3.45,0,0,0,0,0,0,0,0,0,0,3.45,0,0,0,0,0,0,3.45,0,0,0,0,0,0,3.45,0,0,0,0,0,0,3.45,10.34,0,3.45,6.9,0,0,0,3.45,3.45,-12.74,-23.33,14.67,-29.56,3,2,5,1,4,4,0,0,100,100,0,50,100,100,0,20,83.33,83.33,83.33,0,100,0,0,0,0,0,0,1,0,0,0,0,0,3,0,4,4,0,0,0,31,21 +1064,DevilsDen,Immediate,Goal-assigned,Test,1,07:30pm,4,0,0.4,"it was super, super dark. body parts everywhere but i failed to see any butt cheeks which i believe are the most important part of the body. there was a shelf with shaking buckets on it, someone came around the back and scared me, lots of machine sounds, small hallways, i said ""no, no, no, no"" to an actor and they said ""yes, yes, yes, yes!"" and it was scary, another said ""give up your worthless flesh and become one with the machine"" and i politely declined, we had to line up shortest to tallest bc the halls were so slim and dark, the person letting people in told the shortest in line a secret, it was next to the greenhouse which is my favorite part of the day tour, it was in the death row cells which is another favorite part of mine of the penitentiary ",1,66.65,5.68,74.62,40.13,4.08,0.68,2.04,1.36,16.33,6.12,10.2,0.68,0.68,0,1.36,0,6.8,0,5.44,3.4,2.04,1.36,0,1.36,1.36,0,0,0,9.52,5.44,0.68,0.68,0,1.36,2.72,4.08,0,0,0,0,1.36,0,0,0,0,0,0,0,0,8.16,11.56,0,0.68,8.16,2.04,0.68,0,1.36,8.16,-6.58,13.8,-18.45,-15.08,4,3,4,3,4,2,30.56,62.78,0,100,100,93.33,77.22,100,0,50,96.67,0,0,100,0,7,0,0,11,1,0,0,0,0,0,4,0,1,19,5,24,0.791666667,18,0.611111111,147,21 +1064,DevilsDen,Delay,Goal-assigned,Test,1,07:30pm,4,1,0.8,"there were a lot of body parts, lots of machines, lots of blood. we walked through the big cage and the actor said “give up your worthless flesh be become one with the machine” and i said no. there were body parts hanging by chains at the end",1,92.12,52.49,39.59,4.22,8.33,2.08,4.17,2.08,8.33,2.08,6.25,0,0,0,0,0,4.17,0,2.08,0,2.08,0,0,0,0,0,0,0,12.5,6.25,0,0,0,2.08,4.17,6.25,0,0,0,0,0,0,0,0,0,0,0,0,0,4.17,8.33,0,2.08,6.25,0,0,0,0,4.17,NA,63.51,29.48,NA,5,4,1,3,5,1,75,75,0,16.67,100,26.67,26.67,56.67,100,0,50,50,50,50,50,3,0,0,5,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.625,48,21 +1064,GhostlyGrounds,Delay,Goal-assigned,Share,1,07:30pm,4,0,0.8,"this one for sure had a bus and a bunch of people in cages. on the bus there were a lot of mannequins and one actor who was just screaming a ton, it was impressive. there were a lot of animatronics as well, air guns and it was darker than the rest of the attractions. the hallways were very narrow so we had to walk in a single file line. ",1,79.45,57.11,16.97,65.27,1.43,1.43,0,0,4.29,0,4.29,0,0,0,0,0,2.86,0,2.86,2.86,0,0,0,0,0,0,0,0,5.71,1.43,0,0,0,0,0,4.29,0,0,0,0,2.86,0,0,0,0,0,0,0,0,2.86,12.86,0,1.43,8.57,1.43,1.43,0,2.86,2.86,33.05,60.49,54.75,-16.1,1,2,1,5,1,2,100,50,50,100,0,0,100,100,50,100,100,0,0,100,0,1,2,0,7,0,0,0,0,0,1,0,0,0,10,1,11,0.909090909,10,0.7,70,21 1065,Infirmary,Delay,Control,Baseline,0,08:30pm,2,0,0.6,"There were two spooky gogo girls as you walk in standing on boxes, they both had black masks and were moving in sync, they one on the left was taller and not as thin as the one on the right. We walked to the right, a man gave us paper glasses, we walked through narrow rooms that had glowing bright neon graffiti all over it. We walked though a spinning bridge and then back to the room we started and exited",1,69.38,98.41,92.16,20.23,6.17,6.17,0,0,6.17,3.7,2.47,0,0,0,0,0,2.47,0,2.47,1.23,1.23,1.23,0,1.23,1.23,0,0,0,13.58,1.23,0,0,0,0,0,12.35,0,0,1.23,1.23,0,0,0,0,0,0,0,0,0,4.94,24.69,0,7.41,13.58,3.7,0,0,0,4.94,NA,-0.75,-9.13,NA,3,5,1,4,3,1,16.47,40,100,0,20,54.12,80,0,60,100,50,50,50,50,50,3,3,0,5,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.454545455,81,21 1065,Asylum,Immediate,Control,Baseline,0,08:30pm,3,0,0.5,"there was a director missing, it was spooky, the first guy set the scene and told us the theme, second room had a directors chair, there was the third room with a big cube that we walked through that had peoples body parts all on it. there were two actors near the cube. there was a woman with long red hair that scared the people in front of me and when we passed to the next room she popped through a window for a second scare. the actors were wearing pretty plain makeup, all but the woman were brunettes. none were very tall and most were stocky in build. ",1,73.55,89.75,38.52,2.23,4.59,2.75,0,1.83,5.5,2.75,2.75,0,0,0,0.92,0,1.83,0,2.75,0,2.75,2.75,0,2.75,2.75,0,0,0,11.93,0.92,0,0,0,0,0.92,11.01,0,0,2.75,0.92,0,0,0,0,0,0,0,0,0,3.67,13.76,0,1.83,11.01,0.92,0,0,0,3.67,-24.47,2.81,-20.89,-55.32,4,5,5,5,4,1,32.26,49.19,83.06,100,0,36.52,36.52,18.26,0,100,0,0,0,0,100,5,1,0,6,1,0,1,0,2,0,0,0,0,13,3,16,0.8125,12,0.5,109,21 1065,Asylum,Delay,Control,Baseline,0,08:30pm,3,1,0.5,"First room had an actor at a desk, he was setting the scene telling us that there was a director that was missing. We move to the next room and there are some props and an empty directors chair. Then there is a lady in a long gown walking around with big red hair, then we go to a room with two male actors and we walk through a cube that’s male to look like it’s made of body parts",1,78.28,99,78.67,8.55,7.5,5,0,2.5,2.5,0,2.5,0,1.25,0,0,0,1.25,0,1.25,0,1.25,0,0,0,0,0,0,0,16.25,2.5,0,1.25,0,0,1.25,15,0,0,1.25,3.75,0,0,0,1.25,0,0,0,0,0,6.25,20,1.25,5,13.75,2.5,0,0,1.25,6.25,NA,37.61,1.52,NA,4,2,1,2,4,1,50,0,50,100,50,50,100,50,0,33.33,50,50,50,50,50,1,2,0,5,0,0,1,0,0,0,0,0,0,8,1,9,0.888888889,8,0.625,82,21 @@ -573,53 +573,53 @@ boiler room part of the haunted house with one of the actors in the center next 1066,DevilsDen,Delay,Control,Baseline,0,06:15pm,4,0,1,We had to enter small groups at a time and I remember hearing loud noises. There was a person hiding behind a corner of the entrance and scaring people. People had chainsaws and hammers and i remember someone turning on the chainsaw and it was very loud. I remember them dressing like mechanics and talking about spare parts. There were areas that had smoke and green lights which made it hard to see. I remember this being the scariest of the four sections. I think there were also people behind bars that would walk next to us and make noises at us. ,1,37.99,57.59,78.94,1,2.94,2.94,0,0,10.78,0,10.78,4.9,1.96,0.98,0.98,0,1.96,3.92,3.92,0,3.92,1.96,0,1.96,1.96,0,0,0,7.84,0.98,0,0,0,0,0.98,6.86,0,0,0,0,1.96,0,0,0,0,0,0,0.98,0,6.86,21.57,0,2.94,8.82,3.92,4.9,0.98,1.96,7.84,10.97,61.77,24.87,-53.72,1,3,5,3,1,1,100,100,0,79.75,53.16,0,0,100,30,76.67,0,0,4.55,4.55,100,4,0,0,10,0,0,1,0,1,1,0,0,0,14,3,17,0.823529412,14,0.714285714,102,19 1066,GhostlyGrounds,Immediate,Control,Baseline,0,06:15pm,4,0,0.8,There was a tunnel with a lot of flashing lights. It started by going through a bus with some people sitting on the seats. There were cages and a lot of fake props in the cages. There were some people in the cages that came in and out of the area. There was a room with some vines and a person jumped out at the very end. Most people had hammers or axes. There was a painting that fell and someone jumped out from behind it. the floors moved in one hallway and we went up a flight of stairs. There were a few rooms with a lot of red lights. ,1,98.33,56.18,97.36,11.13,0.9,0.9,0,0,1.8,0,1.8,0,0,0,1.8,0,0.9,0,0.9,0,0.9,0,0,0,0,0,0,0,3.6,0.9,0,0,0,0.9,0,2.7,0,0,0,0,0,0,0,0,0,0,0,0,0,5.41,28.83,0,7.21,18.92,3.6,0,0,0,5.41,NA,55.04,47.8,NA,3,4,1,4,1,1,91.3,20,100,0,60,0,61.34,42.02,100,3.36,50,50,50,50,50,3,2,0,11,0,0,0,0,2,0,0,0,0,16,2,18,0.888888889,16,0.6875,111,19 1066,GhostlyGrounds,Delay,Control,Baseline,0,06:15pm,4,1,0.4,We started by lining up to go into a bus and i remember it being scary because there were a lot of fake bodies and since it was dark i couldnt tell if they were real or not. There was one real person in the back row and she jumped out at us and followed behind us until we exited. There was an area with cages and vines and a green light and the people in the cages came out and walked behind us and tried to scare us a few times. There was also a section of walking through a pitch black hallway and there were actors along the path who would come up and scare us. There was also an area with a picture frame that fell every few seconds and a person would jump out. There was a hallway with moving panels on the floor. There was also a freezer with fake hanging bodies and an actor inside with a hammer or chainsaw. The freezer was hard to see cause there was a strobing light so it was hard to make out what was happening. ,1,64.38,78.53,92.52,2.46,4.26,3.72,0.53,0,7.98,0.53,7.45,0.53,2.13,1.6,1.6,1.06,2.13,0.53,2.66,0,2.66,1.6,0,1.6,1.6,0,0,0,9.04,1.6,0,0,0,1.06,0.53,7.45,0,0,0.53,0,0,0,0,0,0,0,0,0,0,7.45,25,0,4.79,17.02,3.72,0,1.06,0,7.45,-36.34,-36.91,-39.3,-32.83,5,1,1,1,5,2,0,90.98,90.98,68.85,100,100,48.25,22.38,39.86,0,100,0,33.33,68.47,34.23,6,3,0,9,1,1,0,0,2,0,0,0,2,19,5,24,0.791666667,18,0.5,188,19 -1067,Infirmary,Delay,Role-assignment,Baseline,1,07:30pm,2,0,0.6,"I remember putting on special glasses before walking into the room. The room was very trippy. The room was shades of green and blues and yellows. There were large spiders on the wall when we first walked in, and a large snake in the center of another room. I remember not knowing where to walk forward because everything was altered. And I also remember having to walk through a room covered in fog and I couldnt see which way to go.",1,62.54,6.03,99,20.23,1.23,1.23,0,0,12.35,1.23,11.11,4.94,1.23,1.23,0,0,3.7,3.7,0,0,0,0,0,0,0,0,0,0,1.23,0,0,0,0,0,0,1.23,0,0,0,0,2.47,0,0,0,0,0,0,0,0,3.7,28.4,0,7.41,19.75,2.47,0,0,2.47,3.7,43.69,64.53,46.07,20.47,1,4,4,4,1,2,100,43.04,86.08,0,86.08,0,35.24,35.24,100,19.05,18.82,0,0,100,0,1,1,0,4,0,1,1,0,0,0,0,0,0,6,2,8,0.75,6,0.666666667,81,23 -1067,Asylum,Immediate,Role-assignment,Baseline,1,07:30pm,1,0,0.5,I remember a woman answering a phone and crying about something. There was bed in the center of the room. There were other actors but they did not seem like they were trying to scare anyone. There were signs on the walls.,1,56.86,40.06,99,1,2.38,0,2.38,0,21.43,0,21.43,7.14,0,2.38,7.14,0,7.14,2.38,4.76,0,4.76,4.76,0,4.76,2.38,0,2.38,0,19.05,7.14,0,0,0,0,7.14,11.9,0,0,2.38,0,0,0,0,0,0,0,0,0,0,2.38,16.67,0,0,16.67,0,0,0,0,2.38,21.94,18.7,63.58,-16.47,2,3,1,3,1,2,30.43,100,0,0,39.13,0,27.59,100,68.97,37.93,100,0,56.25,56.25,0,1,0,0,5,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.833333333,42,23 -1067,Asylum,Delay,Role-assignment,Baseline,1,07:30pm,1,1,0.25,I remember a woman in a red dress doing her makeup in a mirror with lights on them and she then went to another room with a bed in the center and cried after getting a phone call. I remember a dentists chair and pictures on the wall. ,1,97.95,52.49,89.39,4.22,0,0,0,0,6.25,0,6.25,4.17,0,0,0,0,2.08,4.17,2.08,0,2.08,2.08,0,2.08,0,0,2.08,0,14.58,6.25,0,0,0,0,6.25,8.33,0,0,6.25,0,0,0,2.08,0,0,0,0,0,0,2.08,18.75,0,2.08,12.5,4.17,0,0,2.08,2.08,-27.5,8.94,-15.04,-76.41,3,1,5,4,5,2,28,64,100,0,40,100,100,47.06,58.82,0,90,0,0,0,100,0,1,0,5,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.833333333,48,23 -1067,DevilsDen,Delay,Role-assignment,Test,1,07:30pm,3,0,0.6,"I remember the sound of chainsaws and other metals clanking against each other, and actors walking up to me with chainsaws in their hands. I also remember One actor with a bat in their hand and another with a knife. I remember walking across something like a metal bridge into the next room. ",1,96.59,8.26,99,20.23,0,0,0,0,15.09,0,15.09,5.66,0,0,1.89,0,7.55,5.66,0,0,0,0,0,0,0,0,0,0,7.55,0,0,0,0,0,0,7.55,0,0,0,0,0,0,0,0,0,0,0,0,0,1.89,16.98,0,3.77,11.32,0,1.89,0,0,1.89,20.35,24.89,15.07,21.08,5,4,3,4,5,2,36.36,81.82,36.36,0,100,57.58,57.58,57.58,100,0,50,0,100,55,0,2,1,0,5,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.625,53,23 -1067,GhostlyGrounds,Immediate,Role-assignment,Share,1,07:30pm,4,0,0.8,"I remember walking along floor and it shifting back and forth, I remember strobe lights and bodies hanging from the ceiling. I remember more actors jumping out at me during this section of the tour than the other sections. I remember a huge demon thing in the center of a room. ",1,95.53,2.18,99,20.23,0,0,0,0,11.76,0,11.76,7.84,0,0,0,0,3.92,7.84,0,0,0,0,0,0,0,0,0,0,1.96,0,0,0,0,0,0,1.96,0,0,0,0,0,0,0,0,0,0,0,0,0,3.92,23.53,0,3.92,17.65,1.96,0,0,0,3.92,-10.95,-40.64,-36.09,43.88,5,1,4,1,5,5,0,26.67,51.11,75.56,100,100,28.21,56.41,28.21,0,45.45,50,50,100,0,1,0,0,4,1,0,0,0,0,0,0,0,0,6,0,6,1,5,0.8,51,23 -1067,GhostlyGrounds,Delay,Role-assignment,Share,1,07:30pm,4,1,0.6,I think I remember strobe lights and monsters,1,5.64,1,99,20.23,0,0,0,0,25,0,25,25,0,0,0,0,0,12.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.5,0,0,0,12.5,0,0,0,0,NA,NA,3.03,-22.77,1,4,1,1,3,3,50,50,50,50,50,50,50,0,100,0,100,100,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,1,2,1,8,23 +1067,Infirmary,Delay,Goal-assigned,Baseline,1,07:30pm,2,0,0.6,"I remember putting on special glasses before walking into the room. The room was very trippy. The room was shades of green and blues and yellows. There were large spiders on the wall when we first walked in, and a large snake in the center of another room. I remember not knowing where to walk forward because everything was altered. And I also remember having to walk through a room covered in fog and I couldnt see which way to go.",1,62.54,6.03,99,20.23,1.23,1.23,0,0,12.35,1.23,11.11,4.94,1.23,1.23,0,0,3.7,3.7,0,0,0,0,0,0,0,0,0,0,1.23,0,0,0,0,0,0,1.23,0,0,0,0,2.47,0,0,0,0,0,0,0,0,3.7,28.4,0,7.41,19.75,2.47,0,0,2.47,3.7,43.69,64.53,46.07,20.47,1,4,4,4,1,2,100,43.04,86.08,0,86.08,0,35.24,35.24,100,19.05,18.82,0,0,100,0,1,1,0,4,0,1,1,0,0,0,0,0,0,6,2,8,0.75,6,0.666666667,81,23 +1067,Asylum,Immediate,Goal-assigned,Baseline,1,07:30pm,1,0,0.5,I remember a woman answering a phone and crying about something. There was bed in the center of the room. There were other actors but they did not seem like they were trying to scare anyone. There were signs on the walls.,1,56.86,40.06,99,1,2.38,0,2.38,0,21.43,0,21.43,7.14,0,2.38,7.14,0,7.14,2.38,4.76,0,4.76,4.76,0,4.76,2.38,0,2.38,0,19.05,7.14,0,0,0,0,7.14,11.9,0,0,2.38,0,0,0,0,0,0,0,0,0,0,2.38,16.67,0,0,16.67,0,0,0,0,2.38,21.94,18.7,63.58,-16.47,2,3,1,3,1,2,30.43,100,0,0,39.13,0,27.59,100,68.97,37.93,100,0,56.25,56.25,0,1,0,0,5,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.833333333,42,23 +1067,Asylum,Delay,Goal-assigned,Baseline,1,07:30pm,1,1,0.25,I remember a woman in a red dress doing her makeup in a mirror with lights on them and she then went to another room with a bed in the center and cried after getting a phone call. I remember a dentists chair and pictures on the wall. ,1,97.95,52.49,89.39,4.22,0,0,0,0,6.25,0,6.25,4.17,0,0,0,0,2.08,4.17,2.08,0,2.08,2.08,0,2.08,0,0,2.08,0,14.58,6.25,0,0,0,0,6.25,8.33,0,0,6.25,0,0,0,2.08,0,0,0,0,0,0,2.08,18.75,0,2.08,12.5,4.17,0,0,2.08,2.08,-27.5,8.94,-15.04,-76.41,3,1,5,4,5,2,28,64,100,0,40,100,100,47.06,58.82,0,90,0,0,0,100,0,1,0,5,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.833333333,48,23 +1067,DevilsDen,Delay,Goal-assigned,Test,1,07:30pm,3,0,0.6,"I remember the sound of chainsaws and other metals clanking against each other, and actors walking up to me with chainsaws in their hands. I also remember One actor with a bat in their hand and another with a knife. I remember walking across something like a metal bridge into the next room. ",1,96.59,8.26,99,20.23,0,0,0,0,15.09,0,15.09,5.66,0,0,1.89,0,7.55,5.66,0,0,0,0,0,0,0,0,0,0,7.55,0,0,0,0,0,0,7.55,0,0,0,0,0,0,0,0,0,0,0,0,0,1.89,16.98,0,3.77,11.32,0,1.89,0,0,1.89,20.35,24.89,15.07,21.08,5,4,3,4,5,2,36.36,81.82,36.36,0,100,57.58,57.58,57.58,100,0,50,0,100,55,0,2,1,0,5,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.625,53,23 +1067,GhostlyGrounds,Immediate,Goal-assigned,Share,1,07:30pm,4,0,0.8,"I remember walking along floor and it shifting back and forth, I remember strobe lights and bodies hanging from the ceiling. I remember more actors jumping out at me during this section of the tour than the other sections. I remember a huge demon thing in the center of a room. ",1,95.53,2.18,99,20.23,0,0,0,0,11.76,0,11.76,7.84,0,0,0,0,3.92,7.84,0,0,0,0,0,0,0,0,0,0,1.96,0,0,0,0,0,0,1.96,0,0,0,0,0,0,0,0,0,0,0,0,0,3.92,23.53,0,3.92,17.65,1.96,0,0,0,3.92,-10.95,-40.64,-36.09,43.88,5,1,4,1,5,5,0,26.67,51.11,75.56,100,100,28.21,56.41,28.21,0,45.45,50,50,100,0,1,0,0,4,1,0,0,0,0,0,0,0,0,6,0,6,1,5,0.8,51,23 +1067,GhostlyGrounds,Delay,Goal-assigned,Share,1,07:30pm,4,1,0.6,I think I remember strobe lights and monsters,1,5.64,1,99,20.23,0,0,0,0,25,0,25,25,0,0,0,0,0,12.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.5,0,0,0,12.5,0,0,0,0,NA,NA,3.03,-22.77,1,4,1,1,3,3,50,50,50,50,50,50,50,0,100,0,100,100,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,1,2,1,8,23 1068,Infirmary,NA,NA,NA,NA,NA,1,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA 1068,Asylum,NA,NA,NA,NA,NA,3,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA 1068,DevilsDen,NA,NA,NA,NA,NA,4,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA 1068,GhostlyGrounds,NA,NA,NA,NA,NA,4,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -1068,NA,NA,Role-assignment,NA,1,06:15pm,NA,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA -1070,Infirmary,Delay,Role-assignment,Baseline,1,06:15pm,2,0,0.8,"In Infirmary, I remember a lot of bright and colorful lights. I remember a woman dancing on top of a table and I remember a few clownlooking guys walking around. I remember not being too scared during this experience and I honestly cant remember it very well. I also remember it being pretty short and it felt a little psychedelic. I also remember having to wear 3D glasses the whole time.",1,28.77,1.61,99,64.63,0,0,0,0,16.9,0,16.9,11.27,0,1.41,1.41,1.41,2.82,9.86,5.63,4.23,1.41,1.41,0,1.41,1.41,0,0,0,4.23,1.41,0,0,0,0,0,2.82,0,0,1.41,1.41,2.82,0,0,0,0,0,0,0,0,2.82,12.68,0,2.82,4.23,4.23,0,1.41,2.82,2.82,37.09,71.14,37.49,2.66,2,4,4,4,2,2,93.33,100,50,0,75,11.43,0,85.71,100,14.29,28.89,0,0,100,33.33,1,0,0,5,2,0,0,0,0,0,0,0,1,8,1,9,0.888888889,6,0.833333333,71,18 -1070,Asylum,Immediate,Role-assignment,Baseline,1,06:15pm,2,0,0.75,"In Asylum, we followed the story of a missing director. The scares revolved around an old Hollywood movie set and were more standstill than jump scareish. There was an actress who was performing for her role and was considered a diva. We went backstage with her and saw her perform her role for a minute before being cut off and told to redo it. There was also a man in front of a camera, a news reporter, and he was reporting on the missing director. I remember a board full of newspaper clippings talking about different Hollywood mysteries and such. ",1,83.03,95.4,17.04,10.43,3.96,1.98,0,1.98,4.95,0,4.95,1.98,0,0,0.99,0,1.98,0.99,0.99,0,0.99,0.99,0,0.99,0.99,0,0,0,17.82,3.96,0,0,0,0,3.96,13.86,0,0,4.95,1.98,0,0,0.99,0,0.99,0,0,0,0,0.99,10.89,0,2.97,6.93,0.99,0,0,1.98,0.99,48.29,71.93,66.43,6.53,1,2,2,2,1,1,100,0,37.5,75,37.5,0,100,83.59,83.59,17.97,0,100,0,50,100,3,0,0,8,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.727272727,101,18 -1070,Asylum,Delay,Role-assignment,Baseline,1,06:15pm,2,1,0.5,"Like the others, I dont remember this section very well. I remember there was a movie set and a woman who was performing on it who became very upset when the director told her to restart the scene. I also remember a reporter saying that a famous director was missing. I also remember a man at a desk with a TV in the corner of the room and a lot of papers on the desk. I also remember a corkboard with a bunch of newspaper clippings on it. Other than that, I cant remember anything else.",1,67.92,11.66,68.87,34.94,3.13,0,1.04,3.13,13.54,0,13.54,6.25,0,1.04,1.04,0,5.21,6.25,3.13,2.08,1.04,1.04,0,1.04,0,0,1.04,0,9.38,2.08,0,0,0,0,2.08,7.29,0,0,2.08,1.04,0,0,0,0,0,0,0,0,0,1.04,4.17,0,0,4.17,0,0,0,0,1.04,-27.92,-23.82,-37.09,-22.86,4,1,3,1,4,2,0,16.08,30.07,100,44.06,100,92.31,30.77,0,61.54,47.5,0,100,25,100,0,0,0,8,0,0,0,0,0,0,0,0,2,8,2,10,0.8,8,1,96,18 -1070,DevilsDen,Immediate,Role-assignment,Test,1,06:15pm,4,0,0.6,"We entered the building after being told that the group in front of us was being dismembered. After entering, we noticed a man with a chainsaw who followed us for a bit down the walkway. After that, we entered a building with multiple jump scares done by the actors. One man with some sort of power tool told me he was gonna chop off my arms which was nice. Though I cant remember the middle that well, I do remember at the end when we had to walk through a big room with strobe lights and a woman with a weapon standing near the end, in the middle of the hall.",1,91.8,89.25,90.13,32.75,6.31,5.41,0,0.9,7.21,0,7.21,2.7,0,0.9,1.8,0,2.7,1.8,2.7,1.8,0.9,0.9,0,0.9,0.9,0,0,0,13.51,1.8,0,0,0,0,1.8,11.71,0,0,0.9,2.7,1.8,0,0,0,0,0,0,0,0,0.9,14.41,0.9,4.5,8.11,0.9,0,0,1.8,0.9,12.34,23.45,8.83,4.74,5,4,4,3,5,2,28.26,66.67,0,0,100,56.96,30,60,100,0,47.83,0,0,100,0,6,1,0,6,1,0,0,0,0,0,0,0,1,14,1,15,0.933333333,13,0.461538462,111,18 -1070,DevilsDen,Delay,Role-assignment,Test,1,06:15pm,4,1,0.6,"Now that I have finished going through the questions in the last section, I think that I might have mixed up Devil's Den with The Ghostly Grounds. I remember there being multiple different rooms with many different people, and a dentist that wanted to take your teeth. I also remember a crazy man with a chainsaw I think? And then of course the strobe lights and the long hallway with the person at the end who followed us for a bit.",1,85.68,33.01,98.38,20.23,2.5,1.25,1.25,0,13.75,0,13.75,6.25,0,1.25,2.5,2.5,2.5,2.5,1.25,0,0,1.25,0,0,0,0,0,0,6.25,0,0,0,0,0,0,6.25,0,0,0,1.25,0,1.25,1.25,0,0,0,0,0,0,7.5,10,0,1.25,7.5,1.25,0,0,2.5,7.5,6.25,36.52,-25.09,7.31,5,1,1,2,4,5,25,0,0,50,100,100,100,66.67,0,0,100,50,50,100,0,1,1,0,4,0,0,0,0,1,0,0,0,2,6,3,9,0.666666667,6,0.666666667,80,18 -1070,GhostlyGrounds,Delay,Role-assignment,Share,1,06:15pm,3,0,0.8,"The only thing I remember from the Ghostly Grounds is the long hallway at the end of the haunted house. I remember it might have had something to do with vampires. I also remember strobe lights and one guy standing at the end of the long hallway who followed us for a few steps and scared me right at the end. Other than that, theres not much that I can remember.",1,65.15,9.23,94.92,1.98,1.43,1.43,0,0,17.14,2.86,14.29,5.71,0,1.43,2.86,0,4.29,5.71,2.86,0,2.86,1.43,0,1.43,1.43,0,0,0,4.29,0,0,0,0,0,0,4.29,0,0,0,1.43,0,0,0,0,0,0,0,0,0,5.71,8.57,0,1.43,5.71,1.43,0,0,0,5.71,23.51,82.6,5.42,-17.49,1,2,3,2,3,4,100,0,0,33.33,0,25,100,0,25,100,50,50,100,0,100,0,0,0,2,0,2,0,0,2,0,0,0,1,2,5,7,0.285714286,2,1,70,18 -1071,Infirmary,Immediate,Role-assignment,Baseline,1,07:30pm,1,0,0.6,"I remember lots of neon colors, and that there was a lady dancing on a platform at the start. Im pretty sure that there were dangling black strips that we ha to push aside to go through the room at one point. We had to wear glasses which definitely made things very dizzy. There was a tunnel that we had to walk through with spinning walls and handrails. We were directed by an actor to put our glasses in the bin at the end.",1,78.95,91.33,79.29,20.23,5.95,5.95,0,0,5.95,0,5.95,1.19,1.19,0,1.19,1.19,1.19,1.19,0,0,0,0,0,0,0,0,0,0,9.52,2.38,0,1.19,0,0,0,8.33,0,0,1.19,0,4.76,0,0,0,0,0,0,0,0,4.76,17.86,0,7.14,8.33,2.38,0,1.19,4.76,4.76,27.65,52.36,22.41,8.17,5,4,1,2,5,4,55.17,0,55.17,36.78,100,47.54,73.77,47.54,100,0,100,100,100,0,0,4,1,0,6,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.545454545,84,18 -1071,Infirmary,Delay,Role-assignment,Baseline,1,07:30pm,1,1,0.4,"I remember many bright neon colors, and a woman dancing on a platform at the beginning. We were given glasses to enhance our experience, and then had to return them to a person as we were leaving Infirmary. There was a spinning tunnel at one point that was difficult to walk through, especially with the glasses. Im not completely sure, but I believe at one point there were dangling strips that we had to push out of the way to proceed through the room. I remember seeing many polka dots around this section as well. ",1,75.71,64.91,95.32,35.11,4.21,4.21,0,0,8.42,0,8.42,3.16,0,0,0,1.05,2.11,2.11,3.16,2.11,1.05,0,0,0,0,0,0,0,8.42,1.05,0,0,0,0,0,7.37,0,0,1.05,0,4.21,0,0,0,0,0,0,0,0,2.11,16.84,0,6.32,8.42,3.16,0,0,4.21,2.11,25.93,35.53,42.25,0,5,4,4,4,5,2,50,50,75,0,100,16.67,66.67,50,100,0,33.33,0,0,100,33.33,4,1,0,6,0,0,0,0,0,0,0,0,1,11,1,12,0.916666667,11,0.545454545,95,18 -1071,Asylum,Delay,Role-assignment,Baseline,1,07:30pm,1,0,0.5,"To be honest, I do not remember much of anything from this section. The name doesnt ring much of a bell, but I believe it was the second section of the tour. Although I cant recall anything from the inside, I know that I gave this a similar rating to Infirmary (1 or 2). ",1,55.25,1,99,20.23,0,0,0,0,27.78,0,27.78,7.41,0,1.85,5.56,5.56,11.11,3.7,0,0,0,0,0,0,0,0,0,0,3.7,1.85,0,0,0,0,0,1.85,0,0,0,0,0,0,0,0,0,0,0,0,0,5.56,5.56,0,0,5.56,0,0,0,0,5.56,36.04,55.96,-6.16,58.31,1,4,3,5,5,5,100,100,100,100,0,73.68,21.05,47.37,100,0,50,50,100,100,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,5,5,0,0,0,54,18 -1071,DevilsDen,Immediate,Role-assignment,Test,1,07:30pm,3,0,0.2,"I remember that most (if not all) of the actors were wearing the color red. They also had tools in their hands that they would dangle in peoples faces. Im pretty sure this was the room with the most actors, compared to others that had more machines and animatronics. There were many large devices off to he side as we were navigating through the room that would blow air and make loud and unsettling noises. I believe I gave it a three, which would be the highest rating of all the rooms in terms of fear. I do remember we made our way through Devil's Den pretty quick. ",1,38.62,51.1,52.89,2.17,2.78,2.78,0,0,16.67,0.93,15.74,2.78,1.85,2.78,5.56,0,4.63,1.85,2.78,0,2.78,1.85,0,1.85,1.85,0,0,0,10.19,0.93,0,0,0,0,0,9.26,0,0,0,0.93,0,0,0,0,0,0,0,0,0,4.63,12.96,0,0,9.26,1.85,1.85,0,0,4.63,-9.99,34.4,-19.23,-45.14,5,1,1,4,5,3,60.61,92.42,92.42,0,100,100,65.29,47.93,72.73,0,100,50,0,52.38,52.38,2,0,0,8,3,0,0,0,0,0,2,0,0,13,2,15,0.866666667,10,0.8,108,18 -1071,DevilsDen,Delay,Role-assignment,Test,1,07:30pm,3,1,0.6,"Although I cant recall much of what happened in the section, I remember this being the one I ranked highest (3 I believe) because they utilized their actors very well. Most of the actors wore red shirts and had some type of tool in their hands. When waiting in line to enter this section, there was a person swinging their tool (maybe a large pipe?) at peoples heads as they were about to begin. I do remember a large hall with strobe lights that made it difficult to walk in a straight line. When leaving the section and walking back around, I remember seeing that they had switched the person at the front to a woman who was screaming a lot more than the previous individual. ",1,68.19,54.27,98.48,20.23,0.79,0,0.79,0.79,12.7,1.59,10.32,3.97,2.38,0.79,0.79,0,2.38,3.17,1.59,0.79,0.79,0,0,0,0,0,0,0,11.11,0,0,0,0,0,0,10.32,0,0,0.79,0,0,0,0,0,0,0,0,0,0,0.79,19.05,0,3.97,11.9,2.38,0.79,0,0,0.79,-42.38,-39.78,-31.46,-55.91,5,1,1,1,4,2,0,51.85,51.85,75.93,100,100,71.72,71.72,0,17.93,100,0,20.8,20.8,41.6,4,1,0,6,0,0,0,0,0,3,0,0,2,11,5,16,0.6875,11,0.545454545,126,18 -1071,GhostlyGrounds,Delay,Role-assignment,Share,1,07:30pm,2,0,0.2,"I remember that this was the last section of the tour. One thing that stood out from this section was that there werent as many actors, which definitely made this section less frightening. Rather than actors, there were more animatronics and devices that were used for scares, but unfortunately I didnt see them as scary. At one point, there was a machine that blew air at participants around the ankle area. This did make me jump a little, but I wouldnt necessarily classify it as ""scary"". I believe that we also had to walk up a set of stairs, and then down a different set of stairs in this section. ",1,22.87,6.9,96.58,1,0.91,0.91,0,0,14.55,0,14.55,1.82,2.73,0.91,0,1.82,6.36,0.91,3.64,0,3.64,3.64,0,3.64,3.64,0,0,0,4.55,0,0,0,0,0,0,4.55,0,0,0,0,1.82,0,0,0.91,0,0,0,0,0,2.73,15.45,0,1.82,12.73,0.91,0,0,2.73,2.73,22.05,50.23,-27.85,43.76,5,1,2,2,3,1,50,0,50,33.33,100,100,100,0,33.33,0,0,100,0,100,0,4,0,0,3,3,0,0,0,0,0,1,0,0,10,1,11,0.909090909,7,0.428571429,110,18 -1072,Infirmary,Delay,Role-assignment,Baseline,1,07:30pm,1,0,0.8,"lots of colorful neon lights, wore 3d glasses, bridge, tunnel, green laser lights, bright, no actors, short, fun and exciting, trippy, bridge moved and had like rolling plastic",1,76.24,40.06,2.36,99,0,0,0,0,3.57,3.57,0,0,0,0,0,0,0,0,14.29,14.29,0,7.14,7.14,0,0,0,0,0,3.57,0,0,0,0,0,0,3.57,0,0,0,0,0,0,0,0,0,0,0,0,0,10.71,25,0,7.14,0,17.86,0,0,0,10.71,NA,90.96,28.22,NA,1,5,1,2,1,1,100,0,0,0,0,0,0,41.67,50,100,50,50,50,50,50,1,2,0,9,2,0,0,0,0,0,0,0,0,14,0,14,1,12,0.75,28,18 -1072,Asylum,Immediate,Role-assignment,Baseline,1,07:30pm,1,0,0.75,"It was darker and had more flashing lights. There were more actors. It had body parts hanging on the wall and the actors followed you more. more decorations someone laying on a table more zig zag walking, more corners had jail cells",1,49.68,88.15,39.59,20.23,0,0,0,0,4.76,0,4.76,0,0,0,2.38,0,2.38,0,0,0,0,0,0,0,0,0,0,0,9.52,0,0,0,0,0,0,9.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.05,0,4.76,9.52,7.14,0,0,0,0,NA,-32.86,-49.78,NA,3,1,1,1,4,1,0,44.44,100,100,0,100,48.39,29.03,0,0,50,50,50,50,50,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,18 -1072,Asylum,Delay,Role-assignment,Baseline,1,07:30pm,1,1,0.5,"lady in red room getting ready, lady moves to another room where a phone is and sits down, actor popped out of a small door, type writer machine, not too dark, machinery decor, dentist chair",1,92.95,57.11,99,65.27,0,0,0,0,5.71,0,5.71,0,0,0,0,0,5.71,0,2.86,2.86,0,0,0,0,0,0,0,0,14.29,8.57,0,5.71,0,0,2.86,11.43,0,0,5.71,0,0,0,2.86,0,0,0,0,0,0,5.71,31.43,0,2.86,22.86,5.71,0,0,2.86,5.71,NA,12.1,29.87,NA,2,2,1,5,1,1,50,100,100,100,0,0,100,100,0,100,50,50,50,50,50,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,10,1,10,1,35,18 -1072,DevilsDen,Immediate,Role-assignment,Test,1,07:30pm,2,0,0.6,"more actors, more decorations, everything I described in Asylum (confused them), someone laying on a table, body parts on the wall darker and flashing lights, longer with more zig zags",1,93.3,59.25,79.1,1.4,0,0,0,0,12.9,3.23,9.68,0,0,0,6.45,0,3.23,0,3.23,0,3.23,3.23,0,3.23,0,0,0,0,12.9,3.23,0,0,0,0,3.23,9.68,0,0,0,0,0,0,3.23,0,0,0,0,0,0,3.23,22.58,0,3.23,12.9,9.68,0,0,3.23,3.23,-10.07,-44.76,-16.4,30.94,3,2,2,1,3,1,0,50,100,100,50,85.71,100,0,50,0,0,100,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,2,7,2,9,0.777777778,7,1,31,18 -1072,DevilsDen,Delay,Role-assignment,Test,1,07:30pm,2,1,0.4,"cut up hanging body parts, long poles/rods, kind of like a jail cell, actor laying on a round table, another actor at the doorway before the actor on the round table, lots of corners, darker, machinery decoration, ",1,99,55.75,93.14,20.23,0,0,0,0,10.53,0,10.53,0,0,0,5.26,0,5.26,0,0,0,0,0,0,0,0,0,0,0,7.89,0,0,0,0,0,0,7.89,0,0,0,0,0,0,0,0,0,0,0,0,0,5.26,18.42,0,2.63,15.79,2.63,0,0,0,5.26,9.72,-23.46,21.68,30.94,4,3,2,1,1,1,0,0,84,100,4,0,0,100,0,0,0,100,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,9,0,9,1,9,1,38,18 -1072,GhostlyGrounds,Delay,Role-assignment,Share,1,07:30pm,2,0,0.6,"enter through a bus, floor was shifting and moving, actors on the bus, dark, lights, bodies hanging, long, dark hallway with actors, ",1,98.87,86.82,79.84,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,0,0,0,0,0,0,9.09,0,0,0,0,0,0,0,0,0,0,0,0,0,4.55,36.36,0,9.09,13.64,13.64,0,0,0,4.55,NA,47.31,21.68,NA,3,2,1,2,1,1,80,0,100,0,50,0,100,0,0,0,50,50,50,50,50,0,1,0,5,0,0,1,0,1,0,0,0,0,6,2,8,0.75,6,0.833333333,22,18 -1073,Infirmary,Immediate,Role-assignment,Baseline,1,08:30pm,2,0,0.75,"lots of lights, bright colors, clown, 3D, black light, weird music, i was expecting to be more scared, loud noises ",1,80.96,15.75,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,5,10,5,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,40,0,0,0,25,15,0,0,10,41.52,56.07,37.55,30.94,1,4,4,2,1,1,100,0,0,100,0,0,0,50,100,0,0,0,0,100,0,0,0,0,7,1,0,0,0,0,0,0,0,0,8,0,8,1,7,1,20,21 -1073,Infirmary,Delay,Role-assignment,Baseline,1,08:30pm,2,1,0.5,"lights, bright colors, dots, splattered paint, snake, yelling, glasses, 3D",1,89.52,40.06,7.03,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,10,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,10,0,30,20,0,0,0,NA,NA,NA,NA,1,1,1,1,1,1,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,0,0,0,8,0,0,0,0,0,0,0,0,0,8,0,8,1,8,1,10,21 -1073,Asylum,Delay,Role-assignment,Baseline,1,08:30pm,1,0,0.5,"lady singing in a red robe with a bed in the same room, in the beginning a guy slammed a book/binder down, a set thing, ",1,99,62.84,98.89,20.23,0,0,0,0,3.85,0,3.85,0,0,0,0,0,3.85,0,7.69,3.85,3.85,0,0,0,0,0,0,0,7.69,3.85,0,3.85,0,0,0,7.69,0,0,3.85,3.85,0,0,0,0,0,0,0,0,0,0,30.77,0,3.85,19.23,3.85,3.85,0,0,0,NA,-15.57,-9.59,NA,2,5,1,1,1,1,0,100,14.29,14.29,14.29,0,0,0,0,100,50,50,50,50,50,0,1,0,3,0,0,0,0,0,0,0,0,2,4,2,6,0.666666667,4,0.75,26,21 -1073,DevilsDen,Delay,Role-assignment,Test,1,08:30pm,5,0,0.75,"girl out front with contacts, sledge hammer, people screaming, outdoor part, moving floor, dentist chair, gory head, chainsaw, air noises, big hammer, ",1,97.37,40.06,95.15,1,0,0,0,0,4.55,0,4.55,0,0,0,0,0,4.55,0,4.55,0,4.55,0,0,0,0,0,0,0,4.55,0,0,0,0,0,0,4.55,0,0,4.55,0,0,0,0,0,0,0,0,0,0,13.64,31.82,0,4.55,18.18,0,9.09,0,0,13.64,NA,90.96,NA,NA,1,1,1,2,1,1,100,0,0,0,0,50,50,50,50,50,50,50,50,50,50,0,0,0,9,0,0,0,0,1,0,0,0,0,9,1,10,0.9,9,1,22,21 -1073,GhostlyGrounds,Immediate,Role-assignment,Share,1,08:30pm,3,0,0.8,"during the Ghostly Grounds there were lots of loud noises and banging there were also a lot of cages and characters with masks, there was a person acting like a monkey therewere also vines hanging from the ceiling. some of the characters were pacing. at the exit there were more vines hanging and animals. ",1,86.71,51.31,29.13,5.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.89,0,1.89,0,0,0,0,0,0,0,1.89,0,0,0,0,0,0,1.89,0,0,0,0,0,0,0,0,0,0,0,0,0,1.89,18.87,0,0,13.21,0,5.66,0,0,1.89,28.05,20.72,1.54,61.88,4,2,2,3,4,1,41.67,41.67,0,100,8.33,44.44,100,44.44,0,61.11,0,100,100,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,8,0,8,1,8,1,53,21 -1073,GhostlyGrounds,Delay,Role-assignment,Share,1,08:30pm,3,1,0.8,"monkey mask, cages, vines hanging, weird noises, hallway out, cells, ",1,97.77,40.06,63.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,30,0,0,20,0,10,0,0,20,NA,4.96,NA,NA,5,1,1,1,1,1,0,0,0,0,100,50,50,50,50,50,50,50,50,50,50,0,0,0,5,1,0,0,0,0,0,0,0,0,6,0,6,1,5,1,10,21 -1074,Infirmary,Immediate,Role-assignment,Baseline,1,08:30pm,2,0,0.75,There were neon lights around the whole course. It was funhouse themed. There were clowns and carnival like people. We were given 3D glasses which enhanced the course. The course was fairly narrow. Not a lot of people jumped out during this section. ,1,57.83,27.38,82.44,20.23,2.33,2.33,0,0,6.98,0,6.98,0,0,0,2.33,0,4.65,0,0,0,0,0,0,0,0,0,0,0,2.33,0,0,0,0,0,0,2.33,0,0,0,0,0,0,0,0,0,0,0,0,0,9.3,18.6,0,2.33,13.95,2.33,0,0,0,9.3,NA,64.08,18.37,NA,5,2,1,2,5,1,59.26,0,29.63,66.67,100,65.22,100,65.22,78.26,0,50,50,50,50,50,2,0,0,7,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.777777778,43,21 -1074,Infirmary,Delay,Role-assignment,Baseline,1,08:30pm,2,1,0.75,it was full of glow in the dark and black light attractions. it seemed like a carnival type attraction. there was someone handing out 3D glasses. there was a room where you walked through a spinning tube that had holes in it. it was very vibrant. there were snakes and spiders.,1,40.88,73.71,83.69,20.23,0,0,0,0,3.92,0,3.92,1.96,0,0,3.92,0,0,0,0,0,0,0,0,0,0,0,0,0,3.92,0,0,0,0,0,0,3.92,0,0,0,0,0,0,0,0,1.96,0,0,0,0,5.88,29.41,0,3.92,17.65,7.84,0,0,1.96,5.88,29.61,54.41,3.47,30.94,4,5,2,5,1,1,90.91,33.33,66.67,100,0,0,6.38,29.79,6.38,100,0,100,0,0,0,1,1,0,7,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.777777778,51,21 -1074,Asylum,Delay,Role-assignment,Baseline,1,08:30pm,1,0,0.5,it was like a 1960s themed attraction. there was a dentist with a head covered in teeth that was shouting and running around. there were drill noises and bursts of air. there was a detective in the beginning talking about what the attraction was about. there was a woman in red singing in a bedroom.,1,86.82,61.66,63.35,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.64,1.82,1.82,0,0,0,0,0,0,0,7.27,3.64,0,0,0,0,3.64,3.64,0,0,1.82,0,0,0,0,0,0,0,0,0,0,1.82,25.45,0,1.82,16.36,1.82,5.45,0,0,1.82,NA,-15.41,-9.93,NA,4,3,1,1,4,1,0,33.33,0,100,100,66.67,33.33,100,0,0,50,50,50,50,50,0,0,0,12,0,0,0,0,0,0,0,0,0,12,0,12,1,12,1,55,21 -1074,DevilsDen,Immediate,Role-assignment,Test,1,08:30pm,3,0,0.5,"There was a man that had a chainsaw that ran past us. People were very interactive during this course. There was a woman in a locker room who kept saying ""time to go to work"" while pacing back and forth and slamming on the lockers. People had props like knives and big sledgehammers. They were making strange noises. ",1,58.3,90.41,67.94,1.05,3.45,1.72,1.72,0,3.45,0,3.45,0,3.45,0,0,0,0,0,3.45,0,3.45,0,0,0,0,0,0,0,10.34,1.72,0,0,0,0,1.72,8.62,0,0,1.72,1.72,0,0,0,0,0,0,0,0,1.72,13.79,15.52,0,5.17,10.34,0,1.72,0,0,15.51,NA,37.87,-30.97,NA,2,1,1,5,3,1,66.67,100,100,72.73,0,100,75,0,59.09,31.82,50,50,50,50,50,1,1,0,7,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.777777778,58,21 -1074,DevilsDen,Delay,Role-assignment,Test,1,08:30pm,3,1,0.25,there was a man with a chainsaw that ran right past us while revving it. a woman in a room that looked like a locker room was talking to herself and banging on the walls an lockers. everyone looked like the were in an accident. a man had a big sledgehammer and was swinging it around. ,1,93.64,94.84,48.09,20.23,1.79,1.79,0,0,1.79,1.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.5,1.79,0,0,0,0,1.79,10.71,0,0,3.57,3.57,0,0,0,0,0,0,0,0,0,7.14,21.43,0,3.57,12.5,3.57,1.79,0,0,7.14,NA,-30.73,-33.19,NA,3,5,1,1,4,1,0,20,100,100,20,83.33,50,50,0,100,50,50,50,50,50,1,1,0,6,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.75,56,21 -1074,GhostlyGrounds,Delay,Role-assignment,Share,1,08:30pm,3,0,0.6,there were people that looked like vampires. it was very misty and there was a long misty hallway. there were lots of strobe lights.,1,10.19,40.06,39.59,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.5,25,0,0,16.67,8.33,0,0,0,12.5,NA,-5.45,-0.51,NA,5,1,1,1,5,1,0,0,80,0,100,100,100,100,66.67,0,50,50,50,50,50,0,1,0,3,0,0,0,0,0,0,0,0,0,4,0,4,1,4,0.75,24,21 -1075,Infirmary,Immediate,Role-assignment,Baseline,1,08:30pm,2,0,0.25,"There were lots of bright colors, lots of clowns, and loud noises. There were lots of patterns on the walls and floors like dots and stripes. There was a part you walked through that spun and made you dizzy. The clowns had objects they swung around. Lots and lots of spiders that were also very colorful. ",1,40.77,79.51,48.09,47.3,0,0,0,0,3.57,0,3.57,0,1.79,0,0,0,1.79,0,5.36,3.57,1.79,0,0,0,0,0,0,0,5.36,0,0,0,0,0,0,5.36,0,0,0,0,0,0,0,0,0,0,0,0,0,1.79,26.79,0,5.36,10.71,5.36,3.57,1.79,0,1.79,3.49,27.87,37.93,-55.32,2,3,5,4,1,1,41.67,100,50,0,50,0,11.11,100,55.56,100,0,0,0,0,100,1,0,0,12,0,0,0,0,0,0,0,0,0,13,0,13,1,13,0.923076923,56,21 -1075,Infirmary,Delay,Role-assignment,Baseline,1,08:30pm,2,1,0.5,"this tour was filled with very bright neon colors, like paint splashed all over the walls, different patterns painted everywhere. the 3d glasses made these patterns and colors pop even more. there were lots and lots of clowns. there were tons of huge spiders that were also colorful. there was a part you walked through where there was smoke on both sides of you. there was a large rotating tunnels filled with little lights you walked through. ",1,52.96,70.24,68.52,61.07,0,0,0,0,6.49,2.6,3.9,0,1.3,0,0,0,2.6,0,2.6,2.6,0,0,0,0,0,0,0,0,3.9,0,0,0,0,0,0,3.9,0,0,0,0,0,0,0,0,2.6,0,0,0,0,1.3,24.68,0,3.9,14.29,6.49,0,0,2.6,1.3,51.13,64.26,58.19,30.94,5,3,3,2,1,1,61.22,0,34.69,67.35,100,0,28.85,100,69.23,7.69,0,0,100,0,0,3,1,0,8,0,0,0,0,1,0,0,0,0,12,1,13,0.923076923,12,0.666666667,77,21 -1075,Asylum,Delay,Role-assignment,Baseline,1,08:30pm,2,0,0.75,"there were lots of people who looked like old time actors. one room had a guy writing on a type writing and reading off news, like he was typing a newspaper. there was a room with showers and lockers. there was a room that had a vanity with really bright lights but it was very smoky. there was one room where there was a big bed in the middle and a lady in a dress was walking and running around singing, asking who she was going to kill next. there was lots of old music and lots of smoke. we walked past one room that seemed like it had a bar and the guy behind it was slamming stuff onto it really loudly.",1,58.22,80.24,70.82,20.23,1.63,0.81,0,0.81,3.25,0,3.25,0.81,0,0,0.81,1.63,0.81,0,3.25,1.63,1.63,0,0,0,0,0,0,0,13.01,6.5,0,0.81,0.81,0.81,4.07,7.32,0,0,1.63,2.44,0,0,0,0,0,0,0,0,0,4.88,22.76,0,3.25,14.63,2.44,2.44,0,0,4.88,25.28,20.77,62.97,-7.89,2,5,5,4,1,1,45.45,100,100,0,0,0,92.31,92.31,61.54,100,0,0,96,0,100,0,4,0,10,0,0,0,0,3,0,0,0,0,14,3,17,0.823529412,14,0.714285714,123,21 -1075,DevilsDen,Immediate,Role-assignment,Test,1,08:30pm,4,0,0.75,It started with someone letting you in with a big metal stick. A guy with a chain saw chased us down a ramp. The people inside talked about cutting you up . There was lots of sounds of people hitting metal really hard. People growled at you. There were a lot of sounds like gunshots and loud bangs. There was also a lot of smoke. ,1,95.8,98.18,23.08,1.56,1.56,1.56,0,0,3.13,0,3.13,0,0,0,1.56,1.56,0,0,3.13,0,3.13,0,0,0,0,0,0,0,10.94,1.56,0,0,0,0,1.56,9.38,0,0,0,1.56,0,0,0,0,0,0,0,0,0,7.81,21.88,0,1.56,10.94,1.56,6.25,1.56,0,7.81,-0.09,67.04,-12,-55.32,2,5,5,5,2,1,73.91,100,47.83,21.74,0,60,0,60,90,100,0,0,0,0,100,4,0,0,6,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.6,64,21 -1075,DevilsDen,Delay,Role-assignment,Test,1,08:30pm,4,1,0.5,"the person at the entrance had contacts in that made it seem like she had no pupils, she was letting people in with a big metal stick. we walked in and went down a ramp where a guy ran up next to us with a chainsaw. there were lots and lots of noises that sounded like metal crashing and gunshots. we walked through a room where bodies were hanging upside down and swinging around. there was one room where it looked like they had chopped off limbs on a table. ",1,86.15,92.24,87.45,9.52,3.33,3.33,0,0,3.33,1.11,2.22,1.11,1.11,0,1.11,0,0,0,1.11,0,1.11,0,0,0,0,0,0,0,8.89,0,0,0,0,0,0,8.89,0,0,2.22,1.11,0,0,0,0,0,0,0,0,0,6.67,28.89,0,5.56,20,1.11,2.22,0,0,6.67,-30.21,8.94,-45.85,-53.71,2,1,1,4,2,2,33.33,100,100,0,33.33,100,0,33.33,33.33,66.67,100,0,0,0,0,3,2,0,5,0,0,2,0,1,0,0,0,0,10,3,13,0.769230769,10,0.5,90,21 -1075,GhostlyGrounds,Delay,Role-assignment,Share,1,08:30pm,3,0,0.6,"entered through a school bus where there were lots of fake bodies, smoke, and flashing lights. lots of loud bangs throughout the whole tour. there was a part where it was very very smoky and you could not see anything, people were walking and running around, very loud. we had to go up and down stairs, there were cells where people would run through and jump out at you. there was was a box hanging and shaking really loudly. there were different little paths you could go through.",1,23.39,66.75,95.15,9.34,1.14,1.14,0,0,9.09,0,9.09,0,0,3.41,1.14,1.14,3.41,0,1.14,0,1.14,0,0,0,0,0,0,0,5.68,1.14,0,0,0,1.14,0,4.55,0,0,0,0,2.27,0,0,0,0,0,0,0,0,6.82,31.82,0,7.95,19.32,3.41,3.41,0,2.27,6.82,NA,54.82,79.98,NA,4,2,1,5,1,1,88.89,41.67,41.67,100,0,0,100,100,89.41,68.24,50,50,50,50,50,2,1,0,11,0,0,0,0,0,0,0,0,0,14,0,14,1,14,0.785714286,88,21 +1068,NA,NA,Goal-assigned,NA,1,06:15pm,NA,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1070,Infirmary,Delay,Goal-assigned,Baseline,1,06:15pm,2,0,0.8,"In Infirmary, I remember a lot of bright and colorful lights. I remember a woman dancing on top of a table and I remember a few clownlooking guys walking around. I remember not being too scared during this experience and I honestly cant remember it very well. I also remember it being pretty short and it felt a little psychedelic. I also remember having to wear 3D glasses the whole time.",1,28.77,1.61,99,64.63,0,0,0,0,16.9,0,16.9,11.27,0,1.41,1.41,1.41,2.82,9.86,5.63,4.23,1.41,1.41,0,1.41,1.41,0,0,0,4.23,1.41,0,0,0,0,0,2.82,0,0,1.41,1.41,2.82,0,0,0,0,0,0,0,0,2.82,12.68,0,2.82,4.23,4.23,0,1.41,2.82,2.82,37.09,71.14,37.49,2.66,2,4,4,4,2,2,93.33,100,50,0,75,11.43,0,85.71,100,14.29,28.89,0,0,100,33.33,1,0,0,5,2,0,0,0,0,0,0,0,1,8,1,9,0.888888889,6,0.833333333,71,18 +1070,Asylum,Immediate,Goal-assigned,Baseline,1,06:15pm,2,0,0.75,"In Asylum, we followed the story of a missing director. The scares revolved around an old Hollywood movie set and were more standstill than jump scareish. There was an actress who was performing for her role and was considered a diva. We went backstage with her and saw her perform her role for a minute before being cut off and told to redo it. There was also a man in front of a camera, a news reporter, and he was reporting on the missing director. I remember a board full of newspaper clippings talking about different Hollywood mysteries and such. ",1,83.03,95.4,17.04,10.43,3.96,1.98,0,1.98,4.95,0,4.95,1.98,0,0,0.99,0,1.98,0.99,0.99,0,0.99,0.99,0,0.99,0.99,0,0,0,17.82,3.96,0,0,0,0,3.96,13.86,0,0,4.95,1.98,0,0,0.99,0,0.99,0,0,0,0,0.99,10.89,0,2.97,6.93,0.99,0,0,1.98,0.99,48.29,71.93,66.43,6.53,1,2,2,2,1,1,100,0,37.5,75,37.5,0,100,83.59,83.59,17.97,0,100,0,50,100,3,0,0,8,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.727272727,101,18 +1070,Asylum,Delay,Goal-assigned,Baseline,1,06:15pm,2,1,0.5,"Like the others, I dont remember this section very well. I remember there was a movie set and a woman who was performing on it who became very upset when the director told her to restart the scene. I also remember a reporter saying that a famous director was missing. I also remember a man at a desk with a TV in the corner of the room and a lot of papers on the desk. I also remember a corkboard with a bunch of newspaper clippings on it. Other than that, I cant remember anything else.",1,67.92,11.66,68.87,34.94,3.13,0,1.04,3.13,13.54,0,13.54,6.25,0,1.04,1.04,0,5.21,6.25,3.13,2.08,1.04,1.04,0,1.04,0,0,1.04,0,9.38,2.08,0,0,0,0,2.08,7.29,0,0,2.08,1.04,0,0,0,0,0,0,0,0,0,1.04,4.17,0,0,4.17,0,0,0,0,1.04,-27.92,-23.82,-37.09,-22.86,4,1,3,1,4,2,0,16.08,30.07,100,44.06,100,92.31,30.77,0,61.54,47.5,0,100,25,100,0,0,0,8,0,0,0,0,0,0,0,0,2,8,2,10,0.8,8,1,96,18 +1070,DevilsDen,Immediate,Goal-assigned,Test,1,06:15pm,4,0,0.6,"We entered the building after being told that the group in front of us was being dismembered. After entering, we noticed a man with a chainsaw who followed us for a bit down the walkway. After that, we entered a building with multiple jump scares done by the actors. One man with some sort of power tool told me he was gonna chop off my arms which was nice. Though I cant remember the middle that well, I do remember at the end when we had to walk through a big room with strobe lights and a woman with a weapon standing near the end, in the middle of the hall.",1,91.8,89.25,90.13,32.75,6.31,5.41,0,0.9,7.21,0,7.21,2.7,0,0.9,1.8,0,2.7,1.8,2.7,1.8,0.9,0.9,0,0.9,0.9,0,0,0,13.51,1.8,0,0,0,0,1.8,11.71,0,0,0.9,2.7,1.8,0,0,0,0,0,0,0,0,0.9,14.41,0.9,4.5,8.11,0.9,0,0,1.8,0.9,12.34,23.45,8.83,4.74,5,4,4,3,5,2,28.26,66.67,0,0,100,56.96,30,60,100,0,47.83,0,0,100,0,6,1,0,6,1,0,0,0,0,0,0,0,1,14,1,15,0.933333333,13,0.461538462,111,18 +1070,DevilsDen,Delay,Goal-assigned,Test,1,06:15pm,4,1,0.6,"Now that I have finished going through the questions in the last section, I think that I might have mixed up Devil's Den with The Ghostly Grounds. I remember there being multiple different rooms with many different people, and a dentist that wanted to take your teeth. I also remember a crazy man with a chainsaw I think? And then of course the strobe lights and the long hallway with the person at the end who followed us for a bit.",1,85.68,33.01,98.38,20.23,2.5,1.25,1.25,0,13.75,0,13.75,6.25,0,1.25,2.5,2.5,2.5,2.5,1.25,0,0,1.25,0,0,0,0,0,0,6.25,0,0,0,0,0,0,6.25,0,0,0,1.25,0,1.25,1.25,0,0,0,0,0,0,7.5,10,0,1.25,7.5,1.25,0,0,2.5,7.5,6.25,36.52,-25.09,7.31,5,1,1,2,4,5,25,0,0,50,100,100,100,66.67,0,0,100,50,50,100,0,1,1,0,4,0,0,0,0,1,0,0,0,2,6,3,9,0.666666667,6,0.666666667,80,18 +1070,GhostlyGrounds,Delay,Goal-assigned,Share,1,06:15pm,3,0,0.8,"The only thing I remember from the Ghostly Grounds is the long hallway at the end of the haunted house. I remember it might have had something to do with vampires. I also remember strobe lights and one guy standing at the end of the long hallway who followed us for a few steps and scared me right at the end. Other than that, theres not much that I can remember.",1,65.15,9.23,94.92,1.98,1.43,1.43,0,0,17.14,2.86,14.29,5.71,0,1.43,2.86,0,4.29,5.71,2.86,0,2.86,1.43,0,1.43,1.43,0,0,0,4.29,0,0,0,0,0,0,4.29,0,0,0,1.43,0,0,0,0,0,0,0,0,0,5.71,8.57,0,1.43,5.71,1.43,0,0,0,5.71,23.51,82.6,5.42,-17.49,1,2,3,2,3,4,100,0,0,33.33,0,25,100,0,25,100,50,50,100,0,100,0,0,0,2,0,2,0,0,2,0,0,0,1,2,5,7,0.285714286,2,1,70,18 +1071,Infirmary,Immediate,Goal-assigned,Baseline,1,07:30pm,1,0,0.6,"I remember lots of neon colors, and that there was a lady dancing on a platform at the start. Im pretty sure that there were dangling black strips that we ha to push aside to go through the room at one point. We had to wear glasses which definitely made things very dizzy. There was a tunnel that we had to walk through with spinning walls and handrails. We were directed by an actor to put our glasses in the bin at the end.",1,78.95,91.33,79.29,20.23,5.95,5.95,0,0,5.95,0,5.95,1.19,1.19,0,1.19,1.19,1.19,1.19,0,0,0,0,0,0,0,0,0,0,9.52,2.38,0,1.19,0,0,0,8.33,0,0,1.19,0,4.76,0,0,0,0,0,0,0,0,4.76,17.86,0,7.14,8.33,2.38,0,1.19,4.76,4.76,27.65,52.36,22.41,8.17,5,4,1,2,5,4,55.17,0,55.17,36.78,100,47.54,73.77,47.54,100,0,100,100,100,0,0,4,1,0,6,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.545454545,84,18 +1071,Infirmary,Delay,Goal-assigned,Baseline,1,07:30pm,1,1,0.4,"I remember many bright neon colors, and a woman dancing on a platform at the beginning. We were given glasses to enhance our experience, and then had to return them to a person as we were leaving Infirmary. There was a spinning tunnel at one point that was difficult to walk through, especially with the glasses. Im not completely sure, but I believe at one point there were dangling strips that we had to push out of the way to proceed through the room. I remember seeing many polka dots around this section as well. ",1,75.71,64.91,95.32,35.11,4.21,4.21,0,0,8.42,0,8.42,3.16,0,0,0,1.05,2.11,2.11,3.16,2.11,1.05,0,0,0,0,0,0,0,8.42,1.05,0,0,0,0,0,7.37,0,0,1.05,0,4.21,0,0,0,0,0,0,0,0,2.11,16.84,0,6.32,8.42,3.16,0,0,4.21,2.11,25.93,35.53,42.25,0,5,4,4,4,5,2,50,50,75,0,100,16.67,66.67,50,100,0,33.33,0,0,100,33.33,4,1,0,6,0,0,0,0,0,0,0,0,1,11,1,12,0.916666667,11,0.545454545,95,18 +1071,Asylum,Delay,Goal-assigned,Baseline,1,07:30pm,1,0,0.5,"To be honest, I do not remember much of anything from this section. The name doesnt ring much of a bell, but I believe it was the second section of the tour. Although I cant recall anything from the inside, I know that I gave this a similar rating to Infirmary (1 or 2). ",1,55.25,1,99,20.23,0,0,0,0,27.78,0,27.78,7.41,0,1.85,5.56,5.56,11.11,3.7,0,0,0,0,0,0,0,0,0,0,3.7,1.85,0,0,0,0,0,1.85,0,0,0,0,0,0,0,0,0,0,0,0,0,5.56,5.56,0,0,5.56,0,0,0,0,5.56,36.04,55.96,-6.16,58.31,1,4,3,5,5,5,100,100,100,100,0,73.68,21.05,47.37,100,0,50,50,100,100,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,5,5,0,0,0,54,18 +1071,DevilsDen,Immediate,Goal-assigned,Test,1,07:30pm,3,0,0.2,"I remember that most (if not all) of the actors were wearing the color red. They also had tools in their hands that they would dangle in peoples faces. Im pretty sure this was the room with the most actors, compared to others that had more machines and animatronics. There were many large devices off to he side as we were navigating through the room that would blow air and make loud and unsettling noises. I believe I gave it a three, which would be the highest rating of all the rooms in terms of fear. I do remember we made our way through Devil's Den pretty quick. ",1,38.62,51.1,52.89,2.17,2.78,2.78,0,0,16.67,0.93,15.74,2.78,1.85,2.78,5.56,0,4.63,1.85,2.78,0,2.78,1.85,0,1.85,1.85,0,0,0,10.19,0.93,0,0,0,0,0,9.26,0,0,0,0.93,0,0,0,0,0,0,0,0,0,4.63,12.96,0,0,9.26,1.85,1.85,0,0,4.63,-9.99,34.4,-19.23,-45.14,5,1,1,4,5,3,60.61,92.42,92.42,0,100,100,65.29,47.93,72.73,0,100,50,0,52.38,52.38,2,0,0,8,3,0,0,0,0,0,2,0,0,13,2,15,0.866666667,10,0.8,108,18 +1071,DevilsDen,Delay,Goal-assigned,Test,1,07:30pm,3,1,0.6,"Although I cant recall much of what happened in the section, I remember this being the one I ranked highest (3 I believe) because they utilized their actors very well. Most of the actors wore red shirts and had some type of tool in their hands. When waiting in line to enter this section, there was a person swinging their tool (maybe a large pipe?) at peoples heads as they were about to begin. I do remember a large hall with strobe lights that made it difficult to walk in a straight line. When leaving the section and walking back around, I remember seeing that they had switched the person at the front to a woman who was screaming a lot more than the previous individual. ",1,68.19,54.27,98.48,20.23,0.79,0,0.79,0.79,12.7,1.59,10.32,3.97,2.38,0.79,0.79,0,2.38,3.17,1.59,0.79,0.79,0,0,0,0,0,0,0,11.11,0,0,0,0,0,0,10.32,0,0,0.79,0,0,0,0,0,0,0,0,0,0,0.79,19.05,0,3.97,11.9,2.38,0.79,0,0,0.79,-42.38,-39.78,-31.46,-55.91,5,1,1,1,4,2,0,51.85,51.85,75.93,100,100,71.72,71.72,0,17.93,100,0,20.8,20.8,41.6,4,1,0,6,0,0,0,0,0,3,0,0,2,11,5,16,0.6875,11,0.545454545,126,18 +1071,GhostlyGrounds,Delay,Goal-assigned,Share,1,07:30pm,2,0,0.2,"I remember that this was the last section of the tour. One thing that stood out from this section was that there werent as many actors, which definitely made this section less frightening. Rather than actors, there were more animatronics and devices that were used for scares, but unfortunately I didnt see them as scary. At one point, there was a machine that blew air at participants around the ankle area. This did make me jump a little, but I wouldnt necessarily classify it as ""scary"". I believe that we also had to walk up a set of stairs, and then down a different set of stairs in this section. ",1,22.87,6.9,96.58,1,0.91,0.91,0,0,14.55,0,14.55,1.82,2.73,0.91,0,1.82,6.36,0.91,3.64,0,3.64,3.64,0,3.64,3.64,0,0,0,4.55,0,0,0,0,0,0,4.55,0,0,0,0,1.82,0,0,0.91,0,0,0,0,0,2.73,15.45,0,1.82,12.73,0.91,0,0,2.73,2.73,22.05,50.23,-27.85,43.76,5,1,2,2,3,1,50,0,50,33.33,100,100,100,0,33.33,0,0,100,0,100,0,4,0,0,3,3,0,0,0,0,0,1,0,0,10,1,11,0.909090909,7,0.428571429,110,18 +1072,Infirmary,Delay,Goal-assigned,Baseline,1,07:30pm,1,0,0.8,"lots of colorful neon lights, wore 3d glasses, bridge, tunnel, green laser lights, bright, no actors, short, fun and exciting, trippy, bridge moved and had like rolling plastic",1,76.24,40.06,2.36,99,0,0,0,0,3.57,3.57,0,0,0,0,0,0,0,0,14.29,14.29,0,7.14,7.14,0,0,0,0,0,3.57,0,0,0,0,0,0,3.57,0,0,0,0,0,0,0,0,0,0,0,0,0,10.71,25,0,7.14,0,17.86,0,0,0,10.71,NA,90.96,28.22,NA,1,5,1,2,1,1,100,0,0,0,0,0,0,41.67,50,100,50,50,50,50,50,1,2,0,9,2,0,0,0,0,0,0,0,0,14,0,14,1,12,0.75,28,18 +1072,Asylum,Immediate,Goal-assigned,Baseline,1,07:30pm,1,0,0.75,"It was darker and had more flashing lights. There were more actors. It had body parts hanging on the wall and the actors followed you more. more decorations someone laying on a table more zig zag walking, more corners had jail cells",1,49.68,88.15,39.59,20.23,0,0,0,0,4.76,0,4.76,0,0,0,2.38,0,2.38,0,0,0,0,0,0,0,0,0,0,0,9.52,0,0,0,0,0,0,9.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.05,0,4.76,9.52,7.14,0,0,0,0,NA,-32.86,-49.78,NA,3,1,1,1,4,1,0,44.44,100,100,0,100,48.39,29.03,0,0,50,50,50,50,50,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,18 +1072,Asylum,Delay,Goal-assigned,Baseline,1,07:30pm,1,1,0.5,"lady in red room getting ready, lady moves to another room where a phone is and sits down, actor popped out of a small door, type writer machine, not too dark, machinery decor, dentist chair",1,92.95,57.11,99,65.27,0,0,0,0,5.71,0,5.71,0,0,0,0,0,5.71,0,2.86,2.86,0,0,0,0,0,0,0,0,14.29,8.57,0,5.71,0,0,2.86,11.43,0,0,5.71,0,0,0,2.86,0,0,0,0,0,0,5.71,31.43,0,2.86,22.86,5.71,0,0,2.86,5.71,NA,12.1,29.87,NA,2,2,1,5,1,1,50,100,100,100,0,0,100,100,0,100,50,50,50,50,50,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,10,1,10,1,35,18 +1072,DevilsDen,Immediate,Goal-assigned,Test,1,07:30pm,2,0,0.6,"more actors, more decorations, everything I described in Asylum (confused them), someone laying on a table, body parts on the wall darker and flashing lights, longer with more zig zags",1,93.3,59.25,79.1,1.4,0,0,0,0,12.9,3.23,9.68,0,0,0,6.45,0,3.23,0,3.23,0,3.23,3.23,0,3.23,0,0,0,0,12.9,3.23,0,0,0,0,3.23,9.68,0,0,0,0,0,0,3.23,0,0,0,0,0,0,3.23,22.58,0,3.23,12.9,9.68,0,0,3.23,3.23,-10.07,-44.76,-16.4,30.94,3,2,2,1,3,1,0,50,100,100,50,85.71,100,0,50,0,0,100,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,2,7,2,9,0.777777778,7,1,31,18 +1072,DevilsDen,Delay,Goal-assigned,Test,1,07:30pm,2,1,0.4,"cut up hanging body parts, long poles/rods, kind of like a jail cell, actor laying on a round table, another actor at the doorway before the actor on the round table, lots of corners, darker, machinery decoration, ",1,99,55.75,93.14,20.23,0,0,0,0,10.53,0,10.53,0,0,0,5.26,0,5.26,0,0,0,0,0,0,0,0,0,0,0,7.89,0,0,0,0,0,0,7.89,0,0,0,0,0,0,0,0,0,0,0,0,0,5.26,18.42,0,2.63,15.79,2.63,0,0,0,5.26,9.72,-23.46,21.68,30.94,4,3,2,1,1,1,0,0,84,100,4,0,0,100,0,0,0,100,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,9,0,9,1,9,1,38,18 +1072,GhostlyGrounds,Delay,Goal-assigned,Share,1,07:30pm,2,0,0.6,"enter through a bus, floor was shifting and moving, actors on the bus, dark, lights, bodies hanging, long, dark hallway with actors, ",1,98.87,86.82,79.84,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,0,0,0,0,0,0,9.09,0,0,0,0,0,0,0,0,0,0,0,0,0,4.55,36.36,0,9.09,13.64,13.64,0,0,0,4.55,NA,47.31,21.68,NA,3,2,1,2,1,1,80,0,100,0,50,0,100,0,0,0,50,50,50,50,50,0,1,0,5,0,0,1,0,1,0,0,0,0,6,2,8,0.75,6,0.833333333,22,18 +1073,Infirmary,Immediate,Goal-assigned,Baseline,1,08:30pm,2,0,0.75,"lots of lights, bright colors, clown, 3D, black light, weird music, i was expecting to be more scared, loud noises ",1,80.96,15.75,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,5,10,5,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,40,0,0,0,25,15,0,0,10,41.52,56.07,37.55,30.94,1,4,4,2,1,1,100,0,0,100,0,0,0,50,100,0,0,0,0,100,0,0,0,0,7,1,0,0,0,0,0,0,0,0,8,0,8,1,7,1,20,21 +1073,Infirmary,Delay,Goal-assigned,Baseline,1,08:30pm,2,1,0.5,"lights, bright colors, dots, splattered paint, snake, yelling, glasses, 3D",1,89.52,40.06,7.03,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,10,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,10,0,30,20,0,0,0,NA,NA,NA,NA,1,1,1,1,1,1,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,0,0,0,8,0,0,0,0,0,0,0,0,0,8,0,8,1,8,1,10,21 +1073,Asylum,Delay,Goal-assigned,Baseline,1,08:30pm,1,0,0.5,"lady singing in a red robe with a bed in the same room, in the beginning a guy slammed a book/binder down, a set thing, ",1,99,62.84,98.89,20.23,0,0,0,0,3.85,0,3.85,0,0,0,0,0,3.85,0,7.69,3.85,3.85,0,0,0,0,0,0,0,7.69,3.85,0,3.85,0,0,0,7.69,0,0,3.85,3.85,0,0,0,0,0,0,0,0,0,0,30.77,0,3.85,19.23,3.85,3.85,0,0,0,NA,-15.57,-9.59,NA,2,5,1,1,1,1,0,100,14.29,14.29,14.29,0,0,0,0,100,50,50,50,50,50,0,1,0,3,0,0,0,0,0,0,0,0,2,4,2,6,0.666666667,4,0.75,26,21 +1073,DevilsDen,Delay,Goal-assigned,Test,1,08:30pm,5,0,0.75,"girl out front with contacts, sledge hammer, people screaming, outdoor part, moving floor, dentist chair, gory head, chainsaw, air noises, big hammer, ",1,97.37,40.06,95.15,1,0,0,0,0,4.55,0,4.55,0,0,0,0,0,4.55,0,4.55,0,4.55,0,0,0,0,0,0,0,4.55,0,0,0,0,0,0,4.55,0,0,4.55,0,0,0,0,0,0,0,0,0,0,13.64,31.82,0,4.55,18.18,0,9.09,0,0,13.64,NA,90.96,NA,NA,1,1,1,2,1,1,100,0,0,0,0,50,50,50,50,50,50,50,50,50,50,0,0,0,9,0,0,0,0,1,0,0,0,0,9,1,10,0.9,9,1,22,21 +1073,GhostlyGrounds,Immediate,Goal-assigned,Share,1,08:30pm,3,0,0.8,"during the Ghostly Grounds there were lots of loud noises and banging there were also a lot of cages and characters with masks, there was a person acting like a monkey therewere also vines hanging from the ceiling. some of the characters were pacing. at the exit there were more vines hanging and animals. ",1,86.71,51.31,29.13,5.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.89,0,1.89,0,0,0,0,0,0,0,1.89,0,0,0,0,0,0,1.89,0,0,0,0,0,0,0,0,0,0,0,0,0,1.89,18.87,0,0,13.21,0,5.66,0,0,1.89,28.05,20.72,1.54,61.88,4,2,2,3,4,1,41.67,41.67,0,100,8.33,44.44,100,44.44,0,61.11,0,100,100,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,8,0,8,1,8,1,53,21 +1073,GhostlyGrounds,Delay,Goal-assigned,Share,1,08:30pm,3,1,0.8,"monkey mask, cages, vines hanging, weird noises, hallway out, cells, ",1,97.77,40.06,63.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,30,0,0,20,0,10,0,0,20,NA,4.96,NA,NA,5,1,1,1,1,1,0,0,0,0,100,50,50,50,50,50,50,50,50,50,50,0,0,0,5,1,0,0,0,0,0,0,0,0,6,0,6,1,5,1,10,21 +1074,Infirmary,Immediate,Goal-assigned,Baseline,1,08:30pm,2,0,0.75,There were neon lights around the whole course. It was funhouse themed. There were clowns and carnival like people. We were given 3D glasses which enhanced the course. The course was fairly narrow. Not a lot of people jumped out during this section. ,1,57.83,27.38,82.44,20.23,2.33,2.33,0,0,6.98,0,6.98,0,0,0,2.33,0,4.65,0,0,0,0,0,0,0,0,0,0,0,2.33,0,0,0,0,0,0,2.33,0,0,0,0,0,0,0,0,0,0,0,0,0,9.3,18.6,0,2.33,13.95,2.33,0,0,0,9.3,NA,64.08,18.37,NA,5,2,1,2,5,1,59.26,0,29.63,66.67,100,65.22,100,65.22,78.26,0,50,50,50,50,50,2,0,0,7,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.777777778,43,21 +1074,Infirmary,Delay,Goal-assigned,Baseline,1,08:30pm,2,1,0.75,it was full of glow in the dark and black light attractions. it seemed like a carnival type attraction. there was someone handing out 3D glasses. there was a room where you walked through a spinning tube that had holes in it. it was very vibrant. there were snakes and spiders.,1,40.88,73.71,83.69,20.23,0,0,0,0,3.92,0,3.92,1.96,0,0,3.92,0,0,0,0,0,0,0,0,0,0,0,0,0,3.92,0,0,0,0,0,0,3.92,0,0,0,0,0,0,0,0,1.96,0,0,0,0,5.88,29.41,0,3.92,17.65,7.84,0,0,1.96,5.88,29.61,54.41,3.47,30.94,4,5,2,5,1,1,90.91,33.33,66.67,100,0,0,6.38,29.79,6.38,100,0,100,0,0,0,1,1,0,7,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.777777778,51,21 +1074,Asylum,Delay,Goal-assigned,Baseline,1,08:30pm,1,0,0.5,it was like a 1960s themed attraction. there was a dentist with a head covered in teeth that was shouting and running around. there were drill noises and bursts of air. there was a detective in the beginning talking about what the attraction was about. there was a woman in red singing in a bedroom.,1,86.82,61.66,63.35,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.64,1.82,1.82,0,0,0,0,0,0,0,7.27,3.64,0,0,0,0,3.64,3.64,0,0,1.82,0,0,0,0,0,0,0,0,0,0,1.82,25.45,0,1.82,16.36,1.82,5.45,0,0,1.82,NA,-15.41,-9.93,NA,4,3,1,1,4,1,0,33.33,0,100,100,66.67,33.33,100,0,0,50,50,50,50,50,0,0,0,12,0,0,0,0,0,0,0,0,0,12,0,12,1,12,1,55,21 +1074,DevilsDen,Immediate,Goal-assigned,Test,1,08:30pm,3,0,0.5,"There was a man that had a chainsaw that ran past us. People were very interactive during this course. There was a woman in a locker room who kept saying ""time to go to work"" while pacing back and forth and slamming on the lockers. People had props like knives and big sledgehammers. They were making strange noises. ",1,58.3,90.41,67.94,1.05,3.45,1.72,1.72,0,3.45,0,3.45,0,3.45,0,0,0,0,0,3.45,0,3.45,0,0,0,0,0,0,0,10.34,1.72,0,0,0,0,1.72,8.62,0,0,1.72,1.72,0,0,0,0,0,0,0,0,1.72,13.79,15.52,0,5.17,10.34,0,1.72,0,0,15.51,NA,37.87,-30.97,NA,2,1,1,5,3,1,66.67,100,100,72.73,0,100,75,0,59.09,31.82,50,50,50,50,50,1,1,0,7,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.777777778,58,21 +1074,DevilsDen,Delay,Goal-assigned,Test,1,08:30pm,3,1,0.25,there was a man with a chainsaw that ran right past us while revving it. a woman in a room that looked like a locker room was talking to herself and banging on the walls an lockers. everyone looked like the were in an accident. a man had a big sledgehammer and was swinging it around. ,1,93.64,94.84,48.09,20.23,1.79,1.79,0,0,1.79,1.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.5,1.79,0,0,0,0,1.79,10.71,0,0,3.57,3.57,0,0,0,0,0,0,0,0,0,7.14,21.43,0,3.57,12.5,3.57,1.79,0,0,7.14,NA,-30.73,-33.19,NA,3,5,1,1,4,1,0,20,100,100,20,83.33,50,50,0,100,50,50,50,50,50,1,1,0,6,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.75,56,21 +1074,GhostlyGrounds,Delay,Goal-assigned,Share,1,08:30pm,3,0,0.6,there were people that looked like vampires. it was very misty and there was a long misty hallway. there were lots of strobe lights.,1,10.19,40.06,39.59,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.5,25,0,0,16.67,8.33,0,0,0,12.5,NA,-5.45,-0.51,NA,5,1,1,1,5,1,0,0,80,0,100,100,100,100,66.67,0,50,50,50,50,50,0,1,0,3,0,0,0,0,0,0,0,0,0,4,0,4,1,4,0.75,24,21 +1075,Infirmary,Immediate,Goal-assigned,Baseline,1,08:30pm,2,0,0.25,"There were lots of bright colors, lots of clowns, and loud noises. There were lots of patterns on the walls and floors like dots and stripes. There was a part you walked through that spun and made you dizzy. The clowns had objects they swung around. Lots and lots of spiders that were also very colorful. ",1,40.77,79.51,48.09,47.3,0,0,0,0,3.57,0,3.57,0,1.79,0,0,0,1.79,0,5.36,3.57,1.79,0,0,0,0,0,0,0,5.36,0,0,0,0,0,0,5.36,0,0,0,0,0,0,0,0,0,0,0,0,0,1.79,26.79,0,5.36,10.71,5.36,3.57,1.79,0,1.79,3.49,27.87,37.93,-55.32,2,3,5,4,1,1,41.67,100,50,0,50,0,11.11,100,55.56,100,0,0,0,0,100,1,0,0,12,0,0,0,0,0,0,0,0,0,13,0,13,1,13,0.923076923,56,21 +1075,Infirmary,Delay,Goal-assigned,Baseline,1,08:30pm,2,1,0.5,"this tour was filled with very bright neon colors, like paint splashed all over the walls, different patterns painted everywhere. the 3d glasses made these patterns and colors pop even more. there were lots and lots of clowns. there were tons of huge spiders that were also colorful. there was a part you walked through where there was smoke on both sides of you. there was a large rotating tunnels filled with little lights you walked through. ",1,52.96,70.24,68.52,61.07,0,0,0,0,6.49,2.6,3.9,0,1.3,0,0,0,2.6,0,2.6,2.6,0,0,0,0,0,0,0,0,3.9,0,0,0,0,0,0,3.9,0,0,0,0,0,0,0,0,2.6,0,0,0,0,1.3,24.68,0,3.9,14.29,6.49,0,0,2.6,1.3,51.13,64.26,58.19,30.94,5,3,3,2,1,1,61.22,0,34.69,67.35,100,0,28.85,100,69.23,7.69,0,0,100,0,0,3,1,0,8,0,0,0,0,1,0,0,0,0,12,1,13,0.923076923,12,0.666666667,77,21 +1075,Asylum,Delay,Goal-assigned,Baseline,1,08:30pm,2,0,0.75,"there were lots of people who looked like old time actors. one room had a guy writing on a type writing and reading off news, like he was typing a newspaper. there was a room with showers and lockers. there was a room that had a vanity with really bright lights but it was very smoky. there was one room where there was a big bed in the middle and a lady in a dress was walking and running around singing, asking who she was going to kill next. there was lots of old music and lots of smoke. we walked past one room that seemed like it had a bar and the guy behind it was slamming stuff onto it really loudly.",1,58.22,80.24,70.82,20.23,1.63,0.81,0,0.81,3.25,0,3.25,0.81,0,0,0.81,1.63,0.81,0,3.25,1.63,1.63,0,0,0,0,0,0,0,13.01,6.5,0,0.81,0.81,0.81,4.07,7.32,0,0,1.63,2.44,0,0,0,0,0,0,0,0,0,4.88,22.76,0,3.25,14.63,2.44,2.44,0,0,4.88,25.28,20.77,62.97,-7.89,2,5,5,4,1,1,45.45,100,100,0,0,0,92.31,92.31,61.54,100,0,0,96,0,100,0,4,0,10,0,0,0,0,3,0,0,0,0,14,3,17,0.823529412,14,0.714285714,123,21 +1075,DevilsDen,Immediate,Goal-assigned,Test,1,08:30pm,4,0,0.75,It started with someone letting you in with a big metal stick. A guy with a chain saw chased us down a ramp. The people inside talked about cutting you up . There was lots of sounds of people hitting metal really hard. People growled at you. There were a lot of sounds like gunshots and loud bangs. There was also a lot of smoke. ,1,95.8,98.18,23.08,1.56,1.56,1.56,0,0,3.13,0,3.13,0,0,0,1.56,1.56,0,0,3.13,0,3.13,0,0,0,0,0,0,0,10.94,1.56,0,0,0,0,1.56,9.38,0,0,0,1.56,0,0,0,0,0,0,0,0,0,7.81,21.88,0,1.56,10.94,1.56,6.25,1.56,0,7.81,-0.09,67.04,-12,-55.32,2,5,5,5,2,1,73.91,100,47.83,21.74,0,60,0,60,90,100,0,0,0,0,100,4,0,0,6,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.6,64,21 +1075,DevilsDen,Delay,Goal-assigned,Test,1,08:30pm,4,1,0.5,"the person at the entrance had contacts in that made it seem like she had no pupils, she was letting people in with a big metal stick. we walked in and went down a ramp where a guy ran up next to us with a chainsaw. there were lots and lots of noises that sounded like metal crashing and gunshots. we walked through a room where bodies were hanging upside down and swinging around. there was one room where it looked like they had chopped off limbs on a table. ",1,86.15,92.24,87.45,9.52,3.33,3.33,0,0,3.33,1.11,2.22,1.11,1.11,0,1.11,0,0,0,1.11,0,1.11,0,0,0,0,0,0,0,8.89,0,0,0,0,0,0,8.89,0,0,2.22,1.11,0,0,0,0,0,0,0,0,0,6.67,28.89,0,5.56,20,1.11,2.22,0,0,6.67,-30.21,8.94,-45.85,-53.71,2,1,1,4,2,2,33.33,100,100,0,33.33,100,0,33.33,33.33,66.67,100,0,0,0,0,3,2,0,5,0,0,2,0,1,0,0,0,0,10,3,13,0.769230769,10,0.5,90,21 +1075,GhostlyGrounds,Delay,Goal-assigned,Share,1,08:30pm,3,0,0.6,"entered through a school bus where there were lots of fake bodies, smoke, and flashing lights. lots of loud bangs throughout the whole tour. there was a part where it was very very smoky and you could not see anything, people were walking and running around, very loud. we had to go up and down stairs, there were cells where people would run through and jump out at you. there was was a box hanging and shaking really loudly. there were different little paths you could go through.",1,23.39,66.75,95.15,9.34,1.14,1.14,0,0,9.09,0,9.09,0,0,3.41,1.14,1.14,3.41,0,1.14,0,1.14,0,0,0,0,0,0,0,5.68,1.14,0,0,0,1.14,0,4.55,0,0,0,0,2.27,0,0,0,0,0,0,0,0,6.82,31.82,0,7.95,19.32,3.41,3.41,0,2.27,6.82,NA,54.82,79.98,NA,4,2,1,5,1,1,88.89,41.67,41.67,100,0,0,100,100,89.41,68.24,50,50,50,50,50,2,1,0,11,0,0,0,0,0,0,0,0,0,14,0,14,1,14,0.785714286,88,21 1076,Infirmary,Delay,Control,Baseline,0,08:30pm,1,0,0.4,"Infirmary was the first segment. It was very colorful and we got to wear special glasses that make things pop off the walls. There were two go go dancing ladies. There was a room that was kind of like an art exhibit. I mostly just remember that it was like a fun house. There might have been flashing lights, I think. Photos on the walls. ",1,39.7,49.21,88.07,68.66,1.54,1.54,0,0,10.77,0,10.77,3.08,1.54,0,6.15,0,0,1.54,3.08,3.08,0,1.54,1.54,0,0,0,0,0,4.62,3.08,0,1.54,0,0,0,3.08,0,0,1.54,0,0,0,1.54,0,0,0,0,0,0,12.31,20,0,4.62,13.85,4.62,0,0,1.54,12.31,20.23,58.08,-31.35,33.97,1,1,3,3,2,1,100,100,0,100,100,100,0,0,100,50,0,0,100,50,50,1,1,0,7,0,0,0,0,0,0,1,0,0,9,1,10,0.9,9,0.777777778,65,24 1076,Asylum,Immediate,Control,Baseline,0,08:30pm,1,0,0.75,"There were clocks on the wall when we first walk in. There were two pretty ladies and one of them said ""Stop there, only one of us is allowed to be beautiful here."" It was dark shades and not a lot of color. There was a section with articles on the wall. There was a loud air gun that was scary. The people there didnt jump out a lot, the noises were the scariest part. The name means nothing to me, there was no part of that experience that makes that Asylum memorable. I felt like we ran through it. ",1,46.17,34.42,94.09,4.64,3.96,2.97,0,0.99,11.88,1.98,8.91,1.98,1.98,0,0.99,0,3.96,0.99,5.94,1.98,3.96,1.98,0,1.98,1.98,0,0,0,7.92,2.97,0,0.99,0,0,0.99,5.94,0,0,0.99,0,0,0,0.99,0,0,0,0,0,0,9.9,20.79,0,2.97,12.87,1.98,1.98,0.99,0.99,9.9,-15.61,10.86,-10.4,-47.29,4,2,5,5,4,1,36.19,20,80,100,0,52.38,100,20,0,80,0,0,0,50,100,2,0,0,9,0,0,0,0,0,0,0,0,2,11,2,13,0.846153846,11,0.818181818,101,24 1076,Asylum,Delay,Control,Baseline,0,08:30pm,1,1,1,This was the second one. We returned our glasses and walked around the corner. This was more dark than the first one. There were newsprint’s on the walls. Framed photos of old timey spooky men. Possibly a bathtub? I did not think this one was scary at all. ,1,55.95,52.49,89.39,1,4.17,4.17,0,0,10.42,2.08,8.33,2.08,0,0,2.08,0,4.17,0,4.17,0,4.17,4.17,0,4.17,4.17,0,0,0,6.25,0,0,0,0,0,0,6.25,0,0,0,2.08,0,0,0,0,0,0,0,0,0,0,12.5,0,4.17,8.33,2.08,0,0,0,0,-26.22,-22.65,-46.16,-9.85,2,5,5,1,4,1,0,100,33.33,40.74,3.7,87.5,20,20,0,100,0,90,0,0,100,0,0,0,5,1,2,0,0,0,0,1,0,0,6,3,9,0.666666667,5,1,49,24 @@ -648,42 +648,42 @@ boiler room part of the haunted house with one of the actors in the center next 1081,DevilsDen,Delay,Control,Baseline,0,06:15pm,4,0,0.6,"Scary, Guy with weird beard and chainsaw chased us. Dark tunnel at the end with a guy in it. Flashing lights, ",1,99,99,24.32,1,4.76,4.76,0,0,0,0,0,0,0,0,0,0,0,0,4.76,0,4.76,4.76,0,4.76,4.76,0,0,0,14.29,0,0,0,0,0,0,14.29,0,0,0,9.52,0,0,0,0,0,0,0,0,4.76,0,23.81,0,4.76,4.76,14.29,0,0,0,4.76,NA,16.71,17.24,NA,3,2,1,2,1,1,40,0,100,100,50,0,100,0,0,50,50,50,50,50,50,1,1,0,2,1,0,0,0,0,0,0,0,0,5,0,5,1,4,0.5,21,21 1081,GhostlyGrounds,Immediate,Control,Baseline,0,06:15pm,5,0,0.8,"Bus. dark, scary. Foreign woman screaming from inside a cage. Little guy in a cage that came out. Spikes with bodies on it.",1,99,85.5,44.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.35,0,4.35,4.35,0,4.35,4.35,0,0,0,8.7,0,0,0,0,0,0,8.7,0,0,4.35,4.35,0,0,0,0,0,0,0,0,0,4.35,26.09,0,4.35,13.04,4.35,4.35,0,0,4.35,NA,-26.05,21.07,NA,2,4,1,1,1,1,0,100,66.67,41.67,83.33,0,0,0,100,100,50,50,50,50,50,0,1,0,5,1,0,0,0,0,0,0,0,0,7,0,7,1,6,0.833333333,23,21 1081,GhostlyGrounds,Delay,Control,Baseline,0,06:15pm,5,1,0.6,"Bus, foreign lady in cage, Scary, ",1,99,98.75,39.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.67,0,16.67,16.67,0,16.67,16.67,0,0,0,16.67,16.67,0,16.67,0,0,0,16.67,0,0,16.67,0,0,0,0,0,0,0,0,0,0,0,16.67,0,0,16.67,0,0,0,0,0,NA,-11.67,NA,NA,3,1,1,1,1,1,0,0,100,0,0,50,50,50,50,50,50,50,50,50,50,0,1,0,1,1,0,0,0,0,0,0,0,0,3,0,3,1,2,0.5,6,21 -1082,Infirmary,Delay,Role-assignment,Baseline,2,07:30pm,1,0,0.6,Lots of bright colors and clown faces. I think there were 4 actors. ,1,31.07,40.06,81.58,99,0,0,0,0,7.69,0,7.69,7.69,0,0,0,0,0,0,7.69,7.69,0,0,0,0,0,0,0,0,7.69,0,0,0,0,0,0,7.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.08,0,0,7.69,15.38,0,0,0,0,54.29,90.96,40.97,30.94,1,4,3,2,1,1,100,0,0,0,0,0,33.33,33.33,100,0,0,0,100,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,1,3,1,13,34 -1082,Asylum,Immediate,Role-assignment,Baseline,2,07:30pm,1,0,0.5,There was a person doing some stamps on the table when we entered. Then there was a few other actors one lady in red. It wasnt very scary but there were lots of news type props and it was dark and mostly grey. I think there were 4 actors total in the whole set. There were some flashing lights and air blowers. ,1,14.28,49.66,86.48,6.37,1.61,1.61,0,0,8.06,0,8.06,1.61,0,0,1.61,0,4.84,0,1.61,0,1.61,1.61,0,1.61,1.61,0,0,0,9.68,3.23,0,1.61,0,0,1.61,8.06,0,0,1.61,0,0,0,0,0,0,0,0,0,0,0,20.97,0,1.61,11.29,8.06,0,0,0,0,54.42,84.59,16.78,61.88,1,3,3,4,5,1,100,66.67,36.11,0,72.22,76.92,76.92,100,100,0,0,0,100,100,0,1,0,0,9,1,0,0,0,0,0,0,0,0,11,0,11,1,10,0.9,62,34 -1082,Asylum,Delay,Role-assignment,Baseline,2,07:30pm,1,1,0.25,I dont remember much other than a man at the beginning banging on the desk. Then I think later there was a woman in a red robe. ,1,93.76,2.75,99,20.23,0,0,0,0,14.81,0,14.81,7.41,0,0,0,0,7.41,3.7,0,0,0,0,0,0,0,0,0,0,7.41,0,0,0,0,0,0,7.41,0,0,3.7,3.7,0,0,0,0,0,0,0,0,0,0,14.81,0,0,7.41,3.7,3.7,0,0,0,-22.68,-19.49,-18.41,-30.14,2,1,1,1,2,2,0,100,70,10,70,100,0,80,80,0,100,0,0,60,0,1,0,0,2,0,0,0,0,0,0,0,0,0,3,0,3,1,3,0.666666667,27,34 -1082,DevilsDen,Immediate,Role-assignment,Share,2,07:30pm,2,0,0.4,There was an axe person at the beginning. Then there was a tall man carrying a large hammer thing walking around outside. There was a man wearing a gas mask outside. The man with the gas mask followed us around throughout the whole set. There were probably 6 more actors. There was a chain saw. There was saw from the roof with dead bodies on the side. There were lots of people hiding around each corner who would pop out we walked around. ,1,91.09,94.09,86.1,20.23,2.41,2.41,0,0,2.41,0,2.41,0,0,1.2,1.2,0,0,0,0,0,0,0,0,0,0,0,0,0,9.64,0,0,0,0,0,0,9.64,0,0,0,3.61,0,0,0,0,0,0,0,1.2,0,2.41,26.51,0,3.61,19.28,3.61,0,0,0,3.61,4.13,8.38,-26.94,30.94,2,5,3,3,2,1,33.33,100,0,79.17,8.33,86.49,0,86.49,8.11,100,0,0,100,0,0,2,0,0,11,0,0,0,0,0,0,0,0,0,13,0,13,1,13,0.846153846,83,34 -1082,DevilsDen,Delay,Role-assignment,Share,2,07:30pm,2,1,0.8,There was a person with two axes standing out front. There was a man with a gas mask walking around out front and then throughout the entire exhibit as we went. There was a monster standing on top of a cage that dropped. There were body parts with a saw at the very end. ,1,96.51,72.07,99,20.23,1.85,1.85,0,0,1.85,0,1.85,0,0,0,0,0,1.85,0,0,0,0,0,0,0,0,0,0,0,5.56,0,0,0,0,0,0,5.56,0,0,0,1.85,0,0,0,0,0,0,0,0,0,3.7,31.48,0,5.56,24.07,1.85,0,0,0,3.7,NA,-14.06,-4,NA,2,3,1,1,2,1,0,100,0,50,70,50,0,100,25,30,50,50,50,50,50,1,1,0,6,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.75,54,34 -1082,GhostlyGrounds,Delay,Role-assignment,Test,2,07:30pm,3,0,0.2,"I dont remember which one was the Ghostly Grounds, but I think it was the one with a bus that we entered first then it was really foggy and hard to see and we went up stairs and down stairs. I dont really remember anything else.",1,3.8,5.61,99,20.23,4.44,4.44,0,0,24.44,4.44,20,6.67,0,0,2.22,4.44,6.67,4.44,0,0,0,0,0,0,0,0,0,0,4.44,0,0,0,0,0,0,4.44,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22,13.33,0,4.44,4.44,2.22,0,2.22,0,2.22,-24.88,11.72,-17.17,-69.19,2,3,1,3,2,3,33.33,100,0,66.67,33.33,66.67,0,100,0,100,100,50,0,0,100,1,1,0,1,0,0,0,0,0,0,0,0,2,3,2,5,0.6,3,0.333333333,45,34 +1082,Infirmary,Delay,Goal-assigned,Baseline,2,07:30pm,1,0,0.6,Lots of bright colors and clown faces. I think there were 4 actors. ,1,31.07,40.06,81.58,99,0,0,0,0,7.69,0,7.69,7.69,0,0,0,0,0,0,7.69,7.69,0,0,0,0,0,0,0,0,7.69,0,0,0,0,0,0,7.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.08,0,0,7.69,15.38,0,0,0,0,54.29,90.96,40.97,30.94,1,4,3,2,1,1,100,0,0,0,0,0,33.33,33.33,100,0,0,0,100,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,1,3,1,13,34 +1082,Asylum,Immediate,Goal-assigned,Baseline,2,07:30pm,1,0,0.5,There was a person doing some stamps on the table when we entered. Then there was a few other actors one lady in red. It wasnt very scary but there were lots of news type props and it was dark and mostly grey. I think there were 4 actors total in the whole set. There were some flashing lights and air blowers. ,1,14.28,49.66,86.48,6.37,1.61,1.61,0,0,8.06,0,8.06,1.61,0,0,1.61,0,4.84,0,1.61,0,1.61,1.61,0,1.61,1.61,0,0,0,9.68,3.23,0,1.61,0,0,1.61,8.06,0,0,1.61,0,0,0,0,0,0,0,0,0,0,0,20.97,0,1.61,11.29,8.06,0,0,0,0,54.42,84.59,16.78,61.88,1,3,3,4,5,1,100,66.67,36.11,0,72.22,76.92,76.92,100,100,0,0,0,100,100,0,1,0,0,9,1,0,0,0,0,0,0,0,0,11,0,11,1,10,0.9,62,34 +1082,Asylum,Delay,Goal-assigned,Baseline,2,07:30pm,1,1,0.25,I dont remember much other than a man at the beginning banging on the desk. Then I think later there was a woman in a red robe. ,1,93.76,2.75,99,20.23,0,0,0,0,14.81,0,14.81,7.41,0,0,0,0,7.41,3.7,0,0,0,0,0,0,0,0,0,0,7.41,0,0,0,0,0,0,7.41,0,0,3.7,3.7,0,0,0,0,0,0,0,0,0,0,14.81,0,0,7.41,3.7,3.7,0,0,0,-22.68,-19.49,-18.41,-30.14,2,1,1,1,2,2,0,100,70,10,70,100,0,80,80,0,100,0,0,60,0,1,0,0,2,0,0,0,0,0,0,0,0,0,3,0,3,1,3,0.666666667,27,34 +1082,DevilsDen,Immediate,Goal-assigned,Share,2,07:30pm,2,0,0.4,There was an axe person at the beginning. Then there was a tall man carrying a large hammer thing walking around outside. There was a man wearing a gas mask outside. The man with the gas mask followed us around throughout the whole set. There were probably 6 more actors. There was a chain saw. There was saw from the roof with dead bodies on the side. There were lots of people hiding around each corner who would pop out we walked around. ,1,91.09,94.09,86.1,20.23,2.41,2.41,0,0,2.41,0,2.41,0,0,1.2,1.2,0,0,0,0,0,0,0,0,0,0,0,0,0,9.64,0,0,0,0,0,0,9.64,0,0,0,3.61,0,0,0,0,0,0,0,1.2,0,2.41,26.51,0,3.61,19.28,3.61,0,0,0,3.61,4.13,8.38,-26.94,30.94,2,5,3,3,2,1,33.33,100,0,79.17,8.33,86.49,0,86.49,8.11,100,0,0,100,0,0,2,0,0,11,0,0,0,0,0,0,0,0,0,13,0,13,1,13,0.846153846,83,34 +1082,DevilsDen,Delay,Goal-assigned,Share,2,07:30pm,2,1,0.8,There was a person with two axes standing out front. There was a man with a gas mask walking around out front and then throughout the entire exhibit as we went. There was a monster standing on top of a cage that dropped. There were body parts with a saw at the very end. ,1,96.51,72.07,99,20.23,1.85,1.85,0,0,1.85,0,1.85,0,0,0,0,0,1.85,0,0,0,0,0,0,0,0,0,0,0,5.56,0,0,0,0,0,0,5.56,0,0,0,1.85,0,0,0,0,0,0,0,0,0,3.7,31.48,0,5.56,24.07,1.85,0,0,0,3.7,NA,-14.06,-4,NA,2,3,1,1,2,1,0,100,0,50,70,50,0,100,25,30,50,50,50,50,50,1,1,0,6,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.75,54,34 +1082,GhostlyGrounds,Delay,Goal-assigned,Test,2,07:30pm,3,0,0.2,"I dont remember which one was the Ghostly Grounds, but I think it was the one with a bus that we entered first then it was really foggy and hard to see and we went up stairs and down stairs. I dont really remember anything else.",1,3.8,5.61,99,20.23,4.44,4.44,0,0,24.44,4.44,20,6.67,0,0,2.22,4.44,6.67,4.44,0,0,0,0,0,0,0,0,0,0,4.44,0,0,0,0,0,0,4.44,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22,13.33,0,4.44,4.44,2.22,0,2.22,0,2.22,-24.88,11.72,-17.17,-69.19,2,3,1,3,2,3,33.33,100,0,66.67,33.33,66.67,0,100,0,100,100,50,0,0,100,1,1,0,1,0,0,0,0,0,0,0,0,2,3,2,5,0.6,3,0.333333333,45,34 1083,Infirmary,Delay,Control,Baseline,0,06:15pm,2,0,0.6,"I remember having to put on 3D glasses, everything was neon and 3D. There was a room full of fog, a lady painting, a spinning tunnel, and a man on stilts.",1,89.52,59.25,79.1,20.23,0,0,0,0,6.45,3.23,3.23,3.23,0,0,0,0,0,3.23,0,0,0,0,0,0,0,0,0,0,6.45,3.23,0,3.23,0,0,0,6.45,0,0,3.23,3.23,6.45,0,0,0,3.23,0,0,0,0,0,16.13,0,6.45,9.68,0,0,0,9.68,0,-0.21,52.32,0.76,-53.71,3,2,1,2,4,2,85.71,0,100,100,100,57.14,100,66.67,0,33.33,100,0,0,0,0,1,0,0,5,0,0,1,0,0,0,0,0,0,6,1,7,0.857142857,6,0.833333333,31,18 1083,Asylum,Immediate,Control,Baseline,0,06:15pm,1,0,0.5,I remember walking in and seeing a man standing at a desk his back to us. There was a folder and typewriter on the desk. In the next room there was a doctor with a head filled with teeth on his chair. I remember a lady at a dressing room then she walked through a dorm and was in the next room at the end of the bed standing in front of a table with a phone on it. ,1,99,75.86,93.76,20.23,1.27,1.27,0,0,2.53,0,2.53,2.53,0,0,0,0,0,2.53,0,0,0,0,0,0,0,0,0,0,8.86,2.53,0,1.27,0,0,1.27,7.59,0,0,2.53,3.8,0,0,0,0,1.27,0,0,0,0,1.27,21.52,0,2.53,17.72,1.27,0,0,1.27,1.27,-15.28,-15.79,-13.95,-16.1,5,1,1,1,5,2,0,28.3,56.6,28.3,100,100,100,23.73,74.58,0,100,0,100,0,0,1,0,0,13,0,0,0,0,0,0,0,0,0,14,0,14,1,14,0.928571429,79,18 1083,Asylum,Delay,Control,Baseline,0,06:15pm,1,1,0.25,I remember a man at a desk with a typewriter and a folder. There was a lady in a dressing room then she moved to a room with a bed.,1,99,77.41,82.8,20.23,0,0,0,0,3.33,0,3.33,3.33,0,0,0,0,0,3.33,0,0,0,0,0,0,0,0,0,0,10,3.33,0,3.33,0,0,0,10,0,0,6.67,3.33,0,0,0,0,0,0,0,0,0,0,16.67,0,3.33,13.33,0,0,0,0,0,10.91,57.49,28.95,-53.71,5,3,1,4,5,2,66.67,66.67,33.33,0,100,50,50,100,100,0,100,0,0,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.6,30,18 1083,DevilsDen,Immediate,Control,Baseline,0,06:15pm,4,0,0.8,I remember going in and seeing a man standing with a a tool scaring people. Every turn there was someone standing there with some tool. We went doing a ramp that some guy was standing at. As we went down he ran down with a chainsaw. Then there was someone at the end standing on an elevated level on some metal catwalk he would slam the grate of the catwalk.,1,92.95,95.38,94.92,1.98,2.86,2.86,0,0,7.14,1.43,5.71,1.43,0,1.43,2.86,0,0,1.43,2.86,0,2.86,1.43,0,1.43,1.43,0,0,0,11.43,0,0,0,0,0,0,11.43,0,0,0,5.71,0,0,0,0,0,0,0,0,0,2.86,27.14,0,8.57,17.14,1.43,0,0,0,2.86,16.41,49.59,53.34,-53.71,4,2,1,2,1,2,66.67,0,50,100,50,0,100,60,40,20,100,0,0,0,0,4,0,0,7,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.636363636,70,18 1083,DevilsDen,Delay,Control,Baseline,0,06:15pm,4,1,1,"I remember walking in and seeing people with pipes and tools. There was a room with strobe lights and a man that would creep up. In the end, there was a guy on a catwalk that would slam a grate.",1,89.52,54.96,78.67,1,0,0,0,0,7.5,0,7.5,2.5,0,5,0,0,0,2.5,5,0,5,2.5,0,2.5,2.5,0,0,0,5,0,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,2.5,25,0,5,15,5,0,0,0,2.5,3.53,20.95,43.36,-53.71,4,2,1,3,1,2,33.33,33.33,0,100,66.67,0,100,100,0,0,100,0,0,0,0,2,1,0,5,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.625,40,18 1083,GhostlyGrounds,Delay,Control,Baseline,0,06:15pm,3,0,0.2,I cant remember Ghostly Grounds.,1,1,1,99,20.23,0,0,0,0,50,0,50,25,0,25,0,0,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,4,18 -1084,Infirmary,Delay,Role-assignment,Baseline,2,06:15pm,1,0,0.2,There was a bus we walked on first. There were electric chairs and bodies hanging. In the bus there were dummies in the seats. The floor moved. There were people in cells. ,1,78.28,75.49,99,20.23,3.13,3.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,0,0,0,0,0,0,3.13,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,34.38,0,6.25,28.13,0,0,0,0,3.13,NA,37.07,-23.51,NA,4,1,1,2,4,1,57.14,0,66.67,100,33.33,100,100,77.78,0,77.78,50,50,50,50,50,0,0,0,1,0,1,0,0,4,0,0,0,0,1,5,6,0.166666667,1,1,32,18 -1084,Asylum,Immediate,Role-assignment,Baseline,2,06:15pm,3,0,0.75,from the Asylum there were people that were looking for a celebrity that went missing. There was a dentist/ surgeon with a dummy head. There was an actress with a fan. there were newspapers on the wall. when we first walked in there was a guy that was mouthing something that was on the radio. There were desks with paper over it. There were people that were standing on the desks. ,1,66.04,84.23,59.49,20.23,2.78,1.39,0,1.39,1.39,0,1.39,0,0,0,1.39,0,0,0,0,0,0,0,0,0,0,0,0,0,6.94,0,0,0,0,0,0,6.94,0,0,1.39,1.39,0,0,1.39,0,0,0,0,0,2.78,4.17,20.83,2.78,2.78,15.28,2.78,0,0,1.39,6.95,NA,28.17,17.45,NA,2,4,1,4,2,1,44,100,60,0,60,21.88,0,29.69,100,29.69,50,50,50,50,50,1,0,0,10,0,0,0,0,0,0,0,0,2,11,2,13,0.846153846,11,0.909090909,72,18 -1084,Asylum,Delay,Role-assignment,Baseline,2,06:15pm,3,1,0.75,In the Asylum section there was a guy at first that was lip syncing to a news article about a famous guy that was wanted. There was a bathtub in one of the rooms. A dentist that had a dummy head with teeth over it. There was an actress in front of a mirror with lights. There was a sink. There was a long hallway. There was a guy with an axe cutting tress down. There were newspapers on the walls. ,1,97.13,68.54,59.99,37.8,1.22,0,1.22,1.22,1.22,0,1.22,0,0,1.22,0,0,0,0,1.22,1.22,0,0,0,0,0,0,0,0,6.1,1.22,0,0,0,0,1.22,4.88,0,0,1.22,3.66,0,1.22,1.22,0,0,0,0,0,0,2.44,21.95,0,0,20.73,1.22,0,0,2.44,2.44,NA,45.02,26.95,NA,4,3,1,3,1,1,64.71,64.71,0,100,100,0,0,100,19.05,19.05,50,50,50,50,50,1,0,0,11,0,0,0,0,2,0,0,0,0,12,2,14,0.857142857,12,0.916666667,82,18 -1084,DevilsDen,Delay,Role-assignment,Share,2,06:15pm,4,0,0.4,At the beginning there was a character outside. There were people with axes there was a guy that was cutting wood down. There were people who had tools,1,46.07,79.51,89.39,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,0,0,0,0,0,0,7.14,0,0,0,3.57,0,0,0,0,0,0,0,0,0,7.14,21.43,0,0,21.43,0,0,0,0,7.14,NA,89.62,16.48,NA,1,5,1,5,1,1,100,66.67,33.33,40,0,0,0,62.5,25,100,50,50,50,50,50,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,5,1,5,1,28,18 -1084,GhostlyGrounds,Immediate,Role-assignment,Test,2,06:15pm,3,0,0.6,"In the Ghostly Grounds section there were people in jail cells, there was a section where we walked through the jail cells. there was a section with a big monster. we walked in a hall. there was a guy with a chainsaw and there was wood and trees that had been cut down. after that there was a dark hallway ",1,73,84.73,97.35,20.23,3.39,3.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.08,0,0,0,0,0,0,5.08,0,0,0,1.69,0,0,0,0,0,0,0,0,0,3.39,28.81,0,3.39,23.73,1.69,0,0,0,3.39,NA,-21.97,-5.6,NA,2,5,1,1,3,1,0,100,100,0,27.27,40.74,40.74,0,81.48,100,50,50,50,50,50,3,0,0,5,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.625,59,18 -1084,GhostlyGrounds,Delay,Role-assignment,Test,2,06:15pm,3,1,0.4,There was a bus we walked on first. There were people in cells. Electric chairs. The floor moved. There were dummies on the bus,1,82.63,84.23,97.72,20.23,4.17,4.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.17,0,0,0,0,0,0,4.17,0,0,0,0,0,0,0,0,0,0,0,0,0,4.17,29.17,0,8.33,20.83,0,0,0,0,4.17,NA,4.96,-26.55,NA,5,1,1,1,3,1,0,0,0,0,100,100,66.67,0,66.67,0,50,50,50,50,50,0,1,0,4,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.8,24,18 -1086,Infirmary,Delay,Role-assignment,Baseline,2,07:30pm,2,0,0.2,They gave us 3D glasses at the beginning. It was a very small section with no breaks in between delirum and the other one. It was very neon and all the characters had neon on them. There was a character hiding in a box in the wall and there was also a character dancing ontop of something at the end. There were a lot of people with big smiles painted on too.,1,85.2,56.63,49.53,40.61,1.39,1.39,0,0,5.56,2.78,2.78,0,0,0,1.39,0,1.39,0,1.39,1.39,0,1.39,1.39,0,0,0,0,0,8.33,4.17,0,0,0,0,0,4.17,0,0,0,0,0,0,0,0,0,0,0,1.39,0,5.56,15.28,0,1.39,12.5,1.39,0,0,0,6.95,23.71,22.76,17.43,30.94,3,2,4,2,5,1,42.42,0,100,100,100,37.31,100,22.39,44.78,0,0,0,0,100,0,1,0,0,11,0,0,0,0,1,0,0,0,0,12,1,13,0.923076923,12,0.916666667,72,18 -1086,Asylum,Immediate,Role-assignment,Baseline,2,07:30pm,1,0,0.25,"I dont remember much from this experience, mostly because it was the most boring and least interesting there. All I remember is a bunch of animatronics in cages I believe, but I think that was another one. All I know is that was the boring one. I know it wasnt very scary and that I wasnt interested in what was going on enough to remember what it was about. ",1,3.46,1,99,7.29,0,0,0,0,21.74,2.9,18.84,10.14,1.45,0,1.45,0,5.8,4.35,7.25,2.9,4.35,4.35,0,4.35,1.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.45,2.9,0,0,2.9,2.9,7.25,1.45,1.45,4.35,0,0,0,4.35,5.8,18.83,41.75,3.32,11.42,5,3,3,3,2,2,46.43,69.64,0,23.21,100,60,0,100,80,7.69,33.33,0,100,0,2.56,0,0,0,0,2,0,0,0,1,0,0,0,6,2,7,9,0.222222222,0,0,69,18 -1086,Asylum,Delay,Role-assignment,Baseline,2,07:30pm,1,1,0.25,I rememeber this was the most borning one because there was nothing good about it. Not scary at all. I dont remember anything from the actual attraction because nothing caught my eye.,1,5.64,1,75.23,20.23,0,0,0,0,25,9.38,15.63,3.13,6.25,0,3.13,0,3.13,3.13,6.25,3.13,3.13,6.25,3.13,3.13,3.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,0,0,0,0,0,0,3.13,9.38,0,3.13,3.13,3.13,0,0,3.13,3.13,9.26,19.43,-8.17,16.51,4,3,4,5,4,1,42.86,42.86,50,100,0,71.43,71.43,100,0,50,0,85.71,0,100,100,0,0,0,0,1,0,0,0,0,0,0,0,4,1,4,5,0.2,0,0,32,18 -1086,DevilsDen,Delay,Role-assignment,Share,2,07:30pm,2,0,0.6,I remeber it was one of my favorite parts. I thought it was really cool but not to scary. I dont believe I remember much more. I think it was one of the last ones we did too.,1,2.68,1,99,61.63,2.63,2.63,0,0,21.05,0,21.05,10.53,0,0,0,2.63,7.89,2.63,7.89,5.26,2.63,2.63,0,2.63,2.63,0,0,0,2.63,0,0,0,0,0,0,2.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.63,0,0,0,0,0,2.63,0,0,47.88,40.66,11.43,91.56,5,2,2,2,4,1,43.75,0,43.75,0,100,36.36,100,36.36,0,0,0,100,100,57.14,0,0,0,0,0,3,0,0,0,0,0,1,0,1,3,2,5,0.6,0,0,38,18 -1086,GhostlyGrounds,Immediate,Role-assignment,Test,2,07:30pm,2,0,0.6,"I remember it was a lot of fun seeing all the people in the same type of masks speaking gibberish. I remember someone saying hi to me and I laughed straight after because I thought it was funny that the actors say hi even if theyre in character. The bus (i think its that one) was also really cool, I thought it was interesting that we were able to go through it and see all of the weird looking mannequins placed there. Overall it was very entertaining, not to scary though, you could see all the actors before they decided to scare you, it was also quite open and you could see mostly everything. I was expecting something else with the title of Ghostly Grounds but it still exceeded expectations. I think that there wasnt a lot of scare actors but that may be due to the labor shortage.",1,14.69,22.35,81.07,73.09,1.35,0.68,0.68,0,19.59,2.7,16.89,4.73,0.68,1.35,4.05,0.68,5.41,1.35,7.43,5.41,2.03,4.73,2.7,2.03,2.03,0,0,0,11.49,4.73,0,1.35,0,0,4.73,6.76,0,0,0,0,0,0,0,0.68,0.68,0,0,0,1.35,6.08,10.14,0,0.68,5.41,3.38,0.68,0.68,1.36,7.43,37.32,70.21,49.39,-7.65,5,4,5,4,1,3,94.17,21.67,45.83,0,100,0,56.31,37.54,100,22.33,23.97,71.9,0,75.21,100,3,1,0,4,7,0,0,0,0,0,1,0,1,15,2,17,0.882352941,8,0.5,148,18 -1086,GhostlyGrounds,Delay,Role-assignment,Test,2,07:30pm,2,1,0.4,I remember that we first walked in through a bus where there were weird mannequins and some actors. All the actors had the same mask on at some point which i thought was funny. There was also animatronics in jail cells and they were borning. There wasnt a lot of scare actors at the jail cell part with all the foliage.,1,65.02,30.91,87.98,20.23,1.64,1.64,0,0,13.11,3.28,9.84,3.28,0,0,0,0,6.56,1.64,3.28,1.64,1.64,3.28,1.64,1.64,1.64,0,0,0,8.2,0,0,0,0,0,0,8.2,0,0,0,0,0,0,0,0,0,0,0,0,1.64,1.64,11.48,0,1.64,9.84,0,0,0,0,3.28,14.89,35.67,3.42,5.59,5,3,3,2,5,2,25.64,0,0,0,100,75.64,50,100,66.67,0,46.15,0,100,0,0,0,1,0,5,2,0,0,0,0,0,0,0,0,8,0,8,1,6,0.833333333,61,18 -1087,Infirmary,Immediate,Role-assignment,Baseline,2,07:30pm,2,0,0.6,"Infirmary started with a thick fog down a dark hallway. There were green lights, but you could not see below the waist. Then we were given some glasses that made the neon colors of the walls move and breathe. The monsters were dressed in neon costumes. There was a cylindrical room that was spinning and disorienting. This went straight into the next attraction.",1,78.06,49.5,90.66,20.23,1.59,1.59,0,0,6.35,0,6.35,0,1.59,1.59,0,0,3.17,0,0,0,0,0,0,0,0,0,0,0,3.17,0,0,0,0,0,0,3.17,0,0,0,0,0,0,0,0,0,1.59,0,0,0,1.59,26.98,0,4.76,14.29,7.94,0,0,1.59,1.59,30.25,69.07,30.76,-9.08,1,2,5,2,1,1,100,0,50,62.5,8.33,0,100,20,25,46.67,0,92.31,0,0,100,1,1,0,6,0,0,1,0,3,0,0,0,0,8,4,12,0.666666667,8,0.75,63,20 -1087,Infirmary,Delay,Role-assignment,Baseline,2,07:30pm,2,1,0.4,Infirmary was the first attraction. The theme was neon and circus type. I was leading our group as we walked. Everybody first gathered in a room where a lady talked to us about the haunted house. There was then a choice to get a red glow stick that would tell the monsters you want to get touched and scared extra. we were not allowed to wear them because the study had to be constant. I lead the group into the first hallway which had a thick fog. There were green lasers that lit the room but you could not see below the waist. We then walked though dark hallways with neon paint. There was a circular hallway that made it feel like the walls were spinning. There were elevated surfaces with painted people dancing on them ,1,59.96,83.32,57.19,7.16,5.88,3.68,1.47,2.21,11.03,0.74,10.29,1.47,2.94,2.21,0,0,3.68,0,1.47,0,1.47,0.74,0,0.74,0.74,0,0,0,12.5,3.68,0,0.74,0,0,1.47,9.56,0,0,0.74,0,1.47,0.74,2.21,0,0.74,0,0,0,0,4.41,18.38,0,2.94,9.56,4.41,0,1.47,5.16,4.41,37.76,32.82,11.34,69.12,2,4,3,4,2,1,44.64,100,50,0,25,33.57,0,40,100,20,0,50,100,50,50,1,1,0,6,0,8,0,0,5,0,2,0,0,8,15,23,0.347826087,8,0.75,136,20 -1087,Asylum,Delay,Role-assignment,Baseline,2,07:30pm,2,0,0.5,"First there was a monster outside who was confused as to why our group leader had his lap top. The monster had a mask on that distorted his voice. It was hard to make out what he was saying but me and the other group members found it comical. Another monster also appeared that was trying to scare me and then bumped into me on accident. He then said ""excuse me"" in a regular human voice. I also found this comical. We then entered the bus which had a mix of real people and fake monsters. I was trying to decipher who was real and who was fake. I also remember walked up and down stairs. At one point there was a hallway where the floors were moving. It was hard to walk on it and I was afraid that one of my group might fall. At the end there was a kaleidoscope hallway. This hallway seemed to be a place where the inmates cells were. The cells were very short which I found odd, and they were all open, it seemed like anyone could go in if they wanted to. ",1,28.42,55.67,81.39,4.18,3.66,1.57,1.05,1.05,14.14,0.52,13.61,3.66,1.05,2.09,3.14,1.05,3.66,0.52,4.19,1.05,3.14,1.57,0,1.57,1.05,0,0,0,13.09,3.14,0,1.05,0,1.05,1.05,9.95,0,0,0,2.09,0,0.52,0,0,0,0,0,0,0.52,4.71,13.61,0,3.66,9.42,0.52,0,1.05,0.52,5.23,23.99,53.12,17.07,1.79,4,2,3,2,4,4,92.31,0,0,100,0,29.49,100,100,0,100,24.36,75,100,0,100,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,20 -1087,DevilsDen,Immediate,Role-assignment,Share,2,07:30pm,4,0,0.6,Machine shop was dark and dirty. First there were two people that were hiding behind two walls and jumped out and scared the people behind us. Then we went outside where I was jump scared by a man just outside of the doorway. We then got back inside where we went through winding hallways with blood and organs. We also went through the machine which was bloody and had heads.,1,48.23,92.91,97.09,1,7.14,7.14,0,0,1.43,0,1.43,0,0,0,0,0,1.43,0,5.71,0,5.71,2.86,0,2.86,2.86,0,0,1.43,8.57,0,0,0,0,0,0,8.57,0,0,0,1.43,0,0,1.43,0,0,0,0,1.43,0,5.71,25.71,0,7.14,15.71,2.86,0,0,1.43,7.14,-44.18,-37.35,-39.87,-55.32,3,5,5,1,3,1,0,66.67,100,50,33.33,66.67,33.33,0,33.33,100,0,0,0,0,100,6,0,0,7,0,0,0,0,0,0,0,0,0,13,0,13,1,13,0.538461538,70,20 -1087,DevilsDen,Delay,Role-assignment,Share,2,07:30pm,4,1,0.8,"First we went in to the entrance and there were two different monsters that were hiding behind the wall. Then there was another monster hiding behind a door that jump scared me and another partner. There was then a room with hanging bodies. We walked through the machine more and there were bloody body parts everywhere. We then walked through the machine which was covered in blood, flesh and various body parts. We then walked down a long hallway that had intense strobe lights where it was hard to see. ",1,42.98,33.76,99,3.72,5.56,5.56,0,0,8.89,1.11,7.78,0,0,0,0,0,7.78,0,2.22,0,2.22,1.11,0,1.11,1.11,0,0,1.11,5.56,1.11,1.11,0,0,0,0,4.44,0,0,0,0,0,0,0,0,0,0,0,2.22,0,2.22,30,0,5.56,18.89,4.44,0,1.11,0,4.44,NA,71.18,18.9,NA,1,2,1,2,1,1,100,0,66.67,33.33,33.33,0,100,0,0,33.33,50,50,50,50,50,4,1,0,8,0,0,1,0,0,0,0,0,0,13,1,14,0.928571429,13,0.615384615,90,20 -1087,GhostlyGrounds,Delay,Role-assignment,Test,2,07:30pm,3,0,0.4,Ghostly Grounds was the second attraction that we went through. It was directly after the first one. There was a little room that we stood in so that we could jot down if we thought the first one was scary. It was very short and the least scary. There was first a guy at a type writer who was asking our group leader what he was using the laptop for. Everybody was dressed as they were in the 40s or 50s.,1,29.27,99,15.38,2.86,7.5,6.25,0,1.25,7.5,1.25,6.25,1.25,1.25,1.25,2.5,0,2.5,0,2.5,0,2.5,2.5,0,2.5,2.5,0,0,0,17.5,1.25,0,0,0,0,1.25,16.25,0,0,0,2.5,0,0,0,0,0,0,0,0,0,0,10,0,1.25,8.75,0,0,0,0,0,49.26,72.11,44.74,30.94,5,2,3,3,1,1,66.67,33.33,0,33.33,100,0,100,50,25,25,0,0,100,0,0,0,0,0,0,0,2,0,0,4,1,2,0,1,0,10,10,0,0,0,80,20 -1088,Infirmary,Delay,Role-assignment,Baseline,2,07:30pm,1,0,0.6,"The Infirmary section was very fun! I remember thinking that it was very psychedelic. I had trouble maintaining balance. There were a lot of blacklights to emphasize the neon colors that were everywhere on the walls, cielings, actors, etc. It was mental asylum themed. Early on, we were given glasses that distorted our vision to make things look more blurry/dizzying. We had to return the glasses at the end of the section to be thrown out. There was a tunnel with a short bridge, but the walls of the tunnel were turning and had colorful patterns on them, lit up in the black darkness. It was very dizzying to walk through. There was a woman standing on a platform and dancing sort of like a stripper. I said something along the lines of ""YAASSS"".",1,88.47,66.21,63.35,30.29,2.22,2.22,0,0,7.41,0.74,6.67,1.48,0.74,0,2.22,0,0.74,0.74,2.22,1.48,0.74,0.74,0.74,0,0,0,0,0,6.67,1.48,0,0,0,0,0.74,5.19,0,0,0.74,0,1.48,0,0,0,0,0,0,0.74,0,3.7,20.74,0.74,3.7,10.37,5.93,0,1.48,1.48,4.44,-30.15,-24.61,-31.63,-34.2,3,1,1,1,5,2,0,0,100,83.33,100,100,66.67,16.67,50,0,100,0,0,50,0,7,2,0,16,0,0,0,0,0,0,0,0,0,25,0,25,1,25,0.64,135,20 -1088,Asylum,Immediate,Role-assignment,Baseline,2,07:30pm,1,0,0.5,"This exhibition featured saws, flashing lights . Seeing a lot of the color red. Actors jumped out. Part of me feels like we didnt go to Asylum. But I know we did. I remember Infirmary, the Devil's Den, and the Ghostly Grounds the best. There were jail cells on either side that were very small. I remember better now. There were a lot of strobe lights, I was having trouble following the group ahead. The hallway was narrow and I was losing my balance. There were a few tall clowns. That were in orange. White strobe lights. I remember seeing the silhouete of my female peer ahead of me, her long hair. We turned a few corners. Actors jumped out at the corners. There were some uneven platforms that we had to be balanced on. WAIT I REMEMBER NOW. It was sort of 1920s gangster theme. There was a guy ina suit sitting on a table ina gangster sort of suit that said something along the lines of ""Keep your eyes out theres something weird thats going on"". And there were a lot of filing cabinets.",1,65.37,49.71,90.68,20.23,4.86,3.24,1.62,0,9.19,0,9.19,3.24,0,0,3.24,0,2.16,2.16,2.16,1.08,1.08,0,0,0,0,0,0,0,8.11,0.54,0,0,0,0,0.54,7.57,0,0,1.08,0.54,1.08,0,0.54,0,0,0,0,1.08,0.54,7.03,17.84,0,2.7,9.19,5.95,0,0.54,1.62,8.65,18.04,22.05,59.52,-27.46,5,2,1,3,1,5,25,50,0,50,100,0,100,80,100,0,100,50,25,25,0,4,0,0,8,0,2,0,0,10,0,0,0,7,12,19,31,0.387096774,12,0.666666667,185,20 -1088,Asylum,Delay,Role-assignment,Baseline,2,07:30pm,1,1,0.5,"The Asylum section of the tour was sort of ""Haunted Hollywood"" themed. There was a sort of ""behind the scenes"" area with a directors chair and a vanity. It was sort of 1920s themed. There was an actress with a handheld oldfashioned fan, fanning herself. There was a man in a gangster sort of suit towards the end of the section that told us to keep an eye out, that there was something weird going on. ",1,98.68,86.82,32.28,20.23,3.9,2.6,0,1.3,11.69,0,11.69,0,0,0,11.69,0,0,0,2.6,1.3,1.3,0,0,0,0,0,0,0,10.39,2.6,0,0,0,1.3,1.3,7.79,0,0,2.6,1.3,0,0,1.3,0,0,0,0,0,1.3,3.9,16.88,0,1.3,14.29,1.3,0,0,1.3,5.2,NA,-0.73,-7.99,NA,4,5,1,3,4,1,17.19,40.63,0,100,0,36.25,36.25,60,0,100,50,50,50,50,50,2,0,0,11,0,0,0,0,0,0,0,0,0,13,0,13,1,13,0.846153846,77,20 -1088,DevilsDen,Delay,Role-assignment,Share,2,07:30pm,2,0,0.8,"This section was very mechanical, and had actors dressed up in Devil's Den uniforms. They were very dirty and rugged looking. I think there was a furnace. I remember there were mechanical machines, one of which was chopping up fake body parts such as a hand. ",1,28.85,18.24,92.58,1,0,0,0,0,8.7,0,8.7,4.35,0,0,0,0,4.35,2.17,4.35,0,4.35,0,0,0,0,0,0,0,6.52,2.17,0,0,0,2.17,0,4.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.22,0,0,13.04,2.17,0,0,0,0,20.65,2.73,-2.68,61.88,5,1,3,1,5,1,0,4.76,4.76,4.76,100,100,85.71,85.71,85.71,0,0,0,100,100,0,0,0,0,8,0,0,0,0,0,0,0,0,0,8,0,8,1,8,1,46,20 -1088,GhostlyGrounds,Immediate,Role-assignment,Test,2,07:30pm,2,0,0.8,"In the Ghostly Grounds section, we waited in a line that curved around a blue school bus that said ""The Ghostly Grounds"" on it. There were a lot of middle school aged children behind us. There was a clown actor that kept telling our research coordinator to close his laptop and put it away. We stepped up onto the school bus, and there was a dummy woman in the first seat on the left. There were a variety of actors vs dummies in the seats. There were flashing white lights. We were then led into the penitentiary building. There again we walked through a hallway that included the jail cells that were narrow and the long tall narrow hallway. There were tall demonic monsters in the hallway that were above the grassy viney hallway. there was a grassy viney sort of hallway that we walked through. That had chains and a lot of body dummies in a pile. There was an arm in one of the body piles that kept swirling around. It was confusing to look at. I held my arms together throughout various parts. chains",1,89.52,81.28,92.22,14.33,5.41,4.32,0,1.08,4.86,0,4.86,0,0.54,0,1.62,0,2.16,0,0.54,0,0.54,0.54,0,0.54,0,0,0,0,8.65,1.62,0,0,0,0.54,1.08,7.03,0,0,0.54,0.54,0,0,0,0,0,0,0,0,0.54,1.62,23.78,0.54,2.7,18.38,2.7,0,0,0,2.16,19.61,74.06,40.1,-55.32,1,4,5,4,5,1,100,50,50,0,100,40,80,80,100,0,0,0,0,0,100,4,4,0,15,1,0,0,0,0,0,0,1,0,24,1,25,0.96,23,0.652173913,185,20 -1088,GhostlyGrounds,Delay,Role-assignment,Test,2,07:30pm,2,1,0.4,"This portion included actors dressed in costumes with jump scares. It was dark and things lurched out at me. This was the last portion that we did. There was a blue decrepit schoolbus that said ""The Ghostly Grounds"" on it. One of the actors was giving our group leader trouble for having a laptop on him, but our leader kept saying that ""Francine knows"". We stepped into the step steeps of the schoolbus, and there were a combination of dummies and live actors in the seats. I remember seeing a dummy woman in the first seat on the lefthand side. She had ratty blonde hair and sort of looked like a prostitute. We left out the back of the schoolbus and walked into a path that led into the penitentiary building. There were a lot of steep steps, and there was a winding path with foliage and cages. There was a weird arm that sort of twisted in place in a pile of other body parts. There were some large dummy demon creatures that loomed above the cages when we later went up the stairs, towards the end of the section.",1,93.24,86.35,81.98,9.95,4.74,3.16,0,1.58,5.79,0,5.79,1.05,0.53,0,2.11,0,1.58,0.53,1.05,0,1.05,0.53,0,0.53,0.53,0,0,0,10,1.58,0,0,0,0.53,1.05,8.42,0,0,1.58,0.53,0,0,0,0,0,0,0,0.53,0.53,3.16,20.53,0,3.68,14.74,2.11,0,0,0,4.22,-7.39,-46.74,-29.03,53.59,5,1,2,1,3,1,0,40,60,80,100,100,75,0,62.5,25,0,100,50,0,0,8,1,0,15,0,0,0,0,0,0,1,0,0,24,1,25,0.96,24,0.625,190,20 +1084,Infirmary,Delay,Goal-assigned,Baseline,2,06:15pm,1,0,0.2,There was a bus we walked on first. There were electric chairs and bodies hanging. In the bus there were dummies in the seats. The floor moved. There were people in cells. ,1,78.28,75.49,99,20.23,3.13,3.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,0,0,0,0,0,0,3.13,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,34.38,0,6.25,28.13,0,0,0,0,3.13,NA,37.07,-23.51,NA,4,1,1,2,4,1,57.14,0,66.67,100,33.33,100,100,77.78,0,77.78,50,50,50,50,50,0,0,0,1,0,1,0,0,4,0,0,0,0,1,5,6,0.166666667,1,1,32,18 +1084,Asylum,Immediate,Goal-assigned,Baseline,2,06:15pm,3,0,0.75,from the Asylum there were people that were looking for a celebrity that went missing. There was a dentist/ surgeon with a dummy head. There was an actress with a fan. there were newspapers on the wall. when we first walked in there was a guy that was mouthing something that was on the radio. There were desks with paper over it. There were people that were standing on the desks. ,1,66.04,84.23,59.49,20.23,2.78,1.39,0,1.39,1.39,0,1.39,0,0,0,1.39,0,0,0,0,0,0,0,0,0,0,0,0,0,6.94,0,0,0,0,0,0,6.94,0,0,1.39,1.39,0,0,1.39,0,0,0,0,0,2.78,4.17,20.83,2.78,2.78,15.28,2.78,0,0,1.39,6.95,NA,28.17,17.45,NA,2,4,1,4,2,1,44,100,60,0,60,21.88,0,29.69,100,29.69,50,50,50,50,50,1,0,0,10,0,0,0,0,0,0,0,0,2,11,2,13,0.846153846,11,0.909090909,72,18 +1084,Asylum,Delay,Goal-assigned,Baseline,2,06:15pm,3,1,0.75,In the Asylum section there was a guy at first that was lip syncing to a news article about a famous guy that was wanted. There was a bathtub in one of the rooms. A dentist that had a dummy head with teeth over it. There was an actress in front of a mirror with lights. There was a sink. There was a long hallway. There was a guy with an axe cutting tress down. There were newspapers on the walls. ,1,97.13,68.54,59.99,37.8,1.22,0,1.22,1.22,1.22,0,1.22,0,0,1.22,0,0,0,0,1.22,1.22,0,0,0,0,0,0,0,0,6.1,1.22,0,0,0,0,1.22,4.88,0,0,1.22,3.66,0,1.22,1.22,0,0,0,0,0,0,2.44,21.95,0,0,20.73,1.22,0,0,2.44,2.44,NA,45.02,26.95,NA,4,3,1,3,1,1,64.71,64.71,0,100,100,0,0,100,19.05,19.05,50,50,50,50,50,1,0,0,11,0,0,0,0,2,0,0,0,0,12,2,14,0.857142857,12,0.916666667,82,18 +1084,DevilsDen,Delay,Goal-assigned,Share,2,06:15pm,4,0,0.4,At the beginning there was a character outside. There were people with axes there was a guy that was cutting wood down. There were people who had tools,1,46.07,79.51,89.39,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,0,0,0,0,0,0,7.14,0,0,0,3.57,0,0,0,0,0,0,0,0,0,7.14,21.43,0,0,21.43,0,0,0,0,7.14,NA,89.62,16.48,NA,1,5,1,5,1,1,100,66.67,33.33,40,0,0,0,62.5,25,100,50,50,50,50,50,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,5,1,5,1,28,18 +1084,GhostlyGrounds,Immediate,Goal-assigned,Test,2,06:15pm,3,0,0.6,"In the Ghostly Grounds section there were people in jail cells, there was a section where we walked through the jail cells. there was a section with a big monster. we walked in a hall. there was a guy with a chainsaw and there was wood and trees that had been cut down. after that there was a dark hallway ",1,73,84.73,97.35,20.23,3.39,3.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.08,0,0,0,0,0,0,5.08,0,0,0,1.69,0,0,0,0,0,0,0,0,0,3.39,28.81,0,3.39,23.73,1.69,0,0,0,3.39,NA,-21.97,-5.6,NA,2,5,1,1,3,1,0,100,100,0,27.27,40.74,40.74,0,81.48,100,50,50,50,50,50,3,0,0,5,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.625,59,18 +1084,GhostlyGrounds,Delay,Goal-assigned,Test,2,06:15pm,3,1,0.4,There was a bus we walked on first. There were people in cells. Electric chairs. The floor moved. There were dummies on the bus,1,82.63,84.23,97.72,20.23,4.17,4.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.17,0,0,0,0,0,0,4.17,0,0,0,0,0,0,0,0,0,0,0,0,0,4.17,29.17,0,8.33,20.83,0,0,0,0,4.17,NA,4.96,-26.55,NA,5,1,1,1,3,1,0,0,0,0,100,100,66.67,0,66.67,0,50,50,50,50,50,0,1,0,4,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.8,24,18 +1086,Infirmary,Delay,Goal-assigned,Baseline,2,07:30pm,2,0,0.2,They gave us 3D glasses at the beginning. It was a very small section with no breaks in between delirum and the other one. It was very neon and all the characters had neon on them. There was a character hiding in a box in the wall and there was also a character dancing ontop of something at the end. There were a lot of people with big smiles painted on too.,1,85.2,56.63,49.53,40.61,1.39,1.39,0,0,5.56,2.78,2.78,0,0,0,1.39,0,1.39,0,1.39,1.39,0,1.39,1.39,0,0,0,0,0,8.33,4.17,0,0,0,0,0,4.17,0,0,0,0,0,0,0,0,0,0,0,1.39,0,5.56,15.28,0,1.39,12.5,1.39,0,0,0,6.95,23.71,22.76,17.43,30.94,3,2,4,2,5,1,42.42,0,100,100,100,37.31,100,22.39,44.78,0,0,0,0,100,0,1,0,0,11,0,0,0,0,1,0,0,0,0,12,1,13,0.923076923,12,0.916666667,72,18 +1086,Asylum,Immediate,Goal-assigned,Baseline,2,07:30pm,1,0,0.25,"I dont remember much from this experience, mostly because it was the most boring and least interesting there. All I remember is a bunch of animatronics in cages I believe, but I think that was another one. All I know is that was the boring one. I know it wasnt very scary and that I wasnt interested in what was going on enough to remember what it was about. ",1,3.46,1,99,7.29,0,0,0,0,21.74,2.9,18.84,10.14,1.45,0,1.45,0,5.8,4.35,7.25,2.9,4.35,4.35,0,4.35,1.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.45,2.9,0,0,2.9,2.9,7.25,1.45,1.45,4.35,0,0,0,4.35,5.8,18.83,41.75,3.32,11.42,5,3,3,3,2,2,46.43,69.64,0,23.21,100,60,0,100,80,7.69,33.33,0,100,0,2.56,0,0,0,0,2,0,0,0,1,0,0,0,6,2,7,9,0.222222222,0,0,69,18 +1086,Asylum,Delay,Goal-assigned,Baseline,2,07:30pm,1,1,0.25,I rememeber this was the most borning one because there was nothing good about it. Not scary at all. I dont remember anything from the actual attraction because nothing caught my eye.,1,5.64,1,75.23,20.23,0,0,0,0,25,9.38,15.63,3.13,6.25,0,3.13,0,3.13,3.13,6.25,3.13,3.13,6.25,3.13,3.13,3.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.13,0,0,0,0,0,0,3.13,9.38,0,3.13,3.13,3.13,0,0,3.13,3.13,9.26,19.43,-8.17,16.51,4,3,4,5,4,1,42.86,42.86,50,100,0,71.43,71.43,100,0,50,0,85.71,0,100,100,0,0,0,0,1,0,0,0,0,0,0,0,4,1,4,5,0.2,0,0,32,18 +1086,DevilsDen,Delay,Goal-assigned,Share,2,07:30pm,2,0,0.6,I remeber it was one of my favorite parts. I thought it was really cool but not to scary. I dont believe I remember much more. I think it was one of the last ones we did too.,1,2.68,1,99,61.63,2.63,2.63,0,0,21.05,0,21.05,10.53,0,0,0,2.63,7.89,2.63,7.89,5.26,2.63,2.63,0,2.63,2.63,0,0,0,2.63,0,0,0,0,0,0,2.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.63,0,0,0,0,0,2.63,0,0,47.88,40.66,11.43,91.56,5,2,2,2,4,1,43.75,0,43.75,0,100,36.36,100,36.36,0,0,0,100,100,57.14,0,0,0,0,0,3,0,0,0,0,0,1,0,1,3,2,5,0.6,0,0,38,18 +1086,GhostlyGrounds,Immediate,Goal-assigned,Test,2,07:30pm,2,0,0.6,"I remember it was a lot of fun seeing all the people in the same type of masks speaking gibberish. I remember someone saying hi to me and I laughed straight after because I thought it was funny that the actors say hi even if theyre in character. The bus (i think its that one) was also really cool, I thought it was interesting that we were able to go through it and see all of the weird looking mannequins placed there. Overall it was very entertaining, not to scary though, you could see all the actors before they decided to scare you, it was also quite open and you could see mostly everything. I was expecting something else with the title of Ghostly Grounds but it still exceeded expectations. I think that there wasnt a lot of scare actors but that may be due to the labor shortage.",1,14.69,22.35,81.07,73.09,1.35,0.68,0.68,0,19.59,2.7,16.89,4.73,0.68,1.35,4.05,0.68,5.41,1.35,7.43,5.41,2.03,4.73,2.7,2.03,2.03,0,0,0,11.49,4.73,0,1.35,0,0,4.73,6.76,0,0,0,0,0,0,0,0.68,0.68,0,0,0,1.35,6.08,10.14,0,0.68,5.41,3.38,0.68,0.68,1.36,7.43,37.32,70.21,49.39,-7.65,5,4,5,4,1,3,94.17,21.67,45.83,0,100,0,56.31,37.54,100,22.33,23.97,71.9,0,75.21,100,3,1,0,4,7,0,0,0,0,0,1,0,1,15,2,17,0.882352941,8,0.5,148,18 +1086,GhostlyGrounds,Delay,Goal-assigned,Test,2,07:30pm,2,1,0.4,I remember that we first walked in through a bus where there were weird mannequins and some actors. All the actors had the same mask on at some point which i thought was funny. There was also animatronics in jail cells and they were borning. There wasnt a lot of scare actors at the jail cell part with all the foliage.,1,65.02,30.91,87.98,20.23,1.64,1.64,0,0,13.11,3.28,9.84,3.28,0,0,0,0,6.56,1.64,3.28,1.64,1.64,3.28,1.64,1.64,1.64,0,0,0,8.2,0,0,0,0,0,0,8.2,0,0,0,0,0,0,0,0,0,0,0,0,1.64,1.64,11.48,0,1.64,9.84,0,0,0,0,3.28,14.89,35.67,3.42,5.59,5,3,3,2,5,2,25.64,0,0,0,100,75.64,50,100,66.67,0,46.15,0,100,0,0,0,1,0,5,2,0,0,0,0,0,0,0,0,8,0,8,1,6,0.833333333,61,18 +1087,Infirmary,Immediate,Goal-assigned,Baseline,2,07:30pm,2,0,0.6,"Infirmary started with a thick fog down a dark hallway. There were green lights, but you could not see below the waist. Then we were given some glasses that made the neon colors of the walls move and breathe. The monsters were dressed in neon costumes. There was a cylindrical room that was spinning and disorienting. This went straight into the next attraction.",1,78.06,49.5,90.66,20.23,1.59,1.59,0,0,6.35,0,6.35,0,1.59,1.59,0,0,3.17,0,0,0,0,0,0,0,0,0,0,0,3.17,0,0,0,0,0,0,3.17,0,0,0,0,0,0,0,0,0,1.59,0,0,0,1.59,26.98,0,4.76,14.29,7.94,0,0,1.59,1.59,30.25,69.07,30.76,-9.08,1,2,5,2,1,1,100,0,50,62.5,8.33,0,100,20,25,46.67,0,92.31,0,0,100,1,1,0,6,0,0,1,0,3,0,0,0,0,8,4,12,0.666666667,8,0.75,63,20 +1087,Infirmary,Delay,Goal-assigned,Baseline,2,07:30pm,2,1,0.4,Infirmary was the first attraction. The theme was neon and circus type. I was leading our group as we walked. Everybody first gathered in a room where a lady talked to us about the haunted house. There was then a choice to get a red glow stick that would tell the monsters you want to get touched and scared extra. we were not allowed to wear them because the study had to be constant. I lead the group into the first hallway which had a thick fog. There were green lasers that lit the room but you could not see below the waist. We then walked though dark hallways with neon paint. There was a circular hallway that made it feel like the walls were spinning. There were elevated surfaces with painted people dancing on them ,1,59.96,83.32,57.19,7.16,5.88,3.68,1.47,2.21,11.03,0.74,10.29,1.47,2.94,2.21,0,0,3.68,0,1.47,0,1.47,0.74,0,0.74,0.74,0,0,0,12.5,3.68,0,0.74,0,0,1.47,9.56,0,0,0.74,0,1.47,0.74,2.21,0,0.74,0,0,0,0,4.41,18.38,0,2.94,9.56,4.41,0,1.47,5.16,4.41,37.76,32.82,11.34,69.12,2,4,3,4,2,1,44.64,100,50,0,25,33.57,0,40,100,20,0,50,100,50,50,1,1,0,6,0,8,0,0,5,0,2,0,0,8,15,23,0.347826087,8,0.75,136,20 +1087,Asylum,Delay,Goal-assigned,Baseline,2,07:30pm,2,0,0.5,"First there was a monster outside who was confused as to why our group leader had his lap top. The monster had a mask on that distorted his voice. It was hard to make out what he was saying but me and the other group members found it comical. Another monster also appeared that was trying to scare me and then bumped into me on accident. He then said ""excuse me"" in a regular human voice. I also found this comical. We then entered the bus which had a mix of real people and fake monsters. I was trying to decipher who was real and who was fake. I also remember walked up and down stairs. At one point there was a hallway where the floors were moving. It was hard to walk on it and I was afraid that one of my group might fall. At the end there was a kaleidoscope hallway. This hallway seemed to be a place where the inmates cells were. The cells were very short which I found odd, and they were all open, it seemed like anyone could go in if they wanted to. ",1,28.42,55.67,81.39,4.18,3.66,1.57,1.05,1.05,14.14,0.52,13.61,3.66,1.05,2.09,3.14,1.05,3.66,0.52,4.19,1.05,3.14,1.57,0,1.57,1.05,0,0,0,13.09,3.14,0,1.05,0,1.05,1.05,9.95,0,0,0,2.09,0,0.52,0,0,0,0,0,0,0.52,4.71,13.61,0,3.66,9.42,0.52,0,1.05,0.52,5.23,23.99,53.12,17.07,1.79,4,2,3,2,4,4,92.31,0,0,100,0,29.49,100,100,0,100,24.36,75,100,0,100,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,20 +1087,DevilsDen,Immediate,Goal-assigned,Share,2,07:30pm,4,0,0.6,Machine shop was dark and dirty. First there were two people that were hiding behind two walls and jumped out and scared the people behind us. Then we went outside where I was jump scared by a man just outside of the doorway. We then got back inside where we went through winding hallways with blood and organs. We also went through the machine which was bloody and had heads.,1,48.23,92.91,97.09,1,7.14,7.14,0,0,1.43,0,1.43,0,0,0,0,0,1.43,0,5.71,0,5.71,2.86,0,2.86,2.86,0,0,1.43,8.57,0,0,0,0,0,0,8.57,0,0,0,1.43,0,0,1.43,0,0,0,0,1.43,0,5.71,25.71,0,7.14,15.71,2.86,0,0,1.43,7.14,-44.18,-37.35,-39.87,-55.32,3,5,5,1,3,1,0,66.67,100,50,33.33,66.67,33.33,0,33.33,100,0,0,0,0,100,6,0,0,7,0,0,0,0,0,0,0,0,0,13,0,13,1,13,0.538461538,70,20 +1087,DevilsDen,Delay,Goal-assigned,Share,2,07:30pm,4,1,0.8,"First we went in to the entrance and there were two different monsters that were hiding behind the wall. Then there was another monster hiding behind a door that jump scared me and another partner. There was then a room with hanging bodies. We walked through the machine more and there were bloody body parts everywhere. We then walked through the machine which was covered in blood, flesh and various body parts. We then walked down a long hallway that had intense strobe lights where it was hard to see. ",1,42.98,33.76,99,3.72,5.56,5.56,0,0,8.89,1.11,7.78,0,0,0,0,0,7.78,0,2.22,0,2.22,1.11,0,1.11,1.11,0,0,1.11,5.56,1.11,1.11,0,0,0,0,4.44,0,0,0,0,0,0,0,0,0,0,0,2.22,0,2.22,30,0,5.56,18.89,4.44,0,1.11,0,4.44,NA,71.18,18.9,NA,1,2,1,2,1,1,100,0,66.67,33.33,33.33,0,100,0,0,33.33,50,50,50,50,50,4,1,0,8,0,0,1,0,0,0,0,0,0,13,1,14,0.928571429,13,0.615384615,90,20 +1087,GhostlyGrounds,Delay,Goal-assigned,Test,2,07:30pm,3,0,0.4,Ghostly Grounds was the second attraction that we went through. It was directly after the first one. There was a little room that we stood in so that we could jot down if we thought the first one was scary. It was very short and the least scary. There was first a guy at a type writer who was asking our group leader what he was using the laptop for. Everybody was dressed as they were in the 40s or 50s.,1,29.27,99,15.38,2.86,7.5,6.25,0,1.25,7.5,1.25,6.25,1.25,1.25,1.25,2.5,0,2.5,0,2.5,0,2.5,2.5,0,2.5,2.5,0,0,0,17.5,1.25,0,0,0,0,1.25,16.25,0,0,0,2.5,0,0,0,0,0,0,0,0,0,0,10,0,1.25,8.75,0,0,0,0,0,49.26,72.11,44.74,30.94,5,2,3,3,1,1,66.67,33.33,0,33.33,100,0,100,50,25,25,0,0,100,0,0,0,0,0,0,0,2,0,0,4,1,2,0,1,0,10,10,0,0,0,80,20 +1088,Infirmary,Delay,Goal-assigned,Baseline,2,07:30pm,1,0,0.6,"The Infirmary section was very fun! I remember thinking that it was very psychedelic. I had trouble maintaining balance. There were a lot of blacklights to emphasize the neon colors that were everywhere on the walls, cielings, actors, etc. It was mental asylum themed. Early on, we were given glasses that distorted our vision to make things look more blurry/dizzying. We had to return the glasses at the end of the section to be thrown out. There was a tunnel with a short bridge, but the walls of the tunnel were turning and had colorful patterns on them, lit up in the black darkness. It was very dizzying to walk through. There was a woman standing on a platform and dancing sort of like a stripper. I said something along the lines of ""YAASSS"".",1,88.47,66.21,63.35,30.29,2.22,2.22,0,0,7.41,0.74,6.67,1.48,0.74,0,2.22,0,0.74,0.74,2.22,1.48,0.74,0.74,0.74,0,0,0,0,0,6.67,1.48,0,0,0,0,0.74,5.19,0,0,0.74,0,1.48,0,0,0,0,0,0,0.74,0,3.7,20.74,0.74,3.7,10.37,5.93,0,1.48,1.48,4.44,-30.15,-24.61,-31.63,-34.2,3,1,1,1,5,2,0,0,100,83.33,100,100,66.67,16.67,50,0,100,0,0,50,0,7,2,0,16,0,0,0,0,0,0,0,0,0,25,0,25,1,25,0.64,135,20 +1088,Asylum,Immediate,Goal-assigned,Baseline,2,07:30pm,1,0,0.5,"This exhibition featured saws, flashing lights . Seeing a lot of the color red. Actors jumped out. Part of me feels like we didnt go to Asylum. But I know we did. I remember Infirmary, the Devil's Den, and the Ghostly Grounds the best. There were jail cells on either side that were very small. I remember better now. There were a lot of strobe lights, I was having trouble following the group ahead. The hallway was narrow and I was losing my balance. There were a few tall clowns. That were in orange. White strobe lights. I remember seeing the silhouete of my female peer ahead of me, her long hair. We turned a few corners. Actors jumped out at the corners. There were some uneven platforms that we had to be balanced on. WAIT I REMEMBER NOW. It was sort of 1920s gangster theme. There was a guy ina suit sitting on a table ina gangster sort of suit that said something along the lines of ""Keep your eyes out theres something weird thats going on"". And there were a lot of filing cabinets.",1,65.37,49.71,90.68,20.23,4.86,3.24,1.62,0,9.19,0,9.19,3.24,0,0,3.24,0,2.16,2.16,2.16,1.08,1.08,0,0,0,0,0,0,0,8.11,0.54,0,0,0,0,0.54,7.57,0,0,1.08,0.54,1.08,0,0.54,0,0,0,0,1.08,0.54,7.03,17.84,0,2.7,9.19,5.95,0,0.54,1.62,8.65,18.04,22.05,59.52,-27.46,5,2,1,3,1,5,25,50,0,50,100,0,100,80,100,0,100,50,25,25,0,4,0,0,8,0,2,0,0,10,0,0,0,7,12,19,31,0.387096774,12,0.666666667,185,20 +1088,Asylum,Delay,Goal-assigned,Baseline,2,07:30pm,1,1,0.5,"The Asylum section of the tour was sort of ""Haunted Hollywood"" themed. There was a sort of ""behind the scenes"" area with a directors chair and a vanity. It was sort of 1920s themed. There was an actress with a handheld oldfashioned fan, fanning herself. There was a man in a gangster sort of suit towards the end of the section that told us to keep an eye out, that there was something weird going on. ",1,98.68,86.82,32.28,20.23,3.9,2.6,0,1.3,11.69,0,11.69,0,0,0,11.69,0,0,0,2.6,1.3,1.3,0,0,0,0,0,0,0,10.39,2.6,0,0,0,1.3,1.3,7.79,0,0,2.6,1.3,0,0,1.3,0,0,0,0,0,1.3,3.9,16.88,0,1.3,14.29,1.3,0,0,1.3,5.2,NA,-0.73,-7.99,NA,4,5,1,3,4,1,17.19,40.63,0,100,0,36.25,36.25,60,0,100,50,50,50,50,50,2,0,0,11,0,0,0,0,0,0,0,0,0,13,0,13,1,13,0.846153846,77,20 +1088,DevilsDen,Delay,Goal-assigned,Share,2,07:30pm,2,0,0.8,"This section was very mechanical, and had actors dressed up in Devil's Den uniforms. They were very dirty and rugged looking. I think there was a furnace. I remember there were mechanical machines, one of which was chopping up fake body parts such as a hand. ",1,28.85,18.24,92.58,1,0,0,0,0,8.7,0,8.7,4.35,0,0,0,0,4.35,2.17,4.35,0,4.35,0,0,0,0,0,0,0,6.52,2.17,0,0,0,2.17,0,4.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.22,0,0,13.04,2.17,0,0,0,0,20.65,2.73,-2.68,61.88,5,1,3,1,5,1,0,4.76,4.76,4.76,100,100,85.71,85.71,85.71,0,0,0,100,100,0,0,0,0,8,0,0,0,0,0,0,0,0,0,8,0,8,1,8,1,46,20 +1088,GhostlyGrounds,Immediate,Goal-assigned,Test,2,07:30pm,2,0,0.8,"In the Ghostly Grounds section, we waited in a line that curved around a blue school bus that said ""The Ghostly Grounds"" on it. There were a lot of middle school aged children behind us. There was a clown actor that kept telling our research coordinator to close his laptop and put it away. We stepped up onto the school bus, and there was a dummy woman in the first seat on the left. There were a variety of actors vs dummies in the seats. There were flashing white lights. We were then led into the penitentiary building. There again we walked through a hallway that included the jail cells that were narrow and the long tall narrow hallway. There were tall demonic monsters in the hallway that were above the grassy viney hallway. there was a grassy viney sort of hallway that we walked through. That had chains and a lot of body dummies in a pile. There was an arm in one of the body piles that kept swirling around. It was confusing to look at. I held my arms together throughout various parts. chains",1,89.52,81.28,92.22,14.33,5.41,4.32,0,1.08,4.86,0,4.86,0,0.54,0,1.62,0,2.16,0,0.54,0,0.54,0.54,0,0.54,0,0,0,0,8.65,1.62,0,0,0,0.54,1.08,7.03,0,0,0.54,0.54,0,0,0,0,0,0,0,0,0.54,1.62,23.78,0.54,2.7,18.38,2.7,0,0,0,2.16,19.61,74.06,40.1,-55.32,1,4,5,4,5,1,100,50,50,0,100,40,80,80,100,0,0,0,0,0,100,4,4,0,15,1,0,0,0,0,0,0,1,0,24,1,25,0.96,23,0.652173913,185,20 +1088,GhostlyGrounds,Delay,Goal-assigned,Test,2,07:30pm,2,1,0.4,"This portion included actors dressed in costumes with jump scares. It was dark and things lurched out at me. This was the last portion that we did. There was a blue decrepit schoolbus that said ""The Ghostly Grounds"" on it. One of the actors was giving our group leader trouble for having a laptop on him, but our leader kept saying that ""Francine knows"". We stepped into the step steeps of the schoolbus, and there were a combination of dummies and live actors in the seats. I remember seeing a dummy woman in the first seat on the lefthand side. She had ratty blonde hair and sort of looked like a prostitute. We left out the back of the schoolbus and walked into a path that led into the penitentiary building. There were a lot of steep steps, and there was a winding path with foliage and cages. There was a weird arm that sort of twisted in place in a pile of other body parts. There were some large dummy demon creatures that loomed above the cages when we later went up the stairs, towards the end of the section.",1,93.24,86.35,81.98,9.95,4.74,3.16,0,1.58,5.79,0,5.79,1.05,0.53,0,2.11,0,1.58,0.53,1.05,0,1.05,0.53,0,0.53,0.53,0,0,0,10,1.58,0,0,0,0.53,1.05,8.42,0,0,1.58,0.53,0,0,0,0,0,0,0,0.53,0.53,3.16,20.53,0,3.68,14.74,2.11,0,0,0,4.22,-7.39,-46.74,-29.03,53.59,5,1,2,1,3,1,0,40,60,80,100,100,75,0,62.5,25,0,100,50,0,0,8,1,0,15,0,0,0,0,0,0,1,0,0,24,1,25,0.96,24,0.625,190,20 1089,Infirmary,Immediate,Control,Baseline,0,07:30pm,2,0,0.6," walked in without glasses through a slightly trippy area. the boards were close together and there was smoke and green lasers we entered into the neon area and ladies were standing on a stage dancing and a third person was handing out glasses, the line was snaking around you put on the glasses and entered and a blue tube was off to the right, there were neon pieces popping off of the blue tube that were orange @@ -732,69 +732,69 @@ boiler room part of the haunted house with one of the actors in the center next 1090,DevilsDen,Delay,Control,Baseline,0,07:30pm,5,0,0.8,"Chain saws, hammers, ",1,89.52,40.06,1,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,1,2,1,3,23 1090,GhostlyGrounds,Immediate,Control,Baseline,0,07:30pm,5,0,0.8,"Entering through a bus, random objects and bodies in the bus, shaky box, steam, shaky floors, framed portraits, bodies hanging from the ceiling, guy in mask popping up from the walls, ",1,99,59.25,97.57,20.23,0,0,0,0,3.23,0,3.23,0,0,0,3.23,0,0,0,0,0,0,0,0,0,0,0,0,0,3.23,0,0,0,0,0,0,3.23,0,0,0,3.23,0,0,0,0,0,0,0,0,0,0,29.03,0,9.68,19.35,0,0,0,0,0,-24.59,38.2,-58.26,-53.71,4,1,1,3,2,2,57.14,66.67,0,100,100,100,0,0,0,0,100,0,0,0,0,0,1,0,9,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.9,31,23 1090,GhostlyGrounds,Delay,Control,Baseline,0,07:30pm,5,1,0.4,"Bus, stairs, shaky floors, potato pouches",1,89.52,40.06,99,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.33,0,16.67,16.67,0,0,0,0,0,NA,NA,NA,NA,1,1,1,1,1,1,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,0,1,0,2,0,0,0,0,1,0,0,0,0,3,1,4,0.75,3,0.666666667,6,23 -1091,Infirmary,Delay,Role-assignment,Baseline,2,08:30pm,1,0,0.4,"In the Infirmary section, we were given glasses and began to walk through the attraction. The whole section was filled with bright colors and flashing lights. There were large spiders on the walls as well as other props and decorations. Clowns roamed the halls as we walked through. We came to a spinning tunnel and walked through it. We gave our glasses back at the end of the section.",1,94.33,95.64,82.12,65.92,7.25,7.25,0,0,1.45,0,1.45,0,0,0,0,0,1.45,0,2.9,2.9,0,0,0,0,0,0,0,0,8.7,1.45,0,0,0,0,0,7.25,0,0,0,0,0,0,0,0,1.45,0,0,0,0,2.9,24.64,0,7.25,11.59,5.8,0,0,1.45,2.9,NA,66.55,9.41,NA,5,5,1,2,1,1,88.64,0,59.09,88.64,100,0,76.47,0,0,100,50,50,50,50,50,5,2,0,5,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.416666667,69,21 -1091,Asylum,Immediate,Role-assignment,Baseline,2,08:30pm,1,0,0.75,"It was pretty dark, but otherwise not very scary. It was a lot shorter than the other parts of the haunted house and the people popping around the corners definitely made me uneasy.",1,45.12,1,86.68,1,0,0,0,0,27.27,0,27.27,0,3.03,0,3.03,3.03,18.18,0,9.09,0,9.09,6.06,0,6.06,6.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.06,6.06,0,0,3.03,3.03,0,0,0,6.06,-45.54,-30.64,-54.76,-51.23,3,1,1,1,3,2,0,25,100,58.33,29.17,100,50,0,4.17,33.33,100,0,50,0,58.33,0,0,0,4,1,0,0,0,0,0,0,0,0,5,0,5,1,4,1,33,21 -1091,Asylum,Delay,Role-assignment,Baseline,2,08:30pm,1,1,0.25,We entered the prison where we encountered several actors and props. We then made our way through the halls where we encountered a detective with several photos pinned to the wall and what appeared to be either a therapists room or a dentists office.,1,71.44,99,66.42,3.56,13.64,11.36,0,2.27,6.82,0,6.82,0,2.27,0,2.27,0,4.55,0,2.27,0,2.27,0,0,0,0,0,0,0,20.45,4.55,0,0,0,0,0,15.91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.91,0,2.27,11.36,2.27,0,0,0,0,-30.02,-37.35,2.62,-55.32,4,2,5,1,3,1,0,50,50,100,62.5,50,100,0,50,12.5,0,0,0,0,100,3,0,0,3,0,0,0,0,0,0,0,0,1,6,1,7,0.857142857,6,0.5,44,21 -1091,DevilsDen,Delay,Role-assignment,Share,2,08:30pm,2,0,0.8,We walked into the Devil's Den where we saw a bunch of actors with axes and other tools. We then walked outside and went back into the Devil's Den where we saw a bunch of old power tools like a saw with an amputated arm on it.,1,98.03,98.95,91.07,20.23,10.64,8.51,0,2.13,2.13,0,2.13,0,0,0,0,0,2.13,0,0,0,0,0,0,0,0,0,0,0,10.64,0,0,0,0,0,0,10.64,0,0,0,0,0,0,0,0,0,0,0,0,0,4.26,25.53,0,6.38,12.77,6.38,0,0,0,4.26,NA,36.49,0.36,NA,5,2,1,2,5,1,40.91,0,54.55,9.09,100,65.38,100,38.46,38.46,0,50,50,50,50,50,3,0,0,4,0,0,0,0,0,0,0,0,0,7,0,7,1,7,0.571428571,47,21 -1091,GhostlyGrounds,Immediate,Role-assignment,Test,2,08:30pm,2,0,0.8,The Ghostly Grounds section started out on a dark bus with a flashing strobe light. There were both mannequins and people in the seats and it was difficult to distinguish between the two because of the flashing light. Then we went into the jailhouse where there were people and props moving around in cages placed in the hall that we had to walk around. Then we went up some stairs and walked around several corners where people jumped out at us. We walked along a pathway with moving floor panels and then we eventually went back downstairs. ,1,88.03,92.97,99,10.03,6.25,6.25,0,0,3.13,0,3.13,0,1.04,0,0,0,1.04,0,1.04,0,1.04,0,0,0,0,0,0,0,6.25,0,0,0,0,0,0,6.25,0,0,0,0,2.08,0,0,0,0,0,0,0,0,8.33,36.46,0,9.38,21.88,5.21,0,0,2.08,8.33,46.35,43.4,64.7,30.94,2,4,2,4,1,1,56.67,100,66.67,0,33.33,0,75.9,51.81,100,100,0,100,0,0,0,7,1,0,7,0,0,0,0,0,0,0,0,0,15,0,15,1,15,0.466666667,96,21 -1091,GhostlyGrounds,Delay,Role-assignment,Test,2,08:30pm,2,1,0.2,"We walked into a bus with blackedout windows with a strobe light flashing inside. There were mannequins and actors in the seats of the bus, and it was difficult to tell the difference between the two because of the flashing light. The actors would pop out as we walked by and we exited the bus through the back. We then entered the prison where we walked by several cages with props in them. As we moved through the hallway we then encountered actors who were staying around the cages that were surrounded by moss/plants. Afterwards, we went up a flight of stairs and continued onto a section where the floor moved as we walked on it. Eventually, we went down another flight of stairs which led to the exit of the attraction.",1,96.13,98.68,97.09,6.97,9.02,7.52,0,1.5,5.26,0,5.26,0,1.5,0.75,0,0,2.26,0,1.5,0,1.5,0,0,0,0,0,0,0,12.78,1.5,0,0,0,0,0.75,11.28,0,0,0,0,0,0,0,0,0,0,0,0,0,3.01,26.32,0,8.27,15.04,3.01,0,0,0,3.01,35.32,54.41,20.62,30.94,2,3,2,4,1,1,62.86,100,25.71,0,38.57,0,0,100,7.69,42.31,0,100,0,0,0,10,1,0,12,1,0,0,0,0,0,0,0,0,24,0,24,1,23,0.52173913,133,21 -1092,Infirmary,Immediate,Role-assignment,Baseline,2,08:30pm,2,0,0.6,"They gave us 3d glasses and we walked through a highlight colored area. It seemed clown relate. Bright colors. About 3 rooms to walk through. Very few jump scares. The first room was open with 2 actors, one which was carrying a bucket which he scraped across the floor. ",1,82.8,90.06,97.09,20.23,4.08,4.08,0,0,8.16,0,8.16,4.08,0,0,2.04,0,4.08,0,4.08,2.04,2.04,2.04,0,2.04,2.04,0,0,0,12.24,2.04,0,0,0,0,0,10.2,0,0,0,2.04,0,0,0,0,0,0,0,0,0,4.08,28.57,0,10.2,12.24,6.12,0,0,0,4.08,5.56,27.28,-41.55,30.94,5,1,2,2,2,1,42.86,0,85.71,0,100,100,0,0,66.67,40.74,0,100,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.5,49,21 -1092,Infirmary,Delay,Role-assignment,Baseline,2,08:30pm,2,1,0.4,Clowns and glow paint. Spiders. ,1,39.7,40.06,1,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,20,0,0,0,0,NA,NA,21.68,NA,1,2,1,1,1,1,50,50,50,50,50,0,100,0,0,0,50,50,50,50,50,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,1,3,1,5,21 -1092,Asylum,Delay,Role-assignment,Baseline,2,08:30pm,2,0,0.25,There were clowns and bright glow colors,1,2.35,40.06,24.32,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.29,14.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.14,0,0,14.29,42.86,0,0,0,0,NA,NA,-54.75,NA,1,1,1,1,3,1,50,50,50,50,50,100,50,0,0,0,50,50,50,50,50,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,1,2,1,7,21 -1092,DevilsDen,Immediate,Role-assignment,Share,2,08:30pm,4,0,0.6,"There were a lot of people with axes. We went through a room with 2 men, one on top of a balcony swinging a weapon. Everyone was wearing red. People were snarling like zombies. It was dark. There was a butcher. There were a lot of jumpscares. ",1,94.26,84.86,27.91,20.23,2.13,2.13,0,0,2.13,2.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.38,0,0,0,0,0,0,6.38,0,0,0,2.13,0,0,0,0,0,0,0,0,0,6.38,19.15,0,4.26,10.64,4.26,0,0,0,6.38,NA,46.72,-13.85,NA,2,4,1,4,2,1,60,100,44.44,0,66.67,67.5,0,50,100,75,50,50,50,50,50,1,1,0,7,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.777777778,47,21 -1092,DevilsDen,Delay,Role-assignment,Share,2,08:30pm,4,1,0.4,walking through a jail cell tunnel with lots of fog and people walking around,1,99,40.06,72.58,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,21.43,0,14.29,7.14,0,0,0,0,7.14,NA,54.24,21.68,NA,1,4,1,2,1,1,100,0,100,0,75,0,0,0,100,0,50,50,50,50,50,1,0,0,2,0,0,0,0,0,0,0,0,0,3,0,3,1,3,0.666666667,14,21 -1092,GhostlyGrounds,Delay,Role-assignment,Test,2,08:30pm,3,0,0.2,We walked onto a bus where people would jump and scare us. There were strobe lights and fog,1,10.19,99,77.17,1,11.11,11.11,0,0,5.56,0,5.56,0,0,5.56,0,0,0,0,5.56,0,5.56,5.56,0,5.56,5.56,0,0,0,11.11,0,0,0,0,0,0,11.11,0,0,0,0,0,0,0,0,0,0,0,0,0,5.56,33.33,0,11.11,16.67,5.56,0,0,0,5.56,NA,90.96,60.85,NA,1,4,1,2,1,1,100,0,0,0,0,0,60,60,100,20,50,50,50,50,50,2,1,0,2,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.4,18,21 -1093,Infirmary,Immediate,Role-assignment,Baseline,2,08:30pm,3,0,0.2,"the glasses were handed to you and taken at the end. everything was neon. I got jump scared twice and laughed at once. there were jump scare people. everything was trippy . there were orange spiders with long legs. there were neon oil cans. there were railings sometimes. it went around in a triangle shape thing. it was mostly orange, yellow, green, pink, and little purple. person behind me laughed at e when i got jump scared. the people giving out and collecting glasses were (presumably) female. everything was blurry with the glasses, but cool. the orange rectangles on the ground were raised more than the rest of them in the last part of the neon hallway. the floor was uneven there. i liked the spinning tunnel with the dots. our tour guide (Angelique) was no help with indicating when there was people cause she was uneffected by everything. There was a nother hallway thing after the spinny tunnel, then some other sections, then the hallway with the rectangle floor thing.",1,60.82,33.4,86.18,37.12,1.18,1.18,0,0,10,2.94,6.47,0.59,0.59,0,1.18,0,2.94,0,4.71,2.94,1.76,2.94,1.18,1.76,1.76,0,0,0,5.88,2.35,1.18,0,0,0,1.18,3.53,0,0,1.18,0,0,0,2.35,0,0,0,0,0,0,3.53,19.41,0.59,3.53,10,4.71,0,0.59,2.35,3.53,-10.24,-25.71,-37.2,32.2,4,5,3,1,4,1,0,0,50,100,50,85.71,71.43,14.29,0,100,0,0,100,100,100,9,1,0,19,2,0,0,0,0,0,0,0,0,31,0,31,1,29,0.655172414,170,21 -1093,Infirmary,Delay,Role-assignment,Baseline,2,08:30pm,3,1,0.2,"This was the first section with all the neon. They gave you glasses towards the start on the inside. there were giant neon snakes and spiders. The glasses made everything loopy which was fun. there were neon dressed people walking through. Definitely got jump scared a few times in this one more than i expected to tbh (like 3 times). there was one point where the rectangles on the floor moved. and another where orange rectangles were raised more than the others in a thinner hallway. there were railings at one point and cool neon stuff to look at on the side. the walls were very neon and i think there were a few specific setups. a lot of polka dots at some points. i think there were clowns. it looped around and the end was viewable where you started there was a peRson on the box at the end directing you to drop your glasses in a bin. when i got jump scared once, the person behind me laughed. this one was scary, but in a fun scary way. A woman gave out glasses at the start. i think there was also a little something before the glasses but i dont remember what. i think some of the actors had tutus on",1,77.55,32.16,97.65,20.23,0,0,0,0,9.39,0.94,7.51,2.82,0.47,0,0.47,0.47,3.29,0.47,3.76,1.88,1.88,3.29,1.41,1.88,1.88,0,0,0,5.63,1.41,0,0,0,0,0.47,4.23,0,0,0.47,0,0,0,0.94,0,0,0,0,0,0,4.69,16.43,0.47,2.82,11.74,1.41,0,0.47,0.94,4.69,-19.38,-15.95,-20.89,-21.3,4,5,5,1,2,4,0,43.75,0,100,100,92.31,0,92.31,76.37,100,16.28,48.84,48.84,0,100,3,1,0,19,4,0,0,0,0,0,0,0,5,27,5,32,0.84375,23,0.826086957,213,21 -1093,Asylum,Delay,Role-assignment,Baseline,2,08:30pm,1,0,0.5,"there were cages, and a few different sets. there was one with a reporter who for some reason made me think the actor was either from Brooklyn or was Jewish (Im also Jewish). Dont know exactly why this popped into mind. I told this thought to the person in front of me. There was also a doctor set up. I think the actor there said something about teeth so i think it was a creepy dentists office. The path was sorta thin and zig zagged into different rooms. I expected a lot of jump scares from behind those walls but dont think there were any. There were a couple other actors in the middle of one hall. The guy was scaring people and the girl was creepy but dressed up sorta fancy 1920s style with a headband or something. It wasnt that long of a section I dont think, but not that short either.",1,45.12,2.24,99,8.22,0,0,0,0,18.83,0,18.83,5.19,1.95,0,4.55,0.65,7.79,0,3.9,1.3,2.6,2.6,0,2.6,2.6,0,0,0,5.84,1.3,0,0,0,0,1.3,4.55,0,0,0.65,0.65,0,0,0,0,0,0,0,0,0,1.95,13.64,0,0.65,12.99,0,0,0,0,1.95,-19.95,-0.01,-42.83,-17,2,5,5,5,3,4,29.41,100,29.41,100,0,90.23,45.11,0,45.11,100,31.58,94.74,31.58,0,100,4,0,0,12,2,0,0,0,1,0,1,0,4,18,6,24,0.75,16,0.75,154,21 -1093,DevilsDen,Delay,Role-assignment,Share,2,08:30pm,2,0,0.6,"this one occurred after we passed through the first bar area. was a bit sad we couldnt stop to get a drink and check it out to be honest. It looked very cool and foggy. There was also a worker in front of that that seemed a bit stressed and asked us to ""please not touch her candy people"". Definitely seemed like shed delt with that a few too many times that day. Anyways, the line was long and swung by the potta porties. there was a man with a whale shirt in front of us in line. The lady who let us in had a cool outfit, a shaved head, and some sort of large prop tool in her hand. I think this was one of the medium scary ones. tbh I remember more from outside of it, then from inside. I dont think there were too many actors in this one. Maybe one jump scare. Also a big open foggy hallway in this one. I think this one was more dark. there were also schoool/gym locker things right at the start which i found odd.",1,64.38,59.05,80.57,9.87,3.19,2.66,0,0.53,10.11,0,10.11,4.26,0,0.53,2.66,2.13,1.6,0.53,4.26,1.6,2.66,2.13,0,2.13,1.6,0,0.53,0,7.45,1.6,0.53,1.06,0,0,0.53,6.38,0,0,1.6,0.53,0,0,0.53,0,0,0,0,0,0.53,5.85,15.96,0.53,1.6,11.17,1.06,0,1.6,0.53,6.38,-17.46,24.09,-50.23,-26.25,3,1,5,5,2,3,49.32,49.32,100,78.08,0,100,0,0,44.14,78.38,16.23,48.68,0,50,100,1,1,0,5,2,4,0,0,6,3,0,0,1,9,14,23,0.391304348,7,0.714285714,188,21 -1093,GhostlyGrounds,Immediate,Role-assignment,Test,2,08:30pm,3,0,0.8,"i think this was the one with the bus???? the bus was lit up purple there were people in the seats but there was a strobe light so i couldnt tell if any of the were real. i think i saw an arm move. there was a cool smokey green light thing, cages with people, and a smokey hallway at some point. ",1,65.54,2.59,69.74,44.38,0,0,0,0,14.52,3.23,11.29,3.23,0,1.61,3.23,1.61,3.23,0,1.61,1.61,0,0,0,0,0,0,0,0,1.61,1.61,0,0,0,0,1.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.06,20.97,0,1.61,8.06,9.68,0,1.61,0,8.06,35.46,75.08,24,7.29,1,3,4,3,4,3,100,100,0,0,59.09,17.31,40.38,100,0,0,92.31,92.31,0,100,0,0,1,0,5,1,0,0,0,1,1,0,0,0,7,2,9,0.777777778,6,0.833333333,62,21 -1093,GhostlyGrounds,Delay,Role-assignment,Test,2,08:30pm,3,1,0.8,"The Ghostly Grounds started out with the bus. I think it was the last section. The people in the bus i think were mostly real but also wasnt sure and it freaked me out a bit. got separated from the group momentarily. Our group formed a people chain while we walked through because my friend was scared. she grabbed the back of my sweatshirt and i thought that was funny. There was a cool green strobe light thing and a bunch of fog. There was also a bit more of an open hallway at one point and a lot of fog. There were also strobe lights in the really foggy room. I wiggled my arms while walking through so it would look cool. I also snuck up behind my brother when it was dark and scared him. very funny. Someone tried to scare the tour guide while we were walking but they were unaffected by it. I also got jump scared a couple times while walking through, despite trying to keep my composure cause i was the line leader for a bit and the tour guide was no help for indicating where the actors were hiding.",1,45.8,26.18,89.82,34.68,4.1,2.56,1.03,0.51,9.23,0.51,8.72,1.54,1.03,1.03,1.03,1.03,2.56,0,5.13,3.08,2.05,3.08,1.03,2.05,2.05,0,0,0,8.21,2.05,1.54,0,0,0,0,6.15,0.51,0,0.51,1.03,0,0,1.54,0,0,0,0,0.51,0,7.69,16.92,1.03,2.56,9.23,3.08,0,1.54,1.54,8.2,6.3,59.17,24.7,-64.97,1,4,1,2,5,2,100,0,85.71,0,71.43,18.18,63.64,9.09,100,0,100,0,0,0,33.33,15,1,0,3,5,1,1,0,3,1,1,1,1,24,9,33,0.727272727,19,0.157894737,195,21 -1094,Infirmary,Delay,Role-assignment,Baseline,2,08:30pm,1,0,0.4,"I remember this section being very colorful and kind of fun. It was not at all scary to me, but rather really fun. I remember putting the classes on and everything looking like it was popping out at me. I remember there being a lot of clowns. There was also a sliding walkway that was fun. This attraction feels like a fun house",1,29.12,1.6,94.6,97.05,0,0,0,0,19.05,3.17,15.87,6.35,0,0,4.76,1.59,3.17,4.76,9.52,7.94,1.59,7.94,6.35,1.59,1.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.11,14.29,0,3.17,6.35,3.17,0,1.59,0,11.11,-23.81,-40.44,-7.32,-23.66,3,1,1,1,5,3,0,50,100,81.25,27.08,100,100,46.67,86.67,0,100,66.67,0,72.22,36.11,1,0,0,4,4,0,0,0,0,0,0,0,0,9,0,9,1,5,0.8,63,22 -1094,Asylum,Immediate,Role-assignment,Baseline,2,08:30pm,1,0,0.75,"old time movie theme. surprisingly bight. Audio aspects like a woman in a red dress opening her fan. large theme reals. 1920s/ 1930s aspects and themes like flappers. I want to say that there was relevant music but I dont remember. Was not a very long attraction, it seemed to go by pretty quickly. +1091,Infirmary,Delay,Goal-assigned,Baseline,2,08:30pm,1,0,0.4,"In the Infirmary section, we were given glasses and began to walk through the attraction. The whole section was filled with bright colors and flashing lights. There were large spiders on the walls as well as other props and decorations. Clowns roamed the halls as we walked through. We came to a spinning tunnel and walked through it. We gave our glasses back at the end of the section.",1,94.33,95.64,82.12,65.92,7.25,7.25,0,0,1.45,0,1.45,0,0,0,0,0,1.45,0,2.9,2.9,0,0,0,0,0,0,0,0,8.7,1.45,0,0,0,0,0,7.25,0,0,0,0,0,0,0,0,1.45,0,0,0,0,2.9,24.64,0,7.25,11.59,5.8,0,0,1.45,2.9,NA,66.55,9.41,NA,5,5,1,2,1,1,88.64,0,59.09,88.64,100,0,76.47,0,0,100,50,50,50,50,50,5,2,0,5,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.416666667,69,21 +1091,Asylum,Immediate,Goal-assigned,Baseline,2,08:30pm,1,0,0.75,"It was pretty dark, but otherwise not very scary. It was a lot shorter than the other parts of the haunted house and the people popping around the corners definitely made me uneasy.",1,45.12,1,86.68,1,0,0,0,0,27.27,0,27.27,0,3.03,0,3.03,3.03,18.18,0,9.09,0,9.09,6.06,0,6.06,6.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.06,6.06,0,0,3.03,3.03,0,0,0,6.06,-45.54,-30.64,-54.76,-51.23,3,1,1,1,3,2,0,25,100,58.33,29.17,100,50,0,4.17,33.33,100,0,50,0,58.33,0,0,0,4,1,0,0,0,0,0,0,0,0,5,0,5,1,4,1,33,21 +1091,Asylum,Delay,Goal-assigned,Baseline,2,08:30pm,1,1,0.25,We entered the prison where we encountered several actors and props. We then made our way through the halls where we encountered a detective with several photos pinned to the wall and what appeared to be either a therapists room or a dentists office.,1,71.44,99,66.42,3.56,13.64,11.36,0,2.27,6.82,0,6.82,0,2.27,0,2.27,0,4.55,0,2.27,0,2.27,0,0,0,0,0,0,0,20.45,4.55,0,0,0,0,0,15.91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.91,0,2.27,11.36,2.27,0,0,0,0,-30.02,-37.35,2.62,-55.32,4,2,5,1,3,1,0,50,50,100,62.5,50,100,0,50,12.5,0,0,0,0,100,3,0,0,3,0,0,0,0,0,0,0,0,1,6,1,7,0.857142857,6,0.5,44,21 +1091,DevilsDen,Delay,Goal-assigned,Share,2,08:30pm,2,0,0.8,We walked into the Devil's Den where we saw a bunch of actors with axes and other tools. We then walked outside and went back into the Devil's Den where we saw a bunch of old power tools like a saw with an amputated arm on it.,1,98.03,98.95,91.07,20.23,10.64,8.51,0,2.13,2.13,0,2.13,0,0,0,0,0,2.13,0,0,0,0,0,0,0,0,0,0,0,10.64,0,0,0,0,0,0,10.64,0,0,0,0,0,0,0,0,0,0,0,0,0,4.26,25.53,0,6.38,12.77,6.38,0,0,0,4.26,NA,36.49,0.36,NA,5,2,1,2,5,1,40.91,0,54.55,9.09,100,65.38,100,38.46,38.46,0,50,50,50,50,50,3,0,0,4,0,0,0,0,0,0,0,0,0,7,0,7,1,7,0.571428571,47,21 +1091,GhostlyGrounds,Immediate,Goal-assigned,Test,2,08:30pm,2,0,0.8,The Ghostly Grounds section started out on a dark bus with a flashing strobe light. There were both mannequins and people in the seats and it was difficult to distinguish between the two because of the flashing light. Then we went into the jailhouse where there were people and props moving around in cages placed in the hall that we had to walk around. Then we went up some stairs and walked around several corners where people jumped out at us. We walked along a pathway with moving floor panels and then we eventually went back downstairs. ,1,88.03,92.97,99,10.03,6.25,6.25,0,0,3.13,0,3.13,0,1.04,0,0,0,1.04,0,1.04,0,1.04,0,0,0,0,0,0,0,6.25,0,0,0,0,0,0,6.25,0,0,0,0,2.08,0,0,0,0,0,0,0,0,8.33,36.46,0,9.38,21.88,5.21,0,0,2.08,8.33,46.35,43.4,64.7,30.94,2,4,2,4,1,1,56.67,100,66.67,0,33.33,0,75.9,51.81,100,100,0,100,0,0,0,7,1,0,7,0,0,0,0,0,0,0,0,0,15,0,15,1,15,0.466666667,96,21 +1091,GhostlyGrounds,Delay,Goal-assigned,Test,2,08:30pm,2,1,0.2,"We walked into a bus with blackedout windows with a strobe light flashing inside. There were mannequins and actors in the seats of the bus, and it was difficult to tell the difference between the two because of the flashing light. The actors would pop out as we walked by and we exited the bus through the back. We then entered the prison where we walked by several cages with props in them. As we moved through the hallway we then encountered actors who were staying around the cages that were surrounded by moss/plants. Afterwards, we went up a flight of stairs and continued onto a section where the floor moved as we walked on it. Eventually, we went down another flight of stairs which led to the exit of the attraction.",1,96.13,98.68,97.09,6.97,9.02,7.52,0,1.5,5.26,0,5.26,0,1.5,0.75,0,0,2.26,0,1.5,0,1.5,0,0,0,0,0,0,0,12.78,1.5,0,0,0,0,0.75,11.28,0,0,0,0,0,0,0,0,0,0,0,0,0,3.01,26.32,0,8.27,15.04,3.01,0,0,0,3.01,35.32,54.41,20.62,30.94,2,3,2,4,1,1,62.86,100,25.71,0,38.57,0,0,100,7.69,42.31,0,100,0,0,0,10,1,0,12,1,0,0,0,0,0,0,0,0,24,0,24,1,23,0.52173913,133,21 +1092,Infirmary,Immediate,Goal-assigned,Baseline,2,08:30pm,2,0,0.6,"They gave us 3d glasses and we walked through a highlight colored area. It seemed clown relate. Bright colors. About 3 rooms to walk through. Very few jump scares. The first room was open with 2 actors, one which was carrying a bucket which he scraped across the floor. ",1,82.8,90.06,97.09,20.23,4.08,4.08,0,0,8.16,0,8.16,4.08,0,0,2.04,0,4.08,0,4.08,2.04,2.04,2.04,0,2.04,2.04,0,0,0,12.24,2.04,0,0,0,0,0,10.2,0,0,0,2.04,0,0,0,0,0,0,0,0,0,4.08,28.57,0,10.2,12.24,6.12,0,0,0,4.08,5.56,27.28,-41.55,30.94,5,1,2,2,2,1,42.86,0,85.71,0,100,100,0,0,66.67,40.74,0,100,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.5,49,21 +1092,Infirmary,Delay,Goal-assigned,Baseline,2,08:30pm,2,1,0.4,Clowns and glow paint. Spiders. ,1,39.7,40.06,1,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,20,0,0,0,0,NA,NA,21.68,NA,1,2,1,1,1,1,50,50,50,50,50,0,100,0,0,0,50,50,50,50,50,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,1,3,1,5,21 +1092,Asylum,Delay,Goal-assigned,Baseline,2,08:30pm,2,0,0.25,There were clowns and bright glow colors,1,2.35,40.06,24.32,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.29,14.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.14,0,0,14.29,42.86,0,0,0,0,NA,NA,-54.75,NA,1,1,1,1,3,1,50,50,50,50,50,100,50,0,0,0,50,50,50,50,50,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,1,2,1,7,21 +1092,DevilsDen,Immediate,Goal-assigned,Share,2,08:30pm,4,0,0.6,"There were a lot of people with axes. We went through a room with 2 men, one on top of a balcony swinging a weapon. Everyone was wearing red. People were snarling like zombies. It was dark. There was a butcher. There were a lot of jumpscares. ",1,94.26,84.86,27.91,20.23,2.13,2.13,0,0,2.13,2.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.38,0,0,0,0,0,0,6.38,0,0,0,2.13,0,0,0,0,0,0,0,0,0,6.38,19.15,0,4.26,10.64,4.26,0,0,0,6.38,NA,46.72,-13.85,NA,2,4,1,4,2,1,60,100,44.44,0,66.67,67.5,0,50,100,75,50,50,50,50,50,1,1,0,7,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.777777778,47,21 +1092,DevilsDen,Delay,Goal-assigned,Share,2,08:30pm,4,1,0.4,walking through a jail cell tunnel with lots of fog and people walking around,1,99,40.06,72.58,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,21.43,0,14.29,7.14,0,0,0,0,7.14,NA,54.24,21.68,NA,1,4,1,2,1,1,100,0,100,0,75,0,0,0,100,0,50,50,50,50,50,1,0,0,2,0,0,0,0,0,0,0,0,0,3,0,3,1,3,0.666666667,14,21 +1092,GhostlyGrounds,Delay,Goal-assigned,Test,2,08:30pm,3,0,0.2,We walked onto a bus where people would jump and scare us. There were strobe lights and fog,1,10.19,99,77.17,1,11.11,11.11,0,0,5.56,0,5.56,0,0,5.56,0,0,0,0,5.56,0,5.56,5.56,0,5.56,5.56,0,0,0,11.11,0,0,0,0,0,0,11.11,0,0,0,0,0,0,0,0,0,0,0,0,0,5.56,33.33,0,11.11,16.67,5.56,0,0,0,5.56,NA,90.96,60.85,NA,1,4,1,2,1,1,100,0,0,0,0,0,60,60,100,20,50,50,50,50,50,2,1,0,2,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.4,18,21 +1093,Infirmary,Immediate,Goal-assigned,Baseline,2,08:30pm,3,0,0.2,"the glasses were handed to you and taken at the end. everything was neon. I got jump scared twice and laughed at once. there were jump scare people. everything was trippy . there were orange spiders with long legs. there were neon oil cans. there were railings sometimes. it went around in a triangle shape thing. it was mostly orange, yellow, green, pink, and little purple. person behind me laughed at e when i got jump scared. the people giving out and collecting glasses were (presumably) female. everything was blurry with the glasses, but cool. the orange rectangles on the ground were raised more than the rest of them in the last part of the neon hallway. the floor was uneven there. i liked the spinning tunnel with the dots. our tour guide (Angelique) was no help with indicating when there was people cause she was uneffected by everything. There was a nother hallway thing after the spinny tunnel, then some other sections, then the hallway with the rectangle floor thing.",1,60.82,33.4,86.18,37.12,1.18,1.18,0,0,10,2.94,6.47,0.59,0.59,0,1.18,0,2.94,0,4.71,2.94,1.76,2.94,1.18,1.76,1.76,0,0,0,5.88,2.35,1.18,0,0,0,1.18,3.53,0,0,1.18,0,0,0,2.35,0,0,0,0,0,0,3.53,19.41,0.59,3.53,10,4.71,0,0.59,2.35,3.53,-10.24,-25.71,-37.2,32.2,4,5,3,1,4,1,0,0,50,100,50,85.71,71.43,14.29,0,100,0,0,100,100,100,9,1,0,19,2,0,0,0,0,0,0,0,0,31,0,31,1,29,0.655172414,170,21 +1093,Infirmary,Delay,Goal-assigned,Baseline,2,08:30pm,3,1,0.2,"This was the first section with all the neon. They gave you glasses towards the start on the inside. there were giant neon snakes and spiders. The glasses made everything loopy which was fun. there were neon dressed people walking through. Definitely got jump scared a few times in this one more than i expected to tbh (like 3 times). there was one point where the rectangles on the floor moved. and another where orange rectangles were raised more than the others in a thinner hallway. there were railings at one point and cool neon stuff to look at on the side. the walls were very neon and i think there were a few specific setups. a lot of polka dots at some points. i think there were clowns. it looped around and the end was viewable where you started there was a peRson on the box at the end directing you to drop your glasses in a bin. when i got jump scared once, the person behind me laughed. this one was scary, but in a fun scary way. A woman gave out glasses at the start. i think there was also a little something before the glasses but i dont remember what. i think some of the actors had tutus on",1,77.55,32.16,97.65,20.23,0,0,0,0,9.39,0.94,7.51,2.82,0.47,0,0.47,0.47,3.29,0.47,3.76,1.88,1.88,3.29,1.41,1.88,1.88,0,0,0,5.63,1.41,0,0,0,0,0.47,4.23,0,0,0.47,0,0,0,0.94,0,0,0,0,0,0,4.69,16.43,0.47,2.82,11.74,1.41,0,0.47,0.94,4.69,-19.38,-15.95,-20.89,-21.3,4,5,5,1,2,4,0,43.75,0,100,100,92.31,0,92.31,76.37,100,16.28,48.84,48.84,0,100,3,1,0,19,4,0,0,0,0,0,0,0,5,27,5,32,0.84375,23,0.826086957,213,21 +1093,Asylum,Delay,Goal-assigned,Baseline,2,08:30pm,1,0,0.5,"there were cages, and a few different sets. there was one with a reporter who for some reason made me think the actor was either from Brooklyn or was Jewish (Im also Jewish). Dont know exactly why this popped into mind. I told this thought to the person in front of me. There was also a doctor set up. I think the actor there said something about teeth so i think it was a creepy dentists office. The path was sorta thin and zig zagged into different rooms. I expected a lot of jump scares from behind those walls but dont think there were any. There were a couple other actors in the middle of one hall. The guy was scaring people and the girl was creepy but dressed up sorta fancy 1920s style with a headband or something. It wasnt that long of a section I dont think, but not that short either.",1,45.12,2.24,99,8.22,0,0,0,0,18.83,0,18.83,5.19,1.95,0,4.55,0.65,7.79,0,3.9,1.3,2.6,2.6,0,2.6,2.6,0,0,0,5.84,1.3,0,0,0,0,1.3,4.55,0,0,0.65,0.65,0,0,0,0,0,0,0,0,0,1.95,13.64,0,0.65,12.99,0,0,0,0,1.95,-19.95,-0.01,-42.83,-17,2,5,5,5,3,4,29.41,100,29.41,100,0,90.23,45.11,0,45.11,100,31.58,94.74,31.58,0,100,4,0,0,12,2,0,0,0,1,0,1,0,4,18,6,24,0.75,16,0.75,154,21 +1093,DevilsDen,Delay,Goal-assigned,Share,2,08:30pm,2,0,0.6,"this one occurred after we passed through the first bar area. was a bit sad we couldnt stop to get a drink and check it out to be honest. It looked very cool and foggy. There was also a worker in front of that that seemed a bit stressed and asked us to ""please not touch her candy people"". Definitely seemed like shed delt with that a few too many times that day. Anyways, the line was long and swung by the potta porties. there was a man with a whale shirt in front of us in line. The lady who let us in had a cool outfit, a shaved head, and some sort of large prop tool in her hand. I think this was one of the medium scary ones. tbh I remember more from outside of it, then from inside. I dont think there were too many actors in this one. Maybe one jump scare. Also a big open foggy hallway in this one. I think this one was more dark. there were also schoool/gym locker things right at the start which i found odd.",1,64.38,59.05,80.57,9.87,3.19,2.66,0,0.53,10.11,0,10.11,4.26,0,0.53,2.66,2.13,1.6,0.53,4.26,1.6,2.66,2.13,0,2.13,1.6,0,0.53,0,7.45,1.6,0.53,1.06,0,0,0.53,6.38,0,0,1.6,0.53,0,0,0.53,0,0,0,0,0,0.53,5.85,15.96,0.53,1.6,11.17,1.06,0,1.6,0.53,6.38,-17.46,24.09,-50.23,-26.25,3,1,5,5,2,3,49.32,49.32,100,78.08,0,100,0,0,44.14,78.38,16.23,48.68,0,50,100,1,1,0,5,2,4,0,0,6,3,0,0,1,9,14,23,0.391304348,7,0.714285714,188,21 +1093,GhostlyGrounds,Immediate,Goal-assigned,Test,2,08:30pm,3,0,0.8,"i think this was the one with the bus???? the bus was lit up purple there were people in the seats but there was a strobe light so i couldnt tell if any of the were real. i think i saw an arm move. there was a cool smokey green light thing, cages with people, and a smokey hallway at some point. ",1,65.54,2.59,69.74,44.38,0,0,0,0,14.52,3.23,11.29,3.23,0,1.61,3.23,1.61,3.23,0,1.61,1.61,0,0,0,0,0,0,0,0,1.61,1.61,0,0,0,0,1.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.06,20.97,0,1.61,8.06,9.68,0,1.61,0,8.06,35.46,75.08,24,7.29,1,3,4,3,4,3,100,100,0,0,59.09,17.31,40.38,100,0,0,92.31,92.31,0,100,0,0,1,0,5,1,0,0,0,1,1,0,0,0,7,2,9,0.777777778,6,0.833333333,62,21 +1093,GhostlyGrounds,Delay,Goal-assigned,Test,2,08:30pm,3,1,0.8,"The Ghostly Grounds started out with the bus. I think it was the last section. The people in the bus i think were mostly real but also wasnt sure and it freaked me out a bit. got separated from the group momentarily. Our group formed a people chain while we walked through because my friend was scared. she grabbed the back of my sweatshirt and i thought that was funny. There was a cool green strobe light thing and a bunch of fog. There was also a bit more of an open hallway at one point and a lot of fog. There were also strobe lights in the really foggy room. I wiggled my arms while walking through so it would look cool. I also snuck up behind my brother when it was dark and scared him. very funny. Someone tried to scare the tour guide while we were walking but they were unaffected by it. I also got jump scared a couple times while walking through, despite trying to keep my composure cause i was the line leader for a bit and the tour guide was no help for indicating where the actors were hiding.",1,45.8,26.18,89.82,34.68,4.1,2.56,1.03,0.51,9.23,0.51,8.72,1.54,1.03,1.03,1.03,1.03,2.56,0,5.13,3.08,2.05,3.08,1.03,2.05,2.05,0,0,0,8.21,2.05,1.54,0,0,0,0,6.15,0.51,0,0.51,1.03,0,0,1.54,0,0,0,0,0.51,0,7.69,16.92,1.03,2.56,9.23,3.08,0,1.54,1.54,8.2,6.3,59.17,24.7,-64.97,1,4,1,2,5,2,100,0,85.71,0,71.43,18.18,63.64,9.09,100,0,100,0,0,0,33.33,15,1,0,3,5,1,1,0,3,1,1,1,1,24,9,33,0.727272727,19,0.157894737,195,21 +1094,Infirmary,Delay,Goal-assigned,Baseline,2,08:30pm,1,0,0.4,"I remember this section being very colorful and kind of fun. It was not at all scary to me, but rather really fun. I remember putting the classes on and everything looking like it was popping out at me. I remember there being a lot of clowns. There was also a sliding walkway that was fun. This attraction feels like a fun house",1,29.12,1.6,94.6,97.05,0,0,0,0,19.05,3.17,15.87,6.35,0,0,4.76,1.59,3.17,4.76,9.52,7.94,1.59,7.94,6.35,1.59,1.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.11,14.29,0,3.17,6.35,3.17,0,1.59,0,11.11,-23.81,-40.44,-7.32,-23.66,3,1,1,1,5,3,0,50,100,81.25,27.08,100,100,46.67,86.67,0,100,66.67,0,72.22,36.11,1,0,0,4,4,0,0,0,0,0,0,0,0,9,0,9,1,5,0.8,63,22 +1094,Asylum,Immediate,Goal-assigned,Baseline,2,08:30pm,1,0,0.75,"old time movie theme. surprisingly bight. Audio aspects like a woman in a red dress opening her fan. large theme reals. 1920s/ 1930s aspects and themes like flappers. I want to say that there was relevant music but I dont remember. Was not a very long attraction, it seemed to go by pretty quickly. ",1,55.25,8.59,92.16,20.23,0,0,0,0,12.96,0,12.96,5.56,0,1.85,3.7,0,3.7,1.85,1.85,0,0,1.85,0,0,0,0,0,0,5.56,1.85,0,0,0,0,1.85,3.7,0,0,3.7,0,0,1.85,0,0,0,0,0,0,0,11.11,16.67,0,3.7,9.26,1.85,3.7,0,1.85,11.11,18.04,-5.68,47.64,12.16,5,4,4,1,1,1,0,83.33,0,0,100,0,14.29,42.86,100,31.43,0,0,0,100,55,0,0,0,8,0,0,0,0,0,0,0,0,2,8,2,10,0.8,8,1,54,22 -1094,Asylum,Delay,Role-assignment,Baseline,2,08:30pm,1,1,0.25,I remember the theme being old Hollywood. There was a woman sitting with a fan that she snapped when you walked by. The set up was like the behind the scenes of a dressing room from a movie set. ,1,98.64,81.78,81.58,20.23,0,0,0,0,2.56,0,2.56,2.56,0,0,0,0,0,2.56,0,0,0,0,0,0,0,0,0,0,7.69,0,0,0,0,0,0,7.69,0,0,5.13,0,0,0,0,0,0,0,0,0,0,2.56,15.38,0,2.56,12.82,0,0,0,0,2.56,-31.67,-25.49,-15.8,-53.71,4,1,1,1,5,2,0,50,25,100,60.71,100,66.67,100,33.33,0,100,0,0,0,0,1,0,0,4,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.8,39,22 -1094,DevilsDen,Immediate,Role-assignment,Share,2,08:30pm,4,0,0.4,I remember this being my least favorite attraction because it was the scariest to me. It was one of the special or scarier sections of the night and apart of that reason is that it was significantly darker and ominous. It was a lot harder to predict the placement and actions of the actors. a lot of the sets in this attraction were a lot gorier and overall bloodier. The actors also got a lot closer to me in this attraction which added to the fear factor,1,74.08,13.19,51.97,1.05,0,0,0,0,9.2,0,9.2,2.3,2.3,0,1.15,0,3.45,1.15,5.75,1.15,4.6,4.6,0,4.6,4.6,0,0,0,2.3,0,0,0,0,0,0,2.3,0,0,0,0,0,0,1.15,0,0,0,0,0,0,2.3,8.05,0,0,6.9,1.15,0,0,1.15,2.3,-51.51,-47.33,-52.24,-54.95,4,1,5,1,4,4,0,68.92,75.68,100,75.68,100,56.03,15.52,0,15.52,94.44,47.22,50,0,100,1,0,0,6,1,0,0,0,0,3,0,0,0,8,3,11,0.727272727,7,0.857142857,87,22 -1094,DevilsDen,Delay,Role-assignment,Share,2,08:30pm,4,1,0.8,Gruesome scenes and loud noises. This one was scarier to me than the others because of how dark it was. I was harder to predict what was coming next within the attraction. Actors also god a lot closer to me in this attraction,1,43.84,4.93,96.19,1,0,0,0,0,11.63,0,11.63,2.33,4.65,0,0,0,4.65,0,4.65,0,4.65,2.33,0,2.33,2.33,0,0,0,2.33,0,0,0,0,0,0,2.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.28,0,2.33,9.3,2.33,4.65,0,0,0,21.67,-19.5,12.49,72.02,2,3,2,1,4,1,0,100,25,56.25,84.38,38.46,58.97,100,0,23.08,0,100,50,56.25,0,1,0,0,3,0,0,0,0,0,2,0,0,0,4,2,6,0.666666667,4,0.75,43,22 -1094,GhostlyGrounds,Delay,Role-assignment,Test,2,08:30pm,2,0,0.4,I do not really have any recollection of Ghostly Grounds. I suppose for that reason it wasn’t that scary. I don’t remember this part being particularly dark either which helped with it not being as scary,1,1,1,99,1.98,2.86,2.86,0,0,34.29,0,34.29,8.57,2.86,0,11.43,5.71,17.14,5.71,8.57,2.86,5.71,5.71,0,5.71,5.71,0,0,0,2.86,2.86,2.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.86,2.86,0,0,0,2.86,0,0,0,2.86,6.58,-6.66,-23.13,49.54,2,1,2,1,2,5,0,100,0,0,100,100,0,75,75,25,50,100,50,50,0,0,0,0,1,0,0,0,0,0,0,0,0,3,1,3,4,0.25,1,1,37,22 +1094,Asylum,Delay,Goal-assigned,Baseline,2,08:30pm,1,1,0.25,I remember the theme being old Hollywood. There was a woman sitting with a fan that she snapped when you walked by. The set up was like the behind the scenes of a dressing room from a movie set. ,1,98.64,81.78,81.58,20.23,0,0,0,0,2.56,0,2.56,2.56,0,0,0,0,0,2.56,0,0,0,0,0,0,0,0,0,0,7.69,0,0,0,0,0,0,7.69,0,0,5.13,0,0,0,0,0,0,0,0,0,0,2.56,15.38,0,2.56,12.82,0,0,0,0,2.56,-31.67,-25.49,-15.8,-53.71,4,1,1,1,5,2,0,50,25,100,60.71,100,66.67,100,33.33,0,100,0,0,0,0,1,0,0,4,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.8,39,22 +1094,DevilsDen,Immediate,Goal-assigned,Share,2,08:30pm,4,0,0.4,I remember this being my least favorite attraction because it was the scariest to me. It was one of the special or scarier sections of the night and apart of that reason is that it was significantly darker and ominous. It was a lot harder to predict the placement and actions of the actors. a lot of the sets in this attraction were a lot gorier and overall bloodier. The actors also got a lot closer to me in this attraction which added to the fear factor,1,74.08,13.19,51.97,1.05,0,0,0,0,9.2,0,9.2,2.3,2.3,0,1.15,0,3.45,1.15,5.75,1.15,4.6,4.6,0,4.6,4.6,0,0,0,2.3,0,0,0,0,0,0,2.3,0,0,0,0,0,0,1.15,0,0,0,0,0,0,2.3,8.05,0,0,6.9,1.15,0,0,1.15,2.3,-51.51,-47.33,-52.24,-54.95,4,1,5,1,4,4,0,68.92,75.68,100,75.68,100,56.03,15.52,0,15.52,94.44,47.22,50,0,100,1,0,0,6,1,0,0,0,0,3,0,0,0,8,3,11,0.727272727,7,0.857142857,87,22 +1094,DevilsDen,Delay,Goal-assigned,Share,2,08:30pm,4,1,0.8,Gruesome scenes and loud noises. This one was scarier to me than the others because of how dark it was. I was harder to predict what was coming next within the attraction. Actors also god a lot closer to me in this attraction,1,43.84,4.93,96.19,1,0,0,0,0,11.63,0,11.63,2.33,4.65,0,0,0,4.65,0,4.65,0,4.65,2.33,0,2.33,2.33,0,0,0,2.33,0,0,0,0,0,0,2.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.28,0,2.33,9.3,2.33,4.65,0,0,0,21.67,-19.5,12.49,72.02,2,3,2,1,4,1,0,100,25,56.25,84.38,38.46,58.97,100,0,23.08,0,100,50,56.25,0,1,0,0,3,0,0,0,0,0,2,0,0,0,4,2,6,0.666666667,4,0.75,43,22 +1094,GhostlyGrounds,Delay,Goal-assigned,Test,2,08:30pm,2,0,0.4,I do not really have any recollection of Ghostly Grounds. I suppose for that reason it wasn’t that scary. I don’t remember this part being particularly dark either which helped with it not being as scary,1,1,1,99,1.98,2.86,2.86,0,0,34.29,0,34.29,8.57,2.86,0,11.43,5.71,17.14,5.71,8.57,2.86,5.71,5.71,0,5.71,5.71,0,0,0,2.86,2.86,2.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.86,2.86,0,0,0,2.86,0,0,0,2.86,6.58,-6.66,-23.13,49.54,2,1,2,1,2,5,0,100,0,0,100,100,0,75,75,25,50,100,50,50,0,0,0,0,1,0,0,0,0,0,0,0,0,3,1,3,4,0.25,1,1,37,22 1095,Infirmary,Immediate,Control,Baseline,0,08:30pm,2,0,1,"We had to put on these 3d glasses. They made all the colors more vibrant. There were a bunch of spiders on the walls and the display pipes. The primary colors were blue, orange, green, and yellow. There were 4 different actors, one of them had a creepy cloak with 3 faces on it. There was a dude on stilts, at the beginning of the attraction there were two women dancing on poles. Finally, there was this room where the walls were spinning and the 3d glasses made it a little harder to balance than normal. We received the glasses from a lady in a clown costume and there were various display clowns around. ",1,88.27,74.98,45.82,11.33,1.75,1.75,0,0,5.26,0.88,4.39,0,1.75,0,0,0,2.63,0,0.88,0,0.88,0.88,0,0.88,0.88,0,0,0,7.89,1.75,0,0.88,0,0,0,7.02,0,0.88,1.75,0.88,1.75,0,0.88,0,0,0,0,0,0,0,20.18,0,2.63,10.53,7.02,0,0,2.63,0,-5.24,40.21,-0.61,-55.32,3,4,5,2,5,1,66.67,0,100,16.67,89.39,73.81,73.81,21.43,100,0,0,0,0,0,100,1,2,0,14,0,0,0,0,0,0,0,0,0,17,0,17,1,17,0.823529412,114,21 1095,Infirmary,Delay,Control,Baseline,0,08:30pm,2,1,1,"There were 2 women dancing on poles when we came in, someone gave us the 3d glasses, and then we walked past some drapes into a sewer like setting. There were extremely vibrant colors and a bunch of big spiders everywhere along the walls and pipes. There was a man on stilts who attempted to scare us, a weird room with colorful spikes, and another actor who was draped in a cloak with three frowning faces on it. Also a room that spun with weird polka dots, we also crossed a bridge at one point. I liked Infirmary. ",1,71.21,97.11,66.12,34.6,5.1,5.1,0,0,4.08,1.02,3.06,0,0,0,1.02,1.02,1.02,0,3.06,2.04,1.02,1.02,0,1.02,1.02,0,0,0,13.27,2.04,0,0,0,0,0,11.22,0,0,1.02,1.02,0,0,0,0,0,0,0,0,2.04,3.06,17.35,0,5.1,10.2,2.04,0,0,0,5.1,-28.98,-37.74,-37.64,-11.56,3,1,4,1,5,1,0,33.33,100,75.44,40.35,100,16.48,37.36,43.96,0,0,0,0,100,100,6,1,0,6,2,0,0,0,0,0,0,0,0,15,0,15,1,13,0.461538462,98,21 1095,Asylum,Delay,Control,Baseline,0,08:30pm,1,0,0,"It was modeled after a movie set, a creepy movie set. I vaguely remember a few old school typewriters on some desks, a few directors chairs, and those weird things where someone makes a clacking sound and then the director says ""action"". There were also a few actors trying to scare us unsuccessfully. I distinctly remember liking ""Asylum"" the least. ",1,65.02,68.76,37.69,1.32,8.2,1.64,3.28,3.28,11.48,0,11.48,3.28,1.64,1.64,3.28,1.64,1.64,3.28,6.56,1.64,4.92,3.28,0,3.28,3.28,0,0,0,9.84,1.64,0,0,0,0,1.64,8.2,0,0,0,0,0,0,1.64,0,0,0,0,0,1.64,1.64,6.56,0,1.64,3.28,0,1.64,0,1.64,3.28,18.64,63.99,14.35,-22.43,2,3,2,3,2,3,88.46,100,0,50,50,35.38,0,100,60,20,92.31,100,0,100,100,1,0,0,6,3,0,0,0,0,0,0,0,0,10,0,10,1,7,0.857142857,61,21 1095,DevilsDen,Immediate,Control,Baseline,0,08:30pm,3,0,0.6,"There was a lady who made some girl go first before us alone b/c she had one of the necklaces on. There was a guy with a sledgehammer who scared us by launching the hammer at our faces and then pulling back at the last second. Then there was a dude who tried to scare us with his chainsaw. Nex,t some dude came out of the darkness with a cinderblock and faked hitting us with it. Then we walked through some machine parts, like a chop shop area, some lady came out of nowhere and scared me. There was a disembodied head who was just covered in teeth along with some nurse lady. There was a man with a saw of some kind who was fake sleeping and then he got up and tried to scare us. There was also a weird wall of flesh thing that we had to walk through and it shook with our weight. ",1,73.88,99,45.52,1,6.88,5.63,1.25,0,1.88,0.63,1.25,0,0.63,0,0,0,0.63,0,4.38,0,4.38,2.5,0,2.5,2.5,0,0,0,18.13,3.13,0,1.88,0,1.25,0,16.25,0,1.25,3.13,3.75,1.25,0,0.63,0,0,0,0,0,0.63,3.13,15,0,5,9.38,1.25,0,0,1.88,3.76,-16.93,14.59,-10.07,-55.32,3,5,5,5,3,1,33.33,33.33,100,33.33,0,42.86,42.86,0,71.43,100,0,0,0,0,100,11,0,0,10,0,0,0,0,3,0,0,0,0,21,3,24,0.875,21,0.476190476,160,21 1095,DevilsDen,Delay,Control,Baseline,0,08:30pm,3,1,0.8,"We were accosted by some dude who swung a sledgehammer at us, then there was a guy who was revving has chainsaw at us, and finally of the three initial actors there was a man who almost hit me with a cinderblock. Everyone was wearing prison outfits. There was another man who was lying down and scared us by getting up suddenly with some kind of saw in his hand. Along with that came some sort of weird flesh wall that we all had to walk into and a bunch of air cannons positioned to scare us by blowing air loudly at our feet and heads. ",1,68.03,99,41.82,1,7.55,6.6,0,0.94,8.49,1.89,4.72,0,0,0,2.83,0,1.89,0,3.77,0,3.77,1.89,0,1.89,1.89,0,0,0,16.98,0,0,0,0,0,0,16.98,0,0.94,0,4.72,1.89,0,0.94,0,0,0,0,0,0.94,0,13.21,0,2.83,8.49,0.94,0.94,0,2.83,0.94,1.02,-14.53,-13.34,30.94,2,1,4,1,5,1,0,100,8.33,54.17,100,100,76.92,92.31,46.15,0,0,0,0,100,0,9,0,0,7,0,0,0,0,0,0,0,0,0,16,0,16,1,16,0.4375,106,21 1095,GhostlyGrounds,Delay,Control,Baseline,0,08:30pm,2,0,0.8,"It was the last attraction. I was tired and hungry at this point so I dont remember much. We had to get on a bus with strobe lights on it. Afterwards we walked into some room, and all I remember is that towards the end we walked through this really long hallway that was apart of the main housing cells of the old prison. ",1,52.84,49.35,93.71,1,6.25,4.69,0,1.56,7.81,1.56,6.25,3.13,0,0,0,1.56,1.56,3.13,4.69,0,4.69,1.56,0,1.56,0,0,0,0,4.69,0,0,0,0,0,0,4.69,0,0,0,0,4.69,0,1.56,1.56,0,1.56,0,0,0,3.13,12.5,0,3.13,7.81,1.56,0,0,9.37,3.13,9.12,-11.55,-4.84,43.76,5,1,2,1,5,1,0,85.71,0,42.86,100,100,73.91,100,73.91,0,0,100,0,100,0,2,1,0,1,0,1,0,0,0,1,3,0,1,4,6,10,0.4,4,0.25,64,21 -1096,Infirmary,Delay,Role-assignment,Baseline,1,06:15pm,2,0,0.6,"I remember wearing 3d glasses, I remember a lot of neon colors, I remember walking through a tunnel and the walls were moving around you. I remember everything looking trippy because of the glasses",1,79.1,12.77,99,20.23,0,0,0,0,17.65,2.94,14.71,11.76,2.94,0,0,0,0,11.76,0,0,0,0,0,0,0,0,0,0,2.94,0,0,0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.65,0,5.88,5.88,5.88,0,0,0,0,-24.48,-26.63,1.83,-48.64,3,4,1,1,2,3,0,66.67,100,33.33,77.78,33.33,0,0,100,5.56,100,50,0,50,58.33,1,1,0,4,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.666666667,34,18 -1096,Asylum,Immediate,Role-assignment,Baseline,1,06:15pm,1,0,0.5,"a man standng at a cash register when we first waked through banging down on the table, a man speaking deliriously, a women getting ready for a show, +1096,Infirmary,Delay,Goal-assigned,Baseline,1,06:15pm,2,0,0.6,"I remember wearing 3d glasses, I remember a lot of neon colors, I remember walking through a tunnel and the walls were moving around you. I remember everything looking trippy because of the glasses",1,79.1,12.77,99,20.23,0,0,0,0,17.65,2.94,14.71,11.76,2.94,0,0,0,0,11.76,0,0,0,0,0,0,0,0,0,0,2.94,0,0,0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.65,0,5.88,5.88,5.88,0,0,0,0,-24.48,-26.63,1.83,-48.64,3,4,1,1,2,3,0,66.67,100,33.33,77.78,33.33,0,0,100,5.56,100,50,0,50,58.33,1,1,0,4,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.666666667,34,18 +1096,Asylum,Immediate,Goal-assigned,Baseline,1,06:15pm,1,0,0.5,"a man standng at a cash register when we first waked through banging down on the table, a man speaking deliriously, a women getting ready for a show, ",1,99,99,8.95,75.77,3.57,3.57,0,0,0,0,0,0,0,0,0,0,0,0,3.57,3.57,0,0,0,0,0,0,0,0,17.86,3.57,0,0,0,0,3.57,14.29,0,0,3.57,7.14,0,0,3.57,0,0,0,0,0,0,3.57,10.71,0,0,3.57,3.57,3.57,0,3.57,3.57,NA,41.24,21.68,NA,3,2,1,2,1,1,66.67,0,100,6.67,46.67,0,100,0,0,0,50,50,50,50,50,1,0,0,4,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.8,28,18 -1096,Asylum,Delay,Role-assignment,Baseline,1,06:15pm,1,1,0.5,"I remember a man banging on a type writer when we first entered. I remember a lady getting ready to preform, I remember going down a ramp and getting chased by someone with a chainsaw. ",1,95.41,85.08,99,20.23,2.86,2.86,0,0,11.43,0,11.43,8.57,0,0,2.86,0,0,8.57,0,0,0,0,0,0,0,0,0,0,14.29,2.86,0,2.86,0,0,0,14.29,0,0,2.86,2.86,0,0,5.71,0,0,0,0,0,0,0,14.29,0,8.57,2.86,0,2.86,0,5.71,0,29.89,69.81,14.07,5.78,1,2,1,2,3,2,100,0,66.67,66.67,100,33.33,100,0,66.67,33.33,100,0,100,100,0,1,0,0,2,0,2,0,0,0,0,0,0,0,3,2,5,0.6,3,0.666666667,35,18 -1096,DevilsDen,Delay,Role-assignment,Test,1,06:15pm,3,0,0.8,"I remember someone going frantic when first walking in. I remember walking through bodies hanging upside down with 2 people standing in the corners. I remember people jumping through bars. I remember going upstairs and seeing big creatures by the steps, I remember ",1,89.52,4.93,99,3.38,0,0,0,0,13.95,0,13.95,11.63,0,0,2.33,0,0,11.63,2.33,0,2.33,2.33,0,2.33,2.33,0,0,0,2.33,0,0,0,0,0,0,2.33,0,0,0,0,0,0,0,0,0,0,0,0,0,6.98,30.23,0,13.95,13.95,2.33,0,0,0,6.98,-22.49,-17.1,-38.79,-11.56,2,1,4,1,2,1,0,100,50,6.25,62.5,100,0,0,62.5,6.25,0,0,0,100,100,3,0,0,5,0,0,0,0,0,0,0,0,1,8,1,9,0.888888889,8,0.625,43,18 -1096,GhostlyGrounds,Immediate,Role-assignment,Share,1,06:15pm,4,0,0.8,"peope jumping out from the cages, bodys hanging from the ceiling and 2 peope standing in each corner, entering on a school bus, going up and down stairs, people in cages",1,99,40.06,99,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.45,32.26,0,9.68,22.58,0,0,0,0,6.45,NA,53.14,12.16,NA,4,2,1,3,1,1,78.57,50,0,100,50,0,100,0,0,100,50,50,50,50,50,1,1,0,4,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.666666667,31,18 -1096,GhostlyGrounds,Delay,Role-assignment,Share,1,06:15pm,4,1,0.8,I remember walking through the hallway with empty cells on each side. I remember a lot of fog. I remember people popping out of the cells and following us. I remember the weird noises that they would make,1,92.7,25.84,97.49,1,2.63,2.63,0,0,15.79,0,15.79,10.53,2.63,2.63,0,0,0,10.53,5.26,0,5.26,0,0,0,0,0,0,0,5.26,0,0,0,0,0,0,5.26,0,0,0,0,0,0,0,2.63,0,0,0,0,2.63,7.89,13.16,0,2.63,7.89,0,2.63,0,2.63,10.52,42.17,65.07,21.07,40.37,1,4,4,4,1,5,100,46.15,100,0,0,0,0,0,100,100,87.5,87.5,87.5,100,0,0,0,0,1,0,3,0,0,2,0,0,0,0,1,5,6,0.166666667,1,1,38,18 -1097,Infirmary,Immediate,Role-assignment,Baseline,1,06:15pm,2,0,0.8,"Bright colors, 3d glasses, spiders, moving tunnel, +1096,Asylum,Delay,Goal-assigned,Baseline,1,06:15pm,1,1,0.5,"I remember a man banging on a type writer when we first entered. I remember a lady getting ready to preform, I remember going down a ramp and getting chased by someone with a chainsaw. ",1,95.41,85.08,99,20.23,2.86,2.86,0,0,11.43,0,11.43,8.57,0,0,2.86,0,0,8.57,0,0,0,0,0,0,0,0,0,0,14.29,2.86,0,2.86,0,0,0,14.29,0,0,2.86,2.86,0,0,5.71,0,0,0,0,0,0,0,14.29,0,8.57,2.86,0,2.86,0,5.71,0,29.89,69.81,14.07,5.78,1,2,1,2,3,2,100,0,66.67,66.67,100,33.33,100,0,66.67,33.33,100,0,100,100,0,1,0,0,2,0,2,0,0,0,0,0,0,0,3,2,5,0.6,3,0.666666667,35,18 +1096,DevilsDen,Delay,Goal-assigned,Test,1,06:15pm,3,0,0.8,"I remember someone going frantic when first walking in. I remember walking through bodies hanging upside down with 2 people standing in the corners. I remember people jumping through bars. I remember going upstairs and seeing big creatures by the steps, I remember ",1,89.52,4.93,99,3.38,0,0,0,0,13.95,0,13.95,11.63,0,0,2.33,0,0,11.63,2.33,0,2.33,2.33,0,2.33,2.33,0,0,0,2.33,0,0,0,0,0,0,2.33,0,0,0,0,0,0,0,0,0,0,0,0,0,6.98,30.23,0,13.95,13.95,2.33,0,0,0,6.98,-22.49,-17.1,-38.79,-11.56,2,1,4,1,2,1,0,100,50,6.25,62.5,100,0,0,62.5,6.25,0,0,0,100,100,3,0,0,5,0,0,0,0,0,0,0,0,1,8,1,9,0.888888889,8,0.625,43,18 +1096,GhostlyGrounds,Immediate,Goal-assigned,Share,1,06:15pm,4,0,0.8,"peope jumping out from the cages, bodys hanging from the ceiling and 2 peope standing in each corner, entering on a school bus, going up and down stairs, people in cages",1,99,40.06,99,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.45,32.26,0,9.68,22.58,0,0,0,0,6.45,NA,53.14,12.16,NA,4,2,1,3,1,1,78.57,50,0,100,50,0,100,0,0,100,50,50,50,50,50,1,1,0,4,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.666666667,31,18 +1096,GhostlyGrounds,Delay,Goal-assigned,Share,1,06:15pm,4,1,0.8,I remember walking through the hallway with empty cells on each side. I remember a lot of fog. I remember people popping out of the cells and following us. I remember the weird noises that they would make,1,92.7,25.84,97.49,1,2.63,2.63,0,0,15.79,0,15.79,10.53,2.63,2.63,0,0,0,10.53,5.26,0,5.26,0,0,0,0,0,0,0,5.26,0,0,0,0,0,0,5.26,0,0,0,0,0,0,0,2.63,0,0,0,0,2.63,7.89,13.16,0,2.63,7.89,0,2.63,0,2.63,10.52,42.17,65.07,21.07,40.37,1,4,4,4,1,5,100,46.15,100,0,0,0,0,0,100,100,87.5,87.5,87.5,100,0,0,0,0,1,0,3,0,0,2,0,0,0,0,1,5,6,0.166666667,1,1,38,18 +1097,Infirmary,Immediate,Goal-assigned,Baseline,1,06:15pm,2,0,0.8,"Bright colors, 3d glasses, spiders, moving tunnel, ",1,89.52,40.06,24.32,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.29,14.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.86,0,14.29,0,28.57,0,0,0,0,NA,NA,NA,NA,1,1,1,1,1,1,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,4,1,4,1,7,18 -1097,Infirmary,Delay,Role-assignment,Baseline,1,06:15pm,2,1,0.8,"bright colors +1097,Infirmary,Delay,Goal-assigned,Baseline,1,06:15pm,2,1,0.8,"bright colors spiders 3d glasses girls painting spinny tunnel ",1,89.52,92.24,1,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.11,11.11,0,0,0,0,0,0,0,0,11.11,0,0,0,0,0,0,11.11,0,0,11.11,0,0,0,0,0,0,0,0,0,0,0,22.22,0,0,0,22.22,0,0,0,0,NA,NA,NA,NA,1,1,1,1,1,1,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,0,1,0,4,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.8,9,18 -1097,Asylum,Delay,Role-assignment,Baseline,1,06:15pm,1,0,0.25,"jail cells +1097,Asylum,Delay,Goal-assigned,Baseline,1,06:15pm,1,0,0.25,"jail cells m’en screaming chain saw thé color red cut off limbs ",1,96.67,40.06,1,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.77,0,0,0,23.08,7.69,0,0,0,NA,4.96,NA,NA,5,1,1,1,1,1,0,0,0,0,100,50,50,50,50,50,50,50,50,50,50,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,18 -1097,DevilsDen,Delay,Role-assignment,Test,1,06:15pm,4,0,0.6,"hanging bodies +1097,DevilsDen,Delay,Goal-assigned,Test,1,06:15pm,4,0,0.6,"hanging bodies smoke ",1,89.52,40.06,99,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.33,0,0,33.33,0,0,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,1,2,1,3,18 -1097,GhostlyGrounds,Immediate,Role-assignment,Share,1,06:15pm,5,0,0.4,"SCary ass people +1097,GhostlyGrounds,Immediate,Goal-assigned,Share,1,06:15pm,5,0,0.4,"SCary ass people bodies from the ceiling up and down stairs school bus people in cages ",1,99,11.66,54.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.5,0,6.25,6.25,0,6.25,6.25,0,0,6.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.5,18.75,0,0,18.75,0,0,0,0,12.5,NA,-20.34,21.68,NA,2,3,1,1,1,1,0,100,100,0,50,0,0,100,0,0,50,50,50,50,50,1,1,0,3,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.6,16,18 -1097,GhostlyGrounds,Delay,Role-assignment,Share,1,06:15pm,5,1,0.6,"a man at a computer +1097,GhostlyGrounds,Delay,Goal-assigned,Share,1,06:15pm,5,1,0.6,"a man at a computer moving floor cages school bus @@ -805,46 +805,46 @@ air guns tunnel waiting in line ",1,99,70.59,99,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.26,0,0,0,0,0,0,5.26,0,0,0,5.26,0,0,0,0,0,0,0,0,0,0,31.58,0,5.26,21.05,5.26,0,0,0,0,NA,88.26,NA,NA,1,1,1,2,1,1,100,0,0,0,44.44,50,50,50,50,50,50,50,50,50,50,1,2,0,6,0,0,1,0,0,0,0,0,0,9,1,10,0.9,9,0.666666667,19,18 -1098,Infirmary,Immediate,Role-assignment,Baseline,1,06:15pm,2,0,1,there was a spinning tunnel. there were clowns. they had us wear glasses. the ground felt like it moved,1,22.98,98.27,93.14,20.23,5.26,5.26,0,0,5.26,0,5.26,5.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10.53,0,0,0,0,0,0,10.53,0,0,0,0,0,0,0,0,0,0,0,0,0,5.26,26.32,0,10.53,10.53,0,0,5.26,0,5.26,26.97,56.07,-6.11,30.94,1,3,4,2,4,1,100,0,0,100,0,66.67,66.67,100,0,44.44,0,0,0,100,0,1,1,0,2,0,0,0,0,0,0,0,0,0,4,0,4,1,4,0.5,19,18 -1098,Infirmary,Delay,Role-assignment,Baseline,1,06:15pm,2,1,0.8,there we people standing on platforms. they gave us the glasses there were large spiders. we walked through a spinning tube. there was a clown at the end. there were walls covered in poka dots.,1,72.76,99,97.09,20.23,8.57,8.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.29,2.86,0,0,0,0,0,11.43,0,0,0,0,0,0,0,0,0,0,0,0,0,5.71,25.71,0,5.71,20,0,0,0,0,5.71,NA,-20.21,-27.46,NA,4,1,1,1,3,1,0,0,50,100,0,100,100,0,50,50,50,50,50,50,50,1,1,0,5,0,0,0,0,0,0,0,0,0,7,0,7,1,7,0.714285714,35,18 -1098,Asylum,Delay,Role-assignment,Baseline,1,06:15pm,3,0,0.5,there was a scientist talking crazy. a mirror people get ready in before plays or movies. like a dressing room. but nobody was sitting in it. this may have been the one with the man on the type writer. ,1,85.57,26.18,81.58,91.4,0,0,0,0,15.38,7.69,7.69,0,0,0,5.13,0,5.13,0,7.69,5.13,0,2.56,0,0,0,0,0,0,7.69,2.56,0,0,0,0,2.56,5.13,0,0,0,2.56,0,0,2.56,0,0,0,0,0,2.56,12.82,12.82,0,0,12.82,0,0,0,2.56,15.38,38.83,36.56,18.03,61.88,5,4,3,3,5,1,28,28,0,28,100,40,20,60,100,0,0,0,100,100,0,0,0,0,6,0,0,0,0,0,0,0,0,0,6,0,6,1,6,1,39,18 -1098,DevilsDen,Immediate,Role-assignment,Test,1,06:15pm,4,0,0.6,there was a man with chainsaw they were growling. there was a man typing in the beginning . we walked down a ramp. ,1,89.52,99,95.15,1,4.55,4.55,0,0,0,0,0,0,0,0,0,0,0,0,4.55,0,4.55,0,0,0,0,0,0,0,22.73,4.55,0,0,0,0,4.55,18.18,0,0,0,9.09,0,0,0,0,0,0,0,0,0,0,27.27,0,4.55,18.18,0,4.55,0,0,0,NA,62.3,1.24,NA,4,2,1,2,5,1,80,0,50,100,100,66.67,100,41.67,41.67,0,50,50,50,50,50,1,0,0,2,0,0,0,0,1,0,0,0,0,3,1,4,0.75,3,0.666666667,22,18 -1098,DevilsDen,Delay,Role-assignment,Test,1,06:15pm,4,1,0.6,there was bodies hanging. and a man who chased us with a chainsaw. it smelled like gas. a man writing on a type writer. ,1,94.18,99,15.38,20.23,4.17,4.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,4.17,0,0,0,0,4.17,20.83,0,0,0,8.33,0,0,0,0,0,0,0,0,0,4.17,12.5,0,4.17,8.33,0,0,0,0,4.17,NA,-23.39,-44.8,NA,5,1,1,1,4,1,0,40,80,40,100,100,66.67,33.33,0,0,50,50,50,50,50,1,0,0,3,0,0,0,0,1,0,0,0,0,4,1,5,0.8,4,0.75,24,18 -1098,GhostlyGrounds,Delay,Role-assignment,Share,1,06:15pm,5,0,0.4,there were men in a cage. one ran and jumped out at us. i cannot remember much about this attraction. ,1,39.7,40.06,99,20.23,5,5,0,0,10,0,10,5,0,5,0,0,5,5,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,0,0,0,5,0,0,0,0,0,0,0,0,0,5,25,0,10,15,0,0,0,0,5,16.73,31.79,-12.55,30.94,3,4,4,4,2,1,50,50,100,0,50,66.67,0,33.33,100,33.33,0,0,0,100,0,1,0,0,2,0,0,0,0,0,0,0,0,1,3,1,4,0.75,3,0.666666667,20,18 -1099,Infirmary,Delay,Role-assignment,Baseline,1,08:30pm,1,0,0.5,"Delerium was the first Section of the tour I believe. The first thing I remember was walking through a section that was almost like a ballet studio, there were bright neon lights/lasers shining back and forth, it was a smoke filled room with the layer falling just above an arm rest, and there were mirrors on either side. After walking through there I remember walking through a room where people kept running past us on either side. Then, I remember being handed 3D glasses and going through a section that again was filled with very bright neon colors with pictures and objects that popped off the walls even more. There was a large spider on the wall somewhere in that section. At the end we walked through a tube that was spinning on a platform that was slanted making it very difficult to walk. I felt dizzy and as if the platform (bridge) was shaking a little. I thought I was going to fall over.",1,74.61,21.3,99,37.57,1.2,1.2,0,0,7.83,0,7.83,3.61,0.6,0,1.81,0,1.81,1.81,2.41,1.81,0.6,0,0,0,0,0,0,0,1.2,0,0,0,0,0,0,1.2,0,0,0,0,0,0,0,0,1.2,0,0,0,0,1.81,24.1,0,6.02,15.06,3.01,0,1.2,1.2,1.81,4.95,-0.58,39.63,-24.21,4,2,2,3,1,4,19.85,75,0,100,50,0,100,100,22.73,100,97.06,100,100,0,100,5,1,0,10,0,1,0,0,1,0,1,0,0,16,3,19,0.842105263,16,0.625,166,23 -1099,Asylum,Immediate,Role-assignment,Baseline,1,08:30pm,1,0,0.75,"First walking in was a clothing rack on the right. Then we walked into a room with a man mouthing whatever was being said on a loud speaker, some type of news story. There was also a type writer directly in front of him. After exiting that room we walked immediately to the left and walked around a woman in a red dress singing (high pitched, like an opera). After there was a cut out section of the wall she was able to walk in and out of the room. After that I remember walking around and a guy kept saying to the girl in from of me who he scared and she screamed a little cry and the guy kept saying ""I got you didnt I, I got you good, I know I got you"", then she started to laugh and say ""yeah you did, you got me."" After that we had walked outside and awaited the next.",1,79.57,92.68,94.72,28.64,2.52,1.89,0.63,0,1.89,0,1.89,1.26,0,0,0,0,0.63,0.63,3.14,1.89,1.26,2.52,1.26,1.26,0.63,0,0.63,0,17.61,5.03,0,0,0,0,5.03,12.58,0,0,3.14,3.14,0,0,2.52,0,0,0,0,0,0,3.77,21.38,0,4.4,13.21,0.63,3.14,0,2.52,3.77,30.76,58.5,16.4,17.37,3,5,5,5,1,1,77.45,66.18,100,43.64,0,0,11.79,0,58.94,100,0,96.88,96.88,0,100,9,1,0,9,0,0,0,0,0,0,0,0,0,19,0,19,1,19,0.473684211,159,23 -1099,Asylum,Delay,Role-assignment,Baseline,1,08:30pm,1,1,0.5,"I remember first walking in to the right there was a coat rack that had some costumes, black and white. Then when we walked into the first room it was gray and there was a man standing behind a desk at the other corner of the room. It was almost like a monochromatic scene, there was an announcement being played on a loudspeaker that he was mouthing (but not saying himself). There was also a typewriter on the desk in front of him and he was smacking some metal object to jump scare people. After leaving that room and entering the other there was a woman in a red dress singing opera music and she was going back and forth between that room and another. We had to walk around her cage in the center. I do not recall anything off the top of my head after this. I think there may have been a dentist chair and a head with a bunch of teeth all over it in this section but am not entirely sure when or where it was in relation to the others, or if it was even in ""Asylum"".",1,48.63,21.33,96.81,27.02,1.55,1.55,0,0,10.82,0.52,10.31,2.06,0,0,3.09,0.52,6.19,1.03,1.55,1.03,0.52,0.52,0,0.52,0.52,0,0,0,5.67,0.52,0,0,0,0,0.52,5.15,0,0,1.55,2.58,1.03,0,0.52,0,0,0,0,0,0,3.61,21.65,0,3.61,14.95,2.06,1.03,0,1.55,3.61,9.71,13.5,8.27,7.35,2,4,4,3,3,3,33.33,100,0,66.67,75.44,33.33,50,0,100,91.23,33.33,66.67,0,100,68.42,5,1,0,16,0,0,0,0,0,0,0,0,4,22,4,26,0.846153846,22,0.727272727,194,23 -1099,DevilsDen,Immediate,Role-assignment,Test,1,08:30pm,3,0,0.75,"Machine shop was definitely the scariest. When we first walked in there someone swung a sledgehammer directly at the girl in front of me and she shrieked. We continued walking through and there was another person swinging something smaller like a hammer or mallet, not as bad as the sledgehammer. After we stepped outside and there was a woman who ran up besides us with a chainsaw, but just before we stepped outside I could smell gas to the left (still inside), so I figured something like that was going to happen. I remember seeing a couple other area there than included different limbs and heads cut off their bodies.",1,56.07,61.66,99,5.35,4.55,4.55,0,0,13.64,0,13.64,1.82,0,0.91,3.64,0.91,7.27,0.91,1.82,0,1.82,1.82,0,1.82,0.91,0,0,0,10.91,0,0,0,0,0,0,10.91,0,0,2.73,0,0,0,0,0,0,0,0,0,0,2.73,20.91,0,6.36,12.73,0.91,0.91,0,0,2.73,-2.42,25.13,39.02,-71.42,3,2,5,2,1,2,42.86,0,100,28.57,14.29,0,100,25,100,0,50,0,0,50,100,9,0,0,4,2,0,0,0,0,0,0,0,3,15,3,18,0.833333333,13,0.307692308,110,23 -1099,DevilsDen,Delay,Role-assignment,Test,1,08:30pm,3,1,0.75,"The Devil's Den was the scariest I felt. I remember first walking in and a character swinging a sledge hammer at my girlfriend who was in front of me. I remembered this most because I was genuinely concerned something was going to happen and I was going to be stepping in. It was also a shock because I dont remember anything the character looked like outside of a black figure and the sledgehammer. Afterwards we continued through and I could smell gasoline/exhaust fumes of what I believed to be a chainsaw (I got this from my background with this). Immediately after smelling this we stepped outside and a shorter woman bent over came running up the ramp towards the inside revving a chainsaw. Afterwards we continued on back inside of another building and I remember walking around and through some box where a guy scared us in then came right back around and scared us coming out. I remember this cause again, it was a jump scare right in my girlfriends face so I thought I was going to get defensive and then the character started laughing saying ""I got you didnt I"" and she responded ""yeah you did"" and he kept repeating this and them going back and forth saying he really got her and she said yes you did. Then there was also a table saw somewhere in this section where someones hand had been chopped off. I remember it being the darkest overall of the exhibits in terms of lighting throughout, if there was any light at all it was a pale white LED rather than bright lights like Infirmary, golden lights like in Asylum, and a mixture of both golden lights with just more colorful content (i.e. gory bloodsoaked or items, people, etc.) throughout the Ghostly Grounds.",1,48,42.01,94.94,10.41,2.98,2.32,0,0.66,10.93,0.66,10.26,2.98,1.66,0.33,2.32,0.66,1.66,1.99,3.31,0.99,1.99,1.99,0.33,1.32,1.32,0,0,0,8.28,1.66,0,0,0,0,1.66,6.62,0,0.66,1.99,0.99,0,0,1.66,0,0,0,0,0,0,4.64,18.87,0,3.31,10.6,4.97,0,0.33,1.66,4.64,0.81,33.89,-1.66,-29.8,2,4,1,4,5,2,49.79,100,57.43,0,70.19,61.62,12.44,45.45,100,0,100,0,51.11,17.22,0.28,16,0,0,15,3,0,0,0,0,1,4,0,3,34,8,42,0.80952381,31,0.483870968,303,23 -1099,GhostlyGrounds,Delay,Role-assignment,Share,1,08:30pm,2,0,0.4,"The Ghostly Grounds I remember walking into and seeing the X and thinking it was going to be very scary, but ended up not being as scary as the other section of the tour marked X, I forget the name of that one but think it was the Wood Shop or something like that. Anyways with the Ghostly Grounds I dont remember too too much unfortunately, I think the other sections stood out a little more. I think with the Ghostly Grounds the memories I have are as follows: there was a room that we entered that was bright and gory, had bodies hung upside down that were moving. I also remember going up and down floors in the Ghostly Grounds which was unique compared to the other sections. One section we went through was a cell block and I remember a box flashing with bright lights and banging around as if something was in it, all inside a cage to the right of the tour, as well as an air blast cannon that hit around my right calf. There was also a guy running back and forth through the cells bars which I was kind of amazed as to how he fit through while running so fast, thinking if it were me Id get stuck or bang my head going through which made me laugh a little. ",1,55.5,3.12,99,20.23,0.89,0.89,0,0,15.18,0.45,14.73,4.46,0.89,0.45,3.57,0,6.7,2.68,4.46,2.23,2.23,1.79,0.89,0.89,0.89,0,0,0,2.68,0.45,0,0,0,0,0.45,2.23,0,0,0,0.89,0,0,0.45,0,0,0,0,0,0.45,4.02,17.41,0,4.02,10.27,2.23,0.89,0,0.45,4.47,-6.76,30.71,3.92,-54.93,4,5,1,5,4,3,54.76,43.44,20.82,100,0,36.97,73.95,73.95,0,100,100,50,0,0,26.7,5,1,0,12,5,0,0,0,1,0,0,0,8,23,9,32,0.71875,18,0.666666667,224,23 -1100,Infirmary,Immediate,Role-assignment,Baseline,1,06:15pm,3,0,0.4,"trippy and very colorful +1098,Infirmary,Immediate,Goal-assigned,Baseline,1,06:15pm,2,0,1,there was a spinning tunnel. there were clowns. they had us wear glasses. the ground felt like it moved,1,22.98,98.27,93.14,20.23,5.26,5.26,0,0,5.26,0,5.26,5.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10.53,0,0,0,0,0,0,10.53,0,0,0,0,0,0,0,0,0,0,0,0,0,5.26,26.32,0,10.53,10.53,0,0,5.26,0,5.26,26.97,56.07,-6.11,30.94,1,3,4,2,4,1,100,0,0,100,0,66.67,66.67,100,0,44.44,0,0,0,100,0,1,1,0,2,0,0,0,0,0,0,0,0,0,4,0,4,1,4,0.5,19,18 +1098,Infirmary,Delay,Goal-assigned,Baseline,1,06:15pm,2,1,0.8,there we people standing on platforms. they gave us the glasses there were large spiders. we walked through a spinning tube. there was a clown at the end. there were walls covered in poka dots.,1,72.76,99,97.09,20.23,8.57,8.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.29,2.86,0,0,0,0,0,11.43,0,0,0,0,0,0,0,0,0,0,0,0,0,5.71,25.71,0,5.71,20,0,0,0,0,5.71,NA,-20.21,-27.46,NA,4,1,1,1,3,1,0,0,50,100,0,100,100,0,50,50,50,50,50,50,50,1,1,0,5,0,0,0,0,0,0,0,0,0,7,0,7,1,7,0.714285714,35,18 +1098,Asylum,Delay,Goal-assigned,Baseline,1,06:15pm,3,0,0.5,there was a scientist talking crazy. a mirror people get ready in before plays or movies. like a dressing room. but nobody was sitting in it. this may have been the one with the man on the type writer. ,1,85.57,26.18,81.58,91.4,0,0,0,0,15.38,7.69,7.69,0,0,0,5.13,0,5.13,0,7.69,5.13,0,2.56,0,0,0,0,0,0,7.69,2.56,0,0,0,0,2.56,5.13,0,0,0,2.56,0,0,2.56,0,0,0,0,0,2.56,12.82,12.82,0,0,12.82,0,0,0,2.56,15.38,38.83,36.56,18.03,61.88,5,4,3,3,5,1,28,28,0,28,100,40,20,60,100,0,0,0,100,100,0,0,0,0,6,0,0,0,0,0,0,0,0,0,6,0,6,1,6,1,39,18 +1098,DevilsDen,Immediate,Goal-assigned,Test,1,06:15pm,4,0,0.6,there was a man with chainsaw they were growling. there was a man typing in the beginning . we walked down a ramp. ,1,89.52,99,95.15,1,4.55,4.55,0,0,0,0,0,0,0,0,0,0,0,0,4.55,0,4.55,0,0,0,0,0,0,0,22.73,4.55,0,0,0,0,4.55,18.18,0,0,0,9.09,0,0,0,0,0,0,0,0,0,0,27.27,0,4.55,18.18,0,4.55,0,0,0,NA,62.3,1.24,NA,4,2,1,2,5,1,80,0,50,100,100,66.67,100,41.67,41.67,0,50,50,50,50,50,1,0,0,2,0,0,0,0,1,0,0,0,0,3,1,4,0.75,3,0.666666667,22,18 +1098,DevilsDen,Delay,Goal-assigned,Test,1,06:15pm,4,1,0.6,there was bodies hanging. and a man who chased us with a chainsaw. it smelled like gas. a man writing on a type writer. ,1,94.18,99,15.38,20.23,4.17,4.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,4.17,0,0,0,0,4.17,20.83,0,0,0,8.33,0,0,0,0,0,0,0,0,0,4.17,12.5,0,4.17,8.33,0,0,0,0,4.17,NA,-23.39,-44.8,NA,5,1,1,1,4,1,0,40,80,40,100,100,66.67,33.33,0,0,50,50,50,50,50,1,0,0,3,0,0,0,0,1,0,0,0,0,4,1,5,0.8,4,0.75,24,18 +1098,GhostlyGrounds,Delay,Goal-assigned,Share,1,06:15pm,5,0,0.4,there were men in a cage. one ran and jumped out at us. i cannot remember much about this attraction. ,1,39.7,40.06,99,20.23,5,5,0,0,10,0,10,5,0,5,0,0,5,5,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,0,0,0,5,0,0,0,0,0,0,0,0,0,5,25,0,10,15,0,0,0,0,5,16.73,31.79,-12.55,30.94,3,4,4,4,2,1,50,50,100,0,50,66.67,0,33.33,100,33.33,0,0,0,100,0,1,0,0,2,0,0,0,0,0,0,0,0,1,3,1,4,0.75,3,0.666666667,20,18 +1099,Infirmary,Delay,Goal-assigned,Baseline,1,08:30pm,1,0,0.5,"Delerium was the first Section of the tour I believe. The first thing I remember was walking through a section that was almost like a ballet studio, there were bright neon lights/lasers shining back and forth, it was a smoke filled room with the layer falling just above an arm rest, and there were mirrors on either side. After walking through there I remember walking through a room where people kept running past us on either side. Then, I remember being handed 3D glasses and going through a section that again was filled with very bright neon colors with pictures and objects that popped off the walls even more. There was a large spider on the wall somewhere in that section. At the end we walked through a tube that was spinning on a platform that was slanted making it very difficult to walk. I felt dizzy and as if the platform (bridge) was shaking a little. I thought I was going to fall over.",1,74.61,21.3,99,37.57,1.2,1.2,0,0,7.83,0,7.83,3.61,0.6,0,1.81,0,1.81,1.81,2.41,1.81,0.6,0,0,0,0,0,0,0,1.2,0,0,0,0,0,0,1.2,0,0,0,0,0,0,0,0,1.2,0,0,0,0,1.81,24.1,0,6.02,15.06,3.01,0,1.2,1.2,1.81,4.95,-0.58,39.63,-24.21,4,2,2,3,1,4,19.85,75,0,100,50,0,100,100,22.73,100,97.06,100,100,0,100,5,1,0,10,0,1,0,0,1,0,1,0,0,16,3,19,0.842105263,16,0.625,166,23 +1099,Asylum,Immediate,Goal-assigned,Baseline,1,08:30pm,1,0,0.75,"First walking in was a clothing rack on the right. Then we walked into a room with a man mouthing whatever was being said on a loud speaker, some type of news story. There was also a type writer directly in front of him. After exiting that room we walked immediately to the left and walked around a woman in a red dress singing (high pitched, like an opera). After there was a cut out section of the wall she was able to walk in and out of the room. After that I remember walking around and a guy kept saying to the girl in from of me who he scared and she screamed a little cry and the guy kept saying ""I got you didnt I, I got you good, I know I got you"", then she started to laugh and say ""yeah you did, you got me."" After that we had walked outside and awaited the next.",1,79.57,92.68,94.72,28.64,2.52,1.89,0.63,0,1.89,0,1.89,1.26,0,0,0,0,0.63,0.63,3.14,1.89,1.26,2.52,1.26,1.26,0.63,0,0.63,0,17.61,5.03,0,0,0,0,5.03,12.58,0,0,3.14,3.14,0,0,2.52,0,0,0,0,0,0,3.77,21.38,0,4.4,13.21,0.63,3.14,0,2.52,3.77,30.76,58.5,16.4,17.37,3,5,5,5,1,1,77.45,66.18,100,43.64,0,0,11.79,0,58.94,100,0,96.88,96.88,0,100,9,1,0,9,0,0,0,0,0,0,0,0,0,19,0,19,1,19,0.473684211,159,23 +1099,Asylum,Delay,Goal-assigned,Baseline,1,08:30pm,1,1,0.5,"I remember first walking in to the right there was a coat rack that had some costumes, black and white. Then when we walked into the first room it was gray and there was a man standing behind a desk at the other corner of the room. It was almost like a monochromatic scene, there was an announcement being played on a loudspeaker that he was mouthing (but not saying himself). There was also a typewriter on the desk in front of him and he was smacking some metal object to jump scare people. After leaving that room and entering the other there was a woman in a red dress singing opera music and she was going back and forth between that room and another. We had to walk around her cage in the center. I do not recall anything off the top of my head after this. I think there may have been a dentist chair and a head with a bunch of teeth all over it in this section but am not entirely sure when or where it was in relation to the others, or if it was even in ""Asylum"".",1,48.63,21.33,96.81,27.02,1.55,1.55,0,0,10.82,0.52,10.31,2.06,0,0,3.09,0.52,6.19,1.03,1.55,1.03,0.52,0.52,0,0.52,0.52,0,0,0,5.67,0.52,0,0,0,0,0.52,5.15,0,0,1.55,2.58,1.03,0,0.52,0,0,0,0,0,0,3.61,21.65,0,3.61,14.95,2.06,1.03,0,1.55,3.61,9.71,13.5,8.27,7.35,2,4,4,3,3,3,33.33,100,0,66.67,75.44,33.33,50,0,100,91.23,33.33,66.67,0,100,68.42,5,1,0,16,0,0,0,0,0,0,0,0,4,22,4,26,0.846153846,22,0.727272727,194,23 +1099,DevilsDen,Immediate,Goal-assigned,Test,1,08:30pm,3,0,0.75,"Machine shop was definitely the scariest. When we first walked in there someone swung a sledgehammer directly at the girl in front of me and she shrieked. We continued walking through and there was another person swinging something smaller like a hammer or mallet, not as bad as the sledgehammer. After we stepped outside and there was a woman who ran up besides us with a chainsaw, but just before we stepped outside I could smell gas to the left (still inside), so I figured something like that was going to happen. I remember seeing a couple other area there than included different limbs and heads cut off their bodies.",1,56.07,61.66,99,5.35,4.55,4.55,0,0,13.64,0,13.64,1.82,0,0.91,3.64,0.91,7.27,0.91,1.82,0,1.82,1.82,0,1.82,0.91,0,0,0,10.91,0,0,0,0,0,0,10.91,0,0,2.73,0,0,0,0,0,0,0,0,0,0,2.73,20.91,0,6.36,12.73,0.91,0.91,0,0,2.73,-2.42,25.13,39.02,-71.42,3,2,5,2,1,2,42.86,0,100,28.57,14.29,0,100,25,100,0,50,0,0,50,100,9,0,0,4,2,0,0,0,0,0,0,0,3,15,3,18,0.833333333,13,0.307692308,110,23 +1099,DevilsDen,Delay,Goal-assigned,Test,1,08:30pm,3,1,0.75,"The Devil's Den was the scariest I felt. I remember first walking in and a character swinging a sledge hammer at my girlfriend who was in front of me. I remembered this most because I was genuinely concerned something was going to happen and I was going to be stepping in. It was also a shock because I dont remember anything the character looked like outside of a black figure and the sledgehammer. Afterwards we continued through and I could smell gasoline/exhaust fumes of what I believed to be a chainsaw (I got this from my background with this). Immediately after smelling this we stepped outside and a shorter woman bent over came running up the ramp towards the inside revving a chainsaw. Afterwards we continued on back inside of another building and I remember walking around and through some box where a guy scared us in then came right back around and scared us coming out. I remember this cause again, it was a jump scare right in my girlfriends face so I thought I was going to get defensive and then the character started laughing saying ""I got you didnt I"" and she responded ""yeah you did"" and he kept repeating this and them going back and forth saying he really got her and she said yes you did. Then there was also a table saw somewhere in this section where someones hand had been chopped off. I remember it being the darkest overall of the exhibits in terms of lighting throughout, if there was any light at all it was a pale white LED rather than bright lights like Infirmary, golden lights like in Asylum, and a mixture of both golden lights with just more colorful content (i.e. gory bloodsoaked or items, people, etc.) throughout the Ghostly Grounds.",1,48,42.01,94.94,10.41,2.98,2.32,0,0.66,10.93,0.66,10.26,2.98,1.66,0.33,2.32,0.66,1.66,1.99,3.31,0.99,1.99,1.99,0.33,1.32,1.32,0,0,0,8.28,1.66,0,0,0,0,1.66,6.62,0,0.66,1.99,0.99,0,0,1.66,0,0,0,0,0,0,4.64,18.87,0,3.31,10.6,4.97,0,0.33,1.66,4.64,0.81,33.89,-1.66,-29.8,2,4,1,4,5,2,49.79,100,57.43,0,70.19,61.62,12.44,45.45,100,0,100,0,51.11,17.22,0.28,16,0,0,15,3,0,0,0,0,1,4,0,3,34,8,42,0.80952381,31,0.483870968,303,23 +1099,GhostlyGrounds,Delay,Goal-assigned,Share,1,08:30pm,2,0,0.4,"The Ghostly Grounds I remember walking into and seeing the X and thinking it was going to be very scary, but ended up not being as scary as the other section of the tour marked X, I forget the name of that one but think it was the Wood Shop or something like that. Anyways with the Ghostly Grounds I dont remember too too much unfortunately, I think the other sections stood out a little more. I think with the Ghostly Grounds the memories I have are as follows: there was a room that we entered that was bright and gory, had bodies hung upside down that were moving. I also remember going up and down floors in the Ghostly Grounds which was unique compared to the other sections. One section we went through was a cell block and I remember a box flashing with bright lights and banging around as if something was in it, all inside a cage to the right of the tour, as well as an air blast cannon that hit around my right calf. There was also a guy running back and forth through the cells bars which I was kind of amazed as to how he fit through while running so fast, thinking if it were me Id get stuck or bang my head going through which made me laugh a little. ",1,55.5,3.12,99,20.23,0.89,0.89,0,0,15.18,0.45,14.73,4.46,0.89,0.45,3.57,0,6.7,2.68,4.46,2.23,2.23,1.79,0.89,0.89,0.89,0,0,0,2.68,0.45,0,0,0,0,0.45,2.23,0,0,0,0.89,0,0,0.45,0,0,0,0,0,0.45,4.02,17.41,0,4.02,10.27,2.23,0.89,0,0.45,4.47,-6.76,30.71,3.92,-54.93,4,5,1,5,4,3,54.76,43.44,20.82,100,0,36.97,73.95,73.95,0,100,100,50,0,0,26.7,5,1,0,12,5,0,0,0,1,0,0,0,8,23,9,32,0.71875,18,0.666666667,224,23 +1100,Infirmary,Immediate,Goal-assigned,Baseline,1,06:15pm,3,0,0.4,"trippy and very colorful hard to see clowns spinny 3d glasses",1,71.44,40.06,1,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,9.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,27.27,0,0,0,18.18,0,9.09,0,9.09,NA,-11.67,-58.26,NA,3,1,1,1,2,1,0,0,100,0,0,100,0,0,0,0,50,50,50,50,50,0,0,0,6,0,0,0,0,0,0,0,0,0,6,0,6,1,6,1,11,18 -1100,Infirmary,Delay,Role-assignment,Baseline,1,06:15pm,3,1,0.6,"clowns +1100,Infirmary,Delay,Goal-assigned,Baseline,1,06:15pm,3,1,0.6,"clowns trippy walk through circle 3d glasses painting colorful wobbly bridge ",1,97.37,40.06,50.45,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,9.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.27,0,18.18,0,9.09,0,0,0,0,NA,-11.67,NA,NA,2,1,1,1,1,1,0,100,0,0,0,50,50,50,50,50,50,50,50,50,50,0,1,0,4,0,0,0,0,0,0,0,0,0,5,0,5,1,5,0.8,11,18 -1100,Asylum,Delay,Role-assignment,Baseline,1,06:15pm,2,0,0.25,"jump scare +1100,Asylum,Delay,Goal-assigned,Baseline,1,06:15pm,2,0,0.25,"jump scare air gun spider flashing lights ",1,89.52,40.06,24.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.57,0,28.57,14.29,0,14.29,14.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.86,0,14.29,0,28.57,0,0,0,0,NA,NA,NA,NA,1,1,1,1,1,1,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,1,0,0,1,0,0,0,0,2,0,0,0,0,2,2,4,0.5,2,0.5,7,18 -1100,DevilsDen,Immediate,Role-assignment,Test,1,06:15pm,5,0,0.4,"chainsaw +1100,DevilsDen,Immediate,Goal-assigned,Test,1,06:15pm,5,0,0.4,"chainsaw growl bloody ",1,89.52,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66.67,0,66.67,0,0,0,0,0,0,33.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.33,0,0,0,0,33.33,0,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,1,3,1,3,18 -1100,DevilsDen,Delay,Role-assignment,Test,1,06:15pm,5,1,0.6,"guy with chainsaw +1100,DevilsDen,Delay,Goal-assigned,Test,1,06:15pm,5,1,0.6,"guy with chainsaw bloody body parts air shooter desk jump scare bus ",1,97.04,6.61,39.59,1,0,0,0,0,8.33,0,8.33,0,0,0,0,0,8.33,0,16.67,0,16.67,8.33,0,8.33,8.33,0,0,8.33,8.33,0,0,0,0,0,0,8.33,0,0,0,8.33,0,0,0,0,0,0,0,0,0,0,8.33,0,8.33,0,0,0,0,0,0,NA,90.96,NA,NA,1,1,1,2,1,1,100,0,0,0,0,50,50,50,50,50,50,50,50,50,50,1,1,0,5,0,0,0,0,0,0,0,0,0,7,0,7,1,7,0.714285714,12,18 -1100,GhostlyGrounds,Delay,Role-assignment,Share,1,06:15pm,5,0,0.6,"lots of jump scares +1100,GhostlyGrounds,Delay,Goal-assigned,Share,1,06:15pm,5,0,0.6,"lots of jump scares walk through bus up stairs ",1,99,40.06,99,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.11,0,11.11,11.11,0,11.11,11.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.33,0,22.22,11.11,0,0,0,0,0,NA,47.82,NA,NA,1,1,1,2,1,1,100,0,100,100,0,50,50,50,50,50,50,50,50,50,50,2,1,0,0,0,0,0,0,0,0,0,0,0,3,0,3,1,3,0,9,18 @@ -939,34 +939,34 @@ Thatss all I can remember",1,79.45,85.08,80.49,65.27,0,0,0,0,8.57,2.86,5.71,2.86 1110,DevilsDen,Immediate,Control,Baseline,0,08:30pm,3,0,0.4,"I remember the person who gave us entrance to it was very spirited. When we entered there was an assortment of rooms involving various scenes (i.e. butcher, dentist, etc.). I believe this was one of the shorter parts of the haunted house. A specific memory I have is of passing the couple that entered before us. There was also a room, I believe, that had a bunch of fogs it was more of a hallway.",1,51.7,55.96,90.46,20.23,4,4,0,0,9.33,0,9.33,4,0,0,0,0,2.67,2.67,2.67,1.33,1.33,1.33,1.33,0,0,0,0,0,8,1.33,0,0,0,0,0,6.67,0,0,0,0,0,0,0,0,0,0,0,0,0,2.67,10.67,0,4,6.67,0,0,0,0,2.67,-13.82,-22.95,-29.82,11.3,3,1,3,1,3,2,0,0,100,66.67,66.67,100,16.67,0,100,50,33.33,0,100,33.33,33.33,2,3,0,4,0,0,0,0,0,0,1,0,1,9,2,11,0.818181818,9,0.444444444,76,24 1110,DevilsDen,Delay,Control,Baseline,0,08:30pm,3,1,0.6,I remember there were many rooms with jump scares. I also can remember there being a butcher and limbs hanging from the ceiling of one of the rooms. ,1,67.11,9.23,99,1,0,0,0,0,10.71,0,10.71,7.14,0,3.57,0,0,0,7.14,3.57,0,3.57,3.57,0,3.57,3.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.43,0,3.57,17.86,0,0,0,0,0,-10.94,-26.09,-14.9,8.17,5,1,1,1,4,4,0,27.78,27.78,66.67,100,100,100,100,0,0,100,100,100,0,0,1,0,0,2,0,0,1,0,1,0,0,0,0,3,2,5,0.6,3,0.666666667,28,24 1110,GhostlyGrounds,Delay,Control,Baseline,0,08:30pm,2,0,0.2,"I barely remember anything from Ghostly Grounds. I remember there being a lot of fog in one of the rooms and there was a long room that we walked through at the end, I believe.",1,79.1,24.36,99,20.23,2.94,2.94,0,0,14.71,0,14.71,8.82,0,0,5.88,0,0,5.88,0,0,0,0,0,0,0,0,0,0,2.94,0,0,0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,0,0,0,0,2.94,20.59,0,2.94,17.65,0,0,0,0,2.94,-31.51,-10.6,-31.16,-52.77,5,1,5,1,5,3,0,40,80,0,100,100,29.41,29.41,64.71,0,85.71,85.71,0,0,100,1,1,0,1,0,0,0,0,0,0,0,0,1,3,1,4,0.75,3,0.333333333,34,24 -1111,Infirmary,Immediate,Role-assignment,Baseline,2,06:15pm,3,0,0.8,"it was bright, lots of colors, a girl was dancing at the entrance, there was a spider lookig insect thing, we had glasses on that made it blurry, we walked thru a hallway that looked like it was spinning, there were clowns i think, ",1,45.12,86.82,50.45,55.62,4.55,4.55,0,0,4.55,0,4.55,2.27,2.27,0,0,0,0,0,2.27,2.27,0,0,0,0,0,0,0,0,9.09,2.27,0,0,0,0,0,6.82,0,0,2.27,0,0,0,0,0,0,0,0,0,0,2.27,22.73,0,6.82,6.82,9.09,0,0,0,2.27,-5.8,42.3,-4.37,-55.32,2,5,5,5,2,1,66.67,100,33.33,66.67,0,27.59,0,82.76,0,100,0,0,0,0,100,1,1,0,8,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.8,44,25 -1111,Infirmary,Delay,Role-assignment,Baseline,2,06:15pm,3,1,0.8,I remember this being very bright colored almost like neon glow in the dark. There was a woman dancing at the entrance with no eyeballs in 60s garb. There was a giant spider that was neon. I remember crossing some sort of spinning trippy bridge with glasses on. There were clowns I think. ,1,75.29,13.48,96.75,49.04,0,0,0,0,13.21,1.89,11.32,5.66,0,0,5.66,0,0,3.77,1.89,1.89,0,0,0,0,0,0,0,0,3.77,1.89,0,0,0,0,0,1.89,0,0,1.89,0,0,0,0,0,0,0,0,0,0,3.77,26.42,0,5.66,11.32,9.43,0,0,0,3.77,-35.48,-23.94,-33,-49.49,2,1,4,1,2,2,0,100,60,22,44,100,0,33.33,80,43.33,90.91,0,0,100,100,2,0,0,9,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.818181818,53,25 -1111,Asylum,Delay,Role-assignment,Baseline,2,06:15pm,2,0,0.75,"I think I remember it being an abandoned news media place. There was a dead movie star in a vanity area, a glamorous person. There was a guy with a loud typewriter contraption. All I remember was the woman in a robe by a vanity basically and the guy with the typewriter who had a hat on. There were a lot of flickering lights. Interestingly, I only really remember the very beginning which I think were those two parts. The rest of honestly a blur for me. I remember walking through more, but cant exactly describe specifically what the other actors were. ",1,81.16,7.61,93.5,33.97,0,0,0,0,16.67,0.98,15.69,5.88,0,0.98,0,2.94,5.88,3.92,2.94,1.96,0.98,0,0,0,0,0,0,0,9.8,3.92,0,0,0,1.96,1.96,5.88,0,0,0.98,1.96,0,0,0,0,0,0,0,0,0.98,0.98,10.78,0,0.98,6.86,1.96,0.98,0,0,1.96,-22.43,-7.04,10.23,-70.48,3,4,5,4,2,2,13.49,61.11,100,0,16.67,29.41,0,38.24,100,100,46.51,0,2.33,51.16,100,2,1,0,7,0,0,0,0,0,0,0,0,4,10,4,14,0.714285714,10,0.7,102,25 -1111,DevilsDen,Immediate,Role-assignment,Share,2,06:15pm,4,0,0.2,"we saw an lot of people in cages, a shaky bridge with body parts, we walked up anddownn a couple set of stairs, there was someone with an chainsaw , someone with a wrench,",1,99,97.86,50.45,20.23,6.06,6.06,0,0,9.09,0,9.09,0,0,0,6.06,0,3.03,0,0,0,0,0,0,0,0,0,0,0,12.12,0,0,0,0,0,0,12.12,0,0,0,0,0,0,0,0,0,0,0,0,0,3.03,18.18,0,6.06,9.09,3.03,0,0,0,3.03,NA,70.08,11.58,NA,5,4,1,2,2,1,66.67,0,0,22.22,100,28.57,0,28.57,100,33.33,50,50,50,50,50,0,1,0,3,0,1,0,0,0,0,0,0,0,4,1,5,0.8,4,0.75,33,25 -1111,DevilsDen,Delay,Role-assignment,Share,2,06:15pm,4,1,0.6,"I remember walking in and being chased by a guy with a chainsaw pretty quickly which scared me a lot. Then a guy chased me with a wrench for a bit. I remember the shaky bridge thing with I think body parts. I remember the guy on top who almost mock dropped something above us. I forget what it was exactly, some sort of steel bar. I remember there being a lot of cages I think. ",1,74.45,10.72,99,8.11,1.32,1.32,0,0,19.74,0,19.74,7.89,0,0,6.58,1.32,2.63,6.58,1.32,0,1.32,1.32,0,1.32,1.32,0,0,0,7.89,1.32,0,0,0,0,0,6.58,0,0,0,3.95,0,0,0,0,0,0,0,0,0,1.32,11.84,0,6.58,5.26,0,0,0,0,1.32,26.04,60.05,19.77,-1.72,2,4,3,4,2,2,67.19,100,25,0,25,15,0,20,100,40,31.25,0,100,33.33,66.67,5,1,0,7,0,0,0,0,0,0,0,0,1,13,1,14,0.928571429,13,0.538461538,76,25 -1111,GhostlyGrounds,Delay,Role-assignment,Test,2,06:15pm,5,0,0.8,"This one is a total blur honestly. I think it was the one last one I went through. I actually think this one was with the cages. I even forget the theme of this one I think it was some sort of weird science experiment gone wrong, like experiments being done on people or something. I want to say I remember some kind of radioactive trash can. I barely remember who scared me during this one. I think at this point, I was scared for so long that I basically just blocked it out. ",1,30.18,1,91.07,1.45,0,0,0,0,24.47,2.13,20.21,6.38,2.13,2.13,5.32,2.13,2.13,3.19,3.19,0,3.19,2.13,0,2.13,2.13,0,0,0,3.19,2.13,0,0,0,1.06,1.06,1.06,0,0,0,0,0,1.06,0,0,0,0,0,0,2.13,4.26,5.32,0,2.13,2.13,1.06,0,0,1.06,6.39,33.4,37.38,8.82,53.99,2,5,2,3,1,1,50,100,0,0,58.33,0,28.13,0,28.13,100,0,100,33.33,100,37.04,0,0,0,2,0,0,0,0,1,0,1,0,7,2,9,11,0.181818182,2,1,94,25 -1112,Infirmary,Immediate,Role-assignment,Baseline,2,06:15pm,2,0,0.4,"There were lots of neon colors including pink, green, yellow, orange. A girl was dancing at the entrance. They gave us 3D glasses. There was a bridge with lots of colors spiraling in the beginning. I remember there was one jump scare. There were loud sounds and clown I think. +1111,Infirmary,Immediate,Goal-assigned,Baseline,2,06:15pm,3,0,0.8,"it was bright, lots of colors, a girl was dancing at the entrance, there was a spider lookig insect thing, we had glasses on that made it blurry, we walked thru a hallway that looked like it was spinning, there were clowns i think, ",1,45.12,86.82,50.45,55.62,4.55,4.55,0,0,4.55,0,4.55,2.27,2.27,0,0,0,0,0,2.27,2.27,0,0,0,0,0,0,0,0,9.09,2.27,0,0,0,0,0,6.82,0,0,2.27,0,0,0,0,0,0,0,0,0,0,2.27,22.73,0,6.82,6.82,9.09,0,0,0,2.27,-5.8,42.3,-4.37,-55.32,2,5,5,5,2,1,66.67,100,33.33,66.67,0,27.59,0,82.76,0,100,0,0,0,0,100,1,1,0,8,0,0,0,0,0,0,0,0,0,10,0,10,1,10,0.8,44,25 +1111,Infirmary,Delay,Goal-assigned,Baseline,2,06:15pm,3,1,0.8,I remember this being very bright colored almost like neon glow in the dark. There was a woman dancing at the entrance with no eyeballs in 60s garb. There was a giant spider that was neon. I remember crossing some sort of spinning trippy bridge with glasses on. There were clowns I think. ,1,75.29,13.48,96.75,49.04,0,0,0,0,13.21,1.89,11.32,5.66,0,0,5.66,0,0,3.77,1.89,1.89,0,0,0,0,0,0,0,0,3.77,1.89,0,0,0,0,0,1.89,0,0,1.89,0,0,0,0,0,0,0,0,0,0,3.77,26.42,0,5.66,11.32,9.43,0,0,0,3.77,-35.48,-23.94,-33,-49.49,2,1,4,1,2,2,0,100,60,22,44,100,0,33.33,80,43.33,90.91,0,0,100,100,2,0,0,9,0,0,0,0,0,0,0,0,0,11,0,11,1,11,0.818181818,53,25 +1111,Asylum,Delay,Goal-assigned,Baseline,2,06:15pm,2,0,0.75,"I think I remember it being an abandoned news media place. There was a dead movie star in a vanity area, a glamorous person. There was a guy with a loud typewriter contraption. All I remember was the woman in a robe by a vanity basically and the guy with the typewriter who had a hat on. There were a lot of flickering lights. Interestingly, I only really remember the very beginning which I think were those two parts. The rest of honestly a blur for me. I remember walking through more, but cant exactly describe specifically what the other actors were. ",1,81.16,7.61,93.5,33.97,0,0,0,0,16.67,0.98,15.69,5.88,0,0.98,0,2.94,5.88,3.92,2.94,1.96,0.98,0,0,0,0,0,0,0,9.8,3.92,0,0,0,1.96,1.96,5.88,0,0,0.98,1.96,0,0,0,0,0,0,0,0,0.98,0.98,10.78,0,0.98,6.86,1.96,0.98,0,0,1.96,-22.43,-7.04,10.23,-70.48,3,4,5,4,2,2,13.49,61.11,100,0,16.67,29.41,0,38.24,100,100,46.51,0,2.33,51.16,100,2,1,0,7,0,0,0,0,0,0,0,0,4,10,4,14,0.714285714,10,0.7,102,25 +1111,DevilsDen,Immediate,Goal-assigned,Share,2,06:15pm,4,0,0.2,"we saw an lot of people in cages, a shaky bridge with body parts, we walked up anddownn a couple set of stairs, there was someone with an chainsaw , someone with a wrench,",1,99,97.86,50.45,20.23,6.06,6.06,0,0,9.09,0,9.09,0,0,0,6.06,0,3.03,0,0,0,0,0,0,0,0,0,0,0,12.12,0,0,0,0,0,0,12.12,0,0,0,0,0,0,0,0,0,0,0,0,0,3.03,18.18,0,6.06,9.09,3.03,0,0,0,3.03,NA,70.08,11.58,NA,5,4,1,2,2,1,66.67,0,0,22.22,100,28.57,0,28.57,100,33.33,50,50,50,50,50,0,1,0,3,0,1,0,0,0,0,0,0,0,4,1,5,0.8,4,0.75,33,25 +1111,DevilsDen,Delay,Goal-assigned,Share,2,06:15pm,4,1,0.6,"I remember walking in and being chased by a guy with a chainsaw pretty quickly which scared me a lot. Then a guy chased me with a wrench for a bit. I remember the shaky bridge thing with I think body parts. I remember the guy on top who almost mock dropped something above us. I forget what it was exactly, some sort of steel bar. I remember there being a lot of cages I think. ",1,74.45,10.72,99,8.11,1.32,1.32,0,0,19.74,0,19.74,7.89,0,0,6.58,1.32,2.63,6.58,1.32,0,1.32,1.32,0,1.32,1.32,0,0,0,7.89,1.32,0,0,0,0,0,6.58,0,0,0,3.95,0,0,0,0,0,0,0,0,0,1.32,11.84,0,6.58,5.26,0,0,0,0,1.32,26.04,60.05,19.77,-1.72,2,4,3,4,2,2,67.19,100,25,0,25,15,0,20,100,40,31.25,0,100,33.33,66.67,5,1,0,7,0,0,0,0,0,0,0,0,1,13,1,14,0.928571429,13,0.538461538,76,25 +1111,GhostlyGrounds,Delay,Goal-assigned,Test,2,06:15pm,5,0,0.8,"This one is a total blur honestly. I think it was the one last one I went through. I actually think this one was with the cages. I even forget the theme of this one I think it was some sort of weird science experiment gone wrong, like experiments being done on people or something. I want to say I remember some kind of radioactive trash can. I barely remember who scared me during this one. I think at this point, I was scared for so long that I basically just blocked it out. ",1,30.18,1,91.07,1.45,0,0,0,0,24.47,2.13,20.21,6.38,2.13,2.13,5.32,2.13,2.13,3.19,3.19,0,3.19,2.13,0,2.13,2.13,0,0,0,3.19,2.13,0,0,0,1.06,1.06,1.06,0,0,0,0,0,1.06,0,0,0,0,0,0,2.13,4.26,5.32,0,2.13,2.13,1.06,0,0,1.06,6.39,33.4,37.38,8.82,53.99,2,5,2,3,1,1,50,100,0,0,58.33,0,28.13,0,28.13,100,0,100,33.33,100,37.04,0,0,0,2,0,0,0,0,1,0,1,0,7,2,9,11,0.181818182,2,1,94,25 +1112,Infirmary,Immediate,Goal-assigned,Baseline,2,06:15pm,2,0,0.4,"There were lots of neon colors including pink, green, yellow, orange. A girl was dancing at the entrance. They gave us 3D glasses. There was a bridge with lots of colors spiraling in the beginning. I remember there was one jump scare. There were loud sounds and clown I think. ",1,74.19,63.73,96.32,4.56,2,2,0,0,4,0,4,4,0,0,0,0,0,2,2,0,2,2,0,2,2,0,0,0,10,4,0,0,0,0,0,6,0,0,2,0,0,0,0,0,0,0,0,0,0,2,34,0,4,14,12,4,0,0,2,19.29,39.62,29.8,-11.56,2,5,4,5,1,1,66.67,100,100,66.67,0,0,0,50,50,100,0,0,0,100,100,2,2,0,10,0,0,0,0,0,0,0,0,0,14,0,14,1,14,0.714285714,50,18 -1112,Infirmary,Delay,Role-assignment,Baseline,2,06:15pm,2,1,0.4,"Infirmary had very bright neon colors like pink, green, blue, yellow, and orange. When walking in I saw a girl dancing on an elevated surface with white eyes. After, a guy handed out 3D glasses. We walked past a room and then into a tunnel that was black with white spiraling lights. Then we walked over this wooden path that wasnt very stable. Many dots.",1,74.95,67.13,99,43.1,3.08,3.08,0,0,1.54,0,1.54,0,0,0,0,0,1.54,0,1.54,1.54,0,0,0,0,0,0,0,0,7.69,1.54,0,0,0,0,0,6.15,0,0,1.54,1.54,0,0,0,0,0,0,0,0,0,3.08,40,0,6.15,13.85,20,0,0,0,3.08,NA,-34.67,-20.67,NA,2,5,1,1,3,1,0,100,80,60,20,40,20,0,60,100,50,50,50,50,50,3,1,0,13,0,0,0,0,0,0,0,0,0,17,0,17,1,17,0.764705882,65,18 -1112,Asylum,Delay,Role-assignment,Baseline,2,06:15pm,3,0,0.5,There was a lady who was dressed up. There was a person who came out of the lockers. There was a guy banging on the table with a hammer. There was a man with mail.,1,95.41,99,63.35,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,5.71,0,2.86,0,0,2.86,17.14,0,0,2.86,5.71,0,0,0,0,0,0,0,0,0,2.86,22.86,0,2.86,17.14,0,2.86,0,0,2.86,NA,-36.84,-38.33,NA,3,1,1,1,4,1,0,33.33,100,100,33.33,100,75,50,0,50,50,50,50,50,50,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,5,1,5,1,35,18 -1112,DevilsDen,Delay,Role-assignment,Share,2,06:15pm,4,0,1,There was a man with a chainsaw. It was very dark and there were lots of flashing lights. There was a man that jumped out of a locker and some people who jump scared me. We walked up stairs and then the floors shook.,1,51.97,86.82,95.15,3.56,2.27,2.27,0,0,0,0,0,0,0,0,0,0,0,0,2.27,0,2.27,2.27,0,2.27,2.27,0,0,0,9.09,0,0,0,0,0,0,9.09,0,0,0,4.55,0,0,0,0,0,0,0,0,0,4.55,29.55,0,9.09,13.64,6.82,0,0,0,4.55,NA,47.94,4.25,NA,3,4,1,4,5,1,75,25,100,0,56.25,63.64,63.64,27.27,100,0,50,50,50,50,50,1,0,0,4,0,1,0,0,1,0,0,0,0,5,2,7,0.714285714,5,0.8,44,18 -1112,GhostlyGrounds,Immediate,Role-assignment,Test,2,06:15pm,4,0,0.8,There was a school us that was very narrow and dark. Then we walked into a place that had lots of cages and people reaching their hands out of them. It was very dark and there were some flashing lights. There were floor boards that moved when walking over them. There were figures hung upsidedown by ropes on the ceiling. There were blows of air that were upper loud coming out of the walls.,1,27.81,87.96,99,20.23,2.7,2.7,0,0,1.35,0,1.35,1.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.76,0,0,0,0,0,0,6.76,0,0,0,0,0,0,0,0,0,0,0,0,0,5.41,33.78,0,6.76,22.97,5.41,1.35,0,0,5.41,NA,23.15,-19.8,NA,5,3,1,3,4,1,46.67,93.33,0,93.33,100,83.33,16.67,100,0,4.76,50,50,50,50,50,0,2,0,10,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.833333333,74,18 -1112,GhostlyGrounds,Delay,Role-assignment,Test,2,06:15pm,4,1,0.8,There was a school bus that was very narrow and dark and there was a person who jump scared us. We walked to a box that shook and there was a bright light in it. There were air guns that made loud noises. There were people hanging upside down in a dark room.,1,27.3,92.68,93.37,5.02,3.77,3.77,0,0,1.89,0,1.89,0,1.89,0,0,0,0,0,5.66,1.89,3.77,1.89,0,1.89,1.89,0,0,0,7.55,0,0,0,0,0,0,7.55,0,0,0,0,0,0,0,0,0,0,0,0,0,3.77,37.74,0,5.66,20.75,7.55,3.77,0,0,3.77,NA,-6.58,-15.27,NA,5,1,1,1,5,1,0,0,86.96,4.35,100,100,100,47.37,57.89,0,50,50,50,50,50,2,2,0,5,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.555555556,53,18 -1113,Infirmary,Delay,Role-assignment,Baseline,1,08:30pm,3,0,0.25,"The overall atmosphere was extremely psychedelics, full of bright neon colors and loud music. Halfway through we were given 3D glasses and the colors popped out of the walls. There were lots of twists and turns and strategic mirrors. I cant remember anything noteworthy about the characters but there were I think clowns and people in more neon. The overall atmosphere was more twisted than scary. ",1,58.76,12.22,79.84,20.23,3.03,1.52,1.52,0,13.64,0,13.64,3.03,0,1.52,1.52,1.52,4.55,1.52,3.03,1.52,1.52,1.52,0,1.52,1.52,0,0,0,1.52,0,0,0,0,0,0,1.52,0,0,0,0,0,0,0,0,1.52,0,0,0,0,3.03,21.21,0,4.55,9.09,4.55,3.03,0,1.52,3.03,16.25,-11.11,38.79,21.07,2,4,4,1,5,1,0,100,6.67,6.67,53.33,19.64,25,75,100,0,0,0,0,100,33.33,2,0,0,8,1,0,0,0,0,0,0,0,1,11,1,12,0.916666667,10,0.8,66,23 -1113,Asylum,Immediate,Role-assignment,Baseline,1,08:30pm,3,0,0.75,"There were multiple rooms, each of which had a different ""take ____"" with a number on the door. It was dark and dusty. The pretense were that they were shooting commercials, but creepy ones. There was toothpaste and soap. There were bloodstains on the walls. Early on, someone announced that someone had gone missing. There were adverts and articles pasted to the walls but we were going too fast to read them. The people there were dressed in lab coats and things with the clear plastic fake masks. There were fake oldtimey movie cameras. One actress was in a chair in one of the rooms kind of singing. It was probably the least scary of the four. No one jumped out at me particularly. All the rooms were just concrete. There were spiderwebs on things. ",1,59.36,44.48,69.28,3.67,0.75,0.75,0,0,9.7,2.24,7.46,0,0,0,3.73,0,2.99,0,3.73,0.75,2.99,1.49,0,1.49,1.49,0,0,0,5.97,1.49,0,0,0,1.49,0,4.48,0,0,0.75,0,0,0,0.75,0,0,0,0,0,0,2.99,17.16,0,2.99,12.69,0.75,0.75,0,0.75,2.99,42.99,68.99,-8.77,68.76,5,2,4,2,4,1,93.69,0,46.85,93.69,100,75,100,87.5,0,92.79,0,50,50,100,51.92,3,0,0,14,1,0,0,0,0,1,0,0,0,18,1,19,0.947368421,17,0.823529412,135,23 -1113,Asylum,Delay,Role-assignment,Baseline,1,08:30pm,3,1,0.75,"Asylum was set up like an oldtimey movie set. There were people dressed up as characters doing different kinds of commercials. At the beginning, an actor said into a speaker that a doctor was missing. Some commercials were for soap and toothpaste. There was a lady in a long red dress sitting on a chair. There were posters on the walls that were part of it but I couldnt stop to read them. Everything was sort of sepia toned. We went through a series of small rooms. There were oldtimey cameras and lots of things had spiderwebs on them. ",1,86.52,40.06,56.35,20.23,1,1,0,0,8,1,7,0,0,1,2,0,4,0,0,0,0,0,0,0,0,0,0,0,6,2,0,1,0,0,1,5,0,0,1,0,0,0,1,0,0,0,0,0,0,5,14,0,1,12,1,0,0,1,5,-0.35,-18.81,33.87,-16.1,2,4,1,1,1,2,0,100,50,0,25,0,0,20,100,60,100,0,0,100,0,1,0,0,13,0,0,0,0,0,0,0,0,1,14,1,15,0.933333333,14,0.928571429,100,23 -1113,DevilsDen,Delay,Role-assignment,Test,1,08:30pm,4,0,0.5,"The lighting was red and there was a lot of fog or smoke. The decoration is industrial. There was at one point a man who ran very close by us with a chainsaw. There were people screaming. There were lots of limbs everywhere, including a sort of cube of bloody limbs. There was a cage we had to pass through. Lots of characters were holding axes, and had sort of stringy hair. ",1,79.79,72.07,30.29,7.66,2.78,2.78,0,0,8.33,1.39,6.94,0,0,0,6.94,0,1.39,0,1.39,0,1.39,0,0,0,0,0,0,1.39,5.56,0,0,0,0,0,0,5.56,0,0,0,1.39,2.78,0,0,0,0,0,0,0,0,2.78,16.67,0,2.78,11.11,1.39,1.39,0,2.78,2.78,NA,22.71,14.03,NA,4,2,1,2,5,1,42.42,0,54.55,100,9.09,64.1,100,76.92,38.46,0,50,50,50,50,50,2,0,0,11,0,0,0,0,0,0,0,0,0,13,0,13,1,13,0.846153846,72,23 -1113,GhostlyGrounds,Immediate,Role-assignment,Share,1,08:30pm,4,0,0.6,"This one was probably the scariest of the lot. We entered through a bus. There were strobe lights which are the worst and people kind of running up to you. We walked through a very strobey room with fake corpses strung up and I was just trying not to bump into them. At some point there was a moving floor. There were people in cages hissing and making other weird noises. There were lots of animatronics in cages and behind windows too. There were vines hung up on the ceiling. We went up the stairs to a huge room with some kind of monster in it but we just turned around and went in another direction instead of going right past it. Some dude didnt have his mask on right and an actor broke character to tell him. The animatronics were mostly zombies and the like, dead and decomposed people. The guy at the beginning made a loud noise with some wooden sticks.",1,86.78,58.33,79.7,1,3.07,2.45,0.61,0,10.43,0,9.2,0,1.23,0.61,2.45,0,4.91,0,3.68,0,3.68,0.61,0,0.61,0.61,0,0,0,7.98,1.23,0,0,0,0.61,0.61,6.75,0,0.61,0,2.45,0,0,0,0,0,0,0,0,0.61,4.29,20.86,0,4.91,12.88,0.61,2.45,0,0,4.9,16.91,46.73,10.57,-6.57,3,4,4,4,5,2,73.77,47.54,100,0,81.15,58.33,70.45,34.09,100,0,72.73,0,0,100,0,5,3,0,12,2,0,0,0,0,0,0,0,0,22,0,22,1,20,0.6,163,23 -1113,GhostlyGrounds,Delay,Role-assignment,Share,1,08:30pm,4,1,0.6,"The Ghostly Grounds section started in a bus. The person at the very beginning made a very loud banging noise. There was a ""meat locker"" section where fake bodies were hanging from the ceiling and I was afraid of touching one. We went up some stairs and there was a long, twisty, mazelike section with lots of cages and real people and automatons within the cages. Some of the automatons were waving, while others were having their heads chopped up or something else grotesque. We were waiting by one particular cage for a while and the actor was running back and forth hissing. He saw one person had their mask off and told them to put it back on. We went down some stairs and up others. There was a moving floor. We went into this room with a lot of huge things and colored lights but we immediately turned around and exited into a row with actual prison cells.",1,75.29,75.68,95.84,5.02,3.77,3.14,0,0.63,5.66,0,5.66,0,0.63,0,1.26,0.63,3.77,0,3.14,0.63,2.52,0.63,0,0.63,0.63,0,0,0,8.81,1.26,0,0,0,0.63,0.63,7.55,0,0,0,0.63,0,0,0,0,0,0,0,0,0,3.14,25.16,0,5.66,14.47,1.89,2.52,0.63,0,3.14,46.24,79.68,66.65,-7.62,1,4,5,4,1,1,100,40,40,0,85.81,0,40,80,100,22.58,0,0,96.88,0,100,7,3,0,18,1,0,0,0,0,0,0,0,0,29,0,29,1,28,0.642857143,159,23 -1114,Infirmary,Immediate,Role-assignment,Baseline,2,06:15pm,1,0,0.4,"Infirmary had alot of neon colors and bright lights. We wore these special glasses that made our vision blurry and wonky. I saw bright orange neon spiders on the walls, and the workers wore neon clothing. There were a lot of sound effects going on along with wind and fog blowing. The walls were covered with neon graffiti. There was a room with different color dots that was spinning around us and made it hard to walk.",1,77.73,76.62,32.28,61.07,5.19,3.9,0,1.3,5.19,0,5.19,1.3,3.9,0,0,0,1.3,0,2.6,2.6,0,0,0,0,0,0,0,0,5.19,0,0,0,0,0,0,5.19,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3,25.97,0,3.9,7.79,11.69,1.3,1.3,0,1.3,-12.47,-34.71,-33.63,30.94,3,5,3,1,3,1,0,46.15,100,50.77,50.77,89.58,58.33,0,66.67,100,0,0,100,0,0,2,1,0,11,0,0,0,0,0,0,0,0,0,14,0,14,1,14,0.785714286,77,19 -1114,Infirmary,Delay,Role-assignment,Baseline,2,06:15pm,1,1,0.2,"neon lights +1112,Infirmary,Delay,Goal-assigned,Baseline,2,06:15pm,2,1,0.4,"Infirmary had very bright neon colors like pink, green, blue, yellow, and orange. When walking in I saw a girl dancing on an elevated surface with white eyes. After, a guy handed out 3D glasses. We walked past a room and then into a tunnel that was black with white spiraling lights. Then we walked over this wooden path that wasnt very stable. Many dots.",1,74.95,67.13,99,43.1,3.08,3.08,0,0,1.54,0,1.54,0,0,0,0,0,1.54,0,1.54,1.54,0,0,0,0,0,0,0,0,7.69,1.54,0,0,0,0,0,6.15,0,0,1.54,1.54,0,0,0,0,0,0,0,0,0,3.08,40,0,6.15,13.85,20,0,0,0,3.08,NA,-34.67,-20.67,NA,2,5,1,1,3,1,0,100,80,60,20,40,20,0,60,100,50,50,50,50,50,3,1,0,13,0,0,0,0,0,0,0,0,0,17,0,17,1,17,0.764705882,65,18 +1112,Asylum,Delay,Goal-assigned,Baseline,2,06:15pm,3,0,0.5,There was a lady who was dressed up. There was a person who came out of the lockers. There was a guy banging on the table with a hammer. There was a man with mail.,1,95.41,99,63.35,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,5.71,0,2.86,0,0,2.86,17.14,0,0,2.86,5.71,0,0,0,0,0,0,0,0,0,2.86,22.86,0,2.86,17.14,0,2.86,0,0,2.86,NA,-36.84,-38.33,NA,3,1,1,1,4,1,0,33.33,100,100,33.33,100,75,50,0,50,50,50,50,50,50,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,5,1,5,1,35,18 +1112,DevilsDen,Delay,Goal-assigned,Share,2,06:15pm,4,0,1,There was a man with a chainsaw. It was very dark and there were lots of flashing lights. There was a man that jumped out of a locker and some people who jump scared me. We walked up stairs and then the floors shook.,1,51.97,86.82,95.15,3.56,2.27,2.27,0,0,0,0,0,0,0,0,0,0,0,0,2.27,0,2.27,2.27,0,2.27,2.27,0,0,0,9.09,0,0,0,0,0,0,9.09,0,0,0,4.55,0,0,0,0,0,0,0,0,0,4.55,29.55,0,9.09,13.64,6.82,0,0,0,4.55,NA,47.94,4.25,NA,3,4,1,4,5,1,75,25,100,0,56.25,63.64,63.64,27.27,100,0,50,50,50,50,50,1,0,0,4,0,1,0,0,1,0,0,0,0,5,2,7,0.714285714,5,0.8,44,18 +1112,GhostlyGrounds,Immediate,Goal-assigned,Test,2,06:15pm,4,0,0.8,There was a school us that was very narrow and dark. Then we walked into a place that had lots of cages and people reaching their hands out of them. It was very dark and there were some flashing lights. There were floor boards that moved when walking over them. There were figures hung upsidedown by ropes on the ceiling. There were blows of air that were upper loud coming out of the walls.,1,27.81,87.96,99,20.23,2.7,2.7,0,0,1.35,0,1.35,1.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.76,0,0,0,0,0,0,6.76,0,0,0,0,0,0,0,0,0,0,0,0,0,5.41,33.78,0,6.76,22.97,5.41,1.35,0,0,5.41,NA,23.15,-19.8,NA,5,3,1,3,4,1,46.67,93.33,0,93.33,100,83.33,16.67,100,0,4.76,50,50,50,50,50,0,2,0,10,0,0,0,0,0,0,0,0,0,12,0,12,1,12,0.833333333,74,18 +1112,GhostlyGrounds,Delay,Goal-assigned,Test,2,06:15pm,4,1,0.8,There was a school bus that was very narrow and dark and there was a person who jump scared us. We walked to a box that shook and there was a bright light in it. There were air guns that made loud noises. There were people hanging upside down in a dark room.,1,27.3,92.68,93.37,5.02,3.77,3.77,0,0,1.89,0,1.89,0,1.89,0,0,0,0,0,5.66,1.89,3.77,1.89,0,1.89,1.89,0,0,0,7.55,0,0,0,0,0,0,7.55,0,0,0,0,0,0,0,0,0,0,0,0,0,3.77,37.74,0,5.66,20.75,7.55,3.77,0,0,3.77,NA,-6.58,-15.27,NA,5,1,1,1,5,1,0,0,86.96,4.35,100,100,100,47.37,57.89,0,50,50,50,50,50,2,2,0,5,0,0,0,0,0,0,0,0,0,9,0,9,1,9,0.555555556,53,18 +1113,Infirmary,Delay,Goal-assigned,Baseline,1,08:30pm,3,0,0.25,"The overall atmosphere was extremely psychedelics, full of bright neon colors and loud music. Halfway through we were given 3D glasses and the colors popped out of the walls. There were lots of twists and turns and strategic mirrors. I cant remember anything noteworthy about the characters but there were I think clowns and people in more neon. The overall atmosphere was more twisted than scary. ",1,58.76,12.22,79.84,20.23,3.03,1.52,1.52,0,13.64,0,13.64,3.03,0,1.52,1.52,1.52,4.55,1.52,3.03,1.52,1.52,1.52,0,1.52,1.52,0,0,0,1.52,0,0,0,0,0,0,1.52,0,0,0,0,0,0,0,0,1.52,0,0,0,0,3.03,21.21,0,4.55,9.09,4.55,3.03,0,1.52,3.03,16.25,-11.11,38.79,21.07,2,4,4,1,5,1,0,100,6.67,6.67,53.33,19.64,25,75,100,0,0,0,0,100,33.33,2,0,0,8,1,0,0,0,0,0,0,0,1,11,1,12,0.916666667,10,0.8,66,23 +1113,Asylum,Immediate,Goal-assigned,Baseline,1,08:30pm,3,0,0.75,"There were multiple rooms, each of which had a different ""take ____"" with a number on the door. It was dark and dusty. The pretense were that they were shooting commercials, but creepy ones. There was toothpaste and soap. There were bloodstains on the walls. Early on, someone announced that someone had gone missing. There were adverts and articles pasted to the walls but we were going too fast to read them. The people there were dressed in lab coats and things with the clear plastic fake masks. There were fake oldtimey movie cameras. One actress was in a chair in one of the rooms kind of singing. It was probably the least scary of the four. No one jumped out at me particularly. All the rooms were just concrete. There were spiderwebs on things. ",1,59.36,44.48,69.28,3.67,0.75,0.75,0,0,9.7,2.24,7.46,0,0,0,3.73,0,2.99,0,3.73,0.75,2.99,1.49,0,1.49,1.49,0,0,0,5.97,1.49,0,0,0,1.49,0,4.48,0,0,0.75,0,0,0,0.75,0,0,0,0,0,0,2.99,17.16,0,2.99,12.69,0.75,0.75,0,0.75,2.99,42.99,68.99,-8.77,68.76,5,2,4,2,4,1,93.69,0,46.85,93.69,100,75,100,87.5,0,92.79,0,50,50,100,51.92,3,0,0,14,1,0,0,0,0,1,0,0,0,18,1,19,0.947368421,17,0.823529412,135,23 +1113,Asylum,Delay,Goal-assigned,Baseline,1,08:30pm,3,1,0.75,"Asylum was set up like an oldtimey movie set. There were people dressed up as characters doing different kinds of commercials. At the beginning, an actor said into a speaker that a doctor was missing. Some commercials were for soap and toothpaste. There was a lady in a long red dress sitting on a chair. There were posters on the walls that were part of it but I couldnt stop to read them. Everything was sort of sepia toned. We went through a series of small rooms. There were oldtimey cameras and lots of things had spiderwebs on them. ",1,86.52,40.06,56.35,20.23,1,1,0,0,8,1,7,0,0,1,2,0,4,0,0,0,0,0,0,0,0,0,0,0,6,2,0,1,0,0,1,5,0,0,1,0,0,0,1,0,0,0,0,0,0,5,14,0,1,12,1,0,0,1,5,-0.35,-18.81,33.87,-16.1,2,4,1,1,1,2,0,100,50,0,25,0,0,20,100,60,100,0,0,100,0,1,0,0,13,0,0,0,0,0,0,0,0,1,14,1,15,0.933333333,14,0.928571429,100,23 +1113,DevilsDen,Delay,Goal-assigned,Test,1,08:30pm,4,0,0.5,"The lighting was red and there was a lot of fog or smoke. The decoration is industrial. There was at one point a man who ran very close by us with a chainsaw. There were people screaming. There were lots of limbs everywhere, including a sort of cube of bloody limbs. There was a cage we had to pass through. Lots of characters were holding axes, and had sort of stringy hair. ",1,79.79,72.07,30.29,7.66,2.78,2.78,0,0,8.33,1.39,6.94,0,0,0,6.94,0,1.39,0,1.39,0,1.39,0,0,0,0,0,0,1.39,5.56,0,0,0,0,0,0,5.56,0,0,0,1.39,2.78,0,0,0,0,0,0,0,0,2.78,16.67,0,2.78,11.11,1.39,1.39,0,2.78,2.78,NA,22.71,14.03,NA,4,2,1,2,5,1,42.42,0,54.55,100,9.09,64.1,100,76.92,38.46,0,50,50,50,50,50,2,0,0,11,0,0,0,0,0,0,0,0,0,13,0,13,1,13,0.846153846,72,23 +1113,GhostlyGrounds,Immediate,Goal-assigned,Share,1,08:30pm,4,0,0.6,"This one was probably the scariest of the lot. We entered through a bus. There were strobe lights which are the worst and people kind of running up to you. We walked through a very strobey room with fake corpses strung up and I was just trying not to bump into them. At some point there was a moving floor. There were people in cages hissing and making other weird noises. There were lots of animatronics in cages and behind windows too. There were vines hung up on the ceiling. We went up the stairs to a huge room with some kind of monster in it but we just turned around and went in another direction instead of going right past it. Some dude didnt have his mask on right and an actor broke character to tell him. The animatronics were mostly zombies and the like, dead and decomposed people. The guy at the beginning made a loud noise with some wooden sticks.",1,86.78,58.33,79.7,1,3.07,2.45,0.61,0,10.43,0,9.2,0,1.23,0.61,2.45,0,4.91,0,3.68,0,3.68,0.61,0,0.61,0.61,0,0,0,7.98,1.23,0,0,0,0.61,0.61,6.75,0,0.61,0,2.45,0,0,0,0,0,0,0,0,0.61,4.29,20.86,0,4.91,12.88,0.61,2.45,0,0,4.9,16.91,46.73,10.57,-6.57,3,4,4,4,5,2,73.77,47.54,100,0,81.15,58.33,70.45,34.09,100,0,72.73,0,0,100,0,5,3,0,12,2,0,0,0,0,0,0,0,0,22,0,22,1,20,0.6,163,23 +1113,GhostlyGrounds,Delay,Goal-assigned,Share,1,08:30pm,4,1,0.6,"The Ghostly Grounds section started in a bus. The person at the very beginning made a very loud banging noise. There was a ""meat locker"" section where fake bodies were hanging from the ceiling and I was afraid of touching one. We went up some stairs and there was a long, twisty, mazelike section with lots of cages and real people and automatons within the cages. Some of the automatons were waving, while others were having their heads chopped up or something else grotesque. We were waiting by one particular cage for a while and the actor was running back and forth hissing. He saw one person had their mask off and told them to put it back on. We went down some stairs and up others. There was a moving floor. We went into this room with a lot of huge things and colored lights but we immediately turned around and exited into a row with actual prison cells.",1,75.29,75.68,95.84,5.02,3.77,3.14,0,0.63,5.66,0,5.66,0,0.63,0,1.26,0.63,3.77,0,3.14,0.63,2.52,0.63,0,0.63,0.63,0,0,0,8.81,1.26,0,0,0,0.63,0.63,7.55,0,0,0,0.63,0,0,0,0,0,0,0,0,0,3.14,25.16,0,5.66,14.47,1.89,2.52,0.63,0,3.14,46.24,79.68,66.65,-7.62,1,4,5,4,1,1,100,40,40,0,85.81,0,40,80,100,22.58,0,0,96.88,0,100,7,3,0,18,1,0,0,0,0,0,0,0,0,29,0,29,1,28,0.642857143,159,23 +1114,Infirmary,Immediate,Goal-assigned,Baseline,2,06:15pm,1,0,0.4,"Infirmary had alot of neon colors and bright lights. We wore these special glasses that made our vision blurry and wonky. I saw bright orange neon spiders on the walls, and the workers wore neon clothing. There were a lot of sound effects going on along with wind and fog blowing. The walls were covered with neon graffiti. There was a room with different color dots that was spinning around us and made it hard to walk.",1,77.73,76.62,32.28,61.07,5.19,3.9,0,1.3,5.19,0,5.19,1.3,3.9,0,0,0,1.3,0,2.6,2.6,0,0,0,0,0,0,0,0,5.19,0,0,0,0,0,0,5.19,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3,25.97,0,3.9,7.79,11.69,1.3,1.3,0,1.3,-12.47,-34.71,-33.63,30.94,3,5,3,1,3,1,0,46.15,100,50.77,50.77,89.58,58.33,0,66.67,100,0,0,100,0,0,2,1,0,11,0,0,0,0,0,0,0,0,0,14,0,14,1,14,0.785714286,77,19 +1114,Infirmary,Delay,Goal-assigned,Baseline,2,06:15pm,1,1,0.2,"neon lights 3d glasses clowns girl dancing moving tunnel music first room",1,89.52,84.23,89.39,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.67,8.33,0,0,0,0,0,8.33,0,0,8.33,0,0,0,0,0,0,0,0,0,0,0,41.67,0,16.67,8.33,8.33,8.33,0,0,0,NA,NA,NA,NA,1,1,1,1,1,1,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,1,1,0,4,0,0,0,0,0,0,1,0,0,6,1,7,0.857142857,6,0.666666667,12,19 -1114,Asylum,Delay,Role-assignment,Baseline,2,06:15pm,2,0,0.5,"Actors and Actresses +1114,Asylum,Delay,Goal-assigned,Baseline,2,06:15pm,2,0,0.5,"Actors and Actresses Director gone missing Newspapers Backstage @@ -974,19 +974,19 @@ Old Hollywood feel Dentist office Teeth head ",1,77.34,99,63.35,20.23,6.67,0,0,6.67,6.67,0,6.67,6.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,20,0,0,6.67,0,0,0,0,0,0,0,0,0,0,6.67,13.33,0,6.67,0,0,0,6.67,0,6.67,NA,NA,-58.26,30.94,1,1,4,1,2,1,50,50,50,50,50,100,0,0,0,0,0,0,0,100,0,0,0,0,7,0,0,0,0,0,0,0,0,0,7,0,7,1,7,1,15,19 -1114,DevilsDen,Immediate,Role-assignment,Share,2,06:15pm,2,0,0.4,There was a news report going on saying someone was murdered. There were cameras around and the workers had old fashion costumes on. There was a dental office with one of the workers holding a drill. ,1,85.2,84.23,39.59,2.17,5.56,0,0,5.56,2.78,0,2.78,0,0,0,2.78,0,0,0,2.78,0,2.78,0,0,0,0,0,0,0,16.67,8.33,0,0,2.78,0,5.56,8.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.89,0,2.78,11.11,0,0,0,0,0,NA,32.42,25.18,NA,4,2,1,2,5,1,37.5,0,0,100,100,43.75,100,50,50,0,50,50,50,50,50,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,5,0,0,0,36,19 -1114,DevilsDen,Delay,Role-assignment,Share,2,06:15pm,2,1,0.8,"Last room +1114,DevilsDen,Immediate,Goal-assigned,Share,2,06:15pm,2,0,0.4,There was a news report going on saying someone was murdered. There were cameras around and the workers had old fashion costumes on. There was a dental office with one of the workers holding a drill. ,1,85.2,84.23,39.59,2.17,5.56,0,0,5.56,2.78,0,2.78,0,0,0,2.78,0,0,0,2.78,0,2.78,0,0,0,0,0,0,0,16.67,8.33,0,0,2.78,0,5.56,8.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.89,0,2.78,11.11,0,0,0,0,0,NA,32.42,25.18,NA,4,2,1,2,5,1,37.5,0,0,100,100,43.75,100,50,50,0,50,50,50,50,50,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,5,0,0,0,36,19 +1114,DevilsDen,Delay,Goal-assigned,Share,2,06:15pm,2,1,0.8,"Last room Bus Strobe lights ",1,89.52,40.06,99,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,20,20,0,0,0,0,NA,NA,NA,NA,1,1,1,1,1,1,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,0,1,0,1,0,0,0,0,0,0,1,0,0,2,1,3,0.666666667,2,0.5,25,19 -1114,GhostlyGrounds,Delay,Role-assignment,Test,2,06:15pm,3,0,0.4,"People with metal weapons (chainsaws, manchettes, ect...) +1114,GhostlyGrounds,Delay,Goal-assigned,Test,2,06:15pm,3,0,0.4,"People with metal weapons (chainsaws, manchettes, ect...) Multiple rooms People hanging in cages Supposed to go one person at a time Long hallway Strobe lights ",1,99,63.73,35.01,20.23,0,0,0,0,8,0,8,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,20,24,0,4,20,4,0,0,0,20,NA,19.81,NA,30.94,3,1,3,2,1,1,50,0,100,100,0,50,50,50,50,50,0,0,100,0,0,1,0,0,7,0,0,0,0,0,0,0,0,1,8,1,9,0.888888889,8,0.875,5,19 -1115,Infirmary,Delay,Role-assignment,Baseline,2,06:15pm,1,0,0,"Bright colors +1115,Infirmary,Delay,Goal-assigned,Baseline,2,06:15pm,1,0,0,"Bright colors moving floor smoke dancing on tables @@ -994,24 +994,24 @@ dancing on tables clowns loud noises and pops ",1,89.52,40.06,63.35,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.33,6.67,6.67,0,0,0,0,0,0,0,6.67,6.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.67,0,13.33,6.67,13.33,13.33,0,0,0,NA,-11.67,-9.59,NA,3,5,1,1,1,1,0,0,100,0,0,0,0,0,0,100,50,50,50,50,50,1,0,0,7,0,0,0,0,0,0,0,0,0,8,0,8,1,8,0.875,15,20 -1115,Asylum,Immediate,Role-assignment,Baseline,2,06:15pm,1,0,0,"famous director gone missing +1115,Asylum,Immediate,Goal-assigned,Baseline,2,06:15pm,1,0,0,"famous director gone missing actors and actresses pictures of old men that change into monsters newspaper in the beginning girl n a dressing room",1,98.55,99,97.72,83,8.33,0,4.17,8.33,4.17,0,4.17,0,4.17,0,0,0,0,0,4.17,4.17,0,0,0,0,0,0,0,0,20.83,0,0,0,0,0,0,20.83,0,0,8.33,4.17,0,0,0,0,0,0,0,0,0,4.17,16.67,0,4.17,12.5,0,0,0,0,4.17,NA,-37.35,43.36,NA,4,2,1,1,1,1,0,50,50,100,62.5,0,100,100,0,0,50,50,50,50,50,2,0,0,4,0,0,0,0,0,0,0,0,0,6,0,6,1,6,0.666666667,24,20 -1115,Asylum,Delay,Role-assignment,Baseline,2,06:15pm,1,1,0.5,"Second one +1115,Asylum,Delay,Goal-assigned,Baseline,2,06:15pm,1,1,0.5,"Second one actors and actresses director missing and maybe a murderer newspapers red rooms ",1,56.86,99,2.36,1,7.14,0,0,7.14,7.14,0,7.14,0,0,0,7.14,0,0,0,7.14,0,7.14,0,0,0,0,0,0,0,28.57,7.14,0,0,7.14,0,0,21.43,0,0,7.14,0,0,0,0,0,0,0,0,0,0,0,14.29,0,0,7.14,7.14,0,0,0,0,18.94,-11.67,37.55,30.94,4,3,3,1,1,1,0,0,0,100,0,0,50,100,0,0,0,0,100,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,5,1,6,0.833333333,5,1,14,20 -1115,DevilsDen,Immediate,Role-assignment,Share,2,06:15pm,2,0,0.4,"women with white eyes in the beginning +1115,DevilsDen,Immediate,Goal-assigned,Share,2,06:15pm,2,0,0.4,"women with white eyes in the beginning men with weapons (chainsaw, machete, mallet, ect...) strobe lights people hanging from the ceilings fence material doors ",1,99,84.23,39.59,20.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.33,0,0,0,0,0,0,8.33,0,0,4.17,4.17,0,0,0,0,0,0,0,0,0,4.17,25,0,0,12.5,12.5,0,0,0,4.17,NA,47.82,NA,NA,1,1,1,3,1,1,100,100,0,100,0,50,50,50,50,50,50,50,50,50,50,0,0,0,8,0,0,0,0,0,0,0,0,1,8,1,9,0.888888889,8,1,24,20 -1115,DevilsDen,Delay,Role-assignment,Share,2,06:15pm,2,1,0.8,"Third one +1115,DevilsDen,Delay,Goal-assigned,Share,2,06:15pm,2,1,0.8,"Third one marked with an x (scary) people with weapons long tunnel @@ -1019,18 +1019,18 @@ strobe lights wearing flannels bodys hanging from cages ",1,99,40.06,7.03,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,5,5,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,15,0,0,10,5,0,0,0,10,NA,58.08,NA,NA,1,1,1,4,1,1,100,100,100,0,100,50,50,50,50,50,50,50,50,50,50,0,1,0,4,0,0,0,0,1,0,1,0,0,5,2,7,0.714285714,5,0.8,20,20 -1115,GhostlyGrounds,Delay,Role-assignment,Test,2,06:15pm,3,0,0.4,"Last one +1115,GhostlyGrounds,Delay,Goal-assigned,Test,2,06:15pm,3,0,0.4,"Last one Strobe lights Scary one marked with an X Monsters ",1,99,40.06,5.07,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,0,9.09,9.09,0,9.09,9.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,0,0,0,9.09,0,0,0,0,NA,-11.67,NA,NA,4,1,1,1,1,1,0,0,0,100,0,50,50,50,50,50,50,50,50,50,50,0,0,0,2,0,0,0,0,0,0,2,0,0,2,2,4,0.5,2,1,11,20 -1116,Infirmary,Immediate,Role-assignment,Baseline,1,08:30pm,2,0,0.4,"Small spaces with 3D glasses to make things less distinguishable and pop more. The colors were amazing and it was quite ""trippy"". there was so much going on that it was almst overwhelming. Some jump scares and the costumes were really cool. lots of cool pattrens on the walls and i think t added to te experience the fact that it was harder to see. The green smoke was really cool, and the jumpscares got me there. +1116,Infirmary,Immediate,Goal-assigned,Baseline,1,08:30pm,2,0,0.4,"Small spaces with 3D glasses to make things less distinguishable and pop more. The colors were amazing and it was quite ""trippy"". there was so much going on that it was almst overwhelming. Some jump scares and the costumes were really cool. lots of cool pattrens on the walls and i think t added to te experience the fact that it was harder to see. The green smoke was really cool, and the jumpscares got me there. ",1,45.12,20.1,17.57,61.07,0,0,0,0,7.79,0,7.79,1.3,1.3,0,1.3,2.6,1.3,0,7.79,5.19,2.6,3.9,1.3,2.6,2.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3,1.3,0,0,0,0,0,2.6,15.58,0,2.6,5.19,3.9,0,3.9,2.6,2.6,31.01,54.59,33.22,5.22,3,2,4,2,1,2,90.91,0,100,100,100,0,100,18.1,33.33,33.33,46.88,0,0,100,0,3,0,0,8,3,0,0,0,0,0,0,0,1,14,1,15,0.933333333,11,0.727272727,77,20 -1116,Infirmary,Delay,Role-assignment,Baseline,1,08:30pm,2,1,0.4,"If i remember correctly, Infirmary being the first one, this was the one with the crazy colors and cool designs. There was an intro in the beginning, and then sort of a warm up before receiving the 3D glasses and seeing the elevated neon dancers. I remember slightly before that, there was a green room that looked elevated but it was just a light with smoke. I loved the visuals in this section and distractions from scares, leaving you more susceptible to being scared and off guard. ",1,76.81,27.51,86.26,20.23,1.15,0,0,1.15,9.2,2.3,6.9,2.3,0,0,3.45,0,2.3,2.3,5.75,2.3,2.3,4.6,1.15,2.3,2.3,0,0,0,3.45,1.15,0,0,0,0,0,2.3,0,0,0,0,0,0,1.15,0,0,0,0,0,0,1.15,20.69,1.15,1.15,10.34,5.75,0,2.3,1.15,1.15,-17.01,6.93,-18.94,-39.01,2,4,1,4,2,2,21.54,100,27.69,0,27.69,85,0,55,100,55,100,0,52.94,52.94,52.94,7,1,0,7,1,0,0,0,0,0,0,0,1,16,1,17,0.941176471,15,0.466666667,87,20 -1116,Asylum,Delay,Role-assignment,Baseline,1,08:30pm,1,0,0.75,"I am having a really hard time recalling Asylum, I think for the reason that it was not as scary to me, and because it was one of the shorter experiences. Honestly, im having trouble remembering anything at all, even how it started",1,12.37,1.08,89.39,1,0,0,0,0,27.27,2.27,25,11.36,6.82,0,2.27,4.55,2.27,4.55,4.55,0,4.55,2.27,0,2.27,2.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.27,0,0,0,0,2.27,0,4.55,2.27,0,0,0,0,0,2.27,2.27,6.82,-14.12,-36.78,-2.56,-3.01,2,3,2,1,4,4,0,100,100,100,12.5,50,50,100,0,90.62,50,100,50,0,56.25,0,0,0,0,0,0,0,0,0,0,0,0,5,0,5,5,0,0,0,44,20 -1116,DevilsDen,Delay,Role-assignment,Test,1,08:30pm,2,0,0.8,"Lots of scary people wielding weapons. More of a dimly lit area that was green i believe. Kind of a rusty vibe and a lot of characters talking to themselves, Not as scary as the others ",1,95.3,6.61,22.12,1,0,0,0,0,13.89,0,13.89,2.78,0,0,5.56,0,5.56,0,8.33,0,8.33,5.56,0,5.56,5.56,0,0,0,5.56,2.78,0,0,0,0,2.78,2.78,0,0,0,0,0,0,0,0,0,0,0,0,0,2.78,8.33,0,0,2.78,5.56,0,0,0,2.78,31.55,32.42,31.29,30.94,4,5,3,2,1,1,37.5,0,0,100,100,0,66.67,33.33,33.33,100,0,0,100,0,0,0,0,0,4,1,0,0,0,1,1,0,0,0,5,2,7,0.714285714,4,1,36,20 -1116,GhostlyGrounds,Immediate,Role-assignment,Share,1,08:30pm,3,0,1,"the school bus started with flashing lights and people jumping. very enclosed area it made it more scary. then the walk into the side of the building which was riddled wth scary people. lots of jump scares, as this was the scariest out of the 4 for me. people hiding in places i didnt expect, and sometime it was hard to tell who was real and who wasnt, which defiently added to the thrill. earlier into the Ghostly Grounds there was an outside part with a chainsawguy which was creepy. there was many broken and worn rooms to walk passed. This whole section was more enclosed which is scary. lots of people wielding weapons throughout this scene. going up and down stairs also added to the effect for sure",1,79.97,9.52,97.44,1,0.78,0,0,0.78,8.59,0,8.59,0.78,1.56,0,0.78,0.78,5.47,0,6.25,0.78,5.47,5.47,0.78,4.69,4.69,0,0,0,3.13,1.56,0,0,0.78,0,0.78,1.56,0,0,0,0,0,0,0,0,0,0,0,0.78,0,5.47,21.09,0,4.69,13.28,2.34,0,0.78,0,6.25,17.74,50.35,40.46,-37.61,2,3,5,3,1,1,66.67,100,0,6.67,76,0,0,100,62.29,2.86,0,0,32.05,0,100,4,2,0,5,5,0,0,0,0,1,0,0,0,16,1,17,0.941176471,11,0.454545455,128,20 -1116,GhostlyGrounds,Delay,Role-assignment,Share,1,08:30pm,3,1,0.6,"first we got on the schoolbus which was very tight, and the lights were flashing. There were figures on the bus that jumped at you and some figures who were just still. after we got off the back of the bus we went into the building and around windy corridors. There was a man outside for a second with a chainsaw. There was the loud shaky box with the creature inside of it shaking around. I remember a man on the ceiling that was dropping something which was making a loud noise. At the end, there was the kaleidoscope hall with the real cells that housed prisoners during the time the ESP was functioning.",1,91.74,78.98,58.46,5.65,3.51,2.63,0,0.88,7.02,0,7.02,2.63,0.88,0,0.88,0.88,1.75,0.88,1.75,0,1.75,0,0,0,0,0,0,0,6.14,0,0,0,0,0,0,6.14,0,0,0,1.75,0,0,1.75,0,0,0,0,0,0,3.51,16.67,0,2.63,8.77,1.75,2.63,0.88,1.75,3.51,-4.37,-30.36,-13.69,30.94,3,2,4,1,5,1,0,60,100,40,67.27,82.81,100,14.06,48.44,0,0,0,0,100,0,3,1,0,9,0,0,0,0,5,0,3,0,0,13,8,21,0.619047619,13,0.692307692,114,20 +1116,Infirmary,Delay,Goal-assigned,Baseline,1,08:30pm,2,1,0.4,"If i remember correctly, Infirmary being the first one, this was the one with the crazy colors and cool designs. There was an intro in the beginning, and then sort of a warm up before receiving the 3D glasses and seeing the elevated neon dancers. I remember slightly before that, there was a green room that looked elevated but it was just a light with smoke. I loved the visuals in this section and distractions from scares, leaving you more susceptible to being scared and off guard. ",1,76.81,27.51,86.26,20.23,1.15,0,0,1.15,9.2,2.3,6.9,2.3,0,0,3.45,0,2.3,2.3,5.75,2.3,2.3,4.6,1.15,2.3,2.3,0,0,0,3.45,1.15,0,0,0,0,0,2.3,0,0,0,0,0,0,1.15,0,0,0,0,0,0,1.15,20.69,1.15,1.15,10.34,5.75,0,2.3,1.15,1.15,-17.01,6.93,-18.94,-39.01,2,4,1,4,2,2,21.54,100,27.69,0,27.69,85,0,55,100,55,100,0,52.94,52.94,52.94,7,1,0,7,1,0,0,0,0,0,0,0,1,16,1,17,0.941176471,15,0.466666667,87,20 +1116,Asylum,Delay,Goal-assigned,Baseline,1,08:30pm,1,0,0.75,"I am having a really hard time recalling Asylum, I think for the reason that it was not as scary to me, and because it was one of the shorter experiences. Honestly, im having trouble remembering anything at all, even how it started",1,12.37,1.08,89.39,1,0,0,0,0,27.27,2.27,25,11.36,6.82,0,2.27,4.55,2.27,4.55,4.55,0,4.55,2.27,0,2.27,2.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.27,0,0,0,0,2.27,0,4.55,2.27,0,0,0,0,0,2.27,2.27,6.82,-14.12,-36.78,-2.56,-3.01,2,3,2,1,4,4,0,100,100,100,12.5,50,50,100,0,90.62,50,100,50,0,56.25,0,0,0,0,0,0,0,0,0,0,0,0,5,0,5,5,0,0,0,44,20 +1116,DevilsDen,Delay,Goal-assigned,Test,1,08:30pm,2,0,0.8,"Lots of scary people wielding weapons. More of a dimly lit area that was green i believe. Kind of a rusty vibe and a lot of characters talking to themselves, Not as scary as the others ",1,95.3,6.61,22.12,1,0,0,0,0,13.89,0,13.89,2.78,0,0,5.56,0,5.56,0,8.33,0,8.33,5.56,0,5.56,5.56,0,0,0,5.56,2.78,0,0,0,0,2.78,2.78,0,0,0,0,0,0,0,0,0,0,0,0,0,2.78,8.33,0,0,2.78,5.56,0,0,0,2.78,31.55,32.42,31.29,30.94,4,5,3,2,1,1,37.5,0,0,100,100,0,66.67,33.33,33.33,100,0,0,100,0,0,0,0,0,4,1,0,0,0,1,1,0,0,0,5,2,7,0.714285714,4,1,36,20 +1116,GhostlyGrounds,Immediate,Goal-assigned,Share,1,08:30pm,3,0,1,"the school bus started with flashing lights and people jumping. very enclosed area it made it more scary. then the walk into the side of the building which was riddled wth scary people. lots of jump scares, as this was the scariest out of the 4 for me. people hiding in places i didnt expect, and sometime it was hard to tell who was real and who wasnt, which defiently added to the thrill. earlier into the Ghostly Grounds there was an outside part with a chainsawguy which was creepy. there was many broken and worn rooms to walk passed. This whole section was more enclosed which is scary. lots of people wielding weapons throughout this scene. going up and down stairs also added to the effect for sure",1,79.97,9.52,97.44,1,0.78,0,0,0.78,8.59,0,8.59,0.78,1.56,0,0.78,0.78,5.47,0,6.25,0.78,5.47,5.47,0.78,4.69,4.69,0,0,0,3.13,1.56,0,0,0.78,0,0.78,1.56,0,0,0,0,0,0,0,0,0,0,0,0.78,0,5.47,21.09,0,4.69,13.28,2.34,0,0.78,0,6.25,17.74,50.35,40.46,-37.61,2,3,5,3,1,1,66.67,100,0,6.67,76,0,0,100,62.29,2.86,0,0,32.05,0,100,4,2,0,5,5,0,0,0,0,1,0,0,0,16,1,17,0.941176471,11,0.454545455,128,20 +1116,GhostlyGrounds,Delay,Goal-assigned,Share,1,08:30pm,3,1,0.6,"first we got on the schoolbus which was very tight, and the lights were flashing. There were figures on the bus that jumped at you and some figures who were just still. after we got off the back of the bus we went into the building and around windy corridors. There was a man outside for a second with a chainsaw. There was the loud shaky box with the creature inside of it shaking around. I remember a man on the ceiling that was dropping something which was making a loud noise. At the end, there was the kaleidoscope hall with the real cells that housed prisoners during the time the ESP was functioning.",1,91.74,78.98,58.46,5.65,3.51,2.63,0,0.88,7.02,0,7.02,2.63,0.88,0,0.88,0.88,1.75,0.88,1.75,0,1.75,0,0,0,0,0,0,0,6.14,0,0,0,0,0,0,6.14,0,0,0,1.75,0,0,1.75,0,0,0,0,0,0,3.51,16.67,0,2.63,8.77,1.75,2.63,0.88,1.75,3.51,-4.37,-30.36,-13.69,30.94,3,2,4,1,5,1,0,60,100,40,67.27,82.81,100,14.06,48.44,0,0,0,0,100,0,3,1,0,9,0,0,0,0,5,0,3,0,0,13,8,21,0.619047619,13,0.692307692,114,20 1117,Infirmary,Delay,Control,Baseline,0,07:30pm,3,0,0.4,"I remember Infirmary being filled with psychedelic patterns & lots of black light. I immediately noticed how neon the orange card I was holding in my hand had become. I remember they had us put on 3D glasses and walk through a corridor that made the drawings on the walls pop out. I remember there was a tunnel that resembled a hamster wheel and we had to walk through it. There were gogo dancers as well that were creepy because they were rocking slowly from side to side & I remember thinking how unsettling that was. Otherwise, this section didnt feel scary. I remember something popping out at me towards the end maybe but I cant be sure.",1,28.28,7.79,99,5.8,1.72,1.72,0,0,17.24,0,17.24,8.62,3.45,0.86,2.59,0,3.45,4.31,3.45,0.86,2.59,2.59,0,2.59,2.59,0,0,0,4.31,0,0,0,0,0,0,4.31,0,0,0,0,1.72,0,0,0,0.86,0,0,0,0,4.31,18.1,0.86,4.31,9.48,2.59,0,0.86,2.58,4.31,0.08,8.21,59.56,-67.52,3,5,5,4,1,2,27.78,66.67,100,0,33.33,0,43.31,43.31,62.2,100,18.33,0,0,40,100,4,2,0,7,3,0,0,0,0,0,0,0,1,16,1,17,0.941176471,13,0.538461538,116,25 1117,Asylum,Immediate,Control,Baseline,0,07:30pm,1,0,0.25,I honestly remember very little from this second one other than that it was the shortest one and I didnt find it scary at all. I am really struggling to come up with one specific memory.,1,33.38,1,98.75,1,2.78,0,0,2.78,25,2.78,22.22,5.56,0,0,0,5.56,8.33,5.56,5.56,0,5.56,2.78,0,2.78,2.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.56,8.33,0,2.78,5.56,0,0,0,0,5.56,5.56,23.47,30.46,-37.26,5,2,5,3,5,4,29.17,66.67,0,33.33,100,65.63,100,100,100,0,43.75,50,50,0,100,0,0,0,0,1,0,0,0,0,0,0,0,3,1,3,4,0.25,0,0,36,25 1117,Asylum,Delay,Control,Baseline,0,07:30pm,1,1,0.25,"I am wracking my brain to try and remember what happened in the Asylum section. Its name suggests that this one might have been the movie set, so I vaguely remember a directors chair & a creepy dentist. The dentists chair had a skill with maybe teeth in it? I remember being really freaked out by that. I also remember seeing a typewriter and a woman in a red dress. It was really dirty by design I think. Other than that, I dont really remember anything. ",1,33.73,6.98,76.46,3.38,3.49,0,2.33,1.16,18.6,0,18.6,6.98,0,1.16,4.65,3.49,2.33,5.81,2.33,0,2.33,1.16,0,1.16,1.16,0,0,0,4.65,1.16,0,0,0,0,1.16,3.49,0,0,1.16,0,0,0,1.16,0,0,0,0,0,0,4.65,8.14,0,0,5.81,2.33,0,0,1.16,4.65,-18.54,-1.58,-7.44,-46.59,4,5,5,2,3,1,20.83,0,75,100,0,13.33,40,0,0,100,0,10,10,10,100,0,0,0,6,1,0,0,0,0,0,0,0,4,7,4,11,0.636363636,6,1,86,25 diff --git a/datasets/frightnight_raw.csv b/datasets/frightnight_raw.csv index bc22c72..cb18190 100644 --- a/datasets/frightnight_raw.csv +++ b/datasets/frightnight_raw.csv @@ -1,10 +1,10 @@ Q1,Q2,Q3,Q4,Q5,Q6,Q7,Q8,Q9,Q10 Participant ID,Word Count for Asylum,Word Count for Ghostly Grounds,Word Count for Devils Den,Word Count for Infirmary,Experimental Group,Temporal Order Accuracy for Asylum,Temporal Order Accuracy for Ghostly Grounds,Temporal Order Accuracy for Devils Den,Temporal Order Accuracy for Infirmary 1001,69,74,27,22,Control,0.6,0.7,0.1,0.6 -1002,131,128,19,23,Role-assigned,0.8,0.6,0.5,0.6 +1002,131,128,19,23,Goal-assigned,0.8,0.6,0.5,0.6 1003,86,92,41,32,Control,0.2,0.8,0.5,0.4 -1004,80,NA,154,32,Role-assigned,0.2,0.4,0.6,0.5 +1004,80,NA,154,32,Goal-assigned,0.2,0.4,0.6,0.5 1005,124,50,144,67,Control,0.5,0.3,0.4,0.2 -1006,51,62,NA,31,Role-assigned,0.4,1,0.9,0.2 +1006,51,62,NA,31,Goal-assigned,0.4,1,0.9,0.2 1007,NA,86,139,41,Control,0.9,0.9,0.9,1 -1008,80,102,62,12,Role-assigned,1,0.2,1,0.8 \ No newline at end of file +1008,80,102,62,12,Goal-assigned,1,0.2,1,0.8 \ No newline at end of file diff --git a/datasets/frightnight_raw_assignment.csv b/datasets/frightnight_raw_assignment.csv index ce53ad1..2ecca08 100644 --- a/datasets/frightnight_raw_assignment.csv +++ b/datasets/frightnight_raw_assignment.csv @@ -1,12 +1,12 @@ Q1,Q2,Q3,Q4,Q5,Q6 Participant ID,Fear Rating for Asylum,Fear Rating for Infirmary,Fear Rating for Ghostly Grounds,Fear Rating for Devil's Den,Experimental Group 1001,2,3,5,5,Control -1002,1,4,5,5,Role-assigned +1002,1,4,5,5,Goal-assigned 1003,3,3,2,4,Control -1004,1,2,3,NA,Role-assigned +1004,1,2,3,NA,Goal-assigned 1005,3,NA,5,4,Control -1006,2,4,4,2,Role-assigned +1006,2,4,4,2,Goal-assigned 1007,4,3,2,5,Control -1008,4,NA,3,5,Role-assigned +1008,4,NA,3,5,Goal-assigned 1009,1,1,4,3,Control -1010,2,3,4,5,Role-assigned \ No newline at end of file +1010,2,3,4,5,Goal-assigned \ No newline at end of file diff --git a/index.html b/index.html index cc4faad..1febe90 100644 --- a/index.html +++ b/index.html @@ -3324,8 +3324,8 @@

Week 3 Assignment: Working Directories

Week 4: Subsetting data

-

For the purposes of this week’s workshop, let’s read in the -frightnight_practice CSV file

+

For the Week 4 workshop, let’s read in the frightnight_practice CSV +file

# For Mac
 Path <- "/Users/tuh20985/Desktop/CABLAB-R-Workshop-Series-main/datasets/"
 
@@ -3696,27 +3696,26 @@ 

Subsetting rows based on multiple conditions

What if, rather than subsetting based on one condition (i.e., rows that belong to participant 1001), we wanted to subset based on multiple conditions?

-

We can take advantage of OR (i.e., |) and AND (i.e., &) -operators.

+

We can take advantage of OR ( | ) and AND ( +& ) operators.

Below, we will be subsetting all rows where the assessment is based -on the Infirmary or Asylum haunted house segments.

+on the Infirmary OR Asylum haunted house segments.

df_multiple_conditions <- subset(df, Section == "Infirmary" | Section == "Asylum")

Here, we are telling R to subset all rows where Section is equal to -Infirmary OR Asylum. As you can tell, leveraging the OR (|) or ANd -(&) operators within the subset() function can be especially -powerful.

+Infirmary OR Asylum. As you can tell, leveraging the OR ( +| ) and AND ( & ) operators within +the subset() function can be especially powerful.

Now that we’ve talked about subsetting rows, let’s talk about subsetting columns.

Subsetting columns!

As mentioned above, we can also subset columns! We can use the same 2 -approaches (bracket notation and subset() function) to subset -columns

+approaches (bracket notation and subset function) to subset columns

Approach 1 will show how to subset specific columns that we care about using bracket notation.

-

Approach 2 will show how to subset specific columns using the same -subset() function

+

Approach 2 will show how to subset specific columns using the +subset() function.

Let’s subset the following columns: PID, Section, Stage, Recall

# Approach 1: Bracket notation
 cols <- c("PID", "Section", "Stage", "Recall") #create a vector of column names that we want to subset
@@ -3728,11 +3727,11 @@ 

Subsetting columns!

Week 4 Exercise: Subsetting data

-

1) Create a new data frame called “df2” and subset +

2) Create a new data frame called “df2” and subset the following columns from the df data frame: PID, Section, Stage, Fear.rating, and TOAccuracy.

-

2) Do this using bracket notation

-

3) Repeating this using the subset() function.

+

3) Do this using bracket notation

+

4) Repeat this using the subset() function.

'
 
 
@@ -3744,9 +3743,11 @@ 

Week 4 Exercise: Subsetting data

Missing data

What if we wanted to see which rows had missing values (e.g., NA) or -not?

-

Let’s use the is.na() function to determine which rows have missing -values in the TOAccuracy column

+not? What if, for whatever reason, some participants were not able to +complete the temporal memory accuracy assessment for the haunted house +events?

+

We can use the is.na() function to determine which rows have missing +values in the Temporal Accuracy (TOAccuracy) column

is.na(df$TOAccuracy)
##   [1] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
 ##  [13] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
@@ -3819,12 +3820,14 @@ 

Missing data

“df_complete” that only includes data that is NOT missing in the TOAccuracy column in the df data frame. By putting an exclamation point in front of the is.na() function, this is our way of telling R that we -want it to do the inverse of the is.na() function!

+want it to do the inverse of the is.na() function!

+

This idea of putting an exclamation point before the is.na() is +generalizable to many functions, not just is.na().

#is.na() function
 df_complete <- df[!is.na(df$TOAccuracy),]
-

What if, instead of removing rows that have a missing value in ONE -column, we wanted to remove any rows that have a missing value in ANY -column?

+

What if, instead of removing rows that have a missing value in +ONE column, we wanted to remove any rows that have a +missing value in ANY column?

Rather than using the is.na() function, I personally like to use the complete.cases() function for situations like this.

df_complete <- df[complete.cases(df), ]
@@ -3837,12 +3840,13 @@

Missing data

Week 4 Assignment: Subsetting data

For this week’s assignment, let’s continue focusing on subsetting in R.

-

1) Create a new data frame and subset the following +

1) Read in the frightnight_practice.csv dataset

+

2) Create a new data frame and subset the following columns from the df data frame: PID, Section, Stage, Recall, TOAccuracy

-

2) Create a subset of the data that only contains +

3) Create a subset of the data that only contains TOAccuracy scores greater than .40

-

3) Remove any rows that have a missing value in any +

4) Remove any rows that have a missing value in any column

'
 
@@ -3853,6 +3857,15 @@ 

Week 4 Assignment: Subsetting data

Week 5: If Else statements

+

For the Week 5 workshop, let’s read in the frightnight_practice CSV +file

+
# For Mac
+Path <- "/Users/tuh20985/Desktop/CABLAB-R-Workshop-Series-main/datasets/"
+
+#set working directory
+setwd(Path) #use the setwd() function to assign the "Path" object that we created earlier as the working directory
+
+df <- read.csv(file = "frightnight_practice.csv") #Load in the fright night practice csv file

If else statements

Let’s use an If Else statement to create a new column that represents @@ -3937,12 +3950,13 @@

Week 5: More advanced ifelse statements

Week 5 Assignment: If Else statements

-

1) Create a new data frame and subset the following -columns from the df data frame: PID, Section, Stage, Recall, +

1) Read in the frightnight_practice.csv file

+

2) Create a new data frame and subset the following +columns from the df data frame: PID, Section, Stage, Group, Recall, WordCount

-

2) We need to categorize Word Count during free +

3) We need to categorize Word Count during free recall in 3 groups: Long, Medium, or Short.

-

3) Use the ifelse() function to create a new column +

4) Use the ifelse() function to create a new column called “RecallLength” that meets the following criteria: Word count less than or equal to 40 is “Short”, word count in between 40 and 60 is “Medium”, and word count greater than oe equal to 60 is “Long”

@@ -3955,6 +3969,16 @@

Week 5 Assignment: If Else statements

Week 6: Intro to For Loops

+

For the Week 6 workshop, let’s read in the frightnight_practice CSV +file. Before we start working with actual data, we’ll work with some +general examples first.

+
# For Mac
+Path <- "/Users/tuh20985/Desktop/CABLAB-R-Workshop-Series-main/datasets/"
+
+#set working directory
+setwd(Path) #use the setwd() function to assign the "Path" object that we created earlier as the working directory
+
+df <- read.csv(file = "frightnight_practice.csv") #Load in the fright night practice csv file

A for-loop is one of the main control-flow constructs of the R programming language. It is used to iterate over a collection of objects, such as a vector, a list, a matrix, or a dataframe, and apply @@ -4136,7 +4160,8 @@

Pivot a data frame from wide to long

package in R can be used to pivot a data frame from a wide format to a long format.

So let’s walk through how to convert data from wide format to long -format using the new CSV file.

+format using the new CSV file. Let’s read in the frightnight_wide CSV +file.

# For Mac
 Path <- "/Users/tuh20985/Desktop/CABLAB-R-Workshop-Series-main/datasets/"
 
@@ -4235,7 +4260,8 @@ 

Week 7 Exercise: Pivoting data from wide to long and long to

Week 7 Assignment: Pivoting data from wide to long and long to wide

-

1) Read in the df_wide_assignment CSV file

+

1) Read in the frightnight_wide_assignment CSV +file

2) Use the pivot_longer function to convert the data from wide to long format

3) You should end up with a dataframe that has 4 @@ -4249,17 +4275,26 @@

Week 7 Assignment: Pivoting data from wide to long and long to

Week 8: Merging data frames

+

For the Week 8 workshop, let’s read in the frightnight_practice CSV +file.

+
# For Mac
+Path <- "/Users/tuh20985/Desktop/CABLAB-R-Workshop-Series-main/datasets/"
+
+#set working directory
+setwd(Path) #use the setwd() function to assign the "Path" object that we created earlier as the working directory
+
+df <- read.csv(file = "frightnight_practice.csv") #Load in the fright night practice csv file

Learning how to merge multiple data frames is another integral part of data cleaning.

Let’s create a data frame called “df_new” that has the following -columns from the df data frame: “PID”, “Section”, “Stage”, “Threat”, -“Group”, “Condition”, and “TOAccuracy”

+columns from the df data frame: “PID”, “Section”, “Stage”, “Group”, +“Condition”, and “TOAccuracy”

Next, let’s subset and creating two new data frames from the df_new data frame: 1 data frame that only has assessments from the Immediate study visit, and a second data frame that has all the assessments from the 1 week Delay study visit.

-
#Subset a data frame with the following columns: "PID", "Section", "Stage", "Threat", "Group", "Condition", and "TOAccuracy"
-df_new <- subset(df, select=c("PID", "Section", "Stage", "Threat", "Group", "Condition", "TOAccuracy"))
+
#Subset a data frame with the following columns: "PID", "Section", "Stage", "Group", "Condition", and "TOAccuracy"
+df_new <- subset(df, select=c("PID", "Section", "Stage", "Group", "Condition", "TOAccuracy"))
 
 #Create data frame that only has assessments from the Immediate study visit
 Immediate.df <- subset(df_new, Stage == "Immediate")
@@ -4288,7 +4323,7 @@ 

Week 8: Merging data frames

#Approach 2 -- CORRECT -data.merged <- merge(Immediate.df, Delay.df, by=c("PID", "Section", "Stage", "Threat", "Group", "Condition", "TOAccuracy", "MemoryStrength"), all.x=TRUE, all.y=TRUE)
+data.merged <- merge(Immediate.df, Delay.df, by=c("PID", "Section", "Stage", "Group", "Condition", "TOAccuracy", "MemoryStrength"), all.x=TRUE, all.y=TRUE)

As we can see, Approach 1 yielded duplicate columns for all columns except PID, because we explicitly defined that we wished to merge by the PID column in the code.

@@ -4330,19 +4365,20 @@

Week 8 Exercise: Merging data frames

Week 8 Assignment: Merging data frames

-

1) Subset the following columns from the original df -data frame: PID, Stage, Section, Recall.

-

2) Create two new data frames. One data frame will +

1) Read in the frightnight_practice CSV file.

+

2) Subset the following columns from the original df +data frame: PID, Section, Stage, Group, Condition, TOAccuracy

+

3) Create two new data frames. One data frame will contain rows that reflect touring the Infirmary or Devil’s Den haunted house sections. The other data frame will contain rows that reflect touring Asylumn or Ghostly Grounds haunted house sections.

-

3) Create a new column called fear_level in both +

4) Create a new column called fear_level in both data frames. If the Section is equal to Devil’s Den, assign a value of “scary” to the new fear_level column, else, assign a value of “not scary”. For the second data frame, if the Section is equal to Ghostly Grounds, assign a value of “scary” to the new fear_level column, else, assign a value of “not scary”.

-

4) Merge the two data frames back together and store +

5) Merge the two data frames back together and store it in a new data frame!

'
 
@@ -4356,7 +4392,7 @@ 

Week 9: Data cleaning

Up until now, we’ve learned a lot of isolated functions, but we haven’t really ‘cleaned up’ any data in the traditional sense. This workshop will focus on cleaning up data and for that, we’ll plan to use -the frightnight_raw.csv file, so let’s read it in!

+the frightnight_raw.csv file, so let’s read it in!

# For Mac
 Path <- "/Users/tuh20985/Desktop/CABLAB-R-Workshop-Series-main/datasets/"
 
@@ -4470,9 +4506,18 @@ 

Week 10: Analyzing Data w/ Categorical Independent Variables

Next, we are going to start talking about different types of statistical analyses in R!

-

Before we do that, it’s super important to recognize the different -data types that R uses.

-

Some of the common data types include: character, factor, numeric, +

Before we do that, let’s read in the +frightnight_analyses CSV file for the purposes of the +Week 10 workshop!

+
# For Mac
+Path <- "/Users/tuh20985/Desktop/CABLAB-R-Workshop-Series-main/datasets/"
+
+#set working directory
+setwd(Path) #use the setwd() function to assign the "Path" object that we created earlier as the working directory
+
+df <- read.csv(file = "frightnight_analyses.csv") #Load in the fright night practice csv file
+

It’s super important to recognize the different data types that R +uses. Some of the common data types include: character, factor, numeric, integer.

We can use the str() function to help which columns are which data types across the entire data frame.

@@ -4487,7 +4532,7 @@

Week 10: Analyzing Data w/ Categorical Independent Variables

TOAccuracy).

The same logic would apply to other columns that R treats as characters, but we actually consider to represent different categories. -These columns include: group, Threat, Condition, Time_HH. Let’s convert +These columns include: Group, Threat, Condition, Time_HH. Let’s convert those columns from character to factor.

We can also treat data types as numeric. Although R correctly treats the TOAccuracy, Authentic, Analytic, Clout, and Tone columns as numeric @@ -4496,7 +4541,8 @@

Week 10: Analyzing Data w/ Categorical Independent Variables

Data types in R

str(df) #str() function is a helpful tool for seeing the data types for a data frame
-
## 'data.frame':    705 obs. of  120 variables:
+
## 'data.frame':    705 obs. of  119 variables:
+##  $ X                     : int  1 2 3 4 5 6 7 8 9 10 ...
 ##  $ PID                   : int  1001 1001 1001 1001 1001 1001 1002 1002 1002 1002 ...
 ##  $ Section               : chr  "Infirmary" "Infirmary" "Asylum" "DevilsDen" ...
 ##  $ Stage                 : chr  "Immediate" "Delay" "Delay" "Delay" ...
@@ -4505,6 +4551,7 @@ 

Data types in R

## $ Code : int 0 0 0 0 0 0 0 0 0 0 ... ## $ Time_HH : chr "06:15pm" "06:15pm" "06:15pm" "06:15pm" ... ## $ Fear.rating : int 2 2 2 3 2 2 5 5 5 5 ... +## $ Threat : chr "Low Threat" "Low Threat" "Low Threat" "High Threat" ... ## $ Repeat : int 0 1 0 0 0 1 0 0 1 0 ... ## $ TOAccuracy : num 0.8 0.8 0.5 0.4 0.8 0.2 0.6 0.5 0.25 0.6 ... ## $ Recall : chr "Infirmary was very colorful. It started with an entry room with neon color murals. You were then given 3D glass"| __truncated__ "Infirmary was very colorful. There were pictures painted on wood canvases and the walls had trippy looking mura"| __truncated__ "Asylum had a woman that was on a couch in a room with a director chair. It was 1920s ish themed. There was a pe"| __truncated__ "The Devil's Den section was very jumpy (trying to scare you with loud nosies). There was one point we went outs"| __truncated__ ... @@ -4594,8 +4641,6 @@

Data types in R

## $ CogTension_4 : num 0 100 0 96 50 50 50 0 0 0 ... ## $ CogTension_5 : num 100 0 100 100 50 50 100 100 0 100 ... ## $ Event.Int : int 1 1 1 6 4 6 3 4 2 3 ... -## $ Place.Int : int 2 2 1 1 3 2 1 0 0 0 ... -## $ Time.Int : int 0 0 0 0 0 0 0 0 0 0 ... ## [list output truncated]
#Convert Section, Group, Threat, and Condition, and Time_HH columns into Factor columns
 df$Section <- as.factor(df$Section)
@@ -4650,30 +4695,30 @@ 

T-Tests!

outcome variable would be Test Score. Using a T-Test, we could determine whether studying from the right materials produces higher test scores. Within the context of our data, we could ask a question like whether -participants assigned to an Experimental condition (e.g., Role-assigned) +participants assigned to an Experimental condition (e.g., goal-assigned) or Control condition (e.g., Control) demonstrate significant differences in temporal memory accuracy?

-

QUESTION: Do role-assigned and control participants +

QUESTION: Do goal-assigned and control participants differ significantly in their temporal memory accuracy?

-

HYPOTHESIS: “On average, role-assigned participants +

HYPOTHESIS: “On average, goal-assigned participants who were assigned to a specific goal while touring the haunted house segment will have better temporal memory accuracy compared to control participants”

RELEVANT VARIABLES: Dependent: TOAccuracy (numeric) Independent: Group (Factor)

ANALYSIS: Two-Sample T-Test

-
model1 <- t.test(x = df_analyses$TOAccuracy[df_analyses$Group == "Role-assignment"],
+
model1 <- t.test(x = df_analyses$TOAccuracy[df_analyses$Group == "Goal-assigned"],
                 y = df_analyses$TOAccuracy[df_analyses$Group == "Control"],
                 paired = FALSE,
                 alternative = "two.sided")

Okay, so let’s run the actual t-test. We’ll need to use conditional statements again to specify our variables. What we are comparing here -are the mean values of temporal memory accuracy for role-assigned and +are the mean values of temporal memory accuracy for goal-assigned and control participants. As such, we are going to specify we want to see -temporal memory accuracy when Group == “Role-assignment” and when Group -== “Control. We next have an argument which asks us whether this study -is a within-subjects or a between-subjects design. This question is -between-subjects, since each participant is either role-assigned or +temporal memory accuracy when Group == “Goal-assigned” and when Group == +“Control. We next have an argument which asks us whether this study is a +within-subjects or a between-subjects design. This question is +between-subjects, since each participant is either goal-assigned or control for this study, so we mark that as FALSE. Lastly, R is asking us to define our alternative hypothesis, which is a little beyond the scope of this review, so you will have to take my word that “two.sided” is the @@ -4697,7 +4742,7 @@

T-Tests!

## Effect sizes were labelled following Cohen's (1988) recommendations.
 ## 
 ## The Welch Two Sample t-test testing the difference between
-## df_analyses$TOAccuracy[df_analyses$Group == "Role-assignment"] and
+## df_analyses$TOAccuracy[df_analyses$Group == "Goal-assigned"] and
 ## df_analyses$TOAccuracy[df_analyses$Group == "Control"] (mean of x = 0.55, mean
 ## of y = 0.49) suggests that the effect is positive, statistically not
 ## significant, and small (difference = 0.06, 95% CI [-0.02, 0.14], t(110.01) =
@@ -4730,7 +4775,7 @@ 

ANOVAs

standard way in which we specify most statistical models in R, whether for regression, ANOVA, hierarchical modeling etc.

Due to the study design, the only time participants ever had a -Role-assignment was in the last two segments (DevilsDen and +Goal-assigned was in the last two segments (DevilsDen and GhostlyGrounds). As a result, for these analyses, we’ll have to subset rows that reflect either Devils Den or Ghostly Grounds.

model2 <- aov(TOAccuracy ~ Condition, data = df_analyses) #create ANOVA model and store in an object called m2
@@ -4822,16 +4867,23 @@

Week 10 Exercise: Analyzing Data w/ Categorical Independent

Week 10 Assignment: Analyzing Data w/ Categorical Independent Variables

-

I’m curious whether differences in Group (Role-assignment versus +

I’m curious whether differences in Group (Goal-assigned versus Control) is associated with differences in how Authentically someone recalls their memory.

-

1) Run a t-test to test whether differences in Group -(Role-assignment versus Control) is associated with differences in how +

1) Read in the frightnight_analyses CSV file.

+

2) Subset a new data frame with the following +columns:: PID, Section, Stage, Threat, Group, Condition, Recall, +Time_HH, Fear.rating, TOAccuracy, Analytic, Authentic, Clout, Tone

+

3 Subset rows that reflect assessments for Ghostly +Grounds during the Delay study visit.

+

4 Remove rows with a missing value in ANY column

+

5) Run a t-test to test whether differences in Group +(Goal-assigned versus Control) is associated with differences in how Authentically someone recalls their memory.

-

2) Store the t-test in a model called “model2”

-

3) Print model 2 and try to interpret the output +

6) Store the t-test in a model called “model2”

+

7) Print model 2 and try to interpret the output yourself.

-

4) Run the report() function to try to see whether +

8) Run the report() function to try to see whether your interpretation matches.

'
 
@@ -4852,6 +4904,31 @@ 

Week 11: Analyzing Data w/ Continuous Independent Variables

regression. We won’t get too much into the theory, but we’ll work through some useful tools and syntax to get you prepared to use R on your own.

+

For the Week 11 workshop, let’s read in the +frightnight_analyses CSV file!

+
# For Mac
+Path <- "/Users/tuh20985/Desktop/CABLAB-R-Workshop-Series-main/datasets/"
+
+#set working directory
+setwd(Path) #use the setwd() function to assign the "Path" object that we created earlier as the working directory
+
+df <- read.csv(file = "frightnight_analyses.csv") #Load in the fright night practice csv file
+
+

Create data frame for analyses

+

And just like we did last week, let’s subset a data frame with the +columns that we want to focus on for our Week 11 analyses.

+
#Subset the following columns: PID, Section, Stage, Threat, Group, Condition, Recall, Time_HH, Fear.rating, TOAccuracy, Analytic, Authentic, Clout, Tone
+df_analyses <- subset(df, select=c(PID, Section, Stage, Threat, Group, Condition, Recall, Time_HH, Fear.rating, TOAccuracy, Analytic, Authentic, Clout, Tone))
+
+#Subset only the One-Week Delay
+df_analyses <- subset(df_analyses, Stage == "Delay")
+
+#Subset only rows for Ghostly Grounds
+df_analyses <- subset(df_analyses, Section == "GhostlyGrounds")
+
+#Let's also remove rows with NA in any column of data frame
+df_analyses <- df_analyses[complete.cases(df_analyses), ]
+

Bivariate Linear Regression

A bivariate linear regression can be used when both the predictor @@ -5045,13 +5122,25 @@

Linear Mixed Effects Models

RELEVANT VARIABLES: Dependent: TOAccuracy (numeric) Independent: Threat (factor)

ANALYSIS: Mixed effects regression

+
+
+

Create data frame for analyses

+

For this analysis, let’s create a new data frame that subsets the +following columns from the original df data frame:

#Create a new dataframe that includes the following columns: PID, Section, Stage, Threat, Group, Condition, Recall, Time_HH, Fear.rating, TOAccuracy, Analytic, Authentic, Clout, Tone
 df_mixed <- subset(df, select=c(PID, Section, Stage, Threat, Group, Condition, Recall, Time_HH, Fear.rating, TOAccuracy, Analytic, Authentic, Clout, Tone))
 
 #Remove rows that have a missing value in any column
-df_mixed <- df_mixed[complete.cases(df_mixed), ]
-
-#Baseline model: Dependent variable and random effect
+df_mixed <- df_mixed[complete.cases(df_mixed), ]
+

Let’s establish a baseline model includes our dependent variable +(Temporal Memory Accuracy scores) and the random effect (1|PID). Let’s +also establish a testing model that includes our dependent variable +(Temporal Memory Accuracy scores), a fixed effect (Threat), and the +random effect (1|PID). In this way, by building two models that differ +by one variable (Threat), we can use the anova() function to determine +whether the effect of Threat on Temporal Memory Accuracy scores is +significant.

+
#Baseline model: Dependent variable and random effect
 m1 <- lmer(TOAccuracy ~ (1|PID), data = df_mixed)
 
 #Testing model: Dependent variable, fixed effect(s) and random effect
@@ -5065,14 +5154,6 @@ 

Linear Mixed Effects Models

{"columns":[{"label":[""],"name":["_rn_"],"type":[""],"align":["left"]},{"label":["npar"],"name":[1],"type":["dbl"],"align":["right"]},{"label":["AIC"],"name":[2],"type":["dbl"],"align":["right"]},{"label":["BIC"],"name":[3],"type":["dbl"],"align":["right"]},{"label":["logLik"],"name":[4],"type":["dbl"],"align":["right"]},{"label":["deviance"],"name":[5],"type":["dbl"],"align":["right"]},{"label":["Chisq"],"name":[6],"type":["dbl"],"align":["right"]},{"label":["Df"],"name":[7],"type":["dbl"],"align":["right"]},{"label":["Pr(>Chisq)"],"name":[8],"type":["dbl"],"align":["right"]}],"data":[{"1":"3","2":"-83.99152","3":"-70.38144","4":"44.99576","5":"-89.99152","6":"NA","7":"NA","8":"NA","_rn_":"m1"},{"1":"4","2":"-109.74904","3":"-91.60228","4":"58.87452","5":"-117.74904","6":"27.75753","7":"1","8":"1.375122e-07","_rn_":"m2"}],"options":{"columns":{"min":{},"max":[10]},"rows":{"min":[10],"max":[10]},"pages":{}}}
-

In this example, we established a baseline model that included our -dependent variable (Temporal Memory Accuracy scores) and the random -effect (1|PID). We also established a testing model that included our -dependent variable (Temporal Memory Accuracy scores), a fixed effect -(Threat), and the random effect (1|PID). In this way, by building two -models that differ by one variable (Threat), we can use the anova() -function to determine whether the effect of Threat on Temporal Memory -Accuracy scores is significant.

It also may be helpful to recognize that in this example, Threat is the fixed effect, whereas (1|PID) is a random effect that assumes different random intercepts for each subject. We also see that our @@ -5133,7 +5214,7 @@

Week 11 Exercise: Analyzing Data w/ Continuous Independent

Week 11 Assignment: Analyzing Data w/ Continuous Independent Variables

-

As part of the week 10 R assignment, let’s explore a new research +

As part of the Week 11 R assignment, let’s explore a new research question.

QUESTION: Does temporal memory accuracy OR threat interact predict differences in how negatively someone communicates @@ -5145,18 +5226,21 @@

Week 11 Assignment: Analyzing Data w/ Continuous Independent

RELEVANT VARIABLES: Dependent: Tone (numeric) Independent: TOAccuracy (numeric) Independent: Threat (factor)

ANALYSIS: Mixed effects regression

-

1) Create a new dataframe that includes the +

1) Read in the frightnight_analyses CSV file

+

2) Create a new dataframe that includes the following columns: PID, Section, Stage, Threat, Group, Condition, Recall, Time_HH, Fear.rating, TOAccuracy, Analytic, Authentic, Clout, Tone

-

2) Run a linear mixed effects model that assesses +

3) Remove rows that have a missing value in any +column

+

4) Run a linear mixed effects model that assesses the relationship between Tone and Temporal Memory Accuracy and Threat. Make sure to include a random effect that accounts for individual differences.

-

3) Store the model in a data object called “m5”

-

4) Print the summary of the model and try to +

5) Store the model in a data object called “m5”

+

6) Print the summary of the model and try to interpret the model yourself

-

5) Use the report() function to print out an +

7) Use the report() function to print out an interpretation of the model and see if your interpretation matches

'
 
@@ -5167,8 +5251,19 @@ 

Week 11 Assignment: Analyzing Data w/ Continuous Independent

Week 12: Visualizing data: Intro to ggplot

-

For the purposes of this plotting workshop, let’s create a new data -frame.

+

For the Week 11 workshop, let’s read in the frightnight_analyses CSV +file!

+
# For Mac
+Path <- "/Users/tuh20985/Desktop/CABLAB-R-Workshop-Series-main/datasets/"
+
+#set working directory
+setwd(Path) #use the setwd() function to assign the "Path" object that we created earlier as the working directory
+
+df <- read.csv(file = "frightnight_analyses.csv") #Load in the fright night practice csv file
+

Before we start making any graphs, let’s create a new data frame with +the following columns from the original df dataframe: PID, Section, +Stage, Threat, Group, Condition, Recall, Time_HH, Fear.rating, +TOAccuracy, Analytic, Authentic, Clout, Tone

#Create a new dataframe that includes the following columns: PID, Section, Stage, Threat, Group, Condition, Recall, Time_HH, Fear.rating, TOAccuracy, Analytic, Authentic, Clout, Tone
 df_plot <- subset(df, select=c(PID, Section, Stage, Threat, Group, Condition, Recall, Time_HH, Fear.rating, TOAccuracy, Analytic, Authentic, Clout, Tone))
 
@@ -5176,29 +5271,32 @@ 

Week 12: Visualizing data: Intro to ggplot

df_plot <- df_plot[complete.cases(df_plot), ]

Visualizing data! Navigating ggplot2

+

Next we’ll start talking about how to make graphs in R!

ggplot2 is a popular plotting package in R that makes it fairly easy -to create complex plots from data in a data frame!

+to create complex plots from data in a data frame.

ggplot2 refers to the name of the package itself, whereas we use the function ggplot() to generate the plots. We’re going to start off with building a very simple plot, and then we will add in some more lines to organize a plot like you would for a manuscript/publication!

Let’s revisit our t-test, where we were interested in whether there -were differences in temporal memory accuracy between role-assigned and -control participants.

+were differences in Temporal Memory Accuracy between Goal-assigned and +Control participants.

ggplot(data = df_plot, aes(x = Group, y = TOAccuracy)) + #Plot the variables we care about
           geom_bar(stat="identity") #Generate a bar plot
-

+

Here, we see that we’re plotting how TOAccuracy varies according to -Group (Control versus Role-assignment). geom_bar(stat = “identity”) is a -function within ggplot that is used in order to create bar plots.

-

Now that we know how to plot data, let’s try and clean the plot -up.

+Group (Control versus Goal-assigned).

+

geom_bar(stat = “identity”) is a function within ggplot that is used +in order to create bar plots.

+

Now that we know how to plot data, let’s try and clean the plot up. +Next, we’re going to apply three more arguments to ggplot that will add +titles, axis labels, and legend labels.

ggplot(data = df_plot, aes(x = Group, y = TOAccuracy, fill = Group)) + #Using fill = Group allows us to color-code the plot according to Group
           geom_bar(stat="identity") + #Generate a bar plot
           labs(x = 'Experimental Group', y = 'Temporal Memory Accuracy', title = "Temporal Memory Accuracy by Group") + #Assign axis titles for the x- and y-axis
-          scale_x_discrete(labels = c("Control", "Role-assigned")) + #Change the x-axis labels
-          scale_fill_discrete("Experimental Group", labels = c("Control", "Role-assigned")) #Change the labels for the legend
-

+ scale_x_discrete(labels = c("Control", "goal-assigned")) + #Change the x-axis labels + scale_fill_discrete("Experimental Group", labels = c("Control", "goal-assigned")) #Change the labels for the legend

+

It’s important to note that in the previous graphs, we have conflated the Temporal Memory Accuracy scores during the Immediate and One-Week Delay study visits. In other words, the bars that reflect the Temporal @@ -5212,10 +5310,10 @@

Visualizing data! Navigating ggplot2

ggplot(data = df_plot, aes(x = Group, y = TOAccuracy, fill = Group)) + #Using fill = Group allows us to color-code the plot according to Group
           geom_bar(stat="identity") + #Generate a bar plot
           labs(x = 'Experimental Group', y = 'Temporal Memory Accuracy', title = "Temporal Memory Accuracy by Group") + #Define a plot title, an x-axis title, and a y-axis title
-          scale_x_discrete(labels = c("Control", "Role-assigned")) + #Change the x-axis labels
-          scale_fill_discrete("Experimental Group", labels = c("Control", "Role-assigned")) + #Change the labels for the legend
+          scale_x_discrete(labels = c("Control", "goal-assigned")) + #Change the x-axis labels
+          scale_fill_discrete("Experimental Group", labels = c("Control", "goal-assigned")) + #Change the labels for the legend
           facet_wrap(~Stage) #Split the graphs based on the Stage variable
-

+

Week 12 Exercise: Visualizing data: Intro to ggplot

@@ -5239,9 +5337,9 @@

Week 12 Exercise: Visualizing data: Intro to ggplot

bars in the bar plot, and changing the size and color of the text.

ggplot(data = df_plot, aes(x = Group, y = TOAccuracy, fill = Group)) + #Using fill = Group allows us to color-code the plot according to Group
           geom_bar(stat="identity") + #Generate a bar plot
-          scale_fill_manual(values = c("#E69F00", "#56B4E9"), name = "Experimental Group", labels = c("Control", "Role-assigned")) + #Customize the colors of the bars in the bar plot, add a legend title, and change the legend labels
+          scale_fill_manual(values = c("#E69F00", "#56B4E9"), name = "Experimental Group", labels = c("Control", "goal-assigned")) + #Customize the colors of the bars in the bar plot, add a legend title, and change the legend labels
           labs(x = 'Experimental Group', y = 'Temporal Memory Accuracy', title = "Temporal Memory Accuracy by Group") + #Assign axis titles for the x- and y-axis
-          scale_x_discrete(labels = c("Control", "Role-assigned")) + #Change the x-axis labels
+          scale_x_discrete(labels = c("Control", "goal-assigned")) + #Change the x-axis labels
 theme_classic() + ## We can use a theme customize the background of the plot. theme_classic makes the background white and removes gridlines
 theme(
 plot.title = element_text(size=15, face = "bold", color="red"), #customize plot title
@@ -5252,7 +5350,7 @@ 

Week 12 Exercise: Visualizing data: Intro to ggplot

legend.title = element_text(size = 13, face = "italic", color = "#ED7557"), #Customize legend title legend.text = element_text(size = 13, face = "bold", color = "#ABA7A6") #Customize legend text labels )
-

+

As you can see, there is a lot we can adjust when it comes to text and graphics using ggplot 2 and it’s fairly straightforward once you get the hang of it. When it comes to colors in R, you can either use 6-digit @@ -5271,11 +5369,11 @@

Plotting the mean and standard deviation in R

So far, our y-axis has reflected an aggregate score for temporal memory accuracy between groups, rather than the average score between groups. For example, we’re not necessarily interested in what the -combined score is across Control and Role-assigned groups, but rather +combined score is across Control and goal-assigned groups, but rather whether there are differences in average temporal memory accuracy scores.

#Research Question: On avearge, are there differences in Temporal Memory Accuracy by Group?
-model1 <- t.test(x = df_plot$TOAccuracy[df_plot$Group == "Role-assignment"],
+model1 <- t.test(x = df_plot$TOAccuracy[df_plot$Group == "Goal-assigned"],
                 y = df_plot$TOAccuracy[df_plot$Group == "Control"],
                 paired = FALSE,
                 alternative = "two.sided")
@@ -5286,7 +5384,7 @@ 

Plotting the mean and standard deviation in R

## Effect sizes were labelled following Cohen's (1988) recommendations.
 ## 
 ## The Welch Two Sample t-test testing the difference between
-## df_plot$TOAccuracy[df_plot$Group == "Role-assignment"] and
+## df_plot$TOAccuracy[df_plot$Group == "Goal-assigned"] and
 ## df_plot$TOAccuracy[df_plot$Group == "Control"] (mean of x = 0.54, mean of y =
 ## 0.55) suggests that the effect is negative, statistically not significant, and
 ## very small (difference = -0.01, 95% CI [-0.05, 0.02], t(645.74) = -0.83, p =
@@ -5295,11 +5393,11 @@ 

Plotting the mean and standard deviation in R

ggplot(data = df_plot, aes(x = Group, y = TOAccuracy, fill = Group)) + #Using fill = Group allows us to color-code the plot according to Group geom_bar(stat='summary', fun='mean') + #plot the mean of temporal memory accuracy labs(x = 'Experimental Group', y = 'Temporal Memory Accuracy', title = "Average Temporal Memory Accuracy by Group") #Assign axis titles for the x- and y-axis
-

+

By plotting averages in Temporal Memory Accuracy, this is the correct visualization of the t-test that we ran earlier assessing whether there were differences in average temporal memory accuracy between -Role-assigned and Control participants.

+goal-assigned and Control participants.

As the graph shows, this difference is not in large at all, and the t-test affirms that the difference is statistically not significant (p = .409).

@@ -5364,7 +5462,7 @@

Adding standard deviation error bars

df_summarized
#The function geom_errorbar() can be used to produce a bar graph with error bars.
@@ -5374,7 +5472,7 @@ 

Adding standard deviation error bars

geom_bar(stat="identity", position=position_dodge()) + #generate a bar plot geom_errorbar(aes(ymin=TOAccuracy-sd, ymax=TOAccuracy+sd), width=.2, #use the geom_errorbar() function to plot the standard deviation error bars position=position_dodge(.9))
-

+

Here, we were able to apply the data_summary() function (which someone else kindly created so that it works with any dataset to produce the mean and SD of variables that you are interested in) and we used the @@ -5446,7 +5544,7 @@

Adding standard error error bars

df_summarize.se

# Error bars represent standard error of the mean
@@ -5455,7 +5553,7 @@ 

Adding standard error error bars

geom_errorbar(aes(ymin=TOAccuracy-se, ymax=TOAccuracy+se), #Plot standard error bars width=.2, # Width of the error bars position=position_dodge(.9))
-

+

Violin plots!

@@ -5478,7 +5576,7 @@

Violin plots!

#Add in the jittered points that reflect each individual participant p + geom_jitter(shape=16, position=position_jitter(0.2))
-

+

While we didn’t add too many customization to this plot, hopefully you can see why some people prefer to store plots in data objects and add in their customizations one line a time, rather than all at @@ -5497,26 +5595,32 @@

Week 12 Assignment: Visualizing data: Intro to ggplot

Let’s create a violin plot that plots Temporal Memory Accuracy Scores by Condition! Let’s customize this plot to meet the following criteria:

-

1) Plot Temporal Memory Accuracy Score by +

1) Read in the frightnight_analyses CSV file.

+

2) Create a new data frame with the following +columns from the original df dataframe: PID, Section, Stage, Threat, +Group, Condition, TOAccuracy

+

3) Remove rows that have a missing value in any +column

+

3) Plot Temporal Memory Accuracy Score by Condition

-

2) Use the geom_violin() and geom_jiter() arguments +

4) Use the geom_violin() and geom_jiter() arguments to generate a violin plot

-

3) Update the colors of each violin to reflect the +

5) Update the colors of each violin to reflect the following colors: “#555599”, “#66BBBB”, “#DD4444”

-

4) Change the title of the legend to “Experimental +

6) Change the title of the legend to “Experimental Condition”

-

5) Change the legend labels to: “Baseline +

7) Change the legend labels to: “Baseline Condition”, “Share Condition”, “Test Condition”

-

6) Apply the theme_minimal() background to the +

8) Apply the theme_minimal() background to the plot

-

7) Change the plot title to “Temporal Memory +

9) Change the plot title to “Temporal Memory Accuracy by Condition”, the x-axis title to “Experimental Condition”, and the y-axis title to “Temporal Memory Accuracy”.

-

8) Change the x-axis text labels to “1) Baseline”, +

10) Change the x-axis text labels to “1) Baseline”, “2) Share”, “3) Test”

-

9) Change the plot title, x-axis title, y-axis +

11) Change the plot title, x-axis title, y-axis title, x-axis text, y-axis text font size to 17

-

10) Change the legend title and legend text font +

12) Change the legend title and legend text font size to 15

'