The public webpage to this project can be found at https://imhkchow.github.io/

Screen Shot 2022-12-15 at 9.18.14 PM.png

Bigfoot Sightings Across North America

Grace Graves and Isabelle Chow

Background and Plan

This team will be investigating data sets related to Bigfoot (Sasquatch, Yeti, Yowie, Skunk ape, etc) a bipedal ape-like creature said to inhabit the forests of North America and potentially similar environments around the world. Tales of creatures similar to Bigfoot have been woven into the mythologies of indigineous people and detailed reports and investigations of its existence have occurred since the early 1700s. More information about the history of Bigfoot can be found here. Although the majority of mainstream scientests have historically declared the existence of Bigfoot a hoax, many sightings still occur to this day, and the existence of Bigfoot is a widely publicized and debated topic in pop culture and cryptozoology. In this project, the team wanted to examine this phenomenon by exploring data related to the location, time of year and day, classification, and context of the sighting as well as weather data considering temperature.

In this project, the team will consider the following questions:

  • What is the distribution of Bigfoot sightings across North America? Where are the sightings concentrated?
  • Was there a time (year or time of year) when Bigfoot was more active and what factors affected that time?
  • What were the weather conditions of the incidences and is there a correlation between certain weather conditions and a higher amount of sightings?
  • Do descriptions of the sightings indicate any patterns in how or where more bigfoots are found?

In this project, the team would like to analyze the sightings dataset by examining trends in the time and kind of sighting. We will also find dates of release of certain Bigfoot related media and see if this has a relationship with the sighting frequency as well. We will use a temperature dataset to see if there is a relationship between weather and sightings. This will continue to help us answer our questions on location and distribution of Sasquatch across North America, giving us an overall more holistic and detailed understanding of this mysterious creature, and look for patterns that might point us to optimal bigfoot sighting settings.

In [ ]:
from google.colab import drive
drive.mount('/content/drive')
%cd /content/drive/MyDrive/BigfootDataScienceProject/
Drive already mounted at /content/drive; to attempt to forcibly remount, call drive.mount("/content/drive", force_remount=True).
/content/drive/.shortcut-targets-by-id/1WVWh0s9coKx-LzaErUE6N7YbcIg9B1aI/BigfootDataScienceProject
In [ ]:
# Import all the libraries we will be using in the project

import pandas as pd
import numpy as np

! pip install geopandas
import geopandas as gpd
from shapely.geometry import Point
from geopandas import GeoDataFrame
! pip install geoplot
import geoplot as gplt

import plotly.express as px
import matplotlib.pyplot as plt
! pip install seaborn
import seaborn as sns
Looking in indexes: https://pypi.org/simple, https://us-python.pkg.dev/colab-wheels/public/simple/
Requirement already satisfied: geopandas in /usr/local/lib/python3.8/dist-packages (0.12.2)
Requirement already satisfied: pandas>=1.0.0 in /usr/local/lib/python3.8/dist-packages (from geopandas) (1.3.5)
Requirement already satisfied: fiona>=1.8 in /usr/local/lib/python3.8/dist-packages (from geopandas) (1.8.22)
Requirement already satisfied: packaging in /usr/local/lib/python3.8/dist-packages (from geopandas) (21.3)
Requirement already satisfied: pyproj>=2.6.1.post1 in /usr/local/lib/python3.8/dist-packages (from geopandas) (3.4.1)
Requirement already satisfied: shapely>=1.7 in /usr/local/lib/python3.8/dist-packages (from geopandas) (1.8.5.post1)
Requirement already satisfied: munch in /usr/local/lib/python3.8/dist-packages (from fiona>=1.8->geopandas) (2.5.0)
Requirement already satisfied: six>=1.7 in /usr/local/lib/python3.8/dist-packages (from fiona>=1.8->geopandas) (1.15.0)
Requirement already satisfied: click>=4.0 in /usr/local/lib/python3.8/dist-packages (from fiona>=1.8->geopandas) (7.1.2)
Requirement already satisfied: attrs>=17 in /usr/local/lib/python3.8/dist-packages (from fiona>=1.8->geopandas) (22.1.0)
Requirement already satisfied: certifi in /usr/local/lib/python3.8/dist-packages (from fiona>=1.8->geopandas) (2022.9.24)
Requirement already satisfied: click-plugins>=1.0 in /usr/local/lib/python3.8/dist-packages (from fiona>=1.8->geopandas) (1.1.1)
Requirement already satisfied: setuptools in /usr/local/lib/python3.8/dist-packages (from fiona>=1.8->geopandas) (57.4.0)
Requirement already satisfied: cligj>=0.5 in /usr/local/lib/python3.8/dist-packages (from fiona>=1.8->geopandas) (0.7.2)
Requirement already satisfied: pytz>=2017.3 in /usr/local/lib/python3.8/dist-packages (from pandas>=1.0.0->geopandas) (2022.6)
Requirement already satisfied: numpy>=1.17.3 in /usr/local/lib/python3.8/dist-packages (from pandas>=1.0.0->geopandas) (1.21.6)
Requirement already satisfied: python-dateutil>=2.7.3 in /usr/local/lib/python3.8/dist-packages (from pandas>=1.0.0->geopandas) (2.8.2)
Requirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /usr/local/lib/python3.8/dist-packages (from packaging->geopandas) (3.0.9)
Looking in indexes: https://pypi.org/simple, https://us-python.pkg.dev/colab-wheels/public/simple/
Requirement already satisfied: geoplot in /usr/local/lib/python3.8/dist-packages (0.5.1)
Requirement already satisfied: cartopy in /usr/local/lib/python3.8/dist-packages (from geoplot) (0.19.0.post1)
Requirement already satisfied: contextily>=1.0.0 in /usr/local/lib/python3.8/dist-packages (from geoplot) (1.2.0)
Requirement already satisfied: seaborn in /usr/local/lib/python3.8/dist-packages (from geoplot) (0.11.2)
Requirement already satisfied: mapclassify>=2.1 in /usr/local/lib/python3.8/dist-packages (from geoplot) (2.4.3)
Requirement already satisfied: matplotlib>=3.1.2 in /usr/local/lib/python3.8/dist-packages (from geoplot) (3.2.2)
Requirement already satisfied: geopandas>=0.9.0 in /usr/local/lib/python3.8/dist-packages (from geoplot) (0.12.2)
Requirement already satisfied: pandas in /usr/local/lib/python3.8/dist-packages (from geoplot) (1.3.5)
Requirement already satisfied: geopy in /usr/local/lib/python3.8/dist-packages (from contextily>=1.0.0->geoplot) (1.17.0)
Requirement already satisfied: joblib in /usr/local/lib/python3.8/dist-packages (from contextily>=1.0.0->geoplot) (1.2.0)
Requirement already satisfied: rasterio in /usr/local/lib/python3.8/dist-packages (from contextily>=1.0.0->geoplot) (1.3.4)
Requirement already satisfied: requests in /usr/local/lib/python3.8/dist-packages (from contextily>=1.0.0->geoplot) (2.23.0)
Requirement already satisfied: pillow in /usr/local/lib/python3.8/dist-packages (from contextily>=1.0.0->geoplot) (7.1.2)
Requirement already satisfied: mercantile in /usr/local/lib/python3.8/dist-packages (from contextily>=1.0.0->geoplot) (1.2.1)
Requirement already satisfied: xyzservices in /usr/local/lib/python3.8/dist-packages (from contextily>=1.0.0->geoplot) (2022.9.0)
Requirement already satisfied: pyproj>=2.6.1.post1 in /usr/local/lib/python3.8/dist-packages (from geopandas>=0.9.0->geoplot) (3.4.1)
Requirement already satisfied: packaging in /usr/local/lib/python3.8/dist-packages (from geopandas>=0.9.0->geoplot) (21.3)
Requirement already satisfied: fiona>=1.8 in /usr/local/lib/python3.8/dist-packages (from geopandas>=0.9.0->geoplot) (1.8.22)
Requirement already satisfied: shapely>=1.7 in /usr/local/lib/python3.8/dist-packages (from geopandas>=0.9.0->geoplot) (1.8.5.post1)
Requirement already satisfied: setuptools in /usr/local/lib/python3.8/dist-packages (from fiona>=1.8->geopandas>=0.9.0->geoplot) (57.4.0)
Requirement already satisfied: six>=1.7 in /usr/local/lib/python3.8/dist-packages (from fiona>=1.8->geopandas>=0.9.0->geoplot) (1.15.0)
Requirement already satisfied: click-plugins>=1.0 in /usr/local/lib/python3.8/dist-packages (from fiona>=1.8->geopandas>=0.9.0->geoplot) (1.1.1)
Requirement already satisfied: munch in /usr/local/lib/python3.8/dist-packages (from fiona>=1.8->geopandas>=0.9.0->geoplot) (2.5.0)
Requirement already satisfied: attrs>=17 in /usr/local/lib/python3.8/dist-packages (from fiona>=1.8->geopandas>=0.9.0->geoplot) (22.1.0)
Requirement already satisfied: certifi in /usr/local/lib/python3.8/dist-packages (from fiona>=1.8->geopandas>=0.9.0->geoplot) (2022.9.24)
Requirement already satisfied: click>=4.0 in /usr/local/lib/python3.8/dist-packages (from fiona>=1.8->geopandas>=0.9.0->geoplot) (7.1.2)
Requirement already satisfied: cligj>=0.5 in /usr/local/lib/python3.8/dist-packages (from fiona>=1.8->geopandas>=0.9.0->geoplot) (0.7.2)
Requirement already satisfied: scipy>=1.0 in /usr/local/lib/python3.8/dist-packages (from mapclassify>=2.1->geoplot) (1.7.3)
Requirement already satisfied: scikit-learn in /usr/local/lib/python3.8/dist-packages (from mapclassify>=2.1->geoplot) (1.0.2)
Requirement already satisfied: networkx in /usr/local/lib/python3.8/dist-packages (from mapclassify>=2.1->geoplot) (2.8.8)
Requirement already satisfied: numpy>=1.3 in /usr/local/lib/python3.8/dist-packages (from mapclassify>=2.1->geoplot) (1.21.6)
Requirement already satisfied: python-dateutil>=2.1 in /usr/local/lib/python3.8/dist-packages (from matplotlib>=3.1.2->geoplot) (2.8.2)
Requirement already satisfied: cycler>=0.10 in /usr/local/lib/python3.8/dist-packages (from matplotlib>=3.1.2->geoplot) (0.11.0)
Requirement already satisfied: kiwisolver>=1.0.1 in /usr/local/lib/python3.8/dist-packages (from matplotlib>=3.1.2->geoplot) (1.4.4)
Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.1 in /usr/local/lib/python3.8/dist-packages (from matplotlib>=3.1.2->geoplot) (3.0.9)
Requirement already satisfied: pytz>=2017.3 in /usr/local/lib/python3.8/dist-packages (from pandas->geoplot) (2022.6)
Requirement already satisfied: pyshp>=2 in /usr/local/lib/python3.8/dist-packages (from cartopy->geoplot) (2.3.1)
Requirement already satisfied: geographiclib<2,>=1.49 in /usr/local/lib/python3.8/dist-packages (from geopy->contextily>=1.0.0->geoplot) (1.52)
Requirement already satisfied: snuggs>=1.4.1 in /usr/local/lib/python3.8/dist-packages (from rasterio->contextily>=1.0.0->geoplot) (1.4.7)
Requirement already satisfied: affine in /usr/local/lib/python3.8/dist-packages (from rasterio->contextily>=1.0.0->geoplot) (2.3.1)
Requirement already satisfied: chardet<4,>=3.0.2 in /usr/local/lib/python3.8/dist-packages (from requests->contextily>=1.0.0->geoplot) (3.0.4)
Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.8/dist-packages (from requests->contextily>=1.0.0->geoplot) (2.10)
Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.8/dist-packages (from requests->contextily>=1.0.0->geoplot) (1.24.3)
Requirement already satisfied: threadpoolctl>=2.0.0 in /usr/local/lib/python3.8/dist-packages (from scikit-learn->mapclassify>=2.1->geoplot) (3.1.0)
Looking in indexes: https://pypi.org/simple, https://us-python.pkg.dev/colab-wheels/public/simple/
Requirement already satisfied: seaborn in /usr/local/lib/python3.8/dist-packages (0.11.2)
Requirement already satisfied: scipy>=1.0 in /usr/local/lib/python3.8/dist-packages (from seaborn) (1.7.3)
Requirement already satisfied: numpy>=1.15 in /usr/local/lib/python3.8/dist-packages (from seaborn) (1.21.6)
Requirement already satisfied: matplotlib>=2.2 in /usr/local/lib/python3.8/dist-packages (from seaborn) (3.2.2)
Requirement already satisfied: pandas>=0.23 in /usr/local/lib/python3.8/dist-packages (from seaborn) (1.3.5)
Requirement already satisfied: kiwisolver>=1.0.1 in /usr/local/lib/python3.8/dist-packages (from matplotlib>=2.2->seaborn) (1.4.4)
Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.1 in /usr/local/lib/python3.8/dist-packages (from matplotlib>=2.2->seaborn) (3.0.9)
Requirement already satisfied: python-dateutil>=2.1 in /usr/local/lib/python3.8/dist-packages (from matplotlib>=2.2->seaborn) (2.8.2)
Requirement already satisfied: cycler>=0.10 in /usr/local/lib/python3.8/dist-packages (from matplotlib>=2.2->seaborn) (0.11.0)
Requirement already satisfied: pytz>=2017.3 in /usr/local/lib/python3.8/dist-packages (from pandas>=0.23->seaborn) (2022.6)
Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.8/dist-packages (from python-dateutil>=2.1->matplotlib>=2.2->seaborn) (1.15.0)

Main Dataset: Bigfoot Sightings

This table is from the primary authority on Bigfoot sitings, the Bigfoot Field Researchers Organization, or BFRO. It is a "comprehensive database of credible sightings and related reports, maintained by an all volunteer network of bigfoot/sasquatch researchers, archivists, and investigators in the United States and Canada founded in 1995."(https://www.bfro.net/gdb). This dataset contains thousands of reports of Bigfoot sightings, including a short description of the circumstance of the sighting, a classification (A: Clear sighting, misinterpretation or misidentification can be ruled out with great confidence B: Possible sasquatch observed at a great distance or in poor lighting C: Second and third-hand reports), as well as a date and a time, latitude, and longitutde. This team chose this data set as it offers a fantastic base of every officially documented Bigfoot sighting as well as good base information that could help us easily answer questions and draw connections to other potential datasets we will load and organize in the future. Because Sasquatches are not scientifically confirmed to be a real species of animal, verification and reliability of data sources related to them are always going to be difficult, but this was the best option available to the team given the very large sample size and objective intentions of the BFRO as a continuously growing database in existence for over 20 years.

In [ ]:
!pwd
/content/drive/.shortcut-targets-by-id/1WVWh0s9coKx-LzaErUE6N7YbcIg9B1aI/BigfootDataScienceProject
In [ ]:
# Unzip dataset
#!mkdir -p ./data/archive
#!unzip ./data/archive.zip -d ./data/sightings
In [ ]:
bf = pd.read_csv("./data/sightings/bfro-report-locations.csv")
bf
Out[ ]:
number title classification timestamp latitude longitude
0 637 Report 637: Campers' encounter just after dark... Class A 2000-06-16T12:00:00Z 61.50000 -142.90000
1 2917 Report 2917: Family observes large biped from car Class A 1995-05-15T12:00:00Z 55.18720 -132.79820
2 7963 Report 7963: Sasquatch walks past window of ho... Class A 2004-02-09T12:00:00Z 55.20350 -132.82020
3 9317 Report 9317: Driver on Alcan Highway has noon,... Class A 2004-06-18T12:00:00Z 62.93750 -141.56670
4 13038 Report 13038: Snowmobiler has encounter in dee... Class A 2004-02-15T12:00:00Z 61.05950 -149.78530
... ... ... ... ... ... ...
3805 4159 Report 4159: Campers hear unusual grunting sou... Class C 1995-11-15T12:00:00Z 31.22333 -94.96611
3806 175 Report 175: Campers encounter large animal nea... Class C 2000-07-30T12:00:00Z 47.47745 -121.04150
3807 945 Report 945: Creature with red glowing eyes seen Class C 1999-03-19T12:00:00Z 47.57778 -124.29330
3808 1387 Report 1387: Father and son hear heavy footste... Class C 1983-08-17T12:00:00Z 47.51030 -122.04560
3809 3044 Report 3044: Second-hand report of creature lo... Class C 1975-09-10T12:00:00Z 43.98694 -91.33662

3810 rows Ă— 6 columns

Difficulties with Data

Although the dataset contains some very useful information about sasquatch sightings, there could be problems in using the data in it's current format. For starters, the "timestamp" column contains very important information on the year, month, day, and time of the sightings but isn't going to be easy to use in it's current format: a string of values all in one column. According to the principles of tidy data, each column should represent a value in the observation. As it stands, the "timestamp" column contains multiple values, even though they are of the same category. The current format is also difficult to summarize using pandas summary functions. The set also duplicates some data. The columns "number" and "title" both have a report number in them. The "classification" column with values "Class A", "Class B", and "Class C" is a bit redundant. This team will resolve all of these issues in the code below.

In [ ]:
bf[["report #", "description", "extra"]] = bf["title"].str.split(": ", expand=True) #split the title into report number and description of sighting
bf[["date", "time"]] = bf["timestamp"].str.split("T", expand=True) #split the timestamp into date and time columns
bf[["year", "month", "day"]] = bf["date"].str.split("-", expand=True) #split the date into year, month, and day
bf
Out[ ]:
number title classification timestamp latitude longitude report # description extra date time year month day
0 637 Report 637: Campers' encounter just after dark... Class A 2000-06-16T12:00:00Z 61.50000 -142.90000 Report 637 Campers' encounter just after dark in the Wran... None 2000-06-16 12:00:00Z 2000 06 16
1 2917 Report 2917: Family observes large biped from car Class A 1995-05-15T12:00:00Z 55.18720 -132.79820 Report 2917 Family observes large biped from car None 1995-05-15 12:00:00Z 1995 05 15
2 7963 Report 7963: Sasquatch walks past window of ho... Class A 2004-02-09T12:00:00Z 55.20350 -132.82020 Report 7963 Sasquatch walks past window of house at night None 2004-02-09 12:00:00Z 2004 02 09
3 9317 Report 9317: Driver on Alcan Highway has noon,... Class A 2004-06-18T12:00:00Z 62.93750 -141.56670 Report 9317 Driver on Alcan Highway has noon, road encount... None 2004-06-18 12:00:00Z 2004 06 18
4 13038 Report 13038: Snowmobiler has encounter in dee... Class A 2004-02-15T12:00:00Z 61.05950 -149.78530 Report 13038 Snowmobiler has encounter in deep snow near Po... None 2004-02-15 12:00:00Z 2004 02 15
... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
3805 4159 Report 4159: Campers hear unusual grunting sou... Class C 1995-11-15T12:00:00Z 31.22333 -94.96611 Report 4159 Campers hear unusual grunting sound from behin... None 1995-11-15 12:00:00Z 1995 11 15
3806 175 Report 175: Campers encounter large animal nea... Class C 2000-07-30T12:00:00Z 47.47745 -121.04150 Report 175 Campers encounter large animal near Cle Elum None 2000-07-30 12:00:00Z 2000 07 30
3807 945 Report 945: Creature with red glowing eyes seen Class C 1999-03-19T12:00:00Z 47.57778 -124.29330 Report 945 Creature with red glowing eyes seen None 1999-03-19 12:00:00Z 1999 03 19
3808 1387 Report 1387: Father and son hear heavy footste... Class C 1983-08-17T12:00:00Z 47.51030 -122.04560 Report 1387 Father and son hear heavy footsteps made by an... None 1983-08-17 12:00:00Z 1983 08 17
3809 3044 Report 3044: Second-hand report of creature lo... Class C 1975-09-10T12:00:00Z 43.98694 -91.33662 Report 3044 Second-hand report of creature looking in at w... None 1975-09-10 12:00:00Z 1975 09 10

3810 rows Ă— 14 columns

In [ ]:
# Map classes to letters for readability and ease of use

bf["class"] = bf["classification"].map({
    "Class A": "A",
    "Class B": "B",
    "Class C": "C"
})
In [ ]:
# Delete duplicate or unnecessary rows

del bf["report #"] #duplicate
del bf["extra"] #unnecessary
del bf["timestamp"] #duplicate
del bf["title"] #duplicate
del bf["time"] #unnecessary (all values are exactly the same and therefore not accurate)
del bf["date"] #duplicate
bf
Out[ ]:
number classification latitude longitude description year month day class
0 637 Class A 61.50000 -142.90000 Campers' encounter just after dark in the Wran... 2000 06 16 A
1 2917 Class A 55.18720 -132.79820 Family observes large biped from car 1995 05 15 A
2 7963 Class A 55.20350 -132.82020 Sasquatch walks past window of house at night 2004 02 09 A
3 9317 Class A 62.93750 -141.56670 Driver on Alcan Highway has noon, road encount... 2004 06 18 A
4 13038 Class A 61.05950 -149.78530 Snowmobiler has encounter in deep snow near Po... 2004 02 15 A
... ... ... ... ... ... ... ... ... ...
3805 4159 Class C 31.22333 -94.96611 Campers hear unusual grunting sound from behin... 1995 11 15 C
3806 175 Class C 47.47745 -121.04150 Campers encounter large animal near Cle Elum 2000 07 30 C
3807 945 Class C 47.57778 -124.29330 Creature with red glowing eyes seen 1999 03 19 C
3808 1387 Class C 47.51030 -122.04560 Father and son hear heavy footsteps made by an... 1983 08 17 C
3809 3044 Class C 43.98694 -91.33662 Second-hand report of creature looking in at w... 1975 09 10 C

3810 rows Ă— 9 columns

Columns were split to allow each variable of a report to be used to the fullest in the summary and interpretation.

In [ ]:
# Reorder/rename columns

bf = bf[['number', 'description', 'class', 'longitude', 'latitude', 'year', 'month', 'day']]
bf.rename(columns= {"number":"report_number"}, inplace=True)
bf
/usr/local/lib/python3.8/dist-packages/pandas/core/frame.py:5039: SettingWithCopyWarning:


A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy

Out[ ]:
report_number description class longitude latitude year month day
0 637 Campers' encounter just after dark in the Wran... A -142.90000 61.50000 2000 06 16
1 2917 Family observes large biped from car A -132.79820 55.18720 1995 05 15
2 7963 Sasquatch walks past window of house at night A -132.82020 55.20350 2004 02 09
3 9317 Driver on Alcan Highway has noon, road encount... A -141.56670 62.93750 2004 06 18
4 13038 Snowmobiler has encounter in deep snow near Po... A -149.78530 61.05950 2004 02 15
... ... ... ... ... ... ... ... ...
3805 4159 Campers hear unusual grunting sound from behin... C -94.96611 31.22333 1995 11 15
3806 175 Campers encounter large animal near Cle Elum C -121.04150 47.47745 2000 07 30
3807 945 Creature with red glowing eyes seen C -124.29330 47.57778 1999 03 19
3808 1387 Father and son hear heavy footsteps made by an... C -122.04560 47.51030 1983 08 17
3809 3044 Second-hand report of creature looking in at w... C -91.33662 43.98694 1975 09 10

3810 rows Ă— 8 columns

In [ ]:
bf.dtypes
Out[ ]:
report_number      int64
description       object
class             object
longitude        float64
latitude         float64
year              object
month             object
day               object
dtype: object
In [ ]:
# Fix dtypes to accurately reflect types of data

bf["report_number"] = bf["report_number"].astype(str)
bf[["year", "month", "day"]] = bf[["year", "month", "day"]].astype(int)
bf
<ipython-input-59-62f8ed55b6ee>:3: SettingWithCopyWarning:


A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy

/usr/local/lib/python3.8/dist-packages/pandas/core/frame.py:3641: SettingWithCopyWarning:


A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy

Out[ ]:
report_number description class longitude latitude year month day
0 637 Campers' encounter just after dark in the Wran... A -142.90000 61.50000 2000 6 16
1 2917 Family observes large biped from car A -132.79820 55.18720 1995 5 15
2 7963 Sasquatch walks past window of house at night A -132.82020 55.20350 2004 2 9
3 9317 Driver on Alcan Highway has noon, road encount... A -141.56670 62.93750 2004 6 18
4 13038 Snowmobiler has encounter in deep snow near Po... A -149.78530 61.05950 2004 2 15
... ... ... ... ... ... ... ... ...
3805 4159 Campers hear unusual grunting sound from behin... C -94.96611 31.22333 1995 11 15
3806 175 Campers encounter large animal near Cle Elum C -121.04150 47.47745 2000 7 30
3807 945 Creature with red glowing eyes seen C -124.29330 47.57778 1999 3 19
3808 1387 Father and son hear heavy footsteps made by an... C -122.04560 47.51030 1983 8 17
3809 3044 Second-hand report of creature looking in at w... C -91.33662 43.98694 1975 9 10

3810 rows Ă— 8 columns

In [ ]:
# Drop longitude and latitude values outside range of possibility

bf.drop(bf[(bf['longitude'] >180) | (bf['longitude'] < -180) | (bf['latitude'] < -90) | (bf['latitude'] > 90)].index, inplace=True)
bf
/usr/local/lib/python3.8/dist-packages/pandas/core/frame.py:4906: SettingWithCopyWarning:


A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy

Out[ ]:
report_number description class longitude latitude year month day
0 637 Campers' encounter just after dark in the Wran... A -142.90000 61.50000 2000 6 16
1 2917 Family observes large biped from car A -132.79820 55.18720 1995 5 15
2 7963 Sasquatch walks past window of house at night A -132.82020 55.20350 2004 2 9
3 9317 Driver on Alcan Highway has noon, road encount... A -141.56670 62.93750 2004 6 18
4 13038 Snowmobiler has encounter in deep snow near Po... A -149.78530 61.05950 2004 2 15
... ... ... ... ... ... ... ... ...
3805 4159 Campers hear unusual grunting sound from behin... C -94.96611 31.22333 1995 11 15
3806 175 Campers encounter large animal near Cle Elum C -121.04150 47.47745 2000 7 30
3807 945 Creature with red glowing eyes seen C -124.29330 47.57778 1999 3 19
3808 1387 Father and son hear heavy footsteps made by an... C -122.04560 47.51030 1983 8 17
3809 3044 Second-hand report of creature looking in at w... C -91.33662 43.98694 1975 9 10

3801 rows Ă— 8 columns

In [ ]:
bf.describe()
Out[ ]:
longitude latitude year month day
count 3801.000000 3801.000000 3801.000000 3801.000000 3801.000000
mean -97.999788 39.757491 1997.426467 7.207577 14.202315
std 16.965645 6.070532 14.078200 3.090785 8.619828
min -167.131000 25.141000 1869.000000 1.000000 1.000000
25% -118.375000 35.474500 1988.000000 5.000000 7.000000
50% -92.304600 39.492650 2002.000000 8.000000 15.000000
75% -83.282650 44.705960 2007.000000 10.000000 20.000000
max -63.836830 69.500000 2053.000000 12.000000 31.000000

Secondary Dataset: Average Temperatures

To simplify the weather data, we will scrape a list of average temperatures by US state. This will give us insight into the potential habitation preferences of Bigfoot and allow us to predict the best state to go to to spot bigfoot or what places abroad could be home to other sasquatches.

In [ ]:
import requests

# scrape website to get html

headers = {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36'}

r = requests.get('https://www.currentresults.com/Weather/US/average-annual-state-temperatures.php', headers=headers, timeout=10)
print(r.status_code)
200
In [ ]:
from bs4 import BeautifulSoup

# beautify the html for readability and extract table

soup = BeautifulSoup(r.content)
print(soup.find("table").prettify()[:600])
<table class="articletable tablecol-1-left">
 <caption>
  Average annual temperature for each state.
 </caption>
 <thead>
  <tr>
   <th class="left">
    State
   </th>
   <th>
    Avg °F
   </th>
   <th>
    Avg °C
   </th>
   <th>
    Rank
   </th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>
    <a href="/Weather/Alabama/average-annual-temperatures.php">
     Alabama
    </a>
   </td>
   <td>
    62.8
   </td>
   <td>
    17.1
   </td>
   <td>
    7
   </td>
  </tr>
  <tr>
   <td>
    <a href="/Weather/Alaska/average-annual-temperatures.php">
     Alaska
    </a>
   </td>
   <td>
    26.6
   <
In [ ]:
# Since the data we want is split we will make 
# every piece of the table we want into a dataframe then concatenate them

avg_weather_tables = []
for t in soup.findAll("table"):
    df_t = pd.read_html(str(t))
    avg_weather_tables.append(df_t[0])

avg_weather = pd.concat(avg_weather_tables)
avg_weather.reset_index(inplace=True)
display(avg_weather.head(10))
index State Avg °F Avg °C Rank
0 0 Alabama 62.8 17.1 7
1 1 Alaska 26.6 -3.0 50
2 2 Arizona 60.3 15.7 10
3 3 Arkansas 60.4 15.8 9
4 4 California 59.4 15.2 12
5 5 Colorado 45.1 7.3 39
6 6 Connecticut 49.0 9.4 29
7 7 Delaware 55.3 12.9 16
8 8 Florida 70.7 21.5 1
9 9 Georgia 63.5 17.5 5
In [ ]:
avg_weather.drop(["index", "Avg °C"], axis=1, inplace=True)
avg_weather.head(10)
Out[ ]:
State Avg °F Rank
0 Alabama 62.8 7
1 Alaska 26.6 50
2 Arizona 60.3 10
3 Arkansas 60.4 9
4 California 59.4 12
5 Colorado 45.1 39
6 Connecticut 49.0 29
7 Delaware 55.3 16
8 Florida 70.7 1
9 Georgia 63.5 5
In [ ]:
# giving each state a code for mapping purposes

avg_weather["state_code"] = ["AL", "AK", "AZ", "AR", "CA", "CO", "CT", "DE",
                             "FL", "GA", "HI", "ID", "IL", "IN", "IA", "KS",
                             "KY", "LA", "ME", "MD", "MA", "MI", "MN", "MS",
                             "MO", "MT", "NE", "NV", "NH", "NJ", "NM", "NY",
                             "NC", "ND", "OH", "OK", "OR", "PA", "RI", "SC",
                             "SD", "TN", "TX", "UT", "VT", "VA", "WA", "WV",
                             "WI", "WY"]
In [ ]:
avg_weather
Out[ ]:
State Avg °F Rank state_code
0 Alabama 62.8 7 AL
1 Alaska 26.6 50 AK
2 Arizona 60.3 10 AZ
3 Arkansas 60.4 9 AR
4 California 59.4 12 CA
5 Colorado 45.1 39 CO
6 Connecticut 49.0 29 CT
7 Delaware 55.3 16 DE
8 Florida 70.7 1 FL
9 Georgia 63.5 5 GA
10 Hawaii 70.0 2 HI
11 Idaho 44.4 40 ID
12 Illinois 51.8 23 IL
13 Indiana 51.7 25 IN
14 Iowa 47.8 36 IA
15 Kansas 54.3 19 KS
16 Kentucky 55.6 15 KY
17 Louisiana 66.4 3 LA
18 Maine 41.0 48 ME
19 Maryland 54.2 20 MD
20 Massachusetts 47.9 35 MA
21 Michigan 44.4 40 MI
22 Minnesota 41.2 47 MN
23 Mississippi 63.4 6 MS
24 Missouri 54.5 18 MO
25 Montana 42.7 45 MT
26 Nebraska 48.8 30 NE
27 Nevada 49.9 28 NV
28 New Hampshire 43.8 42 NH
29 New Jersey 52.7 22 NJ
30 New Mexico 53.4 21 NM
31 New York 45.4 37 NY
32 North Carolina 59.0 13 NC
33 North Dakota 40.4 49 ND
34 Ohio 50.7 26 OH
35 Oklahoma 59.6 11 OK
36 Oregon 48.4 33 OR
37 Pennsylvania 48.8 30 PA
38 Rhode Island 50.1 27 RI
39 South Carolina 62.4 8 SC
40 South Dakota 45.2 38 SD
41 Tennessee 57.6 14 TN
42 Texas 64.8 4 TX
43 Utah 48.6 32 UT
44 Vermont 42.9 44 VT
45 Virginia 55.1 17 VA
46 Washington 48.3 34 WA
47 West Virginia 51.8 23 WV
48 Wisconsin 43.1 43 WI
49 Wyoming 42.0 46 WY
In [ ]:
avg_weather.dtypes
Out[ ]:
State          object
Avg °F        float64
Rank            int64
state_code     object
dtype: object

Exploratory Data Analysis

Light data analysis was performed on class of reports, year of most sightings, and time of year of most sightings were found. Class of reports is important because it tells the team how potentially accurate each sighting was, with class A being a definite clear sighting and C being a second or third-hand account. This also speaks to the reliability of the BFRO dataset as a whole, and because only 19 out of thousands of sightings were not entirely reliable C sightings, and over half of the total sightings were class A, definite clear sightings, we can determine that most of the data here was a sure sasquatch sighting.

Knowing the year where Bigfoot sightings is interesting as we could potentially link it to historical trends like the rise of information sharing on the internet or certain news trends/cycles that might influence how interested the general public is in Bigfoot. We also know early instances of recorded Bigfoot sightings (1869!) which is interesting to think about people hundreds of years ago recording seeing these creatures as well.

Knowing the time of year when most Bigfoot sightings occur is useful as in the future we could link this information to yearly camping/hunting statistics and see if there is any correlation between more people being out in the forest for a certain reason (hunting, camping, etc) and a greater frequency of seeing Bigfoot, or if Bigfoots are more attracted to urban infrastructures like national park facilities and roadways. According to our EDA, Bigfoots are more likely to be seein in the late summer and fall months with October, July, and August being in the top three months for sightings.

Further data analysis has now been done concerning location of sightings and temperature data for the US. The maps and charts below will assist this team in determining areas of focus for the questions we want to answer and models we plan to build. For example, the map of sightings has already clued this team into the possibility of a relationship between sasquatch sightings and elevation changes (the presence of mountains).

In [ ]:
# What class of reports are most common?
bf["class"].value_counts()
Out[ ]:
A    1892
B    1890
C      19
Name: class, dtype: int64

Class A and B reports are most common.

Most reported sightings happened between 2003-2007. If we want to see this in a visual we can plot the values.

Frequency of Sightings by Year

In [ ]:
# What year were sightings the most common in?
bf["year"].value_counts()
Out[ ]:
2004    250
2005    226
2006    188
2007    170
2003    154
       ... 
1921      1
1869      1
1937      1
1947      1
1930      1
Name: year, Length: 81, dtype: int64
In [ ]:
bf.year.plot.hist(bins=50)
Out[ ]:
<matplotlib.axes._subplots.AxesSubplot at 0x7f8608fdba30>

This graph is interesting when compared to a few major events in Bigfoot culture history in the US: The Patterson Film(1967), releases of Bigfoot media in the 80s like the Harry and the Hendersons movie and similar films, and the release of the popular Animal Planet Show Finding Bigfoot(2011). The Patterson film is one of the most famous images and forms of evidence pointing to Bigfoot's existence in modern North American Bigfoot lore. Despite the release of this film and various other forms of media, there seems to be little correlation between the times of releases and the larger spikes in sightings over the years. This observation would suggest that the patters of sightings are more reliable as they are independent from any periods of media frenzy surrounding Bigfoot.

Month vs Sighting Frequency

In [ ]:
# Which time of year is bigfoot most active?
bf["month"].value_counts()
Out[ ]:
10    496
7     481
8     458
9     401
11    364
6     344
5     257
1     246
4     214
12    209
3     171
2     160
Name: month, dtype: int64
In [ ]:
bf
bf.month.plot.hist(alpha=.5, density=True, legend=True)
Out[ ]:
<matplotlib.axes._subplots.AxesSubplot at 0x7f8604bdc760>

Bigfoots were most likely to be spotted in the months of October to December. Here is to histograph showing their frequency of spotting and month on the x axis.

In [ ]:
bf
Out[ ]:
report_number description class longitude latitude year month day
0 637 Campers' encounter just after dark in the Wran... A -142.90000 61.50000 2000 6 16
1 2917 Family observes large biped from car A -132.79820 55.18720 1995 5 15
2 7963 Sasquatch walks past window of house at night A -132.82020 55.20350 2004 2 9
3 9317 Driver on Alcan Highway has noon, road encount... A -141.56670 62.93750 2004 6 18
4 13038 Snowmobiler has encounter in deep snow near Po... A -149.78530 61.05950 2004 2 15
... ... ... ... ... ... ... ... ...
3805 4159 Campers hear unusual grunting sound from behin... C -94.96611 31.22333 1995 11 15
3806 175 Campers encounter large animal near Cle Elum C -121.04150 47.47745 2000 7 30
3807 945 Creature with red glowing eyes seen C -124.29330 47.57778 1999 3 19
3808 1387 Father and son hear heavy footsteps made by an... C -122.04560 47.51030 1983 8 17
3809 3044 Second-hand report of creature looking in at w... C -91.33662 43.98694 1975 9 10

3801 rows Ă— 8 columns

Description Word Tokenization

An untapped resource we find in the dataset is the description. To gain insight into this data without reading every line, we tokenized the descriptions given by the observers. We can use this to analyze which words, whether they be objects, people or places had the most occurences throughout the data. This will help us further determine what circumstances bigfoots show up in frequently.

In [ ]:
import nltk #Special thanks to Karthik for suggesting tokenizing the description and analyzing word instances
import re
from collections import Counter #used Counter collection to count instances of each word 

description = bf['description'].copy() #takes description just from the bf dataset
description.columns = ['DESCRIPTION']
desc = description.str.cat(sep= ' ') #concatenate all descriptions into one large string
In [ ]:
desc
splitdesc = desc.split(' ') #split my large text list into individual words
splitdesc
WordCounts = Counter(splitdesc) #use counter to count instances of each word
print(WordCounts.most_common())
[('near', 1683), ('a', 1215), ('sighting', 1015), ('of', 902), ('in', 888), ('by', 749), ('the', 690), ('and', 608), ('on', 570), ('at', 495), ('Possible', 466), ('encounter', 375), ('has', 368), ('possible', 357), ('while', 323), ('vocalizations', 296), ('Lake', 290), ('outside', 286), ('night', 264), ('creature', 257), ('heard', 231), ('Man', 230), ('road', 225), ('River', 183), ('daylight', 181), ('large', 179), ('have', 176), ('animal', 176), ('hear', 173), ('hears', 165), ('hunter', 156), ('recalls', 152), ('with', 147), ('Two', 145), ('nighttime', 144), ('his', 143), ('to', 139), ('morning', 137), ('from', 136), ('National', 129), ('two', 129), ('Park', 127), ('found', 123), ('Forest', 123), ('along', 117), ('tracks', 114), ('crossing', 113), ('sees', 111), ('Woman', 111), ('Daylight', 110), ('home', 109), ('close', 107), ('late', 107), ('footprints', 107), ('motorist', 105), ('Motorist', 103), ('early', 102), ('State', 102), ('Memory', 100), ('told', 100), ('an', 98), ('strange', 96), ('figure', 96), ('hunters', 94), ('Campers', 94), ('find', 92), ('family', 90), ('Hunter', 90), ('north', 83), ('tall', 82), ('encounters', 82), ('describes', 82), ('Family', 81), ('daytime', 81), ('vocalization', 81), ('hairy', 80), ('seen', 80), ('Creek', 80), ('their', 75), ('see', 75), ('bipedal', 71), ('observes', 70), ('biped', 70), ('loud', 70), ('south', 70), ('bigfoot', 69), ('finds', 69), ('east', 68), ('sasquatch', 67), ('Nighttime', 67), ('driving', 66), ('walking', 65), ('as', 64), ('witness', 64), ('hunting', 64), ('screams', 64), ('area', 61), ('deer', 61), ('Early', 60), ('camping', 60), ('time', 60), ('Young', 59), ('A', 58), ('Late', 58), ('Couple', 57), ('evening', 56), ('Sighting', 56), ('upright', 56), ('man', 53), ('west', 53), ('witnesses', 52), ('her', 52), ('Mountain', 52), ('Night', 52), ('Large', 52), ('incidents', 51), ('afternoon', 49), ('son', 49), ('wood', 49), ('dusk', 48), ('off', 48), ('snow', 47), ('large,', 47), ('rural', 47), ('Deer', 47), ('motorists', 47), ('young', 47), ('woods', 46), ('Hikers', 46), ('scream', 45), ('', 45), ('experience', 45), ('Witness', 45), ('footprint', 45), ('across', 44), ('fishing', 44), ('childhood', 44), ('Wilderness', 44), ('tree', 43), ('behind', 43), ('knocks', 43), ('stalking', 42), ('City', 41), ('campers', 40), ('activity', 40), ('rock', 40), ('sounds', 40), ('Daytime', 39), ('Area', 39), ('While', 39), ('unknown', 39), ('observe', 38), ('through', 38), ('over', 38), ('sightings', 38), ('reports', 38), ('dark', 37), ('are', 37), ('Road', 37), ('couple', 37), ('into', 37), ('remembers', 37), ('being', 37), ('Bigfoot', 36), ('observed', 36), ('Hiker', 35), ('fisherman', 35), ('property', 35), ('during', 34), ('running', 34), ('Three', 34), ('Fort', 34), ('camp', 34), ('cross', 34), ('experiences', 34), ('window', 33), ('farm', 33), ('men', 33), ('unusual', 33), ('Hwy', 32), ('hikers', 32), ('Valley', 32), ('seeing', 32), ('Camper', 32), ('just', 31), ('wife', 31), ('Hunters', 31), ('for', 31), ('Fisherman', 31), ('driver', 30), ('several', 30), ('Mt.', 30), ('car', 29), ('between', 29), ('around', 29), ('incident', 29), ('Mountains', 29), ('is', 29), ('Driver', 28), ('Highway', 28), ('Springs', 28), ('roadside', 28), ('&', 28), ('report', 28), ('miles', 28), ('foot', 28), ('recounts', 27), ('Wildlife', 27), ('Father', 27), ('Vocalizations', 27), ('Motorists', 26), ('observation', 26), ('Multiple', 26), ('front', 26), ('fishermen', 26), ('camper', 26), ('Creature', 26), ('howls', 26), ('throwing', 26), ('field', 25), ('riding', 25), ('town', 25), ('thrown', 25), ('standing', 25), ('Canyon', 25), ('Big', 25), ('cabin', 25), ('covered', 25), ('out', 25), ('after', 24), ('Recollection', 24), ('edge', 24), ('years', 24), ('Evening', 23), ('Hwy.', 23), ('Camp', 23), ('up', 23), ('three', 23), ('Morning', 23), ('County', 22), ('white', 22), ('face', 22), ('down', 22), ('trail', 22), ('Falls', 22), ('hair', 22), ('hiking', 22), ('very', 22), ('dog', 22), ('Rock', 22), ('track', 22), ('man-like', 21), ('rocks', 21), ('boys', 21), ('woman', 21), ('Boy', 21), ('Pass', 21), ('father', 21), ('forest', 21), ('knocking', 21), ('looking', 21), ('Fork', 21), ('Tracks', 20), ('highway', 20), ('North', 20), ('resident', 20), ('Mother', 20), ('Trail', 20), ('something', 20), ('St.', 19), ('Preserve', 19), ('walk', 19), ('next', 19), ('describe', 19), ('chased', 19), ('multiple', 19), ('Lake.', 19), ('watching', 19), ('daughter', 19), ('intimidation', 19), ('BFRO', 19), ('approach', 19), ('them', 19), ('side', 18), ('back', 18), ('Route', 18), ('Husband', 18), ('about', 18), ('Island', 18), ('he', 18), ('creek', 18), ('Mount', 18), ('Sasquatch', 17), ('New', 17), ('that', 17), ('headlights', 17), ('group', 17), ('hiker', 17), ('above', 17), ('creatures', 17), ('boy', 17), ('old', 17), ('black', 17), ('River.', 17), ('Elk', 17), ('friends', 17), ('run', 17), ('Close', 17), ('watches', 17), ('experienced', 17), ('Unusual', 17), ('truck', 17), ('other', 17), ('hearing', 17), ('-', 16), ('like', 16), ('Youth', 16), ('backyard', 16), ('Bow', 16), ('Reservoir', 16), ('yard', 16), ('human-like', 16), ('youth', 16), ('lake', 16), ('visitor', 16), ('remote', 16), ('Strange', 16), ('Loud', 16), ('howl', 16), ('footsteps', 15), ('was', 15), ('teen', 15), ('Grove', 15), ('small', 15), ('prints', 15), ('railroad', 15), ('crosses', 15), ('children', 15), ('Indian', 15), ('Encounter', 15), ('startled', 15), ('spots', 15), ('brief', 15), ('vocals', 15), ('Beach', 15), ('Bear', 15), ('East', 14), ('Four', 14), ('line', 14), ('stand', 14), ('ape-like', 14), ('him', 14), ('road-crossing', 14), ('boat', 14), ('South', 14), ('Teen', 14), ('Near', 14), ('San', 14), ('training', 14), ('logging', 14), ('they', 14), ('people', 14), ('Ridge', 14), ('series', 14), ('were', 14), ('behavior', 14), ('tall,', 13), ('then', 13), ('dirt', 13), ('dogs', 13), ('Sulphur', 13), ('tells', 13), ('Dusk', 13), ('Campground', 13), ('Pine', 13), ('riders', 13), ('US', 13), ('campsite', 13), ('away', 13), ('Hill', 13), ('border', 12), ('vocalizations,', 12), ('bike', 12), ('Spring', 12), ('mountain', 12), ('Management', 12), ('Afternoon', 12), ('range', 12), ('dawn', 12), ('Brothers', 12), ('Meadows', 12), ('Reservation', 12), ('recall', 12), ('high', 12), ('Ft.', 12), ('day', 12), ('Red', 12), ('bi-pedal', 12), ('far', 12), ('animals', 12), ('residents', 12), ('observing', 12), ('Swamp', 12), ('Several', 12), ('river', 12), ('heavy', 12), ('followed', 12), ('Footprints', 12), ('one', 12), ('awakened', 12), ('house', 11), ('repeated', 11), ('reported', 11), ('trees', 11), ('Teenager', 11), ('school', 11), ('working', 11), ('bridge', 11), ('White', 11), ('Huntington', 11), ('Point', 11), ('Flat', 11), ('Fishermen', 11), ('newspaper', 11), ('officer', 11), ('when', 11), ('Bay', 11), ('tent', 11), ('elk', 11), ('huge', 11), ('West', 11), ('Grand', 11), ('not', 11), ('approached', 11), ('teenagers', 11), ('Ocala', 11), ('frightening', 11), ('playing', 11), ('watch', 11), ('Houston', 11), ('unseen', 11), ('spot', 10), ('brown', 10), ('eyes', 10), ('teens', 10), ('possibly', 10), ('Nightime', 10), ('road.', 10), ('Truck', 10), ('teenager', 10), ('vehicle', 10), ('Brief', 10), ('Old', 10), ('Lakes', 10), ('visual', 10), ('Oregon', 10), ('Tall', 10), ('Various', 10), ('saw', 10), ('Peak', 10), ('Cypress', 10), ('Woods', 10), ('girl', 10), ('Seneca', 10), ('night-time', 10), ('police', 10), ('country', 10), ('odor', 10), ('four', 10), ('Salt', 10), ('screaming', 10), ('Rural', 10), ('Sam', 10), ('whoops', 10), ('Witnesses', 9), ('Green', 9), ('trip', 9), ('ATV', 9), ('hair-covered', 9), ('7', 9), ('fence', 9), ('Blue', 9), ('before', 9), ('traveling', 9), ('Tahoe', 9), ('Girl', 9), ('Teens', 9), ('Hunting', 9), ('High', 9), ('legs', 9), ('child', 9), ('Great', 9), ('The', 9), ('Bowhunter', 9), ('Colorado', 9), ('long', 9), ('it', 9), ('campground', 9), ('Canton', 9), ('later', 9), ('parked', 9), ('southeast', 9), ('Homeowner', 9), ('Child', 9), ('shaking', 9), ('bank', 9), ('Texas', 9), ('calls', 9), ('smell', 9), ('Provincial', 9), ('deep', 8), ('red', 8), ('within', 8), ('chasing', 8), ('stop', 8), ('Creek.', 8), ('horseback', 8), ('Strawberry', 8), ('passenger', 8), ('Twain', 8), ('3', 8), ('rider', 8), ('article', 8), ('Port', 8), ('mile', 8), ('Lake,', 8), ('Jacksonville', 8), ('or', 8), ('Middleburg', 8), ('squirrel', 8), ('residence', 8), ('living', 8), ('Mountain.', 8), ('steps', 8), ('Ohio', 8), ('2', 8), ('under', 8), ('Forest.', 8), ('scouting', 8), ('hill', 8), ('site', 8), ('taken', 8), ('print', 8), ('startles', 8), ('night,', 8), ('land', 8), ('well', 8), ('sets', 8), ('Sabine', 8), ('Horse', 8), ('Long', 8), ('Rainier', 8), ('Trout', 8), ('frightened', 8), ('Wood', 8), ('sound', 8), ('Screams', 8), ('husband', 7), ('described', 7), ('hairy,', 7), ('way', 7), ('work', 7), ('same', 7), ('below', 7), ('bottoms', 7), ('bedroom', 7), ('friend', 7), ('views', 7), ('soldier', 7), ('city', 7), ('chase', 7), ('Eagle', 7), ('Friends', 7), ('ridge', 7), ('Service', 7), ('Teenagers', 7), ('mountains', 7), ('guide', 7), ('investigator', 7), ('Bridge', 7), ('trucker', 7), ('10', 7), ('year', 7), ('Childhood', 7), ('recount', 7), ('Little', 7), ('area.', 7), ('worker', 7), ('leaves', 7), ('Junction', 7), ('Marine', 7), ('brothers', 7), ('Series', 7), ('sitting', 7), ('Park.', 7), ('Everglades', 7), ('scat', 7), ('Refuge', 7), ('juvenile', 7), ('School', 7), ('evidence', 7), ('stalked', 7), ('figures', 7), ('ranch', 7), ('nightime', 7), ('occurrences', 7), ('Illinois', 7), ('Columbia', 7), ('cornfield', 7), ('taking', 7), ('separate', 7), ('Cemetery', 7), ('call', 7), ('Knocks', 7), ('shaken', 7), ('returning', 7), ('brush', 7), ('Nat.', 7), ('Black', 7), ('Wayne', 7), ('Cave', 7), ('mine', 7), ('park', 7), ('relates', 7), ('hours', 7), ('Gorge', 7), ('get', 7), ('nights', 7), ('Trinity', 7), ('late-night', 7), ('Morton', 7), ('barefoot', 7), ('Rocks', 7), ('fresh', 7), ('Heard', 7), ('knock', 7), ('past', 6), ('Passenger', 6), ('wading', 6), ('moving', 6), ('clearing', 6), ('swamp', 6), ('Union', 6), ('ape', 6), ('Youths', 6), ('wooded', 6), ('Animal', 6), ('Base', 6), ('she', 6), ('Retired', 6), ('Army', 6), ('Scout', 6), ('few', 6), ('Myers', 6), ('Shasta', 6), ('Nevada', 6), ('teenage', 6), ('girls', 6), ('Happy', 6), ('Jasper', 6), ('smells', 6), ('Leadville', 6), ('encounter.', 6), ('shaggy', 6), ('bus', 6), ('Children', 6), ('form', 6), ('finding', 6), ('U.S.', 6), ('5', 6), ('Gainesville', 6), ('John', 6), ('approaching', 6), ('I-75', 6), ('River,', 6), ('outskirts', 6), ('Jackson', 6), ('NW', 6), ('Clark', 6), ('another', 6), ('corn', 6), ('Resident', 6), ('photos', 6), ('summer', 6), ('look', 6), ('Local', 6), ('porch', 6), ('Oak', 6), ('party', 6), ('Uwharrie', 6), ('mother', 6), ('jump', 6), ('Cuyahoga', 6), ('low', 6), ('nest', 6), ('Pigeon', 6), ('consecutive', 6), ('ongoing', 6), ('photographs', 6), ('mud', 6), ('Day', 6), ('Baker', 6), ('Lewis', 6), ('Helens', 6), ('Greenwater', 6), ('Camping', 6), ('Bend', 6), ('Cle', 6), ('Elum', 6), ('Yellowstone', 6), ('Appalachian', 6), ('(w/photos)', 6), ('Sugar', 6), ('loud,', 6), ('what', 6), ('crashing', 6), ('walks', 5), ('sighting,', 5), ('story', 5), ('eastern', 5), ('/', 5), ('Mississippi', 5), ('Vernon', 5), ('bow', 5), ('Sightings', 5), ('Cedar', 5), ('parking', 5), ('Duck', 5), ('Air', 5), ('Harrison', 5), ('squatting', 5), ('Officer', 5), ('base', 5), ('scary', 5), ('Harte', 5), ('massive', 5), ('employee', 5), ('Have', 5), ('Has', 5), ('Meadow', 5), ('northwest', 5), ('binoculars', 5), ('Gold', 5), ('students', 5), ('sighted', 5), ('6', 5), ('big', 5), ('shore', 5), ('part', 5), ('Trucker', 5), ('Carson', 5), ('Lost', 5), ('pre-dawn', 5), ('Former', 5), ('women', 5), ('Scouts', 5), ('Rd.', 5), ('picking', 5), ('witness.', 5), ('woods.', 5), ('runs', 5), ('crew', 5), ('41', 5), ('Prairie', 5), ('adult', 5), ('interrupted', 5), ('hog', 5), ('target', 5), ('shooting', 5), ('almost', 5), ('Large,', 5), ('seven', 5), ('Hills', 5), ('Nashville', 5), ('Helen', 5), ('middle', 5), ('up-close', 5), ('days', 5), ('primate', 5), ('homeowner', 5), ('than', 5), ('abandoned', 5), ('Turkey', 5), ('SR', 5), ('food', 5), ('local', 5), ('eating', 5), ('Soldier', 5), ('path', 5), ('glimpse', 5), ('mining', 5), ('Interstate', 5), ('Bipedal', 5), ('apart', 5), ('firewood', 5), ('exploring', 5), ('Pleasant', 5), ('had', 5), ('Virginia', 5), ('gathering', 5), ('bed', 5), ('A.', 5), ('gravel', 5), ('light', 5), ('backpackers', 5), ('pasture', 5), ('Group', 5), ('turkey', 5), ('strip', 5), ("witness's", 5), ('Ongoing', 5), ('movement', 5), ('sons', 5), ('Hog', 5), ('Washington', 5), ('Hood', 5), ('human', 5), ('Rt.', 5), ('Brazos', 5), ('In', 5), ('kill', 5), ('Olympic', 5), ('Footprint', 5), ('"', 5), ('five', 5), ('(w/', 5), ('Ocean', 5), ('passes', 5), ('come', 5), ('powerful', 5), ('intimidated', 5), ('Graham', 5), ('terrifying', 5), ('Hears', 5), ('Vacationer', 5), ('Chilliwack', 5), ('tracks,', 5), ('stick', 5), ('--', 5), ('Military', 5), ('records', 5), ('moaning', 5), ('camped', 5), ('staying', 5), ('identical', 5), ('Heaven', 5), ('Cushman', 5), ('water', 4), ('object', 4), ('also', 4), ('where', 4), ('Lady', 4), ('duck', 4), ('Roadside', 4), ('Talladega', 4), ('private', 4), ('Kansas', 4), ('remembered', 4), ('community', 4), ('Fouke', 4), ('Benton', 4), ('spooked', 4), ('Coon', 4), ('Squirrel', 4), ('El', 4), ('Force', 4), ('moonlit', 4), ('Pre-dawn', 4), ('beside', 4), ('Robinson', 4), ('inside', 4), ('30', 4), ('Arizona', 4), ('northeast', 4), ('gray', 4), ('commuter', 4), ('Hollow', 4), ('Kennedy', 4), ('Grass', 4), ('50', 4), ('Albion', 4), ('Hiking', 4), ('Sierra', 4), ('briefly', 4), ('7-8', 4), ('Laurel', 4), ('Mammoth', 4), ('French', 4), ('Backpacker', 4), ('backpacker', 4), ('Observes', 4), ('bipeds', 4), ('sleeping', 4), ('Mills', 4), ('Vancouver', 4), ('4', 4), ('mountainside', 4), ('Southern', 4), ('Fishing', 4), ('reddish', 4), ('Pike', 4), ('retired', 4), ('wildlife', 4), ('trailer', 4), ('Buffalo', 4), ('southwest', 4), ('Glenwood', 4), ('Backpackers', 4), ('Rd', 4), ('creature.', 4), ('Five', 4), ('six', 4), ('open', 4), ('carrying', 4), ('College', 4), ('Huge', 4), ('Florida', 4), ('Orlando', 4), ('garbage', 4), ('accounts', 4), ('Florence', 4), ('Atlanta', 4), ('hiding', 4), ('route', 4), ('thermal', 4), ('Top', 4), ('Cleveland', 4), ('Late-night', 4), ('village', 4), ('horses', 4), ('each', 4), ('More', 4), ('sounds,', 4), ('Newspaper', 4), ('staring', 4), ('distance', 4), ('midnight', 4), ('heading', 4), ('Van', 4), ('Boone', 4), ('rabbit', 4), ("7'", 4), ('lengthy', 4), ('owner', 4), ('recent', 4), ('Branch', 4), ('observations', 4), ('motorcyclist', 4), ('Nature', 4), ('Sandy', 4), ('Run', 4), ('occasions', 4), ('tracks.', 4), ('Photographer', 4), ('leave', 4), ('BF', 4), ('unidentified', 4), ('frozen', 4), ('arms', 4), ('strong', 4), ('make', 4), ('Madison', 4), ('horse', 4), ('8', 4), ('Blaine', 4), ('Small', 4), ('walked', 4), ('Franklin', 4), ('leaving', 4), ('Tree', 4), ('window.', 4), ('Greenville', 4), ('Houghton', 4), ('window,', 4), ('Hairy', 4), ('neighborhood', 4), ('shocked', 4), ('Manistee', 4), ('interactions', 4), ('moonlight', 4), ('discovered', 4), ('Missouri', 4), ('Home', 4), ('Springfield', 4), ('Mushroom', 4), ('Sullivan', 4), ('James', 4), ('Reserve', 4), ('photo', 4), ("Nat'l", 4), ('Boys', 4), ('crouching', 4), ('memory', 4), ('Teenage', 4), ('Bragg', 4), ('Barrens', 4), ('Mescalero', 4), ('head', 4), ('pond', 4), ('Aurora', 4), ('Beaver', 4), ('screams,', 4), ('Midnight', 4), ("see's", 4), ('Mill', 4), ('similar', 4), ('involving', 4), ('Encounters', 4), ('college', 4), ('Game', 4), ('Resort', 4), ('reddish-brown', 4), ('Canadian', 4), ('Clear', 4), ('Tillamook', 4), ('Silver', 4), ('beach', 4), ('nearby', 4), ('approaches', 4), ('Diamond', 4), ('Native', 4), ('Stevens', 4), ('upright,', 4), ('members', 4), ('ago', 4), ('Monte', 4), ('Cristo', 4), ('home,', 4), ('game', 4), ('witnessed', 4), ('spotted', 4), ('Chehalis', 4), ('Lone', 4), ('Packwood', 4), ('subject', 4), ('Fish', 4), ('Holden', 4), ('display', 4), ('gets', 4), ('Ashford', 4), ('Indianola', 4), ('Dam', 4), ('Spanaway', 4), ('course', 4), ('investigation', 4), ('Phillips', 4), ('Monongahela', 4), ('33', 4), ('setting', 4), ('workers', 4), ('Uinta', 4), ('screamed', 4), ('whooping', 4), ('Emigrant', 4), ('Loud,', 4), ('Oroville', 4), ('Sounds', 4), ('foul', 4), ('footprints,', 4), ('etc.,', 4), ('growling', 4), ('stride', 4), ('Recreation', 4), ('Lumby', 4), ('Vocalization', 4), ('photographed', 4), ('noted', 4), ('responses', 4), ('deck', 4), ('vocal', 4), ('Salmon', 4), ('noticed', 4), ('Loop', 4), ('chatter', 4), ('characteristic', 4), ('all', 4), ('Shawnee', 4), ('Granite', 4), ('events', 4), ('Unknown', 4), ('coon', 4), ('record', 4), ('distant', 4), ('Snowmobiler', 3), ('fishing,', 3), ('visits', 3), ('creature,', 3), ('youths', 3), ('Huntsville', 3), ('Kayaker', 3), ('first', 3), ('Bigfoots', 3), ('spotlight', 3), ('top', 3), ('following', 3), ('sisters', 3), ('checking', 3), ('cattle', 3), ("8'-9'", 3), ('against', 3), ('Eureka', 3), ('Dorado', 3), ('two-legged', 3), ('Cove', 3), ('scope', 3), ('Knob', 3), ('military', 3), ('Monument', 3), ('Show', 3), ('Prescott', 3), ('Sound', 3), ('Alturas', 3), ('Desolation', 3), ('Car', 3), ('299', 3), ('Sister', 3), ('La', 3), ('Feather', 3), ('Law', 3), ('Enforcement', 3), ('Santa', 3), ('Northern', 3), ('California', 3), ('sightings,', 3), ('Stumpy', 3), ('aggressive', 3), ('Coast', 3), ('Independence', 3), ('101', 3), ('Orick', 3), ('Gulch', 3), ('Multi-witness', 3), ('footage', 3), ('Face', 3), ('ravine', 3), ('Yosemite', 3), ('complex', 3), ('Pacific', 3), ('law', 3), ('enforcement', 3), ('patrol', 3), ('Klamath', 3), ('bottom', 3), ('16', 3), ('lying', 3), ('20', 3), ('climbing', 3), ('40', 3), ('Road.', 3), ('BC', 3), ('sighitng', 3), ('Nelson', 3), ('outing', 3), ('Ontario', 3), ('tourist', 3), ('Sioux', 3), ('Frances', 3), ('Westport', 3), ('Crater', 3), ('giant', 3), ('wilderness', 3), ('thing', 3), ('peeking', 3), ('Fork,', 3), ('Conejos', 3), ('1', 3), ('account', 3), ('inch', 3), ('biologist', 3), ('Mtn.', 3), ('strides', 3), ('sighting.', 3), ('leader', 3), ('apparent', 3), ('Deputy', 3), ('Surprise', 3), ('FL', 3), ('Security', 3), ('duty', 3), ('Six', 3), ('Upright', 3), ('investigated', 3), ('Federal', 3), ('humanoid', 3), ('half', 3), ('hunched', 3), ('Ruskin', 3), ('home.', 3), ('be', 3), ('road-cross', 3), ('Head', 3), ('Rainbow', 3), ('Land', 3), ('female', 3), ('Homestead', 3), ('stands', 3), ('Weekend', 3), ('Blanding', 3), ('I-10', 3), ('cutting', 3), ('rest', 3), ('comes', 3), ('Marys', 3), ('Women', 3), ('Bulow', 3), ('stories', 3), ('directly', 3), ('Myakka', 3), ('Harbor', 3), ('Georgia', 3), ('Dark', 3), ('Chattahoochee', 3), ('county', 3), ('Riverdale', 3), ('Stewart', 3), ('numerous', 3), ('Memories', 3), ('Cedartown', 3), ('surprises', 3), ('leaping', 3), ('Nine', 3), ('Observation', 3), ('view', 3), ('vocalizations.', 3), ('Wallace', 3), ('bowhunter', 3), ('One', 3), ('months', 3), ('less', 3), ('occurences', 3), ('Edwardsville', 3), ('Jacob', 3), ('Runner', 3), ('bicyclist', 3), ('Marseilles', 3), ('Second', 3), ('Algonquin', 3), ('Murphysboro', 3), ('mushroom', 3), ('twilight', 3), ('take', 3), ('Monroe', 3), ('treeline', 3), ('hits', 3), ('log', 3), ('haired', 3), ('Lawrenceburg', 3), ('Shady', 3), ('short', 3), ('noises', 3), ('Ginseng', 3), ('London', 3), ('hide', 3), ('going', 3), ('towards', 3), ('Scott', 3), ('Creatures', 3), ('service', 3), ('period', 3), ('shadow', 3), ('boyhood', 3), ('clear', 3), ('Biped', 3), ('Sundown', 3), ('state', 3), ('including', 3), ('Horseback', 3), ('car,', 3), ('sand', 3), ('spotting', 3), ('bear', 3), ('shining', 3), ("family's", 3), ('SW', 3), ('Gaylord', 3), ('Peninsula', 3), ('Marquette', 3), ('Hudson', 3), ('Trapper', 3), ('lane', 3), ('fur', 3), ('bottoms.', 3), ('Mark', 3), ('Cape', 3), ('Winter', 3), ('Jefferson', 3), ('Branson', 3), ('Grain', 3), ('Bethany', 3), ('colored', 3), ('trout', 3), ('Butte', 3), ('presence', 3), ('Hendersonville', 3), ('sister', 3), (';', 3), ('farmer', 3), ('Parkway', 3), ('child,', 3), ('daylight,', 3), ('Chuska', 3), ('Naples', 3), ('pass', 3), ('visiting', 3), ('end', 3), ('noise', 3), ('camping,', 3), ('Calcutta', 3), ('Another', 3), ('Forest,', 3), ('Geneva', 3), ('Memorial', 3), ('toward', 3), ('Atwood', 3), ('line.', 3), ('dead', 3), ('branch', 3), ('Cherokee', 3), ('hand', 3), ('dog,', 3), ('thru', 3), ('cemetery', 3), ('Molalla', 3), ('stream', 3), ('walker', 3), ('swimmers', 3), ('retreating', 3), ('Range', 3), ('American', 3), ('thunderstorm', 3), ('Crescent', 3), ('surprise', 3), ('Smoky', 3), ('dark,', 3), ("O'", 3), ('Gap', 3), ('mid-day', 3), ('Mountains.', 3), ('homes', 3), ('Louisa', 3), ('Sees', 3), ('many', 3), ('Kalama', 3), ('footprints.', 3), ('Smith', 3), ('felt', 3), ('slope', 3), ('Star', 3), ('roaring', 3), ('(Part', 3), ('Mt', 3), ('Video', 3), ('12', 3), ('Toutle', 3), ('WA', 3), ('Son', 3), ('hillside', 3), ('Orting', 3), ('twice', 3), ('Aberdeen', 3), ('Quinault', 3), ('boaters', 3), ('photos)', 3), ('Cascade', 3), ('Darrington', 3), ('son,', 3), ('Corner', 3), ('night.', 3), ('golf', 3), ('Shores', 3), ('girlfriend', 3), ('Pembine', 3), ('Dolly', 3), ('Cabin', 3), ('Upper', 3), ('backcountry', 3), ('City.', 3), ('cut', 3), ('type', 3), ('thrashing', 3), ('Howling', 3), ('Belleville', 3), ('Knoll', 3), ('NE', 3), ('Snow', 3), ('Willow', 3), ('Redwoods', 3), ('Cousins', 3), ('interesting', 3), ('Barn', 3), ('Muir', 3), ('morning,', 3), ('Auburn', 3), ('Men', 3), ('more', 3), ('banging', 3), ('ground', 3), ('Dorrington', 3), ('Mineral', 3), ('Alps', 3), ('whistles', 3), ('trackway', 3), ('Basin', 3), ('vacation', 3), ('Stanley', 3), ('Expedition', 3), ('Iron', 3), ('stomping', 3), ('eerie', 3), ('directed', 3), ('Juan', 3), ('Taylor', 3), ('Bowhunters', 3), ('frightens', 3), ('Traveler', 3), ('Okeechobee', 3), ('knocks,', 3), ('visit', 3), ('growing', 3), ('yells', 3), ('overnight', 3), ('Man"', 3), ('ride', 3), ('howling', 3), ('grunts', 3), ('fours', 3), ('remember', 3), ('clacking', 3), ('bowhunters', 3), ('eyeshine', 3), ('Cougar', 3), ('recorded', 3), ('cast', 3), ('scared', 3), ('calling', 3), ('steep', 3), ('blind', 3), ('room', 3), ('Michigan', 3), ('Escanaba', 3), ('Bemidji', 3), ('Sturgeon', 3), ('unnerved', 3), ('climbers', 3), ('disturbed', 3), ('Pilot', 3), ('interaction', 3), ('Sabbath', 3), ('Tappan', 3), ('Mogadore', 3), ('Skookum', 3), ('Rawley', 3), ('Bumping', 3), ('pitched', 3), ('Randle', 3), ('Republic', 3), ('Alcan', 2), ('Person', 2), ('hill,', 2), ('moans', 2), ('confronted', 2), ('lady', 2), ('southern', 2), ('dike', 2), ('feces', 2), ('turned', 2), ('Alabama', 2), ('Adult', 2), ('Moody', 2), ('Guntersville', 2), ('encountering', 2), ('business', 2), ('pulled', 2), ('standoff', 2), ('Clayton', 2), ('baby', 2), ('45', 2), ('Lookout', 2), ('Gadsden', 2), ('Morgan', 2), ('Birmingham', 2), ('Alexander', 2), ('9', 2), ('Bluff', 2), ('Backyard', 2), ('Home.', 2), ('row', 2), ('digging', 2), ('4-wheeler', 2), ('peers', 2), ("4'", 2), ('Paris', 2), ('male', 2), ('Hamilton', 2), ('rifle', 2), ('Village', 2), ('Hardy', 2), ('Mallard', 2), ('Norfork', 2), ('unusual,', 2), ('close-up', 2), ('Police', 2), ('Joseph', 2), ('T.', 2), ('motorcycle', 2), ('Canyon,', 2), ('Flagstaff.', 2), ('Concho', 2), ('foggy', 2), ('Low', 2), ("Payne's", 2), ('Pinecrest', 2), ('Redding', 2), ('Lee', 2), ('Sonora', 2), ('Biologist', 2), ('brother', 2), ('Yreka', 2), ('travelling', 2), ('Tioga', 2), ('Truckee', 2), ('Sly', 2), ('Cruz', 2), ('lights', 2), ('canyon', 2), ('Fire', 2), ('Pennsylvania)', 2), ('Lewiston', 2), ('(Hwy', 2), ('collecting', 2), ('pine', 2), ('96', 2), ('PCT', 2), ('Marble', 2), ('Paranormal', 2), ('Covelo', 2), ('Mono', 2), ('Outside', 2), ('retells', 2), ('close,', 2), ('isolated', 2), ('(at', 2), ('Hot', 2), ('grey', 2), ('lonely', 2), ('teacher', 2), ('main', 2), ('Forestry', 2), ('Worker', 2), ('both', 2), ('CA', 2), ('Travelers', 2), ('Alberta', 2), ('Longview', 2), ('Plain', 2), ('Nordegg', 2), ('Peace', 2), ('bird', 2), ('93', 2), ('Lillooet', 2), ('Other', 2), ('Prince', 2), ('George', 2), ('Lower', 2), ('Fraser', 2), ('plan', 2), ('expedition', 2), ('Revelstoke', 2), ('Cowichan', 2), ('Victoria', 2), ('House', 2), ('recollects', 2), ('Davis', 2), ('operator', 2), ('crossing,', 2), ('Norway', 2), ('Manitoba', 2), ('manlike', 2), ('Pas', 2), ('Brunswick', 2), ('Trans-Canada', 2), ('cottage', 2), ('policeman', 2), ('moose', 2), ('northern', 2), ('11', 2), ('grouse', 2), ('Francis', 2), ('Markdale', 2), ('doctor', 2), ('fire', 2), ('ranchers', 2), ('handprint', 2), ('hind', 2), ('shift', 2), ('rainy', 2), ('stunned', 2), ('Copper', 2), ('hiker,', 2), ('1/2', 2), ('student', 2), ('together', 2), ('trailed', 2), ('Pikes', 2), ('viewing', 2), ('Dillon', 2), ('vivid', 2), ('Sheriff', 2), ('growls,', 2), ('GA', 2), ('Ranch', 2), ('stops', 2), ('Rd.,', 2), ('hogs', 2), ('brown/black', 2), ('concerning', 2), ('Skunk', 2), ('Photos', 2), ('pile', 2), ('Greenwood', 2), ('441', 2), ('eight', 2), ('June', 2), ('Manatee', 2), ('door', 2), ('road,', 2), ('Teacher', 2), ('branches', 2), ('stump', 2), ('startling', 2), ('horse,', 2), ('Palatka', 2), ('cousins', 2), ('hominid', 2), ('Ochopee', 2), ('On', 2), ('work,', 2), ('Sweet', 2), ('Twilight', 2), ('Lakeland', 2), ('Hillsborough', 2), ('City,', 2), ('hole', 2), ('Asbury', 2), ('HWY', 2), ('Goethe', 2), ('Jennings', 2), ('guards', 2), ('flashlight', 2), ('Mexico', 2), ('Leesburg', 2), ('Richloam', 2), ('(includes', 2), ('sketch)', 2), ('compelling', 2), ('Withlacoochee', 2), ('Sorrento', 2), ('Grassy', 2), ('Waters', 2), ('contractor', 2), ('I-95', 2), ('upper', 2), ('Punta', 2), ('Gorda', 2), ('stranded', 2), ('brakes', 2), ('Chiefland', 2), ('subdivision', 2), ('Ape', 2), ('Palm', 2), ('Glennville', 2), ('crash', 2), ('P.', 2), ('"thing"', 2), ('Wolf', 2), ('75', 2), ('lines', 2), ('Hiram', 2), ('garage', 2), ('Macon', 2), ('maneuvers', 2), ('Rome', 2), ('Monticello', 2), ('LEO', 2), ('Rockmart', 2), ('grass', 2), ('"The', 2), ('Des', 2), ('Moines', 2), ('throughout', 2), ('Iowa', 2), ('Floyd', 2), ('apartment', 2), ('6:30', 2), ('a.m.,', 2), ('public', 2), ('Wert', 2), ('Dubuque', 2), ('riverbed', 2), ('52', 2), ('Spirit', 2), ('miss', 2), ('Snake', 2), ('hot', 2), ('feels', 2), ('Falls.', 2), ('Logger', 2), ('granddaughter', 2), ('bipedal,', 2), ('Fairfield', 2), ('berries', 2), ('I-90', 2), ('Very', 2), ('woodcutter', 2), ('Sandpoint', 2), ('Payette', 2), ('Spencer', 2), ('shiny', 2), ('Vandalia.', 2), ('swampy', 2), ('Seneca.', 2), ('Rt', 2), ('Dry', 2), ('quarry', 2), ('Detroit', 2), ('Christmas', 2), ('Girard', 2), ('retrieving', 2), ('closeup', 2), ('Kankakee', 2), ('Clinton', 2), ('Jubilee', 2), ('dumpster', 2), ('Taylorville', 2), ('Middle', 2), ('Otterville', 2), ('Lawrenceville', 2), ('Harris', 2), ('Preserve.', 2), ('Olive', 2), ('Argyle', 2), ('second', 2), ('Peoria', 2), ('Rushville', 2), ('Motorcyclist', 2), ('Hagaman', 2), ('Giant', 2), ('attempts', 2), ('soybean', 2), ('Westfield', 2), ('Manchester', 2), ('(with', 2), ('17', 2), ('curious', 2), ('deputy', 2), ('scene', 2), ('Lawrence', 2), ('Wichita', 2), ('nearly', 2), ('McPherson', 2), ('An', 2), ('8-foot', 2), ('fires', 2), ('porch.', 2), ('Later', 2), ('Incident', 2), ('Knot', 2), ('tries', 2), ('Daniel', 2), ('Investigator', 2), ('white-haired', 2), ('confrontation', 2), ('unexpected', 2), ('Grayson', 2), ('four-wheeler', 2), ('made', 2), ('12"', 2), ('track,', 2), ('only', 2), ('looked', 2), ('Seen', 2), ('surveyor', 2), ('Kisatchie', 2), ('Snowmobilers', 2), ('Street', 2), ('cousin', 2), ('bush', 2), ('witnesses,', 2), ('Mile', 2), ('collision', 2), ('cars', 2), ('Sisters', 2), ('OH', 2), ('runner', 2), ('Gwinn', 2), ('(Upper', 2), ('Peninsula)', 2), ('Seney', 2), ('Time', 2), ('Juvenile', 2), ('Wolverine', 2), ('Bird', 2), ('Beaverton', 2), ('Palo', 2), ('Kalkaska', 2), ('Grandfather', 2), ('grandson', 2), ('waiting', 2), ('Marion', 2), ('recalled', 2), ('who', 2), ('locations', 2), ('intrusion', 2), ('river.', 2), ('field.', 2), ('encountered', 2), ('stepping', 2), ('Ape-like', 2), ('bad', 2), ('smell,', 2), ('Pisgah', 2), ('Leonard', 2), ('watchers', 2), ('Mills.', 2), ('decades', 2), ('Ash', 2), ('Grove.', 2), ('Coeur', 2), ('Fair', 2), ('barn', 2), ('32', 2), ('Canal', 2), ('Stockton', 2), ('pedestrian', 2), ('94', 2), ('Farmington', 2), ('Reed', 2), ('Monkey', 2), ('Conservation', 2), ('snaps', 2), ('car.', 2), ('Meridian', 2), ('512', 2), ('Elwood', 2), ('observation)', 2), ('times', 2), ('Fly', 2), ('Rattlesnake', 2), ('van', 2), ('riverbank', 2), ('accident', 2), ('Photo', 2), ('gorilla', 2), ('broad', 2), ('Butler', 2), ('Broad', 2), ('Rocky', 2), ('Linville', 2), ('Spruce', 2), ('roadway', 2), ('Taylorsville', 2), ('Brook', 2), ('secluded', 2), ("couple's", 2), ('Water', 2), ('Gap.', 2), ('IR', 2), ('Narbona', 2), ('hauler', 2), ('close-range', 2), ('Scientist', 2), ('gas', 2), ('security', 2), ('terrain', 2), ('Boundary', 2), ('dump', 2), ('smaller', 2), ('Wells', 2), ('Atwater', 2), ('surprised', 2), ('Logan', 2), ('18"', 2), ("6'", 2), ('drinking', 2), ('Bainbridge', 2), ('Hoadley', 2), ('Austin', 2), ('Okeana', 2), ('lead', 2), ('Mohican', 2), ('crouched', 2), ('humanlike', 2), ('Dog', 2), ('grunting', 2), ('feet', 2), ('pack', 2), ('turns', 2), ('monster', 2), ('Fulton', 2), ('campfire', 2), ('cause', 2), ('Brandywine', 2), ('Ski', 2), ('Georgetown', 2), ('Germantown', 2), ('Meander', 2), ('Liverpool', 2), ('month', 2), ('patch', 2), ('opposite', 2), ('investigators.', 2), ('Honobia', 2), ('August', 2), ('chases', 2), ('interstate', 2), ('Burns', 2), ('Boggy', 2), ('Experienced', 2), ('approx.', 2), ('80', 2), ('Smithville', 2), ('Jay', 2), ('Railroad', 2), ('5-6', 2), ('coast', 2), ('swinging', 2), ('ran', 2), ('15', 2), ('catches', 2), ('trimming', 2), ('Grants', 2), ('Range.', 2), ('sasquatches', 2), ('Girls', 2), ('Members', 2), ('play', 2), ('I-84', 2), ('beach.', 2), ('Logging', 2), ('Lookingglass', 2), ('power', 2), ('meets', 2), ('visitation', 2), ('boundary', 2), ('scares', 2), ('Bandon', 2), ('Denton', 2), ('Bradford', 2), ('mid', 2), ('Allison', 2), ('farmers', 2), ('Clearfield', 2), ('Pittsburgh', 2), ('Summer', 2), ('biker', 2), ('Glendale', 2), ('Myrtle', 2), ('paper', 2), ('Cross', 2), ('Dakota', 2), ('Obion', 2), ('Bon', 2), ('frog', 2), ('all-fours', 2), ('Chapel', 2), ('Park,', 2), ('Fayetteville', 2), ('Forge', 2), ('Human-like', 2), ('house.', 2), ('yards', 2), ('searching', 2), ("grandparents'", 2), ('Pines.', 2), ('Texoma', 2), ('Caddo', 2), ('quarter', 2), ('endure', 2), ('Special', 2), ('Forces', 2), ('stargazing', 2), ("husband's", 2), ('Richland', 2), ('Livingston', 2), ('Waverly', 2), ('Aledo', 2), ('Timber', 2), ('Wasatch', 2), ('Fishlake', 2), ('startle', 2), ('Quantico', 2), ('View', 2), ('catch', 2), ('audio', 2), ('follow-up', 2), ('Woodstock', 2), ('Danville', 2), ('train', 2), ('Highlands', 2), ('Civil', 2), ('War', 2), ('Bedford', 2), ('Adams', 2), ('found.', 2), ('heard,', 2), ('driving,', 2), ('baseball', 2), ('huge,', 2), ('frogs', 2), ('Angeles', 2), ('Pyramid', 2), ('Man-like', 2), ('flying', 2), ('quickly', 2), ('Department', 2), ('Natural', 2), ('Bonney', 2), ('stood', 2), ("Sheriff's", 2), ('fast-moving', 2), ('traversing', 2), ('Table', 2), ('At', 2), ('throw', 2), ('member', 2), ('mission', 2), ('2,', 2), ('Skykomish', 2), ('younger', 2), ('pit', 2), ('Riffe', 2), ('Silhouette', 2), ('awakens', 2), ('kayaking', 2), ('auditory', 2), ('freeway', 2), ('scout', 2), ('Kingston', 2), ('B', 2), ('Photos)', 2), ('Puyallup', 2), ('spring', 2), ('Omak', 2), ('bikes', 2), ('cellphone', 2), ('fireworks', 2), ('good', 2), ('Woodinville', 2), ('Naselle', 2), ('researcher', 2), ('Wenatchee', 2), ('Eatonville', 2), ('clay', 2), ('which', 2), ('Joint', 2), ('Lewis-McChord', 2), ('Enumclaw', 2), ('Marysville', 2), ('included)', 2), ('Snohomish', 2), ('Conconully', 2), ('Center', 2), ('Coles', 2), ('animal.', 2), ('making', 2), ('Hatfield', 2), ('Whitehall', 2), ('Marinette', 2), ('regarding', 2), ('called', 2), ('deliverer', 2), ('firefighter', 2), ('Potomac', 2), ('Repeat', 2), ('visitations', 2), ('Princeton', 2), ('Trees', 2), ('55', 2), ('Youngster', 2), ('cemetary', 2), ('kitchen', 2), ('primate-like', 2), ('shares', 2), ('Elkins', 2), ('Tract', 2), ('entrance', 2), ('Noon', 2), ('Washburn,', 2), ('ranger', 2), ('nocturnal', 2), ('Chicken', 2), ('repeat', 2), ('Troy', 2), ('Awakened', 2), ('Forrest', 2), ('Waterloo', 2), ('Unexplained', 2), ('Arkansas', 2), ('piece', 2), ('Vocalizations,', 2), ('(w/photo)', 2), ('Guard', 2), ('disturb', 2), ('sundown', 2), ('Rim', 2), ('nest,', 2), ('Heavy', 2), ('Snowbowl', 2), ('history', 2), ('Rimrock', 2), ('Reports', 2), ('Foresthill', 2), ('Flats', 2), ('Cold', 2), ('Shingletown', 2), ('High-pitched', 2), ('Sequoia', 2), ('dusk,', 2), ('employees', 2), ('stacked', 2), ('Isabella', 2), ('Station', 2), ('Hear', 2), ('Residents', 2), ('repetitive', 2), ('Monache', 2), ('BF-related', 2), ('Valley,', 2), ('Humboldt', 2), ('incident,', 2), ('AM', 2), ('hour', 2), ('response', 2), ('Tehachapi', 2), ('push', 2), ('SE', 2), ('Round', 2), ('Deep', 2), ('bikers', 2), ('fly', 2), ('Kananaskis', 2), ('prolonged', 2), ('Echo', 2), ('Campbell', 2), ('Glacier', 2), ('Bell', 2), ('Hope', 2), ('Bowser', 2), ('Seasoned', 2), ('Grouse', 2), ('Backcountry', 2), ('Uniacke', 2), ('flung', 2), ('possilble', 2), ('sign', 2), ('Huron', 2), ('Mines', 2), ('Otter', 2), ('Superior', 2), ('Boaters', 2), ('Thunder', 2), ('whoop', 2), ('feeling', 2), ('snow.', 2), ('break', 2), ('heard.', 2), ('cries', 2), ('vocalization,', 2), ("Hunter's", 2), ('driven', 2), ('Arrowhead', 2), ('Aspen', 2), ('roars', 2), ('Found', 2), ('Foot', 2), ('casts', 2), ('Ft.Myers', 2), ('WMA', 2), ('Elkton', 2), ('Scream', 2), ('four-wheelers', 2), ('boar', 2), ('Bartow', 2), ('Boardman', 2), ('bluff', 2), ('charge', 2), ('Wellborn', 2), ('78', 2), ('Howls', 2), ('bowhunting', 2), ('Crestview', 2), ('Yellow', 2), ('terrible', 2), ('tree-shaking', 2), ('Paisley', 2), ('Holopaw', 2), ('"Mole', 2), ('Miami', 2), ('Poinciana', 2), ('notices', 2), ('shadowed', 2), ('smelly', 2), ('harassment', 2), ('mobile', 2), ('Ohoopee', 2), ('stalking,', 2), ('Sautee-Nacoochee', 2), ('underneath', 2), ('Marines', 2), ('Albany', 2), ('Marsh', 2), ('Crooked', 2), ('terrified', 2), ('howl/scream', 2), ('trapping', 2), ('Bachelors', 2), ('Norris', 2), ('paranormal', 2), ('Castle', 2), ('peek-a-boo', 2), ('Flint', 2), ('scare', 2), ('Scranton', 2), ('paralleled', 2), ('biking', 2), ('3-4', 2), ('discover', 2), ('Ransom', 2), ('Bagdad', 2), ('new', 2), ('Stanton', 2), ('Unrecognized', 2), ('wailing', 2), ('Pond', 2), ('Berkshires', 2), ('structure', 2), ('location', 2), ('Vocals', 2), ('Observer', 2), ('Glennie', 2), ('Ann', 2), ('Arbor', 2), ('individuals', 2), ('Hillman', 2), ('Roscommon', 2), ('unexplained', 2), ('paralleling', 2), ('season', 2), ('Era', 2), ('Traverse', 2), ('Rogue', 2), ('unnerving', 2), ('visitors', 2), ('discovers', 2), ('onto', 2), ('makes', 2), ('screams.', 2), ("ATV'ers", 2), ('Kirbyville', 2), ('Piney', 2), ('circles', 2), ('Grandmother', 2), ('attempt', 2), ('photographer', 2), ('gold', 2), ('Lodge', 2), ('Missoula', 2), ('Flathead', 2), ('hike', 2), ('Just', 2), ('tents', 2), ('Wharton', 2), ('vocalizaitons', 2), ('Rockaway', 2), ('Dulce', 2), ("BFRO's", 2), ('NY', 2), ('Minerva', 2), ('website', 2), ('sandbar', 2), ('Woodbury', 2), ('Reservoir.', 2), ('Twin', 2), ('toed', 2), ('hollow', 2), ('peering', 2), ('intimidates', 2), ('strange,', 2), ('dam', 2), ('howl,', 2), ('knocking,', 2), ('Seaside', 2), ('Caves', 2), ('N.', 2), ('return', 2), ('growl,', 2), ('Bicyclist', 2), ('clacks', 2), ('Allegheny', 2), ('Incidents', 2), ('Seguin', 2), ('Unseen', 2), ('scouts', 2), ('Thicket', 2), ('Queen', 2), ('odd', 2), ('Grandaddy', 2), ('Swift', 2), ('Lifelong', 2), ('Dismal', 2), ('Pickett', 2), ('guard', 2), ('fish', 2), ('hatchery', 2), ('moan', 2), ('unrecognizable', 2), ('Monster"', 2), ('sounded', 2), ('thought', 2), ('Buckhorn', 2), ('Wa', 2), ('Maple', 2), ('Hamma', 2), ('roar', 2), ('Experiences', 2), ('Hoh', 2), ('breaks', 2), ('Stanwood', 2), ('Winlock', 2), ('Yelm', 2), ('Verlot', 2), ('Salkum', 2), ('Shi', 2), ('enjoying', 2), ('Fall', 2), ('Rainy', 2), ('Cinebar', 2), ('Loup', 2), ('shooter', 2), ('talking', 2), ('Biron', 2), ('Horeb', 2), ('Sods', 2), ('Wildell', 2), ("Campers'", 1), ('Wrangell', 1), ('Elias', 1), ('noon,', 1), ('Alaska-Canada', 1), ('Potter,', 1), ('AK', 1), ('reddish-colored', 1), ('Fairbanks', 1), ('seperate', 1), ('1st', 1), ('2nd', 1), ('outdoorsman', 1), ("resident's", 1), ('Market', 1), ('Valhermosa', 1), ('Conecuh', 1), ('Lagoon', 1), ('Aliceville', 1), ('freshly', 1), ('harrowing', 1), ('backwoods.', 1), ('Warrior.', 1), ('Orrville', 1), ('Tuskegee', 1), ('Cheaha', 1), ('Montgomery', 1), ('Exec', 1), ('balcony', 1), ('hotel', 1), ('Hurricane', 1), ('Frederic', 1), ('Mobile', 1), ('Verbena', 1), ('sights', 1), ('dirty-white', 1), ('Muscle', 1), ('Shoals', 1), ('Brewton', 1), ('holding', 1), ('pig', 1), ('Andalusia', 1), ('blonde', 1), ('Fruitdale', 1), ('culprit', 1), ('Clanton', 1), ('dalylight', 1), ('Bone', 1), ('Northport', 1), ('two,', 1), ('young,', 1), ('Abbeville', 1), ('Bremen', 1), ('Newville', 1), ('Ariton', 1), ('Blount', 1), ('Ozark', 1), ('From', 1), ('Bus', 1), ('unscheduled', 1), ('gymnasium', 1), ('Herbine,', 1), ('Rison', 1), ('pick-up', 1), ('3-toed', 1), ('wheat', 1), ('Pocahontas', 1), ('Imboden', 1), ('narrowly', 1), ('misses', 1), ('darting', 1), ('mountainous', 1), ('stretch', 1), ('apelike', 1), ('reaching', 1), ('1960s', 1), ('grandfather', 1), ('leaning', 1), ('Doddridge', 1), ('Fouke.', 1), ('extraordinary,', 1), ("youngster's", 1), ('spelunking', 1), ('Huntsville.', 1), ("5.5'", 1), ('dead-end', 1), ('Bismarck.', 1), ('eyed', 1), ('Cedarville', 1), ('Flippin', 1), ('Winona', 1), ('bigfoots', 1), ('probable', 1), ('I-40', 1), ('Marche.', 1), ('Newark', 1), ('AR-258', 1), ('Bald', 1), ('Bigfoots,', 1), ('unit,', 1), ('Searcy', 1), ('Anthropology', 1), ('Degree', 1), ('ex', 1), ('87', 1), ('Jacks', 1), ('Winslow', 1), ('Navajo', 1), ('De', 1), ('Chelley', 1), ('Strawberry,', 1), ('Alpine.', 1), ('Lukachukai', 1), ('RT', 1), ('61', 1), ('Safford', 1), ('Springerville.', 1), ('multi-witness,', 1), ('Bartlett', 1), ('Cibecue', 1), ('(Fort', 1), ('Apache', 1), ('Reservation)', 1), ('Buckeye', 1), ('Tonto', 1), ('66', 1), ('storm', 1), ('Vet', 1), ('limits', 1), ('parallel', 1), ('Gila', 1), ('Fools', 1), ('Low.', 1), ('Bass', 1), ('Meadow,', 1), ('4-wheelers', 1), ('Porterville', 1), ('Weed', 1), ('Vining', 1), ('Eighteen', 1), ('hut;', 1), ('videotape', 1), ('distressed', 1), ('Petaluma', 1), ('(Yosemite),', 1), ('beyond', 1), ('Crane', 1), ('Jolla', 1), ('Reservation.', 1), ('Dunsmuir', 1), ('Burney', 1), ('Laytonville', 1), ('landslide', 1), ('Arroyo', 1), ('Seco', 1), ('Mid-day', 1), ('Partners', 1), ('Roadway', 1), ('Dos', 1), ('Rios', 1), ('Eel', 1), ('Workers', 1), ('Tule', 1), ('20year', 1), ('period.', 1), ('adults', 1), ('Joaquin', 1), ('tourists', 1), ('Caverns', 1), ('Sur', 1), ('Ventana', 1), ('Vehicle', 1), ("passenger's", 1), ('Hiouchi', 1), ('Firefighter', 1), ('multiple-witness', 1), ('Loma', 1), ('(Titusville', 1), ('Herald', 1), ('Orestimba', 1), ('Diablo', 1), ('(Devil)', 1), ('299)', 1), ("Backpacker's", 1), ("Wright's", 1), ('Enchanted', 1), ('Pools', 1), ('Trinidad', 1), ('nuts', 1), ('retreats', 1), ('approach,', 1), ('Madonna', 1), ('Brief,', 1), ('blurry', 1), ('video', 1), ('Willits', 1), ('move', 1), ('time)', 1), ('Desert', 1), ('Condo', 1), ('Crest', 1), ('Youngsters', 1), ('sugar', 1), ('beet', 1), ('(in', 1), ('headlights)', 1), ('Cloverdale', 1), ('395', 1), ('Los', 1), ('Padres', 1), ('Placerville', 1), ('Clear-Cut', 1), ('two-lane', 1), ('Gorman', 1), ('Daughter', 1), ('46', 1), ('Paso', 1), ('Robles,', 1), ('88', 1), ('Clements', 1), ('Yreka,', 1), ('Mtns', 1), ('Markleeville', 1), ('Silverwood', 1), ('Hesperia', 1), ('180', 1), ('Grant', 1), ('22,', 1), ('532', 1), ('Saulteaux', 1), ('Edmonton,', 1), ('Stony', 1), ('Alexo', 1), ('18', 1), ('disturbing', 1), ('Redwater', 1), ('Waterton', 1), ('Radium', 1), ('gully', 1), ('Hope,', 1), ('3,', 1), ('Nicolum', 1), ('Eight-foot', 1), ('Tete', 1), ('Jaune', 1), ('Cache', 1), ('St.John', 1), ('Liard.', 1), ('Checakmus', 1), ('Halfmoon', 1), ('Duncan;', 1), ('mentioned.', 1), ('Motorhome', 1), ('7am', 1), ('Othello', 1), ('(Lima,', 1), ('Ohio)', 1), ('(Fresno', 1), ('Bee)', 1), ('Univ.', 1), ('Calif.', 1), ('snowmobilers', 1), ('Castlegar', 1), ('(Vancouver', 1), ('Island)', 1), ('Langley', 1), ('Okanagan', 1), ('Resting', 1), ('Whiteswan', 1), ('Shawnigan', 1), ('BC-Alberta', 1), ('inquisitive', 1), ('Qualicum', 1), ('1970', 1), ('present', 1), ('Kootenay,', 1), ('Chadsey', 1), ('Rossland', 1), ('celebrating', 1), ('birthday', 1), ('Easterville', 1), ('ferry', 1), ('House.', 1), ('Maine/New', 1), ('Observe', 1), ('Along', 1), ('Grimsby.', 1), ('Ufford', 1), ('Georgian', 1), ('Hwy,', 1), ('~100', 1), ('Cochrane.', 1), ('Toronto', 1), ('Latchford', 1), ('Brockville', 1), ('km', 1), ('cabins', 1), ('Narrows', 1), ('emergency', 1), ('services', 1), ('Guide', 1), ('trolling', 1), ('Growth', 1), ('Yield', 1), ('Tech', 1), ('Orangeville', 1), ('Yukon', 1), ('Whitehorse', 1), ('uncle', 1), ('Isabel', 1), ('Loveland', 1), ('(Cont.', 1), ('Div.)', 1), ('Future', 1), ('Rawah', 1), ('Rockhound', 1), ("he's", 1), ('tributary', 1), ('Investigator,', 1), ('Keith', 1), ("Foster's", 1), ('evaluation', 1), ('App.', 1), ('Eagle.', 1), ('Twenty-two', 1), ('trip.', 1), ('vandalized', 1), ('sign.', 1), ('deer.', 1), ('extreme', 1), ('Dinosaur', 1), ('Monument.', 1), ('mine.', 1), ('Cameron', 1), ('"power-walking"', 1), ('12"+', 1), ('handprints', 1), ('Co-workers', 1), ('"man-thing"', 1), ('street', 1), ('CO', 1), ('91', 1), ('Sopris', 1), ('Continental', 1), ('Divide', 1), ("Pike's", 1), ('Blanca', 1), ('pounding', 1), ('Startled', 1), ('twilight,', 1), ('Picnicker', 1), ('Hotchkiss', 1), ('Chataqua', 1), ('charter', 1), ('160', 1), ('Mancos', 1), ('bible', 1), ('Wet', 1), ('Pueblo', 1), ('picnicker', 1), ('rocky', 1), ('ledge', 1), ('Vrain', 1), ('Mid-morning', 1), ('Miner', 1), ('Silverton', 1), ('Night-time', 1), ('Ft', 1), ('Further', 1), ('corroboration', 1), ('multiple-witness,', 1), ('winter,', 1), ('nighttime,', 1), ('Kenosha', 1), ('Cornwall', 1), ('Buena', 1), ('Vista', 1), ('Bailey', 1), ('Conifer', 1), ('Housatonic', 1), ('Bridgewater', 1), ('Year', 1), ('Quednau', 1), ('Guards', 1), ('momentarily', 1), ('Nova', 1), ('car..', 1), ('black-brown', 1), ('Wiles', 1), ('Sample', 1), ('canal,', 1), ('so', 1), ('cypress', 1), ('bayhead,', 1), ('Everglades,', 1), ('Dade', 1), ('Collier', 1), ('line,', 1), ('Alligator', 1), ('Alley.', 1), ('(6)', 1), ('Ape.', 1), ('footcasts', 1), ('kill.', 1), ('authorities', 1), ('hitchhiker', 1), ('forested', 1), ('close-range,', 1), ('67-year-old', 1), ('Baptist', 1), ('minister', 1), ('form.', 1), ('thirteen', 1), ('led', 1), ('gate.', 1), ('weird', 1), ('slightly', 1), ('over.', 1), ('speeds.', 1), ('deliverymen', 1), ('3:30', 1), ('a.m', 1), ('"man"', 1), ('minutes', 1), ('(N.', 1), ('Myers)', 1), ('1984', 1), ('yr/old', 1), ('rips', 1), ('flee', 1), ('appears', 1), ('infant', 1), ('Psychology', 1), ('covering', 1), ('and/or', 1), ('palm', 1), ('moves', 1), ('closer', 1), ('Construction', 1), ('Johnathon', 1), ('Dickenson', 1), ("Year's", 1), ('Eve,', 1), ('carpenter', 1), ('Drum', 1), ('Eglin', 1), ('aftermath', 1), ('Gum', 1), ('Fanning', 1), ('Sarasota.', 1), ('Montura', 1), ('Estates', 1), ('Venice', 1), ('fence-line', 1), ('Mulberry', 1), ('Birder', 1), ('FL/GA', 1), ('border,', 1), ('Tallahassee', 1), ('I-29', 1), ('Placid', 1), ('CR', 1), ('448', 1), ('Jem', 1), ('sigting', 1), ('Gulf', 1), ('Hammock', 1), ("O'Lakes", 1), ('Turner', 1), ('Osceola', 1), ('739', 1), ('grader', 1), ('Alafia', 1), ('stumble', 1), ('upon', 1), ('Holiday', 1), ('Richey', 1), ('Bronson', 1), ('intruder', 1), ('Williston', 1), ('Exit', 1), ('Pensacola', 1), ('clients', 1), ('Skunk-Ape', 1), ('Merritt', 1), ('US-1', 1), ('Rockledge', 1), ('McCoy', 1), ('Up', 1), ('Augustine', 1), ('Chipola', 1), ('Pierson', 1), ('Cassia', 1), ('Northbound', 1), ('Fellsmere', 1), ('frogging', 1), ('Johns', 1), ('Stranded', 1), ('Mack', 1), ('planner', 1), ('touring', 1), ('FL-19', 1), ('Best', 1), ('canvassed', 1), ('boater', 1), ('avoid', 1), ('Bristol', 1), ('dumped', 1), ('Waukeenah', 1), ('strike', 1), ('man-ape', 1), ('Years', 1), ('supported', 1), ('articles', 1), ('roller', 1), ('blading', 1), ('Charlotte', 1), ('SR-72', 1), ('Arcadia', 1), ('rabbits', 1), ("'Hairy", 1), ("Man'", 1), ('27', 1), ('SR-19', 1), ('Altoona', 1), ('drive', 1), ('amazing', 1), ('backroad', 1), ('incident...', 1), ("rider's", 1), ('Gray', 1), ('man/ape', 1), ('Gordon,', 1), ('Signal', 1), ('Rood', 1), ('landing', 1), ('Marina', 1), ('Beards', 1), ('Church,', 1), ('chopper', 1), ('been', 1), ('debunked.', 1), ('See', 1), ('msg', 1), ('Caulkins', 1), ('notes.', 1), ('Stewart.', 1), ("Duke's", 1), ('Jekyll', 1), ('Emanuel/Candler', 1), ('Minnehaha', 1), ('Clay', 1), ('Hoboken.', 1), ('laying', 1), ('catfish', 1), ('Alapaha', 1), ('powerline', 1), ('Newnan', 1), ('viewer', 1), ('Hannah', 1), ('Kinchafoonee', 1), ('Jimmy', 1), ('Witherow', 1), ('Rising', 1), ('Fawn', 1), ('artifact', 1), ('Cohutta', 1), ('since', 1), ('2000', 1), ('Tyrone', 1), ('Moreland', 1), ('Homerville', 1), ('Edith', 1), ('late-afternoon', 1), ('Altamaha', 1), ('Adolescent', 1), ('Chatsworth', 1), ('Moultrie', 1), ('squad', 1), ('Blairsville', 1), ('grandparents', 1), ('Scary', 1), ('Oglethorpe', 1), ('(including', 1), ('sighting)', 1), ('GA-75', 1), ('Cartersville', 1), ('Dallas', 1), ('Pella.', 1), ('prairie', 1), ('bb', 1), ('gun', 1), ('Racoon', 1), ('other.', 1), ('centering', 1), ('Ottosen.', 1), ('mutilatations.', 1), ('Lockridge', 1), ('Monster."', 1), ('taller,', 1), ('air', 1), ('disappearing', 1), ('Eagles', 1), ('Separate', 1), ('Maynard;', 1), ('vicinity', 1), ('Wipsipinicon', 1), ('Artifact', 1), ('Goeldner', 1), ('roofing', 1), ('dry', 1), ('Wellman', 1), ('US-30', 1), ('goat', 1), ('McCall', 1), ('sheriff', 1), ('nine', 1), ('sagebrush', 1), ('escapes', 1), ('16-year-old', 1), ('springs', 1), ('Challis', 1), ('Frightened', 1), ('deerhunters', 1), ('shape', 1), ('Post', 1), ('Selkirk', 1), ('human-looking', 1), ('Long-duration', 1), ('(distant)', 1), ('Moscow', 1), ('Idaho', 1), ('Larkins', 1), ('Roadless', 1), ('Parked', 1), ('Nordman', 1), ('Bloom', 1), ('confirms', 1), ('Montpelier', 1), ("ATV's", 1), ('Dogs', 1), ('alert', 1), ('Kamiah', 1), ('Visitor', 1), ('Priest', 1), ('disappear', 1), ('"something"', 1), ('October', 1), ('cabin,', 1), ('"plays', 1), ('peekaboo"', 1), ('Webster.', 1), ('arrowhead', 1), ('Gulfport.', 1), ('Kewanee', 1), ('Shoal', 1), ('Alton.', 1), ('Sandoval.', 1), ('Frankfort.', 1), ('Carpentersville', 1), ('Goodwine', 1), ('Vermont', 1), ('36', 1), ('Riverton.', 1), ('Pearl', 1), ('Kishwaukee', 1), ('Spitler', 1), ('Bunker', 1), ('Rozetta', 1), ('flooded', 1), ('Hampton', 1), ('Karnak.', 1), ('Carlyle', 1), ('Eve', 1), ('Godfrey', 1), ('Hennepin', 1), ('docks', 1), ('Siloam', 1), ('Murrayville', 1), ('Buckhart', 1), ('Brookfield', 1), ('Zoo', 1), ('48', 1), ('using', 1), ('imager', 1), ('Equality', 1), ('Fenton', 1), ('I-55', 1), ('Lincoln', 1), ('Villa', 1), ('Midday', 1), ('Glasford', 1), ('Jogger', 1), ('Riverton', 1), ('Rend', 1), ('Branch.', 1), ('Ottawa.', 1), ('Decatur', 1), ('Hettick.', 1), ('Mt.Carmel', 1), ('Matteson.', 1), ('levee', 1), ('Rantoul', 1), ('Kellerville', 1), ('Gorham', 1), ('Goodenow', 1), ('Stewardson', 1), ('Plumfield', 1), ('Beall', 1), ('108', 1), ('Oquawka.', 1), ('Altona', 1), ('Schiller', 1), ('Galesburg', 1), ('Findlay', 1), ('Ellisville.', 1), ('Coal', 1), ('Douglas', 1), ('Farmdale', 1), ('Sunset', 1), ('Sheridan.', 1), ('Webster', 1), ('Winamac.', 1), ('Waubee', 1), ('Pekin.', 1), ('Nineveh', 1), ('(The', 1), ('Hammond', 1), ('Times)', 1), ('mentioning', 1), ('Boonville', 1), ('Caver', 1), ('Morgan-Monroe', 1), ('swam', 1), ('Tipsaw', 1), ('Leopold', 1), ('Campbellsburg', 1), ('Marion.', 1), ('mid-afternoon', 1), ('Flatrock', 1), ('Patronville', 1), ("artist's", 1), ('moto-cross', 1), ('Chief', 1), ('Chetopa', 1), ('measured', 1), ('inches', 1), ('length,', 1), ('5/8', 1), ('width.', 1), ('Thousands', 1), ('came', 1), ('TV', 1), ('news', 1), ('mailbox.', 1), ('breathing', 1), (',turns', 1), ("Motorist's", 1), ('results', 1), ('collision.', 1), ('jogger.', 1), ('Later,', 1), ('sherif', 1), ('incident.', 1), ('Haven', 1), ('Lebo', 1), ('Topeka', 1), ('Dunlap', 1), ('Bennington', 1), ('week', 1), ('Pratt', 1), ('Mayetta', 1), ('traffic', 1), ('I-35', 1), ('mussels', 1), ('Ninnescah', 1), ('collides', 1), ('white/grey', 1), ('Hays', 1), ('cop', 1), ('dash', 1), ('right', 1), ('courier', 1), ('Benton,', 1), ('Cole', 1), ('footprint,', 1), ('looks', 1), ('tool', 1), ('use', 1), ('clearing,', 1), ('121', 1), ('detailed', 1), ('Booneboro', 1), ('shots', 1), ('meat', 1), ('littered', 1), ('Tall,', 1), ('hitching', 1), ('post', 1), ('barn..', 1), ('neck', 1), ('Mayslick', 1), ('I-68.', 1), ('Co', 1), ('corral', 1), ('Kentucky,', 1), ('Hazard.', 1), ('Warfield', 1), ('92', 1), ('drivers', 1), ('Vanceburg.', 1), ('Pedestrian', 1), ('75.', 1), ('miners', 1), ('Louellen', 1), ('Blaine.', 1), ('Mussel', 1), ('poachers', 1), ('Barkley.', 1), ('164', 1), ('gorilla-type', 1), ('interrupts', 1), ('Earlington', 1), ('Beech', 1), ('Chenoa', 1), ('strolls', 1), ('videotapes', 1), ('Richwood', 1), ('Waco', 1), ('Salyersville', 1), ('Masonville', 1), ('Crab', 1), ('Orchard', 1), ('Chloe', 1), ('cliff', 1), ('Pikeville', 1), ('endures', 1), ('Knox', 1), ('Petersburg', 1), ('Dual', 1), ('Barkley', 1), ('Hayes', 1), ('Wallins', 1), ('ghillie', 1), ('suit', 1), ('Four-wheeler', 1), ('Philpot', 1), ("neighbor's", 1), ('Greenup', 1), ('constant', 1), ('Campbellsville', 1), ('over,', 1), ('brownish-red', 1), ('#2.', 1), ('Cast', 1), ('old,', 1), ('3/4', 1), ('Kessler', 1), ('Were', 1), ('Coming', 1), ('Out', 1), ('Broken', 1), ('loading', 1), ('motorists,', 1), ('I-49', 1), ('Natchitoches', 1), ('sky', 1), ('Pre-teens', 1), ('shed', 1), ('Sarepta', 1), ('Jigger', 1), ('answering', 1), ('prowler', 1), ('Marrero', 1), ('Ashburnham', 1), ('Rhode', 1), ('Freetown', 1), ('Hanson', 1), ('US-7', 1), ('Williamstown', 1), ('practicing', 1), ('"ape-like"', 1), ('"monkey-like"', 1), ('"hairy', 1), ('creature"', 1), ('jackpine', 1), ('shakes', 1), ('Plainwell', 1), ('19', 1), ('firefighters', 1), ('let', 1), ('pair', 1), ('Having', 1), ('coffee', 1), ('"ape"', 1), ('Apelike', 1), ('dune', 1), ('Caseville', 1), ('Bikers', 1), ('Marquette.', 1), ('Arm', 1), ('Window', 1), ('Screen', 1), ('brush,', 1), ('exposed', 1), ('streetlight.', 1), ('Buckley.', 1), ('Marshall.', 1), ('Rifle', 1), ('Allen,', 1), ('borders', 1), ('MI,', 1), ('IN', 1), ('Michigamme', 1), ('Felch', 1), ('sighting/encounter', 1), ('US-2,', 1), ('Ignace', 1), ('426', 1), ('Cornell', 1), ('Watson', 1), ('personnel', 1), ('Stump', 1), ('Lupton', 1), ('Rapids', 1), ('limb', 1), ('Shingleton', 1), ('clears', 1), ('Fowlerville', 1), ('Grayling', 1), ('(w/sketch', 1), ('artist)', 1), ('Partridge', 1), ('Germfask', 1), ('multi-witness', 1), ('Manistique', 1), ('Bendon,', 1), ('automobile', 1), ('participating', 1), ('Hunt', 1), ('baiting', 1), ('resting', 1), ('Curtisville', 1), ('Rose', 1), ('Brimley', 1), ('Brooklyn.', 1), ('Rogers', 1), ('big,', 1), ('CR550', 1), ('tracking', 1), ('paralyzed', 1), ('fear', 1), ('Guardsman', 1), ('ushered', 1), ('culminating', 1), ('Presque', 1), ('Isle', 1), ('Lighthouse', 1), ('Baldwin', 1), ('grew', 1), ('Kalamazoo', 1), ('Whittemore', 1), ('migrant', 1), ('Kingsley', 1), ('Wakefield', 1), ('Hibbing.', 1), ('cyclist', 1), ('couple,', 1), ('Centerville.', 1), ('Wadena.', 1), ('walkng', 1), ('pull', 1), ('driveway', 1), ('Bermidji', 1), ('Nashwauk', 1), ('Bovey', 1), ('Skibo', 1), ('Campsite', 1), ('barbed', 1), ('wire', 1), ('Louisiana', 1), ('hair,', 1), ('enter', 1), ('Ozora,', 1), ('shed.', 1), ("river's", 1), ('sapling', 1), ('house,', 1), ('(the', 1), ('town)', 1), ('basic', 1), ('Wood.', 1), ('Gainesville.', 1), ('Meteor', 1), ('Gravois', 1), ('Marceline.', 1), ('Tebbetts.', 1), ('Creve', 1), ('emerging', 1), ('Caruthersville.', 1), ('Festus.', 1), ('Bluffs', 1), ('(@', 1), ('"Monkey', 1), ('Mountains")', 1), ('Kelso.', 1), ('Ava', 1), ('Play.', 1), ('Diversion', 1), ('Louis', 1), ('Lonedell', 1), ('Bootheel', 1), ('W.', 1), ('Nifong', 1), ('Blvd.', 1), ('Bloomfield', 1), ('Joplin', 1), ('T', 1), ('Oxly', 1), ('contact', 1), ('Southwest', 1), ('Dora', 1), ('Salem', 1), ('returns', 1), ('lick', 1), ('Cabool', 1), ('Henning', 1), ('US-33', 1), ('Plattsburg', 1), ('Annapolis', 1), ('swerves', 1), ('Community', 1), ('garden.', 1), ('bushes.', 1), ('tag', 1), ('leaned', 1), ('hood', 1), ('teens,', 1), ('Leaf', 1), ('Homochitto', 1), ('Knoxville', 1), ('Enterprise', 1), ('Tishomingo', 1), ("(driver's", 1), ("(passenger's", 1), ('tell', 1), ('w/sketch', 1), ('artist', 1), ('Gallatin', 1), ('Horse-riding', 1), ('Blackfeet', 1), ('face-to-face', 1), ('timbered', 1), ("7000',", 1), ('long-haired', 1), ('snow-covered', 1), ('Dearborn', 1), ('encouter', 1), ('root', 1), ('ball', 1), ('Bowls', 1), ('Decker', 1), ('Montana', 1), ('Sula', 1), ('Tow', 1), ('drag', 1), ('Malta', 1), ('191', 1), ('Esler', 1), ('Deerhead', 1), ("Youth's", 1), ('slams', 1), ("4-5'", 1), ('stared', 1), ('silver-black', 1), ('Smithfield.', 1), ('Falcon', 1), ('Shocco', 1), ('pecan', 1), ('LeJeune.', 1), ('Knob.', 1), ('NC-06', 1), ('Exped', 1), ('notes', 1), ('Windsor', 1), ('recounters', 1), ('Road-crossing', 1), ('220', 1), ('Candor', 1), ('(and', 1), ('children)', 1), ('plowing', 1), ('Yadkin', 1), ('LeJuene', 1), ('1978', 1), ('Wilkesboro', 1), ('traveler', 1), ('Holly', 1), ('Pin', 1), ('Hook', 1), ('Rowland', 1), ('Minot', 1), ('Rash', 1), ('Shield', 1), ('Bazile', 1), ('Area.', 1), ('Fontenelle', 1), ('alley', 1), ('Valentine', 1), ('Crawford', 1), ('Driving', 1), ('strikes', 1), ('Essex', 1), ('Swamp,', 1), ('noon.', 1), ('Crosswicks', 1), ('Garden', 1), ('Parkway,', 1), ('exit', 1), ('Hamburg,', 1), ('Delware', 1), ('Mansfield', 1), ('go', 1), ('Roebling', 1), ('Bordentown', 1), ('Mahlon', 1), ('Dickerson', 1), ('Branchville', 1), ('meadow', 1), ('reaches', 1), ('reach', 1), ('N.M.', 1), ('264', 1), ('Raton', 1), ('Gobernador', 1), ('(on', 1), ('BLM', 1), ('land).', 1), ('skinny', 1), ('Tres', 1), ('Piedras', 1), ('Thoreau', 1), ('skeptic', 1), ('station', 1), ('Las', 1), ('Vegas,', 1), ('NM', 1), ('eroded', 1), ('Genoa', 1), ('Reno', 1), ('span', 1), ('canoe', 1), ('shoreline', 1), ('Genesee', 1), ('(8:00', 1), ('AM).', 1), ('Middleport', 1), ('Napoli', 1), ('Canisteo', 1), ('(1973)', 1), ('(2005/06)', 1), ('Maryland', 1), ('(town)', 1), ('Median', 1), ('Rhinebeck', 1), ('Amenia', 1), ('its', 1), ('struck', 1), ('cemetery,', 1), ('Sidney', 1), ('Higbanks', 1), ('Columbus,', 1), ('Geneva,', 1), ('Timberwoods', 1), ('Sparta;', 1), ('UPDATED', 1), ('Sketch', 1), ('furry', 1), ('door.', 1), ('Latenight', 1), ('(about', 1), ('7-8ft),', 1), ('critter', 1), ('friends,', 1), ('eleven', 1), ('Sprucevale', 1), ('beast', 1), ('Newcomerstown,', 1), ('children,', 1), ('Layman', 1), ('(Chagrin', 1), ('Falls)', 1), ('fox', 1), ('"Freak', 1), ('nature', 1), ('bear"', 1), ('step', 1), ('thicket.', 1), ('271', 1), ('Lynx,', 1), ('Golf', 1), ('Course', 1), ('canoers', 1), ('Audubon', 1), ('preserve,', 1), ('Hoadley,', 1), ('(Wayne', 1), ('For.)', 1), ('brick', 1), ('Kilns', 1), ('Duke', 1), ('Vodrey', 1), ('Haga', 1), ('I-675', 1), ('Beavercreek', 1), ('Coy', 1), ('Saturday', 1), ("William's", 1), ('Birds', 1), ('bench', 1), ('wall', 1), ('"huge', 1), ('thing"', 1), ('Scioto', 1), ('twenty', 1), ('Rabbit', 1), ('accompanied', 1), ('Wintersville', 1), ('ice', 1), ('Friendship', 1), ('Headleys', 1), ('Milton', 1), ('marina', 1), ('Latham', 1), ('Case', 1), ('rumors', 1), ('trappers', 1), ('Bellville', 1), ('ten', 1), ('Cut', 1), ('Ron', 1), ('Schaffner', 1), ('case', 1), ('Prints', 1), ('Mosquito', 1), ('Flap', 1), ('offers', 1), ('clues', 1), ('pointing', 1), ('predation,', 1), ('elsewhere', 1), ('picked', 1), ('up,', 1), ('quick', 1), ('steps,', 1), ('reeds', 1), ('\'huge"', 1), ('Zanesville,', 1), ('Ohio.', 1), ('ourtdoorsmen', 1), ('25+', 1), ('occurrences.', 1), ('lope', 1), ('games', 1), ('Father,', 1), ('enounter', 1), ('"Fang"', 1), ('His', 1), ('Retrieving', 1), ('Their', 1), ('Trap', 1), ('Lines', 1), ('seek', 1), ('"Ape-like"', 1), ('Appears', 1), ('Window,', 1), ('Startles', 1), ('Computer', 1), ('snorting,', 1), ('25', 1), ('slow', 1), ('Bother', 1), ('brown,', 1), ('bike.', 1), ('pursuit', 1), ('motionless.', 1), ('baboon', 1), ('known', 1), ('"Minerva', 1), ('flap."', 1), ('Hardin/Allen', 1), ('Wadsworth,', 1), ('Styx', 1), ('Steubenville', 1), ('213', 1), ('"Blizzard', 1), ('1978."', 1), ('Mini-bike', 1), ('picnicking', 1), ('evening,', 1), ('Gilead', 1), ('SR56', 1), ('Medina.', 1), ('Chardon.', 1), ('Olentangy', 1), ('Delaware.', 1), ('tending', 1), ('Cardington.', 1), ('Vesuvius.', 1), ('Malvern', 1), ('Swimming', 1), ('Antrim', 1), ('dragging', 1), ('mistaken', 1), ('roadkill', 1), ('Urichsville', 1), ('Beloit', 1), ('Edinburg', 1), ('Chesire', 1), ('Philadelphia', 1), ('sightling', 1), ('collects', 1), ('physical', 1), ('Christianburg', 1), ('Nashville,', 1), ('mini-bikes', 1), ('Chardon', 1), ('39', 1), ('Bethesda', 1), ('Cincinnati', 1), ('running,', 1), ('Elyria', 1), ('watermelon', 1), ('geologist', 1), ('hanging', 1), ('him.', 1), ('Edmond.', 1), ('logger,', 1), ('Recent', 1), ('Report', 1), ('kneeling', 1), ('1990', 1), ('Oklahoma,', 1), ('County,', 1), ('Eldon', 1), ('highway.', 1), ('fawn', 1), ('Wooded,', 1), ('rural,', 1), ('hunter,', 1), ('quadrupedal', 1), ('encounters.', 1), ('Cogar', 1), ('Seminole.', 1), ('dental', 1), ('office', 1), ('Kiamichi', 1), ('Oil', 1), ('rig', 1), ('"prowler."', 1), ('Flat.', 1), ('Love', 1), ('Henryetta', 1), ('decribes', 1), ('yards,', 1), ('Eufala', 1), ('Woolaroc', 1), ('Mannford', 1), ('Tulsa', 1), ('59', 1), ('Poteau', 1), ('airport', 1), ('Frederick', 1), ('Railway', 1), ('Conductor', 1), ('Trackbed', 1), ('Yoncalla', 1), ('Boring', 1), ('Close-range', 1), ('lasting', 1), ('roughly', 1), ('1.5', 1), ('stooped-over', 1), ('counselor', 1), ('doing', 1), ('Crossing', 1), ('Climbing', 1), ('Cutbank', 1), ('tan-brown', 1), ('drink', 1), ('cupped', 1), ('hands', 1), ('trackways', 1), ('Blanco', 1), ('Hillsboro', 1), ('culvert,', 1), ('investigate', 1), ('culvert', 1), ('ape-man', 1), ('hillslope', 1), ('Graceful', 1), ('hills', 1), ('Oakland', 1), ('Sutherlin', 1), ('Headwaters', 1), ('Elliot', 1), ('I-84,', 1), ('Multnomah', 1), ('Barton', 1), ('Carver', 1), ('lawn', 1), ('126,', 1), ('McKenzie', 1), ('sees,', 1), ('photograph', 1), ('guests', 1), ('Suttle', 1), ('stationary', 1), ('Job', 1), ('Corps', 1), ('stops,', 1), ('major', 1), ('audible', 1), ('visual,', 1), ('coastal', 1), ('Coquille', 1), ('towing', 1), ('campsite,', 1), ('mid-morning', 1), ('fleeting,', 1), ('Barlow', 1), ('Chiloquin', 1), ('Rice', 1), ('Repeated', 1), ('siblings', 1), ('halts', 1), ('Skateboarders', 1), ('lengthy,', 1), ('Junction.', 1), ('Storm', 1), ('tower', 1), ('Breitenbush', 1), ('Warm', 1), ('(REPORT', 1), ('UPDATED)', 1), ('Lemolo', 1), ('cabin.', 1), ('Cayuse', 1), ('Roseburg', 1), ('Applegate.', 1), ('beneath', 1), ('lines.', 1), ('26', 1), ('Rhododendron', 1), ('cave.', 1), ('Estacada', 1), ('Coudersport', 1), ('Thirteen', 1), ('playing.', 1), ("80's", 1), ('pushes', 1), ('dumping', 1), ('stone', 1), ('Gettysburg', 1), ('(Clearfield', 1), ('Progress', 1), ('Apollo', 1), ('Field', 1), ('Tohicken', 1), ('Dawn', 1), ('International', 1), ('Airport', 1), ('Argus', 1), ('Ligonier', 1), ('witnessing', 1), ('Pocono', 1), ('crawling', 1), ('Markton', 1), ('Levittown', 1), ('I-79', 1), ('Bicycling', 1), ('Hut', 1), ('diving', 1), ('Pee', 1), ('Dee', 1), ('GA/SC', 1), ('24', 1), ('only,', 1), ('Summerville', 1), ('Hartsville', 1), ('Pickens', 1), ('carrier', 1), ('Ridgeville', 1), ('(multi-witness)', 1), ('abondonned', 1), ('RR', 1), ('Barnwell', 1), ('917', 1), ('Mullins', 1), ('Anchor', 1), ('Keowee', 1), ('Gaffney', 1), ('frequently', 1), ('Wanblee', 1), ('244', 1), ('Horsethief', 1), ('44', 1), ('dredgers', 1), ('Covington,', 1), ('referred', 1), ('locals', 1), ('"Pilljerk"', 1), ('Kelso', 1), ('predawn', 1), ('wrecker', 1), ('Tennessee', 1), ('Aqua.', 1), ('Chilhowee', 1), ('campground.', 1), ('Smyrna.', 1), ('Tallassee.', 1), ('gigging', 1), ('Dickson.', 1), ('Hiwassee', 1), ('entrance.', 1), ('vacationing', 1), ('Portland', 1), ('Sunbright', 1), ('Lebanon', 1), ('pouncing', 1), ('snake', 1), ('Crossville', 1), ('Sale', 1), ('Unicoi', 1), ('banks', 1), ('"monkey"', 1), ('pin', 1), ('oak', 1), ('rowing', 1), ('Gladewater', 1), ('backroad.', 1), ('plow', 1), ('"animal"', 1), ('pasture.', 1), ("7-8'", 1), ('confronts', 1), ('building', 1), ('Pecos', 1), ('uncle,', 1), ('them,', 1), ('grunt', 1), ('well-built,', 1), ('Predawn', 1), ('FM', 1), ('1375,', 1), ('Conroe', 1), ('Basin.', 1), ('minutes.', 1), ('kennels', 1), ('Pecan', 1), ('Whitney', 1), ('Woodville,', 1), ('yard.', 1), ('retiree', 1), ('Cooper', 1), ('demonstrating', 1), ('Tawakoni', 1), ('Gary,', 1), ('Cherokee.', 1), ('Direct,', 1), ('Angelo.', 1), ('private,', 1), ('corridor.', 1), ('Hagerman', 1), ('Refuge,', 1), ('Wright', 1), ('Patman', 1), ('Karnack', 1), ('Harleton', 1), ('105', 1), ('unknown,', 1), ('Pedernales', 1), ('"man-like"', 1), ('being.', 1), ('Kenefick.', 1), ('bottoms,', 1), ('bicycle,', 1), ('afternoon,', 1), ('ATV,', 1), ('Campo', 1), ('Navidad', 1), ('bowfishing', 1), ('gar', 1), ('Blackhawk', 1), ('Whitehouse.', 1), ('Sunshine', 1), ('Cleveland,', 1), ('lease', 1), ('pre-dusk', 1), ('Linney', 1), ('Journalist', 1), ("relative's", 1), ('porch,', 1), ('Predator', 1), ('caller', 1), ('Stephenville.', 1), ('experiences.', 1), ('bridge.', 1), ('feeders,', 1), ('Neches', 1), ('meteor', 1), ('shower', 1), ('Wier', 1), ('campout', 1), ('Elkhart', 1), ('Quitman,', 1), ('TX.', 1), ('leaps', 1), ('TX-37', 1), ('jumping', 1), ('Austonio', 1), ('"Chewbacca"', 1), ('Duro', 1), ('leans', 1), ('Antonio', 1), ('Palestine', 1), ('Splendora', 1), ('seismic', 1), ('driller', 1), ('Angelina', 1), ('Chambers', 1), ('Tyler', 1), ('Gas', 1), ('Whitehouse', 1), ('Nixon', 1), ('kills', 1), ('Jacksboro', 1), ('Utah', 1), ('desert', 1), ('exhibits', 1), ('Duchesne,', 1), ('89', 1), ('Vernal,', 1), ('Utah.', 1), ('Labaron', 1), ('Panquitch.', 1), ('fall', 1), ('colors', 1), ('Spanish', 1), ('descibe', 1), ('Chalk', 1), ('Coalville', 1), ('Flaming', 1), ('Clara', 1), ('Wellsville', 1), ('snowplowing', 1), ('passengers', 1), ('Bountiful', 1), ('Shocked', 1), ('smelled', 1), ('horrible', 1), ('smell.', 1), ('ft.', 1), ('"Bigfoot"', 1), ('Salem,', 1), ('Roanoke', 1), ('Church', 1), ('glow', 1), ('camp-out', 1), ('By', 1), ('Gills', 1), ('Woodlake', 1), ('Wythe', 1), ('Buchanan', 1), ('Butt', 1), ('Newington', 1), ('barely', 1), ('slows', 1), ('8-ft', 1), ('Fries', 1), ('Shenandoah', 1), ('charges', 1), ('shotgun', 1), ('Blackstone', 1), ('investigation)', 1), ('Corp', 1), ('joy', 1), ('Purcellville', 1), ('Vacationing', 1), ('fortifications', 1), ('Middletown', 1), ('laurel', 1), ('thicket', 1), ('Pearisburg', 1), ('Tyson', 1), ('Road,', 1), ('100,', 1), ('Ludlow', 1), ('Easton,', 1), ('Passing', 1), ('Orting-Kapowsin', 1), ('Climber', 1), ('guardrail', 1), ('fast', 1), ('men,', 1), ('wheel', 1), ('FS', 1), ('fresh,', 1), ('barefooted,', 1), ('trio', 1), ('Nestor', 1), ('Slough', 1), ('Northeast', 1), ('bigfoot.', 1), ('(Coast', 1), ('Highway),', 1), ('found,', 1), ('turning', 1), ("it's", 1), ('straight', 1), ('Toes', 1), ('individuals,', 1), ('two-thirds', 1), ('size', 1), ('Reenactor', 1), ('confident', 1), ('ever', 1), ('Beacon', 1), ('Rock,', 1), ('western', 1), ('Mt.,', 1), ('find,', 1), ('narrow', 1), ('field,', 1), ('hunted', 1), ('big.', 1), ('3)', 1), ("fisherman's", 1), ('Patison', 1), ('Skydivers', 1), ('muscular', 1), ('Resources', 1), ('tree-planting', 1), ('Olympus', 1), ('Tapps', 1), ('brownish', 1), ('foothill', 1), ('"gorilla"', 1), ('Mom', 1), ('It', 1), ('Strong', 1), ('odor,', 1), ('crunching', 1), ('hunting,', 1), ('Cinabar,', 1), ('Thumping', 1), ('2001', 1), ('Grays', 1), ('Offense', 1), ('report/summary', 1), ('1996', 1), ('Battleground', 1), ('(Mt.', 1), ('area)', 1), ('Packwood,', 1), ('Labor', 1), ('bigfoot,', 1), ('it,', 1), ('turn', 1), ('timber', 1), ('Shuksan', 1), ('Vocalization,', 1), ('Carnation/Fall', 1), ('give', 1), ('Dirty', 1), ('apple', 1), ('orchard', 1), ('Ranger', 1), ('shaped', 1), ('I-5', 1), ('slender', 1), ('lures', 1), ('Dosewallips', 1), ('hwy', 1), ('12,', 1), ('Yakama', 1), ('S.', 1), ('Nooksack', 1), ('KM', 1), ('Skamokawa', 1), ('Yakima', 1), ('Sasquatch,', 1), ('Yacolt,', 1), ('Nile,', 1), ('lakeside', 1), ('Drainage', 1), ('Walla', 1), ('Walla,', 1), ('Kent', 1), ('constructing', 1), ('"fort,"', 1), ('Amboy', 1), ('Rotschy', 1), ('Cliff', 1), ('Hannan', 1), ('Twisp', 1), ('Jarrel', 1), ('(See', 1), ('Sunrise', 1), ('Elementary', 1), ('Hatchery', 1), ('Duvall', 1), ('Mutliple', 1), ('Suquamish', 1), ('Fairfax', 1), ('Chopaka', 1), ('perimeter', 1), ('Deception', 1), ('Doty', 1), ('Graduation', 1), ('Party', 1), ('flows', 1), ('Chelan', 1), ('watchmen', 1), ('rangers', 1), ('lost', 1), ('backroads', 1), ('Olympia', 1), ('green', 1), ('Postal', 1), ('Carrier', 1), ('quality', 1), ('man,', 1), ('family,', 1), ('imaging', 1), ('unit', 1), ('Mud', 1), ('Tunnel', 1), ('lot', 1), ('Snoqualmie', 1), ('Yacolt', 1), ('pigeons', 1), ('Sumner', 1), ('appearing', 1), ('McKenna', 1), ('tense', 1), ('MP', 1), ('drives', 1), ('Everson', 1), ('bi-ped', 1), ('blackberry', 1), ('BZ', 1), ('Cascades', 1), ('stopped', 1), ('Wishkah', 1), ('quadrupedally', 1), ('Tulalip', 1), ('in-front', 1), ('Discovery', 1), ('Bonneville', 1), ('(Sketches', 1), ('Robe', 1), ('Off', 1), ('roader', 1), ('testing', 1), ('machine', 1), ('“Oversized', 1), ('Gorilla”', 1), ('Ashford.', 1), ('sunset', 1), ('Key', 1), ('resort', 1), ('couples', 1), ('shine', 1), ('owl', 1), ('deliveryman', 1), ('(Newspaper', 1), ('account,', 1), ('documents', 1), ('included.)', 1), ('TV,', 1), ('hunters,', 1), ('Wabikon', 1), ('Pelican', 1), ('Lugerville', 1), ('parks', 1), ("employee's", 1), ('Rib', 1), ('obtains', 1), ('(very', 1), ('brief)', 1), ('bicycle', 1), ('Eau', 1), ('Galle', 1), ('Daybreak', 1), ('tournament', 1), ('Mikana', 1), ('Anitgo', 1), ('Students', 1), ('university', 1), ('Peshtigo', 1), ('Drain', 1), ('pipes', 1), ('knocked', 1), ('howls/screams', 1), ('curators', 1), ('Sods;', 1), ('seen,', 1), ('detected.', 1), ('reports.', 1), ('When', 1), ('huffed', 1), ('puffed."', 1), ('legged', 1), ('church', 1), ('31,', 1), ('Parkersburg,', 1), ('Cairo', 1), ('motion', 1), ('detecting', 1), ('illuminates', 1), ('Talcott', 1), ('Elkwater', 1), ('abandonned', 1), ('chamber', 1), ('Amigo', 1), ('Bruceton', 1), ('bat', 1), ('survey', 1), ('Tolsia', 1), ('Kenova', 1), ('US-250', 1), ('Belington', 1), ('Ripping', 1), ('Limbs', 1), ('Bark', 1), ('Cranberry', 1), ('region', 1), ('St', 1), ('Rec.', 1), ('Surprised', 1), ('Linside', 1), ('US-50', 1), ('Burlington', 1), ('Marmet', 1), ('Keyser', 1), ('I-64', 1), ('219', 1), ('Slate', 1), ('Canaan', 1), ('Nestlow', 1), ('Smoot', 1), ('Blacksmith', 1), ('sketch', 1), ('drew', 1), ('getting', 1), ('Buckhannon', 1), ('Greenbrier', 1), ('Medical', 1), ('Quinwood', 1), ('peeker', 1), ('Curtain', 1), ('Cody', 1), ("gov't", 1), ('geologists', 1), ('hominoid', 1), ('min.', 1), ("Park's", 1), ('Gate', 1), ('seems', 1), ('follow', 1), ('siesmographic', 1), ('Wind', 1), ('team', 1), ('follows', 1), ('trackway,', 1), ('pelted', 1), ('Anchorage', 1), ('Egegik.', 1), ('sandy', 1), ('OPP', 1), ('Pell', 1), ('Tanner', 1), ('Camden', 1), ('Opelika', 1), ('graveyard', 1), ('Rescue', 1), ('Cahaba', 1), ('Montevallo', 1), ('Rucker', 1), ("Lacey's", 1), ('Pinckard', 1), ('happenings', 1), ('Tuscaloosa', 1), ('ridgeline', 1), ('Hytop', 1), ('Ashland', 1), ('fingers', 1), ('sliding', 1), ('Nauvoo', 1), ('activty', 1), ('Chance', 1), ('menace', 1), ('4:00', 1), ('am', 1), ('November,', 1), ('2000,', 1), ('Arkansas,', 1), ('Witts', 1), ('Springs.', 1), ('property.', 1), ('footsteps;', 1), ('Milltown.', 1), ('pond.', 1), ('DeGray.', 1), ('Salado.', 1), ('Beck', 1), ('Spur', 1), ('slough', 1), ('Lockesburg', 1), ('DeQueen', 1), ('moved', 1), ('Mormon', 1), ('Riggs', 1), ('Coronado', 1), ('Mary.', 1), ('Sawmill,AZ', 1), ('glimpses', 1), ('Mountains,', 1), ('Verde', 1), ('Dead', 1), ('Bowl', 1), ('Francisco', 1), ('Peaks', 1), ("Fool's", 1), ("Clint's", 1), ('Well', 1), ('Pedro', 1), ('Anchas', 1), ('Kiabab', 1), ('marine', 1), ('jogging', 1), ('(photos', 1), ('Wheatfields', 1), ('Kingman', 1), ('trackline', 1), ('Hawley', 1), ('territorial', 1), ('Passengers', 1), ('ski', 1), ('Stanislaus', 1), ('locates', 1), ('Groveland', 1), ('Kernville', 1), ('days.', 1), ('Porte', 1), ('10-Ft.', 1), ('Shrieking', 1), ('Monster', 1), ('Calaveras', 1), ('Investigators', 1), ('detail', 1), ('Doris', 1), ('Campground,', 1), ('Rivers', 1), ('Spicer', 1), ('McCumber', 1), ('Sand', 1), ('Bar', 1), ('pens', 1), ('raided', 1), ('thief', 1), ('Golden', 1), ('"banging"', 1), ('Courtright', 1), ('hear,', 1), ('see,', 1), ("Dutchman's", 1), ('Idyllwild', 1), ('Avery', 1), ('Woodfords', 1), ('Yolla', 1), ('Bolly', 1), ('Breckenridge', 1), ('Pollack', 1), ('Pines', 1), ('King', 1), ('Garberville', 1), ('Ross', 1), ('Carlon', 1), ('Stuart', 1), ('Whistle', 1), ('Woodsford', 1), ('Eyes', 1), ('Smells', 1), ('Groundhog', 1), ('Found,', 1), ('Arnold', 1), ('Alpine', 1), ('Bennett', 1), ('Find', 1), ('discovery.', 1), ('Tenaya', 1), ('country,', 1), ('Plinkers', 1), ('pushed-over', 1), ('blocking', 1), ('Quad', 1), ('overwhelming', 1), ('stench', 1), ('Lamont.', 1), ('Boar', 1), ('Cachuma.', 1), ('Guadalupe', 1), ('Leavitt', 1), ('Jones', 1), ('Tujunga', 1), ('Gabriel', 1), ('Lassen', 1), ('Malakoff', 1), ('Historical', 1), ('Moran', 1), ('intimidation/interaction', 1), ('awaken', 1), ('Solo', 1), ("camper's", 1), ('Hinkley', 1), ('Wilderness.', 1), ('claims', 1), ('Mary,', 1), ('whoop-howls', 1), ('(Sawmill', 1), ('campground)', 1), ('botonist', 1), ('Seven', 1), ('possbile', 1), ('Orleans', 1), ('Inyokern', 1), ('Benton.', 1), ('multiple,', 1), ('Hemet', 1), ('Bernadino', 1), ('sequence', 1), ('cell', 1), ('phone', 1), ('track)', 1), ('KOA', 1), ('Aunt', 1), ('Uncle', 1), ('encounter,', 1), ('Tuolumne', 1), ('Jacinto', 1), ('adversarial', 1), ('Hughes', 1), ('Whiskeytown', 1), ('Wilderness,', 1), ('Arrrowhead', 1), ('off-road', 1), ('Buck', 1), ('Grande', 1), ('Prairie.', 1), ('Siksika', 1), ('Nation', 1), ('Cluny.', 1), ('ear', 1), ('piercing', 1), ('sream', 1), ('Westlock', 1), ('Morley', 1), ('frighten', 1), ('Sundre', 1), ('Valleyview', 1), ('double', 1), ('Waiparous', 1), ('pebbles', 1), ('Tourists', 1), ('Country', 1), ('2:00AM', 1), ('Courtenay', 1), ('Strathcona', 1), ('Invemere', 1), ('McBride', 1), ('Batnuni', 1), ('silenced', 1), ('coyotes,', 1), ('ramp', 1), ('Kootenay', 1), ('forth', 1), ('rivers', 1), ('join', 1), ('Paul', 1), ('Kamloops', 1), ('Finds', 1), ('Muskwa', 1), ('Floodplain', 1), ('Penticton', 1), ('Firefighters', 1), ('alpine', 1), ('Golden.', 1), ('Shuswap', 1), ('(BC/Alberta', 1), ('border)', 1), ('rock-knocking', 1), ('Pitt', 1), ('British', 1), ('interior', 1), ('Kelowna', 1), ('Duncan', 1), ('area,', 1), ('Merritt.', 1), ('valley', 1), ('Irving', 1), ('Meziadin', 1), ('indications', 1), ('habitation', 1), ('"escorted"', 1), ('Osoyoos', 1), ('Dawson', 1), ('Forbush', 1), ('Ladysmith', 1), ('Nakusp.', 1), ('day.', 1), ('Numerous', 1), ('Powell', 1), ('Strange,', 1), ('Skagit', 1), ('Nanaimo', 1), ('violently', 1), ('Falkland', 1), ('hospital', 1), ('Smithers', 1), ('Provencial', 1), ('awoken', 1), ('outdoors', 1), ('21', 1), ('Kenton,', 1), ('pilot', 1), ('Bissett', 1), ('left', 1), ('Nopiming', 1), ('First', 1), ('Nations', 1), ('Brandon', 1), ('violent', 1), ('Museum', 1), ('Trenton', 1), ('Ouimet', 1), ('Bruce', 1), ('Dunrobin', 1), ('Ottowa', 1), ('2005;', 1), ('Temagami,', 1), ('father,', 1), ('Ontario.', 1), ('Vocazliation', 1), ('Godson', 1), ('sound-only', 1), ('Cripple', 1), ('Sault', 1), ('Saint', 1), ('Marie', 1), ('vacationers', 1), ('Haliburton', 1), ('Magnetawan', 1), ('Arden', 1), ('thud', 1), ('watched', 1), ('sounding', 1), ('pacing', 1), ('Quetico', 1), ('Hilton', 1), ('hi-pitch', 1), ('prior', 1), ('Perth', 1), ('Caribou', 1), ('Kuujjuaq.', 1), ("Campbell's", 1), ('Bay.', 1), ('McLaughlin', 1), ('Belleterre', 1), ("year's", 1), ('time.', 1), ('Interprovincial', 1), ('Wakaw', 1), ('Christopher', 1), ('Saskatchewan', 1), ('Manlike', 1), ('McKague', 1), ('Carmacks', 1), ('Characteristic', 1), ('Hayden', 1), ('turnout', 1), ('Manga', 1), ('cry,', 1), ('Fairplay', 1), ('"monster"', 1), ('peeping', 1), ('marvels', 1), ('Threatening', 1), ('bellows', 1), ('Holy', 1), ('mud.', 1), ('faint', 1), ('groaning', 1), ('set', 1), ('overpowering', 1), ('abandon', 1), ('threatened', 1), ('UK', 1), ('Gypsies', 1), ('vacate', 1), ('knocks;', 1), ('carcass,', 1), ('Victor,', 1), ('Rancher,', 1), ('ellicit', 1), ('intruders', 1), ('Zirkel', 1), ('Golfcourse,', 1), ('aside', 1), ('Roxborough', 1), ('Rampart', 1), ('Notes', 1), ('Tops', 1), ('Danforth', 1), ('Meeker', 1), ('snowshoers', 1), ('Steamboat', 1), ('persistent', 1), ('Mesa', 1), ('trampled', 1), ('Massive', 1), ('human-shaped', 1), ('Florissant', 1), ('Fossil', 1), ('Beds', 1), ('Garland', 1), ('Skaguay', 1), ('Victor', 1), ('YMCA', 1), ('guest', 1), ('Estes', 1), ('rock-throwing', 1), ('Hartsel', 1), ('Staunton', 1), ('Bakersville', 1), ('Preston', 1), ('Lyme', 1), ('Mystic', 1), ('Redden', 1), ('Angola', 1), ('trailblazing', 1), ('gound,', 1), ('scream.', 1), ('Footsteps', 1), ('1.', 1), ('woke', 1), ('couple.', 1), ('2.', 1), ('injured', 1), ('Weeks', 1), ('3am', 1), ('(Ocala', 1), ('Forest)', 1), ('Coolers', 1), ('ransacked', 1), ('Noise,', 1), ('banged', 1), ('tree.', 1), ('unfamiliar', 1), ('unexplained,', 1), ('Saddle', 1), ("child's", 1), ('Guana', 1), ('DeMolay', 1), ('Dunellon', 1), ('Kissimmee', 1), ('Tiger', 1), ('may', 1), ('alligators', 1), ('Ormond', 1), ('separating', 1), ('farms', 1), ('Tarrytown', 1), ('Stalking', 1), ('Southport', 1), ('vicinity.', 1), ('Surveyor', 1), ('formations', 1), ('Turnpike', 1), ('(near', 1), ('Ocoee', 1), ('exit)', 1), ('(Alligator', 1), ('Alley)', 1), ('Wales.', 1), ('Coral', 1), ('Springs,', 1), ('Everglades.', 1), ('Sarasota', 1), ('Bradenton', 1), ('Corners', 1), ('phosphate', 1), ('Walter', 1), ('Trafford', 1), ('year-old', 1), ('life-long', 1), ('woodsman', 1), ('Apalachicola', 1), ('Growls', 1), ('Region', 1), ('Discovers', 1), ('Scat', 1), ('Esto', 1), ('Econlockhatchee', 1), ('DuPuis', 1), ('Ashville', 1), ('Escambia', 1), ('Econfino', 1), ('Flying', 1), ('Gilchrist', 1), ('Oklawaha', 1), ('pulling', 1), ('129', 1), ('Live', 1), ('stolen', 1), ('boat,', 1), ('turtle', 1), ('Deltona', 1), ('US-192', 1), ('moming', 1), ('Atlantic', 1), ('brings', 1), ('Cassadaga', 1), ('legend', 1), ('Felasco', 1), ("John's", 1), ('Jupiter', 1), ('retirement', 1), ('Villages', 1), ('Frightening', 1), ('initiating', 1), ('Twelve', 1), ('528', 1), ('General', 1), ('Fleet', 1), ('Wesley', 1), ('US-90', 1), ('Caryville', 1), ('wild', 1), ('Bushnell', 1), ('Gardens', 1), ('sheriffs', 1), ('"Something', 1), ('Place"', 1), ('42', 1), ('documenting', 1), ('mile-long', 1), ('Yankeetown', 1), ('Shell', 1), ('Chassahowitzka', 1), ('Alatoona', 1), ('outside.', 1), ("friend's", 1), ('reverberating', 1), ('bulky', 1), ('Pidgeon', 1), ('Stewart,', 1), ('Gordon', 1), ('servicemen', 1), ('Airfield', 1), ('uninhabited', 1), ('Tybee', 1), ('Raven', 1), ('Cliffs', 1), ('Thomaston', 1), ('Cavers', 1), ('Sweetwater', 1), ("father's", 1), ('AL', 1), ('Plunketts', 1), ('Buford', 1), ('barrage', 1), ('limbs', 1), ('Meldrim', 1), ('Buchannan', 1), ('Conasauga', 1), ('passing', 1), ('Cyclist', 1), ('(Gooch', 1), ('Shelter)', 1), ('"camp-circling"', 1), ('Warwoman', 1), ('Dell', 1), ('Public', 1), ('unidentifiable', 1), ('Axson', 1), ('enthusiast', 1), ('Cordele', 1), ('veteran', 1), ('Acworth', 1), ('Golfers', 1), ('Tallulah', 1), ('gorilla-like', 1), ('Swainsboro', 1), ('MacKaye', 1), ('Shellman', 1), ('dresses', 1), ('visited', 1), ('Atv', 1), ('Keokuk', 1), ('Albia,', 1), ('bone-chilling', 1), ('lookout', 1), ('point', 1), ('Stone', 1), ('Eldridge', 1), ('Volga', 1), ('combination', 1), ('bird-like', 1), ('Wapsipinicon', 1), ('Coralville', 1), ('silence,', 1), ('Cardinal', 1), ('tossed', 1), ('eagles', 1), ('Frank', 1), ('Gotch', 1), ('volunteering', 1), ('Macbride', 1), ('Raptor', 1), ('Project', 1), ('Liberty', 1), ('Ogden', 1), ('thumps', 1), ('Butte.', 1), ("campers'", 1), ('staff', 1), ('Redfish', 1), ('Dubois', 1), ('(elk', 1), ('hunter)', 1), ('Clarkia', 1), ('Buckles', 1), ('Lowman', 1), ('troop', 1), ('Loon', 1), ('sources', 1), ('Yellowjacket', 1), ('Screaming', 1), ('Hole', 1), ('explorer', 1), ("d'Alene", 1), ('banging,', 1), ('stripped', 1), ('different', 1), ('campgrounds', 1), ('Boise', 1), ('Carlinville.', 1), ('Warsaw.', 1), ('Rosiclare.', 1), ('Pinckneyville.', 1), ('Mounds.', 1), ('Chandlerville', 1), ('Ste.', 1), ('Marie.', 1), ('Burlington.', 1), ('Pekin', 1), ('Mitchellville', 1), ('Williams', 1), ('Yorkville', 1), ("son's", 1), ('Egypt', 1), ('Kickapoo', 1), ('Marion,', 1), ('Kinkaid.', 1), ('research', 1), ('Metropolis.', 1), ('Barrington.', 1), ('Mackinaw', 1), ('Hamel.', 1), ('Ellisville', 1), ('Dixon', 1), ('Pawnee', 1), ('structures', 1), ('Metropolis', 1), ('Chatham', 1), ('Covered', 1), ('Ripley', 1), ('investigators', 1), ('Cumberland', 1), ('Vermilionville', 1), ('Bonnie', 1), ('Orland', 1), ('Orient', 1), ('Pontiac', 1), ('resembling', 1), ('Marseilles.', 1), ('Cuba', 1), ('Semi', 1), ('I-70', 1), ('Marshall', 1), ('University', 1), ('soccer', 1), ('fields.', 1), ('Hardin', 1), ('Belt', 1), ('Makanda', 1), ('Blandinsville', 1), ('Veterans', 1), ('Parkway.', 1), ('Gorham.', 1), ('Plum', 1), ('Play', 1), ('du', 1), ('Rocher.', 1), ('Brussels', 1), ('Hettick', 1), ('Chauncey', 1), ('Embarras', 1), ('Midlothian', 1), ('Preserves', 1), ('Chicago', 1), ('Bottoms.', 1), ('Plainview', 1), ('Palos', 1), ('Georgefield', 1), ('Barracks', 1), ('Sparland', 1), ('Scott-Troy', 1), ('Francesville.', 1), ('Fredericksburg', 1), ('indicative', 1), ('Atterbury', 1), ('Elberfeld,', 1), ('Indiana', 1), ('vocalization/intimidation', 1), ('Ouabache', 1), ("Moore's", 1), ('scream/howl', 1), ('Indianapolis', 1), ('Glenn', 1), ('Shades', 1), ('kitten', 1), ('Wabash', 1), ('Reliable', 1), ('reservoir', 1), ('backpacking', 1), ('Hoosier', 1), ('Prather', 1), ('attempting', 1), ('Elizabeth', 1), ('Yellowwood', 1), ('stalks', 1), ('riverbank,', 1), ('retold', 1), ('Uniontown.', 1), ('Pittsburg', 1), ('Ft.Leavenworth', 1), ('Perry', 1), ('Topeka.', 1), ('Kanapolis', 1), ('whistler', 1), ('Manhattan', 1), ('greyish', 1), ('Murdock', 1), ('entering', 1), ('blinds', 1), ('Lenexa', 1), ('posted', 1), ('Highpitched', 1), ('witnesses.', 1), ('Matching', 1), ('decade', 1), ('Kimper', 1), ('Resort.', 1), ('surface', 1), ('Jackson.', 1), ('Nolin', 1), ('Bardstown.', 1), ('Flatwoods', 1), ("Grandmother's", 1), ('Scottsville', 1), ('Boston', 1), ('Evarts', 1), ('Whitesburg', 1), ('harrassment', 1), ('Zachariah', 1), ('Madisonville', 1), ('Deane', 1), ('KY/VA', 1), ('located', 1), ('Suspicious', 1), ('Woodbine', 1), ('retrieve', 1), ('Leitchfield', 1), ('Humanoid', 1), ('Octagon', 1), ('Hall', 1), ('weeks', 1), ('Berea', 1), ('Farmplace', 1), ('dog;', 1), ('Norwood', 1), ('Doyline', 1), ('Bistinue', 1), ('tale', 1), ('Horseshoe', 1), ('boy,', 1), ('recently', 1), ('Varnado', 1), ('"Bridgewater', 1), ('Triangle"', 1), ('Sandwich', 1), ('Scituate', 1), ('agent', 1), ('adjacent', 1), ('Pakamansett', 1), ('@', 1), ('Hockomock', 1), ('Assawompsett', 1), ('Leominister', 1), ('Cobble', 1), ('Charlemont', 1), ('Lakeville', 1), ("state's", 1), ('highest', 1), ('peak,', 1), ('Greylock', 1), ('objects', 1), ('watcher', 1), ('Oxbow', 1), ('Hurlock', 1), ('Lil-Aaron', 1), ('Straus', 1), ('Bee', 1), ('Newberry', 1), ('Bare,', 1), ('wide', 1), ('February', 1), ('thaw', 1), ('deerhunting', 1), ('Gay', 1), ('peninsula', 1), ('Ontanagon.', 1), ('"Lost', 1), ('Nation"', 1), ('hour-long,', 1), ('aggressor(s)', 1), ('Nunica.', 1), ('changing', 1), ('"demonic"', 1), ('chuckle', 1), ('Odd', 1), ('concern.', 1), ('Willis', 1), ('extremely', 1), ('Interlochen.', 1), ('backwoods', 1), ('Benzonia,', 1), ('Copemish', 1), ('Gulliver', 1), ('Allegan', 1), ('Pictured', 1), ('Lakeshore', 1), ('Wetmore', 1), ('Ottawa', 1), ('vocalizatons', 1), ('Charlevoix', 1), ('experiencing', 1), ('Disoriented', 1), ('Buckley', 1), ('Buchanan,', 1), ('Cadillac', 1), ('Henderson', 1), ('Pinckney', 1), ('Interlochen', 1), ('Eben', 1), ('Turk', 1), ('Fletcher', 1), ('Alpena', 1), ('Resonant', 1), ('Avid', 1), ('"Shadow', 1), ('People"', 1), ('Montague', 1), ('Pecks', 1), ('Pere', 1), ('relate', 1), ('Hart', 1), ('Mecosta', 1), ('Rapids.', 1), ('Gentleman', 1), ('Joseph.', 1), ('Monroe.', 1), ('chimp-like', 1), ('lifeless', 1), ('Description', 1), ('Sleeping', 1), ('Dunes', 1), ('Shoreline', 1), ('incredible', 1), ('Tower', 1), ('Mio.', 1), ('snowmobiling', 1), ('Jewell', 1), ('hunter/homeowner', 1), ('avoiding', 1), ('Tippy', 1), ('Den', 1), ('Sylvania', 1), ('delivery', 1), ('orange', 1), ('Menominee', 1), ('Lansing', 1), ('term', 1), ('beginning', 1), ("1970's", 1), ('Cloquet', 1), ('Bena', 1), ('Ball', 1), ('Club', 1), ('Gun', 1), ('but', 1), ('hazelnut', 1), ('bog', 1), ('Laporte', 1), ('Nimrod', 1), ('recordings)', 1), ('burning', 1), ('woken', 1), ('Airman', 1), ('diverse', 1), ('excursion', 1), ('Canoe', 1), ('oddly', 1), ('Calumet', 1), ('bedtime', 1), ('Emily', 1), ('Jeannette', 1), ('Bigfork', 1), ('Jeanette', 1), ('Orr', 1), ('daybreak', 1), ('Badger', 1), ('Canoers', 1), ('Marais', 1), ('Lydick', 1), ('Buhl', 1), ('Forty', 1), ('SNA', 1), ('Branson.', 1), ('Hair', 1), ('raising', 1), ('acre', 1), ('rye', 1), ('highpitched', 1), ('shaped.', 1), ('Three-toed', 1), ('Eerie', 1), ('forests', 1), ('Karlin.', 1), ('Polk.', 1), ('54', 1), ('calls,', 1), ('rock/boulder', 1), ('disturbs', 1), ('Fair.', 1), ('Meramec', 1), ('Hematite.', 1), ('Daugherty', 1), ('465', 1), ('Oronogo', 1), ('Current', 1), ('Robertsville.', 1), ('St.James/Rolla', 1), ('canoeists', 1), ('Jane', 1), ('Potosi', 1), ('A.M.', 1), ('event', 1), ('Finger', 1), ('either', 1), ('dock', 1), ('Williamsville', 1), ('filling', 1), ('Shade', 1), ('Patterson', 1), ('Rayville', 1), ('messing', 1), ('cage', 1), ('Brixey', 1), ('Schell', 1), ('Lineville', 1), ('steals', 1), ('Steelville', 1), ('Buren', 1), ('climb', 1), ('Ozarks', 1), ('Rvierside', 1), ('Marionville', 1), ('rancid', 1), ('Honey', 1), ('Quitman', 1), ('Burnsville', 1), ('"running"', 1), ('I-15', 1), ('Avalanche', 1), ('Swan', 1), ('opening', 1), ('After', 1), ('mines', 1), ('Photograph', 1), ('Baldy', 1), ('veterinarian', 1), ('believers', 1), ('tree-line', 1), ('Checkerboard', 1), ('boarder', 1), ('Belgrade', 1), ('Blueridge', 1), ('Christmas,', 1), ('Rangers', 1), ('unlike', 1), ('any', 1), ('thay', 1), ('familiar', 1), ('pursued', 1), ('awakes', 1), ("'howling'", 1), ("'wailing'", 1), ('house;', 1), ('compares', 1), ('13"', 1), ('rough', 1), ('impressions', 1), ('sundown,', 1), ('Carter', 1), ('Menacing', 1), ('commotion', 1), ('Yadkinville', 1), ('Franklin.', 1), ('periodically', 1), ('Lexington', 1), ("wife's", 1), ("King's", 1), ('Winston-Salem', 1), ('Ellerbe', 1), ('Croatan', 1), ('Seagrove', 1), ('vineyard', 1), ('subjected', 1), ('hammock', 1), ('Tribal', 1), ('government', 1), ('Mead,', 1), ('Nebraska', 1), ('Possilble', 1), ('300-400', 1), ('yds.)', 1), ('Chadron', 1), ('Cloud', 1), ('Dorchester', 1), ('Couples', 1), ('Loudon', 1), ('Rockingham', 1), ('Farmer', 1), ('Errol', 1), ('Batsto', 1), ('undeveloped', 1), ('section', 1), ('Harmony', 1), ('Supawna', 1), ('Monksville', 1), ('Split', 1), ('Flemington', 1), ('Knock', 1), ('Interaction', 1), ('Wildcat', 1), ('Newton', 1), ('among', 1), ('Brick', 1), ('Hibernia', 1), ('Bat', 1), ('Cave/Wildcat', 1), ('Ringwood', 1), ('Trio', 1), ('retreat', 1), ('vehicles', 1), ('due', 1), ('catching', 1), ('Acres', 1), ('Allamuchy', 1), ('Professor', 1), ('Carrizo', 1), ('camp,', 1), ('Whiskey', 1), ('Jemez', 1), ('Mts.', 1), ('expedition.', 1), ('Zoologist', 1), ('knocking.', 1), ('Gallegos', 1), ('peak', 1), ('powerfull', 1), ('Jicarilla', 1), ('silhouetted', 1), ('swaying', 1), ('Peavine', 1), ('feral', 1), ('snowy', 1), ('Winnemucca', 1), ('shot', 1), ('shows', 1), ('background.', 1), ('Powerful', 1), ('Albion,', 1), ('powerful,', 1), ('high-pitched', 1), ('Stissing', 1), ('Keene', 1), ('Chazy', 1), ('Saranac', 1), ('Deposit', 1), ('Garrison,', 1), ('York', 1), ('Prospect', 1), ('Prattsburgh', 1), ('George,', 1), ('Adirondacks', 1), ('Female', 1), ('companion', 1), ('Mayfield', 1), ('Nuclear', 1), ('Caroga', 1), ('Luzerne', 1), ('Oneida', 1), ('Kanawauke', 1), ('streetlight', 1), ('Belmont', 1), ('Northville', 1), ('Tipp', 1), ('those', 1), ('Nelsonville,', 1), ('carcasses', 1), ('arrangement,', 1), ('Coshocton', 1), ('arranged', 1), ('remains,', 1), ('Gameland', 1), ('bar', 1), ('website.', 1), ('individual', 1), ('repairing', 1), ('fence.', 1), ('Oberlin', 1), ('Poe', 1), ('Woodsfield', 1), ('states', 1), ('Batesville', 1), ('recordings', 1), ('matted', 1), ('shores', 1), ('Edinburgh', 1), ('protruding', 1), ('brushline', 1), ('Clearfork', 1), ('Oyo', 1), ('125', 1), ('Sandyville', 1), ('Byhalia', 1), ('Personal', 1), ('members,', 1), ('dating', 1), ('years.', 1), ('job', 1), ('dumpster.', 1), ('nasty', 1), ('Outdoor', 1), ('"Sightings"', 1), ('television', 1), ('show.', 1), ('legs,', 1), ('loud.', 1), ('Steubenville.', 1), ('Property', 1), ('owners', 1), ('Clearcreek', 1), ('Metro', 1), ('cabins,', 1), ('sleepers', 1), ('notice', 1), ('foothills', 1), ('Zaleski', 1), ('Huber', 1), ('Heights', 1), ('reports,', 1), ('London.', 1), ('culminate', 1), ('Savannah.', 1), ('dwelling', 1), ('outisde', 1), ('Mechanicsburg', 1), ('Student', 1), ('82', 1), ('CVRA', 1), ('marsh', 1), ('Chesterland', 1), ('Township', 1), ('spillway', 1), ('(drains', 1), ('Wills', 1), ('Creek)', 1), ('Malaga', 1), ('possible,', 1), ('Warren', 1), ('silhouette', 1), ('Youngstown', 1), ('Mechanicstown', 1), ('w/photos', 1), ('Bath', 1), ('Alliance', 1), ('Saybrook', 1), ('Norwalk', 1), ('Ravenna', 1), ('Arsenal', 1), ('bikeway', 1), ('Jamestown', 1), ('I-80', 1), ('flees', 1), ('yellow', 1), ('Piketon', 1), ('Geneva-on-the-Lake', 1), ('Gratis', 1), ('Williamsburg', 1), ('Kendall', 1), ('camera', 1), ('leads', 1), ("road's", 1), ('shadows', 1), ('likely', 1), ('week-long', 1), ('Nashport', 1), ('12"-14"', 1), ('hunting.', 1), ('related', 1), ('May/June', 1), ('83/84', 1), ('Oklahoma', 1), ('Leflore', 1), ('says', 1), ('entered', 1), ('girls.', 1), ('stash', 1), ('Cedar.', 1), ('VIan', 1), ('Off-duty', 1), ('officers', 1), ('throwning,', 1), ('Heavener', 1), ('Elmer', 1), ('Thomas', 1), ('Recreational', 1), ('Anadarko', 1), ('Equestrian', 1), ('ends', 1), ('Neosho', 1), ('Pryor', 1), ('vocals,', 1), ('nests,', 1), ('three-day', 1), ('weekend', 1), ('Reydon', 1), ('Arriving', 1), ('Running,', 1), ('Stomping,', 1), ('Shrieking,', 1), ('deformed', 1), ('Injured', 1), ('Videocamera', 1), ('Accidently', 1), ('Captures', 1), ('Distant', 1), ('Movement', 1), ('Squaw', 1), ('followed.', 1), ('stench,', 1), ('pitch', 1), ('smelling', 1), ('Wahtum', 1), ('valley.', 1), ('Creek,', 1), ('Timberline', 1), ('Umpqua', 1), ('Hunters,', 1), ('Wagner', 1), ('twisted', 1), ('trees,', 1), ('scat,', 1), ('"eerie', 1), ('strange"', 1), ('Elsie', 1), ('Track', 1), ('So.', 1), ('Jump-off', 1), ('Joe', 1), ('McLoughlin', 1), ('changes', 1), ('mischievous', 1), ("teenager's", 1), ('Boulder', 1), ('Lk.', 1), ('OR', 1), ('shoot', 1), ('84', 1), ('Pendleton', 1), ('Call', 1), ('M', 1), ('frightful,', 1), ('bower', 1), ('rockpiles,', 1), ('Abiqua', 1), ('Boater', 1), ('Deschutes', 1), ('Colton', 1), ('211', 1), ('Valsetz', 1), ('olfactory', 1), ('Dorena', 1), ('scouting,', 1), ('Scappoose', 1), ('feces.', 1), ('greeted', 1), ('types', 1), ('wood-on-wood', 1), ('them.', 1), ('Pendleton,', 1), ('Waldo', 1), ('remains', 1), ('Huckleberry', 1), ('Caves.', 1), ('Umatilla', 1), ('dog.', 1), ('Proxy', 1), ('Drain.', 1), ('Locks', 1), ('claim', 1), ('Fiddler', 1), ('snapped', 1), ('Glide', 1), ('140E', 1), ('Bonanza', 1), ('Hosmer', 1), ('unimproved', 1), ('Wallowa', 1), ('Still', 1), ('breaking', 1), ('Loucks', 1), ('Koppel', 1), ('Strip', 1), ('Sweden', 1), ('Montrose', 1), ('Galitzin', 1), ('scaling', 1), ('moments', 1), ('Clairton', 1), ('Objects', 1), ('Jericho', 1), ('keep', 1), ('Quarryville', 1), ('Nottingham', 1), ('recovering', 1), ('Arthur', 1), ('Audio', 1), ('recording', 1), ('fight', 1), ("70's", 1), ('Prosperity', 1), ('formation', 1), ('Foster', 1), ('Solider', 1), ('Erhardt', 1), ('Chesnee', 1), ('unpopulated', 1), ('followup', 1), ('Hartwell', 1), ('relic', 1), ('Ace', 1), ('Estuarine', 1), ('Research', 1), ('exhale', 1), ('Bluffton', 1), ('sight', 1), ('Edisto', 1), ('Canady', 1), ('Givehans', 1), ('Joccasee', 1), ('coyoties', 1), ('Pillowville', 1), ('Middleton', 1), ('Short', 1), ('Pulaski.', 1), ('Milan', 1), ('Stones', 1), ('motorsist', 1), ('Shelby', 1), ('Vacationers', 1), ('Newfound', 1), ('Citico', 1), ('circle', 1), ('Fiery', 1), ('Gizzard', 1), ('Awakens', 1), ('Pocket', 1), ('(smell,', 1), ('twist)', 1), ('Atoka.', 1), ('Zion', 1), ('Mooresburg', 1), ('some', 1), ('Class', 1), ('Ethridge', 1), ('uknown', 1), ('Greenvale', 1), ('call-and-answer', 1), ('(Tennessee)', 1), ('(active', 1), ('Cmp.', 1), ('Lejune)', 1), ('shoots', 1), ('4-wheeling', 1), ('LaFollette', 1), ('Cheatham', 1), ('proximity', 1), ('Canyon.', 1), ('Toledo', 1), ('Texarkana', 1), ('Somerville', 1), ('menaced', 1), ('would', 1), ('move,', 1), ('bear-like.', 1), ('discovered,', 1), ('underbrush', 1), ('nearby,', 1), ('odor.', 1), ('hunters;', 1), ('Seven-foot', 1), ('youths;', 1), ('carries', 1), ('Kilgore,', 1), ('mobilehome', 1), ('calf.', 1), ('Something', 1), ('rearview', 1), ('mirror', 1), ('creek,', 1), ('fifteen', 1), ('loses', 1), ('bagged', 1), ('predator.', 1), ('Biology', 1), ("teacher's", 1), ('"the', 1), ('1893', 1), ('Bridge."', 1), ('pierce', 1), ('precedes', 1), ('Ector.', 1), ('Walker', 1), ('Nurse', 1), ('"very', 1), ('figure."', 1), ('Spence.', 1), ('People', 1), ("o'", 1), ('Tehuacana', 1), ('Project.', 1), ('Possum', 1), ('Kingdom', 1), ('chattering', 1), ('torments', 1), ('Single', 1), ('Woodlands', 1), ('Print', 1), ('Davy', 1), ('Crockett', 1), ('Gatesville', 1), ('Angelo', 1), ('Violent', 1), ('Goldthwaite', 1), ('Hermit"', 1), ('Greenbelt', 1), ('Corridor', 1), ('Monkstown', 1), ('Pottsboro', 1), ('McKinney', 1), ('Dangerfield', 1), ('Thorp', 1), ('RV', 1), ('Worth', 1), ('flushes', 1), ('footfalls', 1), ('"skunk-like"', 1), ('Wimberley', 1), ('Medina', 1), ('years,', 1), ('coyote', 1), ('kills,', 1), ('Commerce', 1), ('hunt', 1), ('Bryson', 1), ('reply', 1), ('youngster', 1), ('Weatherford', 1), ('spying', 1), ('overturning', 1), ('Y', 1), ('mountains.', 1), ('Hoop', 1), ('Uintah', 1), ('(north', 1), ('slope)', 1), ('Vernal.', 1), ('UT/WY', 1), ('interacting', 1), ('Hyrum', 1), ('Betsy', 1), ('Basin,', 1), ('Uintas', 1), ('Grandson', 1), ('Wasatch-Cache', 1), ('Timpanogos', 1), ('(west', 1), ('mountain)', 1), ('Scare', 1), ('protest', 1), ('attack', 1), ("hunter's", 1), ('(vehicle)', 1), ('Bow-hunters', 1), ('yelling', 1), ('Cottonwood', 1), ('white/blonde', 1), ('included', 1), ('Dodge', 1), ('Kennecott', 1), ('campers.', 1), ('escorted', 1), ('foul-smelling,', 1), ('acorn-throwing', 1), ('Ferrum', 1), ('Max', 1), ('trash', 1), ('snatching', 1), ('(2', 1), ('witnesses)', 1), ('Sherando', 1), ('Traveller', 1), ('lumbering', 1), ('Sanford', 1), ('Switzer', 1), ('juveniles', 1), ('Farmville', 1), ('photogapher', 1), ('woodknocks', 1), ('Skyline', 1), ('Drive', 1), ('soldiers', 1), ('Monterey', 1), ('Policeman', 1), ('Belvoir', 1), ('Chiswell', 1), ('keeping', 1), ('pace', 1), ('Wirtz', 1), ('Honeymooners', 1), ('feel', 1), ('bone', 1), ('rattling', 1), ('growl', 1), ('Meadowview', 1), ("Ramsey's", 1), ('Draft', 1), ('long,', 1), ('brassy', 1), ('Christiansburg', 1), ("LEO's", 1), ('Goldbond', 1), ('Linden', 1), ('Chilhowie', 1), ('Hildene', 1), ('Mansion', 1), ('grounds,', 1), ('Brattleboro', 1), ('Missing', 1), ('Cattle', 1), ('Milk', 1), ('Hoodsport', 1), ('answer', 1), ('Blocking', 1), ('Okanogon', 1), ('rose', 1), ('Guler', 1), ('"roars",', 1), ('clear-cut', 1), ('odors', 1), ('odd,', 1), ('17-18', 1), ('Montesano', 1), ('trail.', 1), ('Rooks', 1), ('Investigation', 1), ('echoed', 1), ('mountainside.', 1), ('unsusual', 1), ('exchanges', 1), ('guttral,', 1), ('sceams.', 1), ('Barefoot', 1), ('whistling', 1), ('earlier', 1), ('Worse', 1), ('"Brinson', 1), ('striking', 1), ('answered', 1), ('source', 1), ('terrify', 1), ('sticks', 1), ('beaten', 1), ('1)', 1), ('2)', 1), ('harassed', 1), ('19"', 1), ('25-50', 1), ('intimidating', 1), ('beating', 1), ('guides', 1), ('wake', 1), ('Environmental', 1), ('Engineer', 1), ('responding', 1), ('Spelunkers', 1), ('garbled', 1), ('nest-like', 1), ('dense', 1), ('Townsend', 1), ('Clayton,', 1), ('Hollywood', 1), ('Multible', 1), ('lake.', 1), ('canyons', 1), ('Coulee', 1), ('growled', 1), ('woodworking', 1), ('Wahkiacus', 1), ('Sol', 1), ('Duc', 1), ('footfalls,', 1), ('clicking', 1), ('foorprints', 1), ('Alder', 1), ('Stevenson', 1), ('Hartstene', 1), ('homeowners', 1), ('Alpental', 1), ('walkers', 1), ('Outdoorsman', 1), ('Tinkham', 1), ('Jim', 1), ('daybreak,', 1), ('Sutherland', 1), ('repair', 1), ('stop.', 1), ('Mossy', 1), ('noisy', 1), ('Thumps', 1), ('Prior', 1), ('Joyce', 1), ('repeatedly', 1), ("Deadman's", 1), ('expeditioners', 1), ('Peninsula.', 1), ('Stick', 1), ('Throwing', 1), ('neighbors', 1), ('mournful', 1), ('Nason', 1), ('Rain', 1), ('rock/stick', 1), ('drainage', 1), ('Muckleshoot', 1), ('Scenic', 1), ('interrupt', 1), ('camper’s', 1), ('quiet', 1), ('Gifford', 1), ('Pinchot', 1), ('NF,', 1), ('Tarbell', 1), ('Brown', 1), ('rainforest,', 1), ('Kulshan', 1), ('Train', 1), ('engineer', 1), ('prospector', 1), ('Metaline', 1), ('Tonasket', 1), ('Okanogan', 1), ('guttural', 1), ('Winthrop', 1), ('Redmond', 1), ('pigeon', 1), ('shooters', 1), ('girlfriend,', 1), ('Cispus,', 1), ('Angler', 1), ('senses', 1), ('ominous', 1), ('Blyn', 1), ('Sequim', 1), ('"Ohio"', 1), ('Harstine', 1), ('Humptulips', 1), ('diverts', 1), ('scream-howl', 1), ('cannot', 1), ('identify', 1), ('alone', 1), ('Camano', 1), ('reoccurring', 1), ('sit', 1), ('launch', 1), ('monkey-like', 1), ('Tieton', 1), ('Malo', 1), ('dashing', 1), ('Poodle', 1), ('Hitchhiker', 1), ('Ilwaco', 1), ('rock-throwing,', 1), ('Elbe', 1), ('Mossyrock', 1), ('Napavine', 1), ('instructing', 1), ('"Chimp-like"', 1), ('horseman', 1), ('Dow', 1), ('Raymond', 1), ('killing', 1), ('Elwha', 1), ('quadruped', 1), ('Moclips', 1), ('Colville', 1), ('confluence', 1), ('Boss', 1), ('shoved', 1), ('Steilacoom', 1), ('race', 1), ("'Hide", 1), ('Go', 1), ("Seek'", 1), ('Vigorous', 1), ('unnerve', 1), ('Packwood.', 1), ('Pasayten', 1), ('Marymoor', 1), ('109', 1), ('frequent', 1), ('someone', 1), ('"Screaming', 1), ('Heather', 1), ('97', 1), ('solo', 1), ('Goat', 1), ('trips', 1), ('having', 1), ('Steelhead', 1), ('Duckabush', 1), ('elevated', 1), ('bushes', 1), ('Lena', 1), ('growls', 1), ('spook', 1), ('carpenters', 1), ('trainer', 1), ('Shelton', 1), ('touched', 1), ('For', 1), ('Brinnon', 1), ('backpacking,', 1), ('Natches', 1), ('Wilkeson', 1), ('"weird', 1), ('exchange"', 1), ('unknowns', 1), ('smoke', 1), ('alarmed', 1), ('origin', 1), ('Mica', 1), ('Target', 1), ('(see', 1), ('video)', 1), ('tree-breaks', 1), ('Aeneas', 1), ('roads', 1), ('Snowplow', 1), ('Mazama', 1), ('Gibberish-like', 1), ('DuPont', 1), ('Addy', 1), ('day-time', 1), ('Moses', 1), ("'70s", 1), ('unnerves', 1), ('meal', 1), ('Smackout', 1), ('Someone', 1), ('Dodgeville.', 1), ('suspected', 1), ('Grantsburg', 1), ('Menomonee', 1), ('footsteps,', 1), ('inexplicable', 1), ('Vilas', 1), ('Chequamegon', 1), ('carcass', 1), ('nabbed', 1), ('pickup', 1), ('Erin', 1), ('167', 1), ('Way)', 1), ('attending', 1), ('Namekagon', 1), ('continuing', 1), ('hike,', 1), ('Bonita', 1), ('Kettle', 1), ('Moraine', 1), ('cleaning', 1), ('ditch', 1), ('Woodruff', 1), ('buildings', 1), ('arrives', 1), ('Avoca', 1), ('Kiel', 1), ('151', 1), ('Gorilla-like', 1), ('Mauston', 1), ('Horicon', 1), ('Boscobel', 1), ('Drummond', 1), ('dive', 1), ('Washburn', 1), ('Charateristic', 1), ('Winter,', 1), ('Minden', 1), ('"people', 1), ('backwards."', 1), ('Many', 1), ('On-going', 1), ('cautious', 1), ('Lesage', 1), ('imprint', 1), ('menacing', 1), ('Beckley', 1), ('Pt.Pleasant', 1), ('Bottom', 1), ('Judy', 1), ('Onego', 1), ('expedition,', 1), ('2005.', 1), ('throwing,', 1), ('Participant', 1), ('WV', 1), ('Circleville', 1), ('Tygart', 1), ('Sistersville', 1), ('Frozen', 1), ('Arnoldsberg', 1), ('Morgantown', 1), ('Glade', 1), ('Pond,', 1), ('Monon.', 1), ('raccoon', 1), ('explorers', 1), ('bizarre', 1), ('reveals', 1), ('Pennsboro', 1), ('Iaeger', 1), ('Lavalette', 1), ('wakes', 1), ('falls', 1), ('Durbin', 1), ('boulders', 1), ('recovered', 1), ('Wellsburg', 1), ('include', 1), ('Pax', 1), ('Hedgesville', 1), ('occassions', 1), ('bait', 1), ('Sundance', 1), ('Felsenthal', 1), ('Writer', 1), ('Discusses', 1), ('Her', 1), ('Pursuing', 1), ('Legends', 1), ('100', 1), ('Fayette', 1), ('Counties', 1), ('"Big', 1), ('Muddy', 1), ('flap', 1), ("'huge'", 1), ('throws', 1), ('Chittyville.', 1), ('Beige', 1), ('1000', 1), ('Kell.', 1), ('describing', 1), ('sized', 1), ('Edwardsville.', 1), ('Vocalizing,', 1), ('note', 1), ('high-pitched,', 1), ('glowing', 1), ('Second-hand', 1)]

Description Analysis

Aside from conjunction words and words that don't really tell us any details about the sighting ("near", "sighting", "Possible", "encounter") the most common words in the descriptions are "vocalizations" "Lake" "night" and "outside", suggesting that many of these sightings vocalizations were heard. If you wanted to see a bigfoot, maybe standing by a lake at night outside would be more probable to encounter one as there are more descritions with these words. Another interesting observation is that the word "Man" has 230 counts whereas "Woman" only has 111, suggesting that more men see Bigfoot than women by a significant margin.

In [ ]:
desc.count('Campers') + desc.count('campers') + desc.count('campsite') + desc.count('tent') #use the .count function to count instances of relevant or interesting words
Out[ ]:
165
In [ ]:
desc.count('Forest') + desc.count('forest') + desc.count('woods') + desc.count('Woods') + desc.count('tree')
Out[ ]:
305

Lots of mentions of woods and camping, as expected. Bigfoot is most clasically seen in the woods.

In [ ]:
desc.count('highway') + desc.count('Highway') + desc.count('Freeway') + desc.count('freeway')
Out[ ]:
52
In [ ]:
desc.count('Desert') + desc.count('desert') + desc.count('hot') + desc.count('arid')
Out[ ]:
57

Less mentions of bigfoot near highways or freeways and in deserts or hot and arid places.

In [ ]:
desc.count('Sasquatch') + desc.count('sasquatch') + desc.count('Squatch')
Out[ ]:
87
In [ ]:
desc.count('Bigfoot') + desc.count('bigfoot')
Out[ ]:
113
In [ ]:
desc.count('Yowie') + desc.count('Yeti')+ desc.count('Skunk-Ape')
Out[ ]:
1

Bigfoot is most commonly referred to as Bigfoot or Squatch/Sasquatch. Other names for bigfoot are less used in this dataset.

Sightings vs Latitude over Year and Month Scatter Plot

Location of the sightings is of the utmost importance as we focus in on one of our main questions: does the weather/temperature affect the probability of seeing Bigfoot. Below we will plot the longitude and latitude of each sighting on a map to visualize the distribution of sightings in North America. Note that this includes sightings overtime. Future plots contrasting sighting location over time could prove useful in determining potential migration habits or simply the spreading of the Bigfoot rumor.

In [ ]:
bf.plot.scatter(x="longitude", y="latitude", c="year", cmap="plasma", alpha=.5)
Out[ ]:
<matplotlib.axes._subplots.AxesSubplot at 0x7f8604b9e4f0>
In [ ]:
bf.plot.scatter(x="longitude", y="latitude", c="month", cmap="plasma", alpha=.5)
Out[ ]:
<matplotlib.axes._subplots.AxesSubplot at 0x7f86048bc670>

We plotted the sightings across the scatter plot by latitude and longitude with the color variations being by month. Bigfoots show no annual migratory patterns across North America as there are no patterns in the sightings, month, and geographical location. This rules out any potential confusion we could have experience in considering all of the years data at once. Since there is no clear change in pattern across time, we can use all the data at once.

Sightings over a Map of North America

In [ ]:
# Techniques used to load and size this plot derived from https://geopandas.org/en/stable/docs/user_guide/mapping.html
# and https://gis.stackexchange.com/questions/375582/zoom-to-a-plot-with-geopandas-based-on-data-from-csv-and-shapefile

geometry = [Point(xy) for xy in zip(bf['longitude'], bf['latitude'])]
gdf = GeoDataFrame(bf, geometry=geometry)   

#this is a simple map that goes with geopandas
world = gpd.read_file(gpd.datasets.get_path('naturalearth_lowres'))
ax = gdf.plot(ax=world.plot(figsize=(20, 6)), marker='o', color='orange', markersize=15, aspect='auto', alpha=.6);
minx, miny, maxx, maxy = gdf.total_bounds
ax.set_xlim(minx-5, maxx+5)
ax.set_ylim(miny-5, maxy+5)
Out[ ]:
(20.141, 74.5)
In [ ]:

Heatmap of Temperature across the United States Divided by State

In [ ]:
# Techniques used to load and size this plot derived from https://towardsdatascience.com/simplest-way-of-creating-a-choropleth-map-by-u-s-states-in-python-f359ada7735e
fig = px.choropleth(avg_weather,
                    locations='state_code', 
                    locationmode="USA-states", 
                    scope="usa",
                    color='Avg °F',
                    color_continuous_scale="plasma", 
                    )
fig.show()

Following the Location of the sightings, climate data across the region of interest can be visualized above. As you can see (and probably intuit), temperature varies mainly from North to South. The sighting map does not seem to portray the same pattern at first glance.

Answering the Question

So does Bigfoot have a preference according to temperature. The graphs below attempt to answer this question.

The bar graphs show variance in sighting frequency across longitude and latitude. The first (longitude) shows two spikes potentially indicating a correlation between longitudinal factors and bigfoot. However, the latitude bar graph shows a much weaker correlation to sighting frequency, pushing away the idea that Bigfoot prefers certain temperatures.

In [ ]:
bf.longitude.plot.hist(alpha=.5, density=True, legend=True, bins=50)
Out[ ]:
<matplotlib.axes._subplots.AxesSubplot at 0x7f8604866700>
In [ ]:
bf.latitude.plot.hist(alpha=.5, density=True, legend=True, bins=50)
Out[ ]:
<matplotlib.axes._subplots.AxesSubplot at 0x7f860473bfa0>

Now, we can create a heatmap to more concisely view the variation in frequency accross both longitude and latitude simultaneously.

In [ ]:
bf_freq_base = {
    "longitude" : ["25-30", "25-30", "25-30", "25-30", "30-35", "30-35", "30-35", "30-35", "35-40", "35-40", "35-40", "35-40", "40-45", "40-45", "40-45", "40-45", "45-50", "45-50", "45-50", "45-50"],
    "latitude" : ["60-80", "80-100", "100-120", "120-140", "60-80", "80-100", "100-120", "120-140", "60-80", "80-100", "100-120", "120-140", "60-80", "80-100", "100-120", "120-140", "60-80", "80-100", "100-120", "120-140"],
    "sightings" : [bf[(bf.latitude > 25) & (bf.latitude < 30) & (bf.longitude < -60) & (bf.longitude > -80)].report_number.count(),
                   bf[(bf.latitude > 25) & (bf.latitude < 30) & (bf.longitude < -80) & (bf.longitude > -100)].report_number.count(),
                   bf[(bf.latitude > 25) & (bf.latitude < 30) & (bf.longitude < -100) & (bf.longitude > -120)].report_number.count(),
                   bf[(bf.latitude > 25) & (bf.latitude < 30) & (bf.longitude < -120) & (bf.longitude > -140)].report_number.count(),
                   bf[(bf.latitude > 30) & (bf.latitude < 35) & (bf.longitude < -60) & (bf.longitude > -80)].report_number.count(),
                   bf[(bf.latitude > 30) & (bf.latitude < 35) & (bf.longitude < -80) & (bf.longitude > -100)].report_number.count(),
                   bf[(bf.latitude > 30) & (bf.latitude < 35) & (bf.longitude < -100) & (bf.longitude > -120)].report_number.count(),
                   bf[(bf.latitude > 30) & (bf.latitude < 35) & (bf.longitude < -120) & (bf.longitude > -140)].report_number.count(),
                   bf[(bf.latitude > 35) & (bf.latitude < 40) & (bf.longitude < -60) & (bf.longitude > -80)].report_number.count(),
                   bf[(bf.latitude > 35) & (bf.latitude < 40) & (bf.longitude < -80) & (bf.longitude > -100)].report_number.count(),
                   bf[(bf.latitude > 35) & (bf.latitude < 40) & (bf.longitude < -100) & (bf.longitude > -120)].report_number.count(),
                   bf[(bf.latitude > 35) & (bf.latitude < 40) & (bf.longitude < -120) & (bf.longitude > -140)].report_number.count(),
                   bf[(bf.latitude > 40) & (bf.latitude < 45) & (bf.longitude < -60) & (bf.longitude > -80)].report_number.count(),
                   bf[(bf.latitude > 40) & (bf.latitude < 45) & (bf.longitude < -80) & (bf.longitude > -100)].report_number.count(),
                   bf[(bf.latitude > 40) & (bf.latitude < 45) & (bf.longitude < -100) & (bf.longitude > -120)].report_number.count(),
                   bf[(bf.latitude > 40) & (bf.latitude < 45) & (bf.longitude < -120) & (bf.longitude > -140)].report_number.count(),
                   bf[(bf.latitude > 45) & (bf.latitude < 50) & (bf.longitude < -60) & (bf.longitude > -80)].report_number.count(),
                   bf[(bf.latitude > 45) & (bf.latitude < 50) & (bf.longitude < -80) & (bf.longitude > -100)].report_number.count(),
                   bf[(bf.latitude > 45) & (bf.latitude < 50) & (bf.longitude < -100) & (bf.longitude > -120)].report_number.count(),
                   bf[(bf.latitude > 45) & (bf.latitude < 50) & (bf.longitude < -120) & (bf.longitude > -140)].report_number.count(),]
}
In [ ]:
bf_freq = pd.DataFrame(bf_freq_base)
bf_freq
Out[ ]:
longitude latitude sightings
0 25-30 60-80 0
1 25-30 80-100 221
2 25-30 100-120 1
3 25-30 120-140 0
4 30-35 60-80 13
5 30-35 80-100 556
6 30-35 100-120 77
7 30-35 120-140 1
8 35-40 60-80 126
9 35-40 80-100 709
10 35-40 100-120 219
11 35-40 120-140 97
12 40-45 60-80 152
13 40-45 80-100 458
14 40-45 100-120 99
15 40-45 120-140 159
16 45-50 60-80 15
17 45-50 80-100 137
18 45-50 100-120 137
19 45-50 120-140 526
In [ ]:
bf_freq_pivot = bf_freq.pivot_table(
    index= ["latitude"], columns = ["longitude"], 
    values = "sightings", aggfunc=np.max
)
bf_freq_pivot = bf_freq_pivot.reindex(["60-80", "80-100", "100-120", "120-140"], axis=0)
bf_freq_pivot
Out[ ]:
longitude 25-30 30-35 35-40 40-45 45-50
latitude
60-80 0 13 126 152 15
80-100 221 556 709 458 137
100-120 1 77 219 99 137
120-140 0 1 97 159 526
In [ ]:
sns.heatmap(bf_freq_pivot)
Out[ ]:
<matplotlib.axes._subplots.AxesSubplot at 0x7f8604693580>

Conclusions

Upon starting this project, this team set out to learn more about the subject and patterns of the infamous yeti/sasquach/yowie known as Bigfoot, a wildly popular topic in cryptozoology. By extracting data from the world's largest and most reputable source of bigfoot sighting data, the Bigfoot Reasearchers Organization, we hoped to uncover correlations or lack thereof that might hint towards the creatures existence or the possibility of a hoax. Chief among our many many questions was the relationship between Bigfoot and his environment: do certain weather or climate factors determine whether Bigfoot is present/is more likely to be spotted? Through our exploratory data analysis, we explored all apsects of the bigfoot sighting data and attempted to eliminated future sources of confusion by ruling out correlations between date and location. We also examined patterns found in the description of the sighting and tried to find common themes in the descriptions. Our original hypothesis was that there will be a correlation between sighting location and average temperature potentially indicating bigfoot climate preference. We had hoped that this might lead to a predictive model of where you are more likely to spot bigfoot based on weather. However, our findings did not support this as temperature generally varies along changes in latitude and bigfoot sightings show no such pattern. In fact, frequency varies far more across longitude. As an interesting sidenote and a place for potential continued analysis, our map of bigfoot sightings is eerily congruent with maps of population density such as one found here. This has a variety of explanations ranging from "Bigfoot does not show preference for climate as a similar animal would so he isn’t real, people fake sightings everywhere" to "species of bigfoot have adapted to various climates." As you can see, it is easy to explain away correlations in either direction, making Bigfoot data difficult to deal with in terms of concrete conclusions.

In [ ]:
#Convert to HTML

%%shell
jupyter nbconvert --to html /content/drive/MyDrive/BigfootDataScienceProject/BigfootNotebook.ipynb
[NbConvertApp] Converting notebook /content/drive/MyDrive/BigfootDataScienceProject/BigfootNotebook.ipynb to html
[NbConvertApp] Writing 1314545 bytes to /content/drive/MyDrive/BigfootDataScienceProject/BigfootNotebook.html
Out[ ]: